Skip to content

Commit

Permalink
updated goerli and base addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
EdNoepel committed Dec 20, 2023
1 parent da9e59a commit c6fadf7
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 9 deletions.
38 changes: 32 additions & 6 deletions networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,44 @@
"startBlock": 46312499
}
},
"base": {
"ERC20PoolFactory": {
"address": "0xdc01502485c02496a929c12762cE99Fd755c6a25",
"startBlock": 8156311
},
"ERC721PoolFactory": {
"address": "0x513cc6E8De2FC3c7532d867fc6c287ABb56df230",
"startBlock": 8156311
},
"PositionManager": {
"address": "0x72Ce601AecE3C46eF2b7C85712E05d7c0f29A364",
"startBlock": 8156311
},
"GrantFund": {
"address": "0x0000000000000000000000000000000000000000",
"startBlock": 8156311
},
"AjnaToken": {
"address": "0xf0f326af3b1Ed943ab95C29470730CC8Cf66ae47",
"startBlock": 3055193
},
"BurnWrappedAjna": {
"address": "0x0000000000000000000000000000000000000000",
"startBlock": 3055193
}
},
"goerli": {
"ERC20PoolFactory": {
"address": "0x14F2474fB5ea9DF82059053c4F85A8C803Ab10C9",
"startBlock": 9888337
"address": "0xA2d6694F24c84e428B97bF9fCD8E3e3dba3023D0",
"startBlock": 10243942
},
"ERC721PoolFactory": {
"address": "0xb0d1c875B240EE9f6C2c3284a31b10f1EC6De7d2",
"startBlock": 9888337
"address": "0x0CC0Ba1bC6f45513422D6BF301Bd1Cb8c78B5861",
"startBlock": 10243942
},
"PositionManager": {
"address": "0xC4114D90F51960854ab574297Cf7CC131d445F29",
"startBlock": 9888337
"address": "0x20BE7129B4126dC39aadBfA4C3360b52313a660D",
"startBlock": 10243942
},
"GrantFund": {
"address": "0x17C7eb98aD29c8C07C2842C4B64342142C405aF4",
Expand Down
9 changes: 6 additions & 3 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,17 @@ export const MAX_BUCKET_INDEX = 4156;
export const poolInfoUtilsAddressTable = new TypedMap<string, Address>()
poolInfoUtilsAddressTable.set('mainnet', Address.fromString('0x154FFf344f426F99E328bacf70f4Eb632210ecdc'))
poolInfoUtilsAddressTable.set('matic', Address.fromString('0xA9Ada58DD3c820b30D3bf5B490226F2ef92107bA'))
poolInfoUtilsAddressTable.set('goerli', Address.fromString('0x08F304cBeA7FAF48C93C27ae1305E220913a571d'))
poolInfoUtilsAddressTable.set('base', Address.fromString('0xC086acc9Bf89D8a0E2209e2870fC020D8f3323a8'))
poolInfoUtilsAddressTable.set('goerli', Address.fromString('0x3c5cf15122903C7CabcAA49FcfC090D3A311C038'))
poolInfoUtilsAddressTable.set('mumbai', Address.fromString('0x39250241CC84Dadb1cDFE3A1a717631e2aA603eB'))
poolInfoUtilsAddressTable.set('ganache', Address.fromString('0xab56A77bDFe82b36875e92CE717fE533C1709A9D'))
export const poolInfoUtilsMulticallAddressTable = new TypedMap<string, Address>()
poolInfoUtilsMulticallAddressTable.set('goerli', Address.fromString('0xc0374Fd9d3824C6ad9866df4043469CE6fe45d8D'))
poolInfoUtilsMulticallAddressTable.set('base', Address.fromString('0x83bC7AE84B469Fa4c86a91BA8A82D253c0858e13'))
poolInfoUtilsMulticallAddressTable.set('goerli', Address.fromString('0xE1a73054BA68f31F029bC6D452DF786D900b3Ed0'))
poolInfoUtilsMulticallAddressTable.set('ganache', Address.fromString('0x1d00b2f5861457F8503a481774903E36872Ea17d'))
export const positionManagerAddressTable = new TypedMap<string, Address>()
positionManagerAddressTable.set('goerli', Address.fromString('0xC4114D90F51960854ab574297Cf7CC131d445F29'))
positionManagerAddressTable.set('base', Address.fromString('0x72Ce601AecE3C46eF2b7C85712E05d7c0f29A364'))
positionManagerAddressTable.set('goerli', Address.fromString('0x20BE7129B4126dC39aadBfA4C3360b52313a660D'))
positionManagerAddressTable.set('ganache', Address.fromString('0x502dD41556B128C23F8B715dBEEBB73D1F1Feb67'))

// GrantFund constants
Expand Down

0 comments on commit c6fadf7

Please sign in to comment.