Skip to content

Commit a0b4715

Browse files
authored
Add Piku DAO treasury configuration with multi-chain support (#17253)
1 parent 064a9d8 commit a0b4715

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

projects/treasury/piku-dao.js

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
const { nullAddress, treasuryExports } = require("../helper/treasury");
2+
3+
const hotWallet = "0xb7f15d1122c0F91eE77C1172B9EFa4C061952E3C";
4+
const coldWallet = "0x16c4150e22c53eCE02bB70763625DD3d61f1E7E9";
5+
const arma_proxy_address = "0x18da71475c41721934f69c8a91a4e2178a1c32c8";
6+
const coldRewardWallet = "0xA056f4a4213e78890eA6CdAE7567CE9287c97726";
7+
const treasuryWallet = "0x32a605E91Ecc3ab972697E58712f6c9c37cabC1D";
8+
9+
10+
const multiChainOwners = [hotWallet, coldWallet, coldRewardWallet, treasuryWallet, arma_proxy_address];
11+
12+
13+
const PIKU = "0x2E4039E8E31475d65DC00293C366FDBfBBC02DC3";
14+
const SPIKU = "0x5Da17CA137f1128d4be7Ce574bc61f3ac4839Df8";
15+
const USP = "0x098697bA3Fee4eA76294C5d6A466a4e3b3E95FE6";
16+
17+
const BMMF_BASE = "0x50b95509e8fc9cda3860c2ef80308467ab6534cc";
18+
const SUSDAI_PLASMA = "0x0b2b2b2076d95dda7817e785989fe353fe955ef9";
19+
const AUSDT0_PLASMA = "0x5D72a9d9A9510Cd8cBdBA12aC62593A58930a948";
20+
21+
module.exports = {
22+
misrepresentedTokens: true,
23+
...treasuryExports({
24+
ethereum: {
25+
tokens: [nullAddress],
26+
owners: multiChainOwners,
27+
ownTokens: [PIKU, SPIKU, USP],
28+
},
29+
base: {
30+
tokens: [nullAddress, BMMF_BASE],
31+
owners: multiChainOwners,
32+
},
33+
arbitrum: {
34+
tokens: [nullAddress],
35+
owners: multiChainOwners,
36+
},
37+
plasma: {
38+
tokens: [nullAddress, SUSDAI_PLASMA, AUSDT0_PLASMA],
39+
owners: multiChainOwners,
40+
},
41+
}),
42+
};

0 commit comments

Comments
 (0)