Skip to content

Commit

Permalink
fix(uniswapx-sdk): Add back in relay order reactor addresses (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongeric authored Aug 7, 2024
1 parent e57e859 commit eab3f3a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions sdks/uniswapx-sdk/src/constants.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,33 @@ describe("REACTOR_ADDRESS_MAPPING", () => {
"11155111": Object {
"Dutch": "0xD6c073F2A3b676B8f9002b276B618e0d8bA84Fad",
"Dutch_V2": "0x0e22B6638161A89533940Db590E67A52474bEBcd",
"Relay": "0x0000000000A4e21E2597DCac987455c48b12edBF",
},
"12341234": Object {
"Dutch": "0xbD7F9D0239f81C94b728d827a87b9864972661eC",
"Dutch_V2": "0x0000000000000000000000000000000000000000",
"Relay": "0x0000000000A4e21E2597DCac987455c48b12edBF",
},
"137": Object {
"Dutch": "0x6000da47483062A0D734Ba3dc7576Ce6A0B645C4",
"Dutch_V2": "0x0000000000000000000000000000000000000000",
"Relay": "0x0000000000A4e21E2597DCac987455c48b12edBF",
},
"42161": Object {
"Dutch": "0x0000000000000000000000000000000000000000",
"Dutch_V2": "0x1bd1aAdc9E230626C44a139d7E70d842749351eb",
"Relay": "0x0000000000000000000000000000000000000000",
},
"5": Object {
"Dutch": "0x6000da47483062A0D734Ba3dc7576Ce6A0B645C4",
"Dutch_V2": "0x0000000000000000000000000000000000000000",
"Relay": "0x0000000000A4e21E2597DCac987455c48b12edBF",
},
"8453": Object {
"Dutch": "0x0000000000000000000000000000000000000000",
"Dutch_V2": "0x0000000000000000000000000000000000000000",
"Priority": "0x000000001Ec5656dcdB24D90DFa42742738De729",
"Relay": "0x0000000000000000000000000000000000000000",
},
}
`);
Expand Down
7 changes: 6 additions & 1 deletion sdks/uniswapx-sdk/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,29 +71,34 @@ export const REACTOR_ADDRESS_MAPPING: ReactorMapping = {
...constructSameAddressMap({
[OrderType.Dutch]: "0x6000da47483062A0D734Ba3dc7576Ce6A0B645C4",
[OrderType.Dutch_V2]: "0x0000000000000000000000000000000000000000",
[OrderType.Relay]: "0x0000000000A4e21E2597DCac987455c48b12edBF",
}),
//test contract is only on mainnet
1: {
[OrderType.Dutch]: "0x6000da47483062A0D734Ba3dc7576Ce6A0B645C4",
[OrderType.Dutch_V2]: "0x00000011F84B9aa48e5f8aA8B9897600006289Be",
[OrderType.Relay]: "0x0000000000A4e21E2597DCac987455c48b12edBF",
[OrderType.Priority]: "0x0000000000000000000000000000000000000000",
[OrderType.Relay]: "0x0000000000A4e21E2597DCac987455c48b12edBF",
},
12341234: {
[OrderType.Dutch]: "0xbD7F9D0239f81C94b728d827a87b9864972661eC",
[OrderType.Dutch_V2]: "0x0000000000000000000000000000000000000000",
[OrderType.Relay]: "0x0000000000A4e21E2597DCac987455c48b12edBF",
},
11155111: {
[OrderType.Dutch_V2]: "0x0e22B6638161A89533940Db590E67A52474bEBcd",
[OrderType.Dutch]: "0xD6c073F2A3b676B8f9002b276B618e0d8bA84Fad",
[OrderType.Relay]: "0x0000000000A4e21E2597DCac987455c48b12edBF",
},
42161: {
[OrderType.Dutch_V2]: "0x1bd1aAdc9E230626C44a139d7E70d842749351eb",
[OrderType.Dutch]: "0x0000000000000000000000000000000000000000",
[OrderType.Relay]: "0x0000000000000000000000000000000000000000",
},
8453: {
[OrderType.Dutch]: "0x0000000000000000000000000000000000000000",
[OrderType.Dutch_V2]: "0x0000000000000000000000000000000000000000",
[OrderType.Relay]: "0x0000000000000000000000000000000000000000",
[OrderType.Priority]: "0x000000001Ec5656dcdB24D90DFa42742738De729",
},
};
Expand Down

0 comments on commit eab3f3a

Please sign in to comment.