diff options
author | Remco Bloemen <remco@wicked.ventures> | 2018-06-14 02:21:01 +0800 |
---|---|---|
committer | Remco Bloemen <remco@wicked.ventures> | 2018-06-23 19:53:39 +0800 |
commit | 6a6f98299de5fd67f9162cc57c73583702924a2f (patch) | |
tree | 7a36d4764d2ff19ef8cb66b1c5faf76767593f24 /packages/contracts/src/utils | |
parent | 19ba272d62a3d838bb024e5152a2eb88f33645cd (diff) | |
download | dexon-sol-tools-6a6f98299de5fd67f9162cc57c73583702924a2f.tar dexon-sol-tools-6a6f98299de5fd67f9162cc57c73583702924a2f.tar.gz dexon-sol-tools-6a6f98299de5fd67f9162cc57c73583702924a2f.tar.bz2 dexon-sol-tools-6a6f98299de5fd67f9162cc57c73583702924a2f.tar.lz dexon-sol-tools-6a6f98299de5fd67f9162cc57c73583702924a2f.tar.xz dexon-sol-tools-6a6f98299de5fd67f9162cc57c73583702924a2f.tar.zst dexon-sol-tools-6a6f98299de5fd67f9162cc57c73583702924a2f.zip |
Move isFunctionRemoveAuthorizedAddress to test
Diffstat (limited to 'packages/contracts/src/utils')
-rw-r--r-- | packages/contracts/src/utils/artifacts.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/contracts/src/utils/artifacts.ts b/packages/contracts/src/utils/artifacts.ts index fa18cc9d2..a46bab9ae 100644 --- a/packages/contracts/src/utils/artifacts.ts +++ b/packages/contracts/src/utils/artifacts.ts @@ -13,6 +13,7 @@ import * as MultiSigWallet from '../artifacts/MultiSigWallet.json'; import * as MultiSigWalletWithTimeLock from '../artifacts/MultiSigWalletWithTimeLock.json'; import * as TestAssetDataDecoders from '../artifacts/TestAssetDataDecoders.json'; import * as TestAssetProxyDispatcher from '../artifacts/TestAssetProxyDispatcher.json'; +import * as TestAssetProxyOwner from '../artifacts/TestAssetProxyOwner.json'; import * as TestLibBytes from '../artifacts/TestLibBytes.json'; import * as TestLibs from '../artifacts/TestLibs.json'; import * as TestSignatureValidator from '../artifacts/TestSignatureValidator.json'; @@ -36,6 +37,7 @@ export const artifacts = { MixinAuthorizable: (MixinAuthorizable as any) as ContractArtifact, MultiSigWallet: (MultiSigWallet as any) as ContractArtifact, MultiSigWalletWithTimeLock: (MultiSigWalletWithTimeLock as any) as ContractArtifact, + TestAssetProxyOwner: (TestAssetProxyOwner as any) as ContractArtifact, TestAssetProxyDispatcher: (TestAssetProxyDispatcher as any) as ContractArtifact, TestAssetDataDecoders: (TestAssetDataDecoders as any) as ContractArtifact, TestLibBytes: (TestLibBytes as any) as ContractArtifact, |