chore: Prune old contracts (#304)

Prune exchange-libs
deploy migrations at specific address
remove exchange-libs, moving LibMath into Utils
Remove staking order-utils multisig and remaining asset-proxy
This commit is contained in:
Jacob Evans
2021-08-18 10:33:47 +10:00
committed by GitHub
parent aae46bef84
commit 68656b4a4d
741 changed files with 586 additions and 121272 deletions

View File

@@ -31,11 +31,6 @@ export {
BatchMatchOrder,
ContractName,
ERC20BalancesByOwner,
ERC1155FungibleHoldingsByOwner,
ERC1155HoldingsByOwner,
ERC1155Holdings,
ERC1155NonFungibleHoldingsByOwner,
ERC721TokenIdsByOwner,
EthBalancesByOwner,
FillEventArgs,
MarketBuyOrders,

View File

@@ -10,33 +10,6 @@ export interface ERC20BalancesByOwner {
};
}
export interface ERC721TokenIdsByOwner {
[ownerAddress: string]: {
[tokenAddress: string]: BigNumber[];
};
}
export interface ERC1155FungibleHoldingsByOwner {
[ownerAddress: string]: {
[tokenAddress: string]: {
[tokenId: string]: BigNumber;
};
};
}
export interface ERC1155NonFungibleHoldingsByOwner {
[ownerAddress: string]: {
[tokenAddress: string]: {
[tokenId: string]: BigNumber[];
};
};
}
export interface ERC1155HoldingsByOwner {
fungible: ERC1155FungibleHoldingsByOwner;
nonFungible: ERC1155NonFungibleHoldingsByOwner;
}
export interface EthBalancesByOwner {
[owner: string]: BigNumber;
}
@@ -142,21 +115,8 @@ export interface MatchOrder {
rightSignature: string;
}
export interface ERC1155Holdings {
[owner: string]: {
[contract: string]: {
fungible: {
[tokenId: string]: BigNumber;
};
nonFungible: BigNumber[];
};
};
}
export interface TokenBalances {
erc20: ERC20BalancesByOwner;
erc721: ERC721TokenIdsByOwner;
erc1155: ERC1155Holdings;
eth: EthBalancesByOwner;
}