Skip to content

Commit

Permalink
update deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKurt committed May 13, 2024
1 parent e410416 commit d9d2b81
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions packages/common/src/allo/backends/allo-v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,24 +65,31 @@ function getStrategyAddress(strategy: RoundCategory, chainId: ChainId): string {
strategyAddresses = {
[RoundCategory.QuadraticFunding]:
"0x029dFAf686DfA0efdace5132ba422e9279D50b5b",
[RoundCategory.Direct]: "0x0000000000000000000000000000000000000000",
[RoundCategory.Direct]: "0xdA62767Da1402398d81C8288b37DE1CC8C8fDcA0",
};
break;

case ChainId.LUKSO:
strategyAddresses = {
[RoundCategory.QuadraticFunding]:
"0x91b5eeE385D8e0cfd49FD94D4C7aE15e1F17e0A2",
[RoundCategory.Direct]: "0xF21E0915a0b7c541483962Cc7fB4705bBd4D5248",
};
break;

case ChainId.LUKSO_TESTNET:
strategyAddresses = {
[RoundCategory.QuadraticFunding]:
"0x91b5eeE385D8e0cfd49FD94D4C7aE15e1F17e0A2",
[RoundCategory.Direct]: "0x0000000000000000000000000000000000000000",
[RoundCategory.Direct]: "0xdA62767Da1402398d81C8288b37DE1CC8C8fDcA0",
};
break;

default:
strategyAddresses = {
[RoundCategory.QuadraticFunding]:
"0x787eC93Dd71a90563979417879F5a3298389227f",
[RoundCategory.Direct]: "0x06F6e8D66435a02bcB67d54B280FDdb0C823dD7B", // todo: only on sepolia and only for testing
[RoundCategory.Direct]: "0x79A5EEc2C87Cd2116195E71af7A38647f89C8Ffa",
};
break;
}
Expand Down

0 comments on commit d9d2b81

Please sign in to comment.