Skip to content

Commit

Permalink
Merge pull request #13 from FastLane-Labs/update-polygon
Browse files Browse the repository at this point in the history
update: polygon deployments
  • Loading branch information
jj1980a authored Nov 13, 2024
2 parents 021dc95 + fed01f9 commit 2ad03b2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions configs/chain-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@

"137": {
"contracts": {
"atlas": "0x912AceADa1b9c9B378894D0610C5684167710FDD",
"atlasVerification": "0x2fBF38a38D753E4ce398000CCC552Efa50702e1e",
"sorter": "0xFac7bf300E7eb17A2eD0Be67b60f5FeDd2E28E90",
"simulator": "0x1244E4B8D93D2A72692Bf3600f7f5a494e24895a",
"atlas": "0xB363f4D32DdB0b43622eA07Ae9145726941272B4",
"atlasVerification": "0x621c6970fD9F124230feE35117d318069056819a",
"sorter": "0xf8Bd19064A77297A691a29d9a40dF76F32fc86ad",
"simulator": "0x82A3460920582968688FD887F21c5F3155A3BBd4",
"multicall3": "0xcA11bde05977b3631167028862bE2a173976CA11"
},
"eip712Domain": {
"name": "AtlasVerification",
"version": "1.0",
"chainId": 137,
"verifyingContract": "0x2fBF38a38D753E4ce398000CCC552Efa50702e1e"
"verifyingContract": "0x621c6970fD9F124230feE35117d318069056819a"
}
},

Expand Down
10 changes: 5 additions & 5 deletions golang/config/chain-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@

"137": {
"contracts": {
"atlas": "0x912AceADa1b9c9B378894D0610C5684167710FDD",
"atlasVerification": "0x2fBF38a38D753E4ce398000CCC552Efa50702e1e",
"sorter": "0xFac7bf300E7eb17A2eD0Be67b60f5FeDd2E28E90",
"simulator": "0x1244E4B8D93D2A72692Bf3600f7f5a494e24895a",
"atlas": "0xB363f4D32DdB0b43622eA07Ae9145726941272B4",
"atlasVerification": "0x621c6970fD9F124230feE35117d318069056819a",
"sorter": "0xf8Bd19064A77297A691a29d9a40dF76F32fc86ad",
"simulator": "0x82A3460920582968688FD887F21c5F3155A3BBd4",
"multicall3": "0xcA11bde05977b3631167028862bE2a173976CA11"
},
"eip712Domain": {
"name": "AtlasVerification",
"version": "1.0",
"chainId": 137,
"verifyingContract": "0x2fBF38a38D753E4ce398000CCC552Efa50702e1e"
"verifyingContract": "0x621c6970fD9F124230feE35117d318069056819a"
}
},

Expand Down
12 changes: 6 additions & 6 deletions typescript/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ describe('mergeChainConfigs', () => {
(global as any).chainConfig = {
'137': {
contracts: {
atlas: '0x912AceADa1b9c9B378894D0610C5684167710FDD',
atlasVerification: '0x2fBF38a38D753E4ce398000CCC552Efa50702e1e',
sorter: '0xFac7bf300E7eb17A2eD0Be67b60f5FeDd2E28E90',
simulator: '0x1244E4B8D93D2A72692Bf3600f7f5a494e24895a',
atlas: '0xB363f4D32DdB0b43622eA07Ae9145726941272B4',
atlasVerification: '0x621c6970fD9F124230feE35117d318069056819a',
sorter: '0xf8Bd19064A77297A691a29d9a40dF76F32fc86ad',
simulator: '0x82A3460920582968688FD887F21c5F3155A3BBd4',
multicall3: '0xcA11bde05977b3631167028862bE2a173976CA11',
},
eip712Domain: {
name: 'AtlasVerification',
version: '1.0',
chainId: 137,
verifyingContract: '0x2fBF38a38D753E4ce398000CCC552Efa50702e1e',
verifyingContract: '0x621c6970fD9F124230feE35117d318069056819a',
},
},
};
Expand All @@ -33,7 +33,7 @@ describe('mergeChainConfigs', () => {
},
});

expect(result['137'].contracts.atlas).toBe('0x912AceADa1b9c9B378894D0610C5684167710FDD');
expect(result['137'].contracts.atlas).toBe('0xB363f4D32DdB0b43622eA07Ae9145726941272B4');
expect(result['137'].contracts.atlasVerification).toBe('0x7000000000000000000000000000000000000000');
});

Expand Down

0 comments on commit 2ad03b2

Please sign in to comment.