Skip to content

Commit 6932013

Browse files
PapparicoFinancejamesnevesg1nt0ki
authored
Papparico Finance adapter creation. (DefiLlama#11487)
Co-authored-by: Jamesson Neves <[email protected]> Co-authored-by: g1nt0ki <[email protected]>
1 parent 18eece7 commit 6932013

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

projects/papparico-finance/index.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
const { sumTokensExport } = require("../helper/unwrapLPs");
2+
3+
const PPFT_TOKEN_CONTRACT = "0x59BAfb7168972EcCA5e395F7dA88e71eCe47a260";
4+
const PPFT_MAIN_LP = "0xb036145476Ad16782eC05C7EC340D7e3cE6D09b7";
5+
6+
const STAKING_CONTRACT = "0x535503d5c23bCA9896383003A46A8AD6c9CB2fe2";
7+
const SINGLE_STAKING_CONTRACT = "0xFc8d5d6B280BF5E8d8DB12d0fF8a0f7d1A6ECf78";
8+
const VAULTS_CONTRACT = "0x828CC5D75594e4d0D072566cC07F64E863A0d11E";
9+
const LP_MINING_CONTRACT = "0x3E35810A663c7eE28a0A6f6A0984146CbB163c6c";
10+
11+
module.exports = {
12+
start: 13406569,
13+
cronos: {
14+
tvl: () => ({}),
15+
staking: sumTokensExport({
16+
owners: [STAKING_CONTRACT, SINGLE_STAKING_CONTRACT, VAULTS_CONTRACT,],
17+
token: PPFT_TOKEN_CONTRACT,
18+
}),
19+
pool2: sumTokensExport({
20+
tokensAndOwners: [[PPFT_MAIN_LP, LP_MINING_CONTRACT],],
21+
resolveLP: true,
22+
}),
23+
}
24+
};

0 commit comments

Comments
 (0)