diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-05-02 23:38:38 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-05-02 23:38:50 +0800 |
commit | a6046af0240d9257a9e9dd80dc4dc5f533df8799 (patch) | |
tree | 36fedb1f2df768380ee8e71c143ac0887779ba67 /packages/order-utils | |
parent | adaff92c9243e7e13737f92cf4b6ade77ebd6e43 (diff) | |
download | dexon-sol-tools-a6046af0240d9257a9e9dd80dc4dc5f533df8799.tar dexon-sol-tools-a6046af0240d9257a9e9dd80dc4dc5f533df8799.tar.gz dexon-sol-tools-a6046af0240d9257a9e9dd80dc4dc5f533df8799.tar.bz2 dexon-sol-tools-a6046af0240d9257a9e9dd80dc4dc5f533df8799.tar.lz dexon-sol-tools-a6046af0240d9257a9e9dd80dc4dc5f533df8799.tar.xz dexon-sol-tools-a6046af0240d9257a9e9dd80dc4dc5f533df8799.tar.zst dexon-sol-tools-a6046af0240d9257a9e9dd80dc4dc5f533df8799.zip |
Stop exporting assertions from order-utils
Diffstat (limited to 'packages/order-utils')
-rw-r--r-- | packages/order-utils/src/assert.ts | 8 | ||||
-rw-r--r-- | packages/order-utils/src/index.ts | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/packages/order-utils/src/assert.ts b/packages/order-utils/src/assert.ts index 92641b845..5ac402e7e 100644 --- a/packages/order-utils/src/assert.ts +++ b/packages/order-utils/src/assert.ts @@ -12,10 +12,6 @@ import { isValidSignature } from './signature_utils'; export const assert = { ...sharedAssert, - isValidSignature(orderHash: string, ecSignature: ECSignature, signerAddress: string) { - const isValid = isValidSignature(orderHash, ecSignature, signerAddress); - this.assert(isValid, `Expected order with hash '${orderHash}' to have a valid signature`); - }, async isSenderAddressAsync( variableName: string, senderAddressHex: string, @@ -28,8 +24,4 @@ export const assert = { `Specified ${variableName} ${senderAddressHex} isn't available through the supplied web3 provider`, ); }, - async isUserAddressAvailableAsync(web3Wrapper: Web3Wrapper): Promise<void> { - const availableAddresses = await web3Wrapper.getAvailableAddressesAsync(); - this.assert(!_.isEmpty(availableAddresses), 'No addresses were available on the provided web3 provider'); - }, }; diff --git a/packages/order-utils/src/index.ts b/packages/order-utils/src/index.ts index 4addd60d6..2b565f713 100644 --- a/packages/order-utils/src/index.ts +++ b/packages/order-utils/src/index.ts @@ -2,6 +2,5 @@ export { getOrderHashHex, isValidOrderHash } from './order_hash'; export { isValidSignature, signOrderHashAsync } from './signature_utils'; export { orderFactory } from './order_factory'; export { generatePseudoRandomSalt } from './salt'; -export { assert } from './assert'; export { constants } from './constants'; export { OrderError } from './types'; |