diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-05-25 03:29:45 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2018-06-08 06:36:18 +0800 |
commit | 9b82e2df58cfd7f4dc9954fa93167450919f457f (patch) | |
tree | 8b84f49b930ef7053dd34ad10894fc7f57c0e033 /packages/contracts/src/utils/artifacts.ts | |
parent | 3d65341080177bdd436e7628a76e65774b947a38 (diff) | |
download | dexon-sol-tools-9b82e2df58cfd7f4dc9954fa93167450919f457f.tar dexon-sol-tools-9b82e2df58cfd7f4dc9954fa93167450919f457f.tar.gz dexon-sol-tools-9b82e2df58cfd7f4dc9954fa93167450919f457f.tar.bz2 dexon-sol-tools-9b82e2df58cfd7f4dc9954fa93167450919f457f.tar.lz dexon-sol-tools-9b82e2df58cfd7f4dc9954fa93167450919f457f.tar.xz dexon-sol-tools-9b82e2df58cfd7f4dc9954fa93167450919f457f.tar.zst dexon-sol-tools-9b82e2df58cfd7f4dc9954fa93167450919f457f.zip |
Foundation for TestLibAssetProxyDecoder
Diffstat (limited to 'packages/contracts/src/utils/artifacts.ts')
-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 1b47f1d41..44de43a95 100644 --- a/packages/contracts/src/utils/artifacts.ts +++ b/packages/contracts/src/utils/artifacts.ts @@ -10,6 +10,7 @@ import * as MixinAuthorizable from '../artifacts/MixinAuthorizable.json'; import * as MultiSigWallet from '../artifacts/MultiSigWallet.json'; import * as MultiSigWalletWithTimeLock from '../artifacts/MultiSigWalletWithTimeLock.json'; import * as TestAssetProxyDispatcher from '../artifacts/TestAssetProxyDispatcher.json'; +import * as TestLibAssetProxyDecoder from '../artifacts/TestLibAssetProxyDecoder.json'; import * as TestLibBytes from '../artifacts/TestLibBytes.json'; import * as TestLibMem from '../artifacts/TestLibMem.json'; import * as TestLibs from '../artifacts/TestLibs.json'; @@ -31,6 +32,7 @@ export const artifacts = { MultiSigWallet: (MultiSigWallet as any) as ContractArtifact, MultiSigWalletWithTimeLock: (MultiSigWalletWithTimeLock as any) as ContractArtifact, TestAssetProxyDispatcher: (TestAssetProxyDispatcher as any) as ContractArtifact, + TestLibAssetProxyDecoder: (TestLibAssetProxyDecoder as any) as ContractArtifact, TestLibBytes: (TestLibBytes as any) as ContractArtifact, TestLibMem: (TestLibMem as any) as ContractArtifact, TestLibs: (TestLibs as any) as ContractArtifact, |