Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

fix: Kovan ERC20BridgeSampler #299

Merged
merged 1 commit into from
Jul 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"typescript": "^3.9.6"
},
"resolutions": {
"@0x/contract-addresses": "0xProject/gitpkg-registry#0x-contract-addresses-v4.11.0-9a16f5736",
"@0x/contract-addresses": "0xProject/gitpkg-registry#0x-contract-addresses-v4.11.0-e29087d16",
"@0x/contract-artifacts": "0xProject/gitpkg-registry#0x-contract-artifacts-v3.7.1-9a16f5736",
"@0x/contract-wrappers": "0xProject/gitpkg-registry#0x-contract-wrappers-v13.8.0-9a16f5736"
},
Expand Down
9 changes: 8 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,14 @@ const EXCLUDED_SOURCES = (() => {
case ChainId.Mainnet:
return [];
case ChainId.Kovan:
return [ERC20BridgeSource.Kyber];
return [
ERC20BridgeSource.Kyber,
ERC20BridgeSource.Balancer,
ERC20BridgeSource.Curve,
ERC20BridgeSource.Eth2Dai,
ERC20BridgeSource.Uniswap,
ERC20BridgeSource.LiquidityProvider,
];
default:
return [
ERC20BridgeSource.Eth2Dai,
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
uuid "^3.3.2"
websocket "^1.0.26"

"@0x/contract-addresses@0xProject/gitpkg-registry#0x-contract-addresses-v4.11.0-9a16f5736", "@0x/contract-addresses@^4.11.0":
"@0x/contract-addresses@0xProject/gitpkg-registry#0x-contract-addresses-v4.11.0-e29087d16", "@0x/contract-addresses@^4.11.0":
version "4.11.0"
resolved "https://codeload.github.com/0xProject/gitpkg-registry/tar.gz/ac7f02c026aec51e0395c862b40cea0fc6937f88"
resolved "https://codeload.github.com/0xProject/gitpkg-registry/tar.gz/e0f108707128e1e8ee21ea115817d638273edd18"

"@0x/contract-artifacts@0xProject/gitpkg-registry#0x-contract-artifacts-v3.7.1-9a16f5736", "@0x/contract-artifacts@^3.7.1":
version "3.7.1"
Expand Down