diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-01 12:23:08 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-06-01 12:23:08 +0800 |
commit | 719c432ca8be33212b186dc989f25b43674463d8 (patch) | |
tree | 23fd8675e1ae66ae30f925bd735a301c016b9d64 /packages/order-utils/src/artifacts.ts | |
parent | e654616b6d759883a287c23c5a10b56dec90963c (diff) | |
download | dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.gz dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.bz2 dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.lz dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.xz dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.zst dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.zip |
Rename ISigner to IWallet and implement SignatureType.Validator
Diffstat (limited to 'packages/order-utils/src/artifacts.ts')
-rw-r--r-- | packages/order-utils/src/artifacts.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/order-utils/src/artifacts.ts b/packages/order-utils/src/artifacts.ts index 6eb5ad0c0..f6fd00472 100644 --- a/packages/order-utils/src/artifacts.ts +++ b/packages/order-utils/src/artifacts.ts @@ -1,8 +1,10 @@ import { Artifact } from '@0xproject/types'; import * as Exchange from './artifacts/Exchange.json'; -import * as ISigner from './artifacts/ISigner.json'; +import * as IValidator from './artifacts/IValidator.json'; +import * as IWallet from './artifacts/IWallet.json'; export const artifacts = { Exchange: (Exchange as any) as Artifact, - ISigner: (ISigner as any) as Artifact, + IWallet: (IWallet as any) as Artifact, + IValidator: (IValidator as any) as Artifact, }; |