aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/src/utils/artifacts.ts
diff options
context:
space:
mode:
authorGreg Hysen <greg.hysen@gmail.com>2018-06-01 07:31:00 +0800
committerGreg Hysen <greg.hysen@gmail.com>2018-06-08 06:38:48 +0800
commit249a1e6d8d129d6b067a4ddadfb4b94733ddfc07 (patch)
treeb4bc308a8653e14a67298cdf75c8d84278bb8195 /packages/contracts/src/utils/artifacts.ts
parente042e0ad32cd2ac9e707cb8e52961957f58314ce (diff)
downloaddexon-sol-tools-249a1e6d8d129d6b067a4ddadfb4b94733ddfc07.tar
dexon-sol-tools-249a1e6d8d129d6b067a4ddadfb4b94733ddfc07.tar.gz
dexon-sol-tools-249a1e6d8d129d6b067a4ddadfb4b94733ddfc07.tar.bz2
dexon-sol-tools-249a1e6d8d129d6b067a4ddadfb4b94733ddfc07.tar.lz
dexon-sol-tools-249a1e6d8d129d6b067a4ddadfb4b94733ddfc07.tar.xz
dexon-sol-tools-249a1e6d8d129d6b067a4ddadfb4b94733ddfc07.tar.zst
dexon-sol-tools-249a1e6d8d129d6b067a4ddadfb4b94733ddfc07.zip
Removed the LibAssetProxyDecoder. Merged decode functions into the proxies. This way they can still be used by the forwarding contract. TestAssetDataDecoders inherits them in the same way the forwarding contract would
Diffstat (limited to 'packages/contracts/src/utils/artifacts.ts')
-rw-r--r--packages/contracts/src/utils/artifacts.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/contracts/src/utils/artifacts.ts b/packages/contracts/src/utils/artifacts.ts
index a1c8483d8..42de7c921 100644
--- a/packages/contracts/src/utils/artifacts.ts
+++ b/packages/contracts/src/utils/artifacts.ts
@@ -11,7 +11,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 TestAssetDataDecoders from '../artifacts/TestAssetDataDecoders.json';
import * as TestLibBytes from '../artifacts/TestLibBytes.json';
import * as TestLibMem from '../artifacts/TestLibMem.json';
import * as TestLibs from '../artifacts/TestLibs.json';
@@ -34,7 +34,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,
+ TestAssetDataDecoders: (TestAssetDataDecoders as any) as ContractArtifact,
TestLibBytes: (TestLibBytes as any) as ContractArtifact,
TestLibMem: (TestLibMem as any) as ContractArtifact,
TestLibs: (TestLibs as any) as ContractArtifact,