aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-08-30 17:24:15 +0800
committerGitHub <noreply@github.com>2017-08-30 17:24:15 +0800
commit5f44b5f7111873a3958050503fff0ed098b65b04 (patch)
treef19caa7d2718c2506699e6c804ac6f837b197c5a /src/utils
parent6e34cf2c3bdba83460fc4356ec2e62e712119ec9 (diff)
parentc83e1d57fce55efe5e85221d0442d5f4c0fa0514 (diff)
downloaddexon-sol-tools-5f44b5f7111873a3958050503fff0ed098b65b04.tar
dexon-sol-tools-5f44b5f7111873a3958050503fff0ed098b65b04.tar.gz
dexon-sol-tools-5f44b5f7111873a3958050503fff0ed098b65b04.tar.bz2
dexon-sol-tools-5f44b5f7111873a3958050503fff0ed098b65b04.tar.lz
dexon-sol-tools-5f44b5f7111873a3958050503fff0ed098b65b04.tar.xz
dexon-sol-tools-5f44b5f7111873a3958050503fff0ed098b65b04.tar.zst
dexon-sol-tools-5f44b5f7111873a3958050503fff0ed098b65b04.zip
Merge pull request #142 from 0xProject/feature/support_web3@1.0_provider
Feature/support web3@1.0 provider
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/assert.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/utils/assert.ts b/src/utils/assert.ts
index a26b19311..eb084129c 100644
--- a/src/utils/assert.ts
+++ b/src/utils/assert.ts
@@ -61,6 +61,10 @@ export const assert = {
isBoolean(variableName: string, value: boolean): void {
this.assert(_.isBoolean(value), this.typeAssertionMessage(variableName, 'boolean', value));
},
+ isWeb3Provider(variableName: string, value: Web3.Provider): void {
+ const isWeb3Provider = _.isFunction((value as any).send) || _.isFunction((value as any).sendAsync);
+ this.assert(isWeb3Provider, this.typeAssertionMessage(variableName, 'Web3.Provider', value));
+ },
doesConformToSchema(variableName: string, value: any, schema: Schema): void {
const schemaValidator = new SchemaValidator();
const validationResult = schemaValidator.validate(value, schema);