aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/utils/assert.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-05-03 00:42:59 +0800
committerGitHub <noreply@github.com>2018-05-03 00:42:59 +0800
commita054b485d01d5003d47e7959a4fe1e1c0a6dc6a0 (patch)
tree7f7e45f54cdd8fc2830621cbb4f89093bef8cbf4 /packages/0x.js/src/utils/assert.ts
parentf08738e13379ea86a33ad9be9f7579e637e69acb (diff)
parent3585326d7eb82ae730752d1956876b22f7638fa6 (diff)
downloaddexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar
dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.gz
dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.bz2
dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.lz
dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.xz
dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.zst
dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.zip
Merge pull request #559 from 0xProject/feature/order-utils
Move order utils to @0xproject/order-utils
Diffstat (limited to 'packages/0x.js/src/utils/assert.ts')
-rw-r--r--packages/0x.js/src/utils/assert.ts10
1 files changed, 3 insertions, 7 deletions
diff --git a/packages/0x.js/src/utils/assert.ts b/packages/0x.js/src/utils/assert.ts
index 5e8004cd0..2588a4d09 100644
--- a/packages/0x.js/src/utils/assert.ts
+++ b/packages/0x.js/src/utils/assert.ts
@@ -8,13 +8,13 @@ import { BigNumber } from '@0xproject/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper';
import * as _ from 'lodash';
-import { signatureUtils } from '../utils/signature_utils';
+import { isValidSignature } from '@0xproject/order-utils';
export const assert = {
...sharedAssert,
isValidSignature(orderHash: string, ecSignature: ECSignature, signerAddress: string) {
- const isValidSignature = signatureUtils.isValidSignature(orderHash, ecSignature, signerAddress);
- this.assert(isValidSignature, `Expected order with hash '${orderHash}' to have a valid signature`);
+ const isValid = isValidSignature(orderHash, ecSignature, signerAddress);
+ this.assert(isValid, `Expected order with hash '${orderHash}' to have a valid signature`);
},
async isSenderAddressAsync(
variableName: string,
@@ -28,8 +28,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');
- },
};