aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-12-19 17:36:54 +0800
committerFabio Berger <me@fabioberger.com>2017-12-19 17:36:54 +0800
commit684542d073367ac13021262e7e69edb607629c55 (patch)
tree61b347b520f3a02f7105385fafc6041866977f98 /packages
parentbab01abe27220b73ced3f54d311d0718e332ff8c (diff)
downloaddexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar
dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.gz
dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.bz2
dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.lz
dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.xz
dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.zst
dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.zip
Add airtable tasks to TODO's
Diffstat (limited to 'packages')
-rw-r--r--packages/website/ts/blockchain.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/website/ts/blockchain.ts b/packages/website/ts/blockchain.ts
index 7a0d546b4..0f80c47a5 100644
--- a/packages/website/ts/blockchain.ts
+++ b/packages/website/ts/blockchain.ts
@@ -160,6 +160,8 @@ export class Blockchain {
utils.assert(!_.isUndefined(this.zeroEx), 'ZeroEx must be instantiated.');
// HACK: temporarily whitelist the new WETH token address `as if` they were
// already in the tokenRegistry.
+ // TODO: Remove this hack once we've updated the TokenRegistries
+ // Airtable task: https://airtable.com/tblFe0Q9JuKJPYbTn/viwsOG2Y97qdIeCIO/recv3VGmIorFzHBVz
if (configs.shouldDeprecateOldWethToken &&
tokenAddress === configs.newWrappedEthers[this.networkId]) {
return true;
@@ -603,6 +605,7 @@ export class Blockchain {
// we deploy the new WETH page, everyone will re-fill their trackedTokens with the
// new canonical WETH.
// TODO: Remove this hack once we've updated the TokenRegistries
+ // Airtable task: https://airtable.com/tblFe0Q9JuKJPYbTn/viwsOG2Y97qdIeCIO/recv3VGmIorFzHBVz
let address = t.address;
if (configs.shouldDeprecateOldWethToken && t.symbol === 'WETH') {
const newEtherTokenAddressIfExists = configs.newWrappedEthers[this.networkId];