* development: (38 commits) Add fallback image support to relayer grid tile Clear relayer grid state when fetching Configure the compiler to generate artifacts with deployedBytecode Implement loading and error state for relayer grid Fallback image for relayer grid tile Change relayer grid tile to link on header Display top tokens from backend Remove overflowZ property from portal Suggestions and fix bad merge Fix typo Only show untracked tokens Make wallet scrollable Add token flow Update The Ocean logo Fix artifacts paths Create an artifacts folder Introduce a var Add removeHexPrefix util method CHeck if ABI exists Improve the readability of the check for should compile ... # Conflicts: # .gitignore # packages/contracts/test/multi_sig_with_time_lock.ts # packages/contracts/test/multi_sig_with_time_lock_except_remove_auth_addr.ts # packages/contracts/util/artifacts.ts
26 lines
1.5 KiB
TypeScript
26 lines
1.5 KiB
TypeScript
import { ContractArtifact } from '@0xproject/deployer';
|
|
|
|
import * as DummyToken from '../src/artifacts/DummyToken.json';
|
|
import * as Exchange from '../src/artifacts/Exchange.json';
|
|
import * as MaliciousToken from '../src/artifacts/MaliciousToken.json';
|
|
import * as MultiSigWalletWithTimeLock from '../src/artifacts/MultiSigWalletWithTimeLock.json';
|
|
import * as MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress from '../src/artifacts/MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress.json';
|
|
import * as Token from '../src/artifacts/Token.json';
|
|
import * as TokenRegistry from '../src/artifacts/TokenRegistry.json';
|
|
import * as TokenTransferProxy from '../src/artifacts/TokenTransferProxy.json';
|
|
import * as EtherToken from '../src/artifacts/WETH9.json';
|
|
import * as ZRX from '../src/artifacts/ZRXToken.json';
|
|
|
|
export const artifacts = {
|
|
ZRX: (ZRX as any) as ContractArtifact,
|
|
DummyToken: (DummyToken as any) as ContractArtifact,
|
|
Token: (Token as any) as ContractArtifact,
|
|
Exchange: (Exchange as any) as ContractArtifact,
|
|
EtherToken: (EtherToken as any) as ContractArtifact,
|
|
TokenRegistry: (TokenRegistry as any) as ContractArtifact,
|
|
MaliciousToken: (MaliciousToken as any) as ContractArtifact,
|
|
TokenTransferProxy: (TokenTransferProxy as any) as ContractArtifact,
|
|
MultiSigWalletWithTimeLock: (MultiSigWalletWithTimeLock as any) as ContractArtifact,
|
|
MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress: (MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress as any) as ContractArtifact,
|
|
};
|