Commit cee5ae9b authored by Noah Zinsmeister's avatar Noah Zinsmeister

fix init code hash for factory deploy

parent 81c1c41f
...@@ -17,7 +17,7 @@ export const FACTORY_ADDRESS = { ...@@ -17,7 +17,7 @@ export const FACTORY_ADDRESS = {
[ChainId.KOVAN]: '' [ChainId.KOVAN]: ''
} }
export const INIT_CODE_HASH = '0xa447d0eea6a2235380af6f64c8be6e6c410241c4ade4dfaa99cebfde475ed036' export const INIT_CODE_HASH = '0xebe7ae2e909b82f0a14f5a09eb291778942ae66818008d407a7b67aa17be7052'
export enum TradeType { export enum TradeType {
EXACT_INPUT, EXACT_INPUT,
......
...@@ -14,6 +14,6 @@ describe('data', () => { ...@@ -14,6 +14,6 @@ describe('data', () => {
it('Exchange', async () => { it('Exchange', async () => {
const token = new Token(ChainId.RINKEBY, '0xc7AD46e0b8a400Bb3C915120d284AafbA8fc4735', 18) // DAI const token = new Token(ChainId.RINKEBY, '0xc7AD46e0b8a400Bb3C915120d284AafbA8fc4735', 18) // DAI
const exchange = await Exchange.fetchData(WETH[ChainId.RINKEBY], token) const exchange = await Exchange.fetchData(WETH[ChainId.RINKEBY], token)
expect(exchange.address).toEqual('0xCbDc281884F23dE2c829960b112F946329434678') expect(exchange.address).toEqual('0xC0568fA2FC63123B7352c506076DFa5623D62Db5')
}) })
}) })
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment