Skip to content

Commit

Permalink
feat: add gnosis addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
imbaniac committed Feb 12, 2024
1 parent 37ce580 commit d70e94d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
28 changes: 27 additions & 1 deletion networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,32 @@
"startBlock": 114432276
}
},
"gnosis": {
"ERC20PoolFactory": {
"address": "0x87578E357358163FCAb1711c62AcDB5BBFa1C9ef",
"startBlock": 32086484
},
"ERC721PoolFactory": {
"address": "0xc7Fc13Fa7B697fBE3bdC56D5b9A6586A83254126",
"startBlock": 32086512
},
"PositionManager": {
"address": "0x173b32A07b41296909d7972421d63BAbA5160B37",
"startBlock": 32086544
},
"GrantFund": {
"address": "0x0000000000000000000000000000000000000000",
"startBlock": 32086512
},
"AjnaToken": {
"address": "0x7fE440bC581DA8fF0173a588D3f7603814393763",
"startBlock": 31958770
},
"BurnWrappedAjna": {
"address": "0x0000000000000000000000000000000000000000",
"startBlock": 32086512
}
},
"goerli": {
"ERC20PoolFactory": {
"address": "0xDB61f8aD0B3ed0c5522b8FE71b80023fe9188e9e",
Expand Down Expand Up @@ -181,4 +207,4 @@
"startBlock": 0
}
}
}
}
3 changes: 3 additions & 0 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ poolInfoUtilsAddressTable.set('arbitrum-one', Address.fromString('0x8a7F5aFb7E3c
poolInfoUtilsAddressTable.set('base', Address.fromString('0x97fa9b0909C238D170C1ab3B5c728A3a45BBEcBa'))
poolInfoUtilsAddressTable.set('matic', Address.fromString('0x519021054846cd3D9883359B593B5ED3058Fbe9f'))
poolInfoUtilsAddressTable.set('optimism', Address.fromString('0xdE6C8171b5b971F71C405631f4e0568ed8491aaC'))
poolInfoUtilsAddressTable.set('gnosis', Address.fromString('0x2baB4c287cF33a6eC373CFE152FdbA299B653F7D'))
poolInfoUtilsAddressTable.set('goerli', Address.fromString('0xdE8D83e069F552fbf3EE5bF04E8C4fa53a097ee5'))
poolInfoUtilsAddressTable.set('ganache', Address.fromString('0x6c5c7fD98415168ada1930d44447790959097482'))
export const poolInfoUtilsMulticallAddressTable = new TypedMap<string, Address>()
Expand All @@ -42,6 +43,7 @@ poolInfoUtilsMulticallAddressTable.set('arbitrum-one', Address.fromString('0xCca
poolInfoUtilsMulticallAddressTable.set('base', Address.fromString('0x249BCE105719Ae4183204371697c2743800C225d'))
poolInfoUtilsMulticallAddressTable.set('matic', Address.fromString('0xe6F4d9711121e5304b30aC2Aae57E3b085ad3c4d'))
poolInfoUtilsMulticallAddressTable.set('optimism', Address.fromString('0x33e5c2b41e915acFC268a4eaACC567f612f96601'))
poolInfoUtilsMulticallAddressTable.set('gnosis', Address.fromString('0x6A91429425Fb992A9cf300aD215e4469d0D1A75A'))
poolInfoUtilsMulticallAddressTable.set('goerli', Address.fromString('0x63feF8659ECdC4F909ddFB55a8B701957115B906'))
poolInfoUtilsMulticallAddressTable.set('ganache', Address.fromString('0x6548dF23A854f72335902e58a1e59B50bb3f11F1'))
export const positionManagerAddressTable = new TypedMap<string, Address>()
Expand All @@ -50,6 +52,7 @@ positionManagerAddressTable.set('arbitrum-one', Address.fromString('0x9A0BE97153
positionManagerAddressTable.set('base', Address.fromString('0x59710a4149A27585f1841b5783ac704a08274e64'))
positionManagerAddressTable.set('matic', Address.fromString('0xb8DA113516bfb986B7b8738a76C136D1c16c5609'))
positionManagerAddressTable.set('optimism', Address.fromString('0x72bF565f2BdA43294C6cC2BfE17C7FaE5258F819'))
positionManagerAddressTable.set('gnosis', Address.fromString('0x173b32A07b41296909d7972421d63BAbA5160B37'))
positionManagerAddressTable.set('goerli', Address.fromString('0x7b6C6917ACA28BA790837d41e5aA4A49c9Ad4570'))
positionManagerAddressTable.set('ganache', Address.fromString('0xdF7403003a16c49ebA5883bB5890d474794cea5a'))

Expand Down

0 comments on commit d70e94d

Please sign in to comment.