We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 095531b commit eca800cCopy full SHA for eca800c
projects/oceanpoint/index.js
@@ -0,0 +1,20 @@
1
+const { staking } = require('../helper/staking');
2
+
3
+const CONTRACTS = [
4
+ "0x13299657e662894b933Bb3Ee73F7f8dA94b55451",
5
+ "0x1802f66868d0649687a7a6bc9b8a4292e148daec",
6
+ "0x6f1e92fb8a685aaa0710bad194d7b1aa839f7f8a",
7
+ "0x57ba886442d248C2E7a3a5826F2b183A22eCc73e"
8
+];
9
10
+const ERC20_TOKENS = [
11
+ "0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a"
12
13
14
+module.exports = {
15
+ ethereum: {
16
+ tvl: () => ({}),
17
+ pool2: staking(CONTRACTS, '0x0E85fB1be698E777F2185350b4A52E5eE8DF51A6'),
18
+ staking: staking(CONTRACTS, ERC20_TOKENS),
19
+ }
20
+};
0 commit comments