@defisaver/sdk 0.2.4 → 0.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/sdk",
3
- "version": "0.2.4",
3
+ "version": "0.2.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,60 @@
1
+ const Action = require('../../Action');
2
+ const { getAddr } = require('../../addresses');
3
+ const { getConvexPool } = require('../../utils/convex-utils');
4
+ const { requireAddress } = require('../../utils/general');
5
+
6
+ /**
7
+ * ConvexClaimAction - Claims convex rewards
8
+ */
9
+ class ConvexClaimAction extends Action {
10
+ /**
11
+ * @param {address} from
12
+ * @param {address} to
13
+ * @param {address} curveLp
14
+ */
15
+ constructor(
16
+ from,
17
+ to,
18
+ curveLp,
19
+ ) {
20
+ requireAddress(to);
21
+ const { crvRewards } = getConvexPool(curveLp);
22
+ super(
23
+ 'ConvexClaim',
24
+ getAddr('ConvexClaim'),
25
+ [
26
+ 'address',
27
+ 'address',
28
+ 'address',
29
+ ],
30
+ [
31
+ from,
32
+ to,
33
+ crvRewards,
34
+ ],
35
+ ).curveLp = curveLp;
36
+
37
+ this.mappableArgs = [
38
+ this.args[0],
39
+ this.args[1],
40
+ this.args[2],
41
+ ];
42
+ }
43
+
44
+ async getAssetsToApprove() {
45
+ const pool = getConvexPool(this.curveLp);
46
+ const owner = this.args[0];
47
+
48
+ return [
49
+ getAddr('CrvToken'),
50
+ getAddr('CvxToken'),
51
+ ].concat(
52
+ pool.extraRewards.map((e) => e.token),
53
+ ).reduce((acc, e) => {
54
+ if (!acc.includes(e.toLowerCase())) acc.push(e.toLowerCase());
55
+ return acc;
56
+ }, []).map((e) => Object({asset: e, owner}));
57
+ }
58
+ }
59
+
60
+ module.exports = ConvexClaimAction;
@@ -0,0 +1,67 @@
1
+ const Action = require('../../Action');
2
+ const { getAddr } = require('../../addresses');
3
+ const { DepositOption, getConvexPool } = require('../../utils/convex-utils');
4
+ const { requireAddress } = require('../../utils/general');
5
+ /**
6
+ * ConvexDepositAction - Deposits (wraps) Curve LP into convex, stakes wrapped LP, or does both
7
+ */
8
+ class ConvexDepositAction extends Action {
9
+ /**
10
+ * @param {address} from
11
+ * @param {address} to
12
+ * @param {address} curveLp
13
+ * @param {uint256} amount
14
+ * @param {uint8} option
15
+ */
16
+ constructor(
17
+ from,
18
+ to,
19
+ curveLp,
20
+ amount,
21
+ option,
22
+ ) {
23
+ requireAddress(to);
24
+ const { pid } = getConvexPool(curveLp);
25
+ super(
26
+ 'ConvexDeposit',
27
+ getAddr('ConvexDeposit'),
28
+ [
29
+ 'address',
30
+ 'address',
31
+ 'uint256',
32
+ 'uint256',
33
+ 'uint8',
34
+ ],
35
+ [
36
+ from,
37
+ to,
38
+ pid,
39
+ amount,
40
+ option,
41
+ ],
42
+ ).curveLp = curveLp;
43
+
44
+ this.mappableArgs = [
45
+ this.args[0],
46
+ this.args[1],
47
+ this.args[2],
48
+ this.args[3],
49
+ this.args[4],
50
+ ];
51
+ }
52
+
53
+ async getAssetsToApprove() {
54
+ const pool = getConvexPool(this.curveLp);
55
+ const assetToPull = {
56
+ [DepositOption.WRAP]: pool.lpToken,
57
+ [DepositOption.STAKE]: pool.token,
58
+ [DepositOption.WRAP_AND_STAKE]: pool.lpToken,
59
+ }
60
+
61
+ return [{
62
+ asset: assetToPull[this.args[4]], owner: this.args[0],
63
+ }];
64
+ }
65
+ }
66
+
67
+ module.exports = ConvexDepositAction;
@@ -0,0 +1,65 @@
1
+ const Action = require('../../Action');
2
+ const { getAddr } = require('../../addresses');
3
+ const { getConvexPool, WithdrawOption } = require('../../utils/convex-utils');
4
+ const { requireAddress } = require('../../utils/general');
5
+ /**
6
+ * ConvexWithdrawAction - Withdraws (unwraps) Curve LP from convex, unstakes wrapped LP, or does both
7
+ */
8
+ class ConvexWithdrawAction extends Action {
9
+ /**
10
+ * @param {address} from
11
+ * @param {address} to
12
+ * @param {address} curveLp
13
+ * @param {uint256} amount
14
+ * @param {uint8} option
15
+ */
16
+ constructor(
17
+ from,
18
+ to,
19
+ curveLp,
20
+ amount,
21
+ option,
22
+ ) {
23
+ requireAddress(to);
24
+ const { pid } = getConvexPool(curveLp);
25
+ super(
26
+ 'ConvexWithdraw',
27
+ getAddr('ConvexWithdraw'),
28
+ [
29
+ 'address',
30
+ 'address',
31
+ 'uint256',
32
+ 'uint256',
33
+ 'uint8',
34
+ ],
35
+ [
36
+ from,
37
+ to,
38
+ pid,
39
+ amount,
40
+ option,
41
+ ],
42
+ ).curveLp = curveLp;
43
+
44
+ this.mappableArgs = [
45
+ this.args[0],
46
+ this.args[1],
47
+ this.args[2],
48
+ this.args[3],
49
+ this.args[4],
50
+ ];
51
+ }
52
+
53
+ async getAssetsToApprove() {
54
+ const pool = getConvexPool(this.curveLp);
55
+ const owner = this.args[0];
56
+
57
+ if (this.args[4] === WithdrawOption.UNWRAP) {
58
+ return [{asset: pool.token, owner}];
59
+ }
60
+
61
+ return [];
62
+ }
63
+ }
64
+
65
+ module.exports = ConvexWithdrawAction;
@@ -0,0 +1,9 @@
1
+ const ConvexDepositAction = require('./ConvexDepositAction');
2
+ const ConvexWithdrawAction = require('./ConvexWithdrawAction');
3
+ const ConvexClaimAction = require('./ConvexClaimAction');
4
+
5
+ module.exports = {
6
+ ConvexDepositAction,
7
+ ConvexWithdrawAction,
8
+ ConvexClaimAction,
9
+ }
@@ -17,6 +17,7 @@ const curve = require('./curve');
17
17
  const guni = require('./guni');
18
18
  const mstable = require('./mstable');
19
19
  const rari = require('./rari');
20
+ const convex = require('./convex');
20
21
 
21
22
  module.exports = {
22
23
  maker,
@@ -38,4 +39,5 @@ module.exports = {
38
39
  guni,
39
40
  mstable,
40
41
  rari,
42
+ convex,
41
43
  };
package/src/addresses.js CHANGED
@@ -131,6 +131,11 @@ const actionAddresses = {
131
131
 
132
132
  'CurveStethPoolDeposit': '0x5Ae5870dC0C780e9eb68bE7a223eCd7F3BDad12B',
133
133
  'CurveStethPoolWithdraw': '0x4089731d843Ce52699Fe64F68556aBbD95D70D00',
134
+
135
+ // Convex
136
+ 'ConvexDeposit': '0x3Ecc4F1FD5aA09D2E13Ec9ebFdF102063d66F458',
137
+ 'ConvexWithdraw': '0x2B2c235F9e27A121947c34A39d447bD4C585aA15',
138
+ 'ConvexClaim': '0xA012afAA97B48894b8FCB2ECC007045Be7a8E8B6',
134
139
  };
135
140
 
136
141
  const otherAddresses = {
@@ -144,6 +149,7 @@ const otherAddresses = {
144
149
  RaiWethUniV2LPToken : '0x8aE720a71622e824F576b4A8C03031066548A3B1',
145
150
  BalancerToken : '0xba100000625a3754423978a60c9317c58a424e3D',
146
151
  CrvToken: '0xD533a949740bb3306d119CC777fa900bA034cd52',
152
+ CvxToken: '0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B',
147
153
  DAI: '0x6b175474e89094c44da98b954eedeac495271d0f',
148
154
  }
149
155
 
@@ -0,0 +1,20 @@
1
+ const poolInfo = require('./convexPoolInfo');
2
+
3
+ const DepositOption = {
4
+ WRAP: 0,
5
+ STAKE: 1,
6
+ WRAP_AND_STAKE: 2,
7
+ }
8
+
9
+ const WithdrawOption = {
10
+ UNWRAP: 0,
11
+ UNSTAKE: 1,
12
+ UNSTAKE_AND_UNWRAP: 2,
13
+ }
14
+
15
+ module.exports = {
16
+ DepositOption,
17
+ WithdrawOption,
18
+ poolInfo,
19
+ getConvexPool: (curveLpToken) => poolInfo.find((e) => e.lpToken === curveLpToken),
20
+ }
@@ -0,0 +1,1039 @@
1
+ [
2
+ {
3
+ "pid": 0,
4
+ "lpToken": "0x845838DF265Dcd2c412A1Dc9e959c7d08537f8a2",
5
+ "token": "0x32512Bee3848bfcBb7bEAf647aa697a100f3b706",
6
+ "gauge": "0x7ca5b0a2910B33e9759DC7dDB0413949071D7575",
7
+ "crvRewards": "0xf34DFF761145FF0B05e917811d488B441F33a968",
8
+ "stash": "0x0000000000000000000000000000000000000000",
9
+ "shutdown": false,
10
+ "extraRewards": []
11
+ },
12
+ {
13
+ "pid": 1,
14
+ "lpToken": "0x9fC689CCaDa600B6DF723D9E47D84d76664a1F23",
15
+ "token": "0xA1c3492b71938E144ad8bE4c2fB6810b01A43dD8",
16
+ "gauge": "0xBC89cd85491d81C6AD2954E6d0362Ee29fCa8F53",
17
+ "crvRewards": "0x8B55351ea358e5Eda371575B031ee24F462d503e",
18
+ "stash": "0x0000000000000000000000000000000000000000",
19
+ "shutdown": false,
20
+ "extraRewards": []
21
+ },
22
+ {
23
+ "pid": 2,
24
+ "lpToken": "0xdF5e0e81Dff6FAF3A7e52BA697820c5e32D806A8",
25
+ "token": "0x0928F6753880A03628eB0be07b77992c8af37874",
26
+ "gauge": "0xFA712EE4788C042e2B7BB55E6cb8ec569C4530c1",
27
+ "crvRewards": "0xd802a8351A76ED5eCd89A7502Ca615F2225A585d",
28
+ "stash": "0x0000000000000000000000000000000000000000",
29
+ "shutdown": false,
30
+ "extraRewards": []
31
+ },
32
+ {
33
+ "pid": 3,
34
+ "lpToken": "0x3B3Ac5386837Dc563660FB6a0937DFAa5924333B",
35
+ "token": "0x59bB786F222d3f0f00B0dA31B799Fff80D552940",
36
+ "gauge": "0x69Fb7c45726cfE2baDeE8317005d3F94bE838840",
37
+ "crvRewards": "0x602c4cD53a715D8a7cf648540FAb0d3a2d546560",
38
+ "stash": "0x0000000000000000000000000000000000000000",
39
+ "shutdown": false,
40
+ "extraRewards": []
41
+ },
42
+ {
43
+ "pid": 4,
44
+ "lpToken": "0xC25a3A3b969415c80451098fa907EC722572917F",
45
+ "token": "0x11D200ef1409cecA8D6d23e6496550f707772F11",
46
+ "gauge": "0xA90996896660DEcC6E997655E065b23788857849",
47
+ "crvRewards": "0x22eE18aca7F3Ee920D01F25dA85840D12d98E8Ca",
48
+ "stash": "0xD2f2B9504Ef708b9f3Bc53f1525353bAaE1B17e4",
49
+ "shutdown": false,
50
+ "extraRewards": [
51
+ {
52
+ "pool": "0x81fce3e10d12da6c7266a1a169c4c96813435263",
53
+ "token": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f"
54
+ }
55
+ ]
56
+ },
57
+ {
58
+ "pid": 5,
59
+ "lpToken": "0xD905e2eaeBe188fc92179b6350807D8bd91Db0D8",
60
+ "token": "0x2eA94b0d3349A284488ACF2934E494b2f58ef647",
61
+ "gauge": "0x64E3C23bfc40722d3B649844055F1D51c1ac041d",
62
+ "crvRewards": "0xe3DaafC8C14147d5B4A7a56F0BfdED240158e51e",
63
+ "stash": "0x0000000000000000000000000000000000000000",
64
+ "shutdown": false,
65
+ "extraRewards": []
66
+ },
67
+ {
68
+ "pid": 6,
69
+ "lpToken": "0x49849C98ae39Fff122806C06791Fa73784FB3675",
70
+ "token": "0x74b79021Ea6De3f0D1731fb8BdfF6eE7DF10b8Ae",
71
+ "gauge": "0xB1F2cdeC61db658F091671F5f199635aEF202CAC",
72
+ "crvRewards": "0x8E299C62EeD737a5d5a53539dF37b5356a27b07D",
73
+ "stash": "0x0000000000000000000000000000000000000000",
74
+ "shutdown": false,
75
+ "extraRewards": []
76
+ },
77
+ {
78
+ "pid": 7,
79
+ "lpToken": "0x075b1bb99792c9E1041bA13afEf80C91a1e70fB3",
80
+ "token": "0xbA723E335eC2939D52a2efcA2a8199cb4CB93cC3",
81
+ "gauge": "0x705350c4BcD35c9441419DdD5d2f097d7a55410F",
82
+ "crvRewards": "0xd727A5A6D1C7b31Ff9Db4Db4d24045B7dF0CFF93",
83
+ "stash": "0x7B3EE538398829c96E4B187216c7aB2946A620C4",
84
+ "shutdown": false,
85
+ "extraRewards": [
86
+ {
87
+ "pool": "0x7c41906df8395af4387fa79b85c845069f88eec3",
88
+ "token": "0x330416c863f2acce7af9c9314b422d24c672534a"
89
+ }
90
+ ]
91
+ },
92
+ {
93
+ "pid": 8,
94
+ "lpToken": "0xb19059ebb43466C323583928285a49f558E572Fd",
95
+ "token": "0x33c00bF8CFDf42929E0884d230A55F963221f8f3",
96
+ "gauge": "0x4c18E409Dc8619bFb6a1cB56D114C3f592E0aE79",
97
+ "crvRewards": "0x618BD6cBA676a46958c63700C04318c84a7b7c0A",
98
+ "stash": "0x0000000000000000000000000000000000000000",
99
+ "shutdown": false,
100
+ "extraRewards": []
101
+ },
102
+ {
103
+ "pid": 9,
104
+ "lpToken": "0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490",
105
+ "token": "0x30D9410ED1D5DA1F6C8391af5338C93ab8d4035C",
106
+ "gauge": "0xbFcF63294aD7105dEa65aA58F8AE5BE2D9d0952A",
107
+ "crvRewards": "0x689440f2Ff927E1f24c72F1087E1FAF471eCe1c8",
108
+ "stash": "0x0000000000000000000000000000000000000000",
109
+ "shutdown": false,
110
+ "extraRewards": []
111
+ },
112
+ {
113
+ "pid": 10,
114
+ "lpToken": "0xD2967f45c4f384DEEa880F807Be904762a3DeA07",
115
+ "token": "0x15c2471ef46Fa721990730cfa526BcFb45574576",
116
+ "gauge": "0xC5cfaDA84E902aD92DD40194f0883ad49639b023",
117
+ "crvRewards": "0x7A7bBf95C44b144979360C3300B54A7D34b44985",
118
+ "stash": "0x0000000000000000000000000000000000000000",
119
+ "shutdown": false,
120
+ "extraRewards": []
121
+ },
122
+ {
123
+ "pid": 11,
124
+ "lpToken": "0x5B5CFE992AdAC0C9D48E05854B2d91C73a003858",
125
+ "token": "0xe4de776C0eA0974bfA39B8cbB9491091C8cDc1ff",
126
+ "gauge": "0x2db0E83599a91b508Ac268a6197b8B14F5e72840",
127
+ "crvRewards": "0x353e489311b21355461353fEC2d02B73EF0eDe7f",
128
+ "stash": "0x0000000000000000000000000000000000000000",
129
+ "shutdown": false,
130
+ "extraRewards": []
131
+ },
132
+ {
133
+ "pid": 12,
134
+ "lpToken": "0x97E2768e8E73511cA874545DC5Ff8067eB19B787",
135
+ "token": "0x47941F99F4371CC26637CaEdBbd8Ba5F4bfE5149",
136
+ "gauge": "0xC2b1DF84112619D190193E48148000e3990Bf627",
137
+ "crvRewards": "0xa50e9071aCaD20b31cd2bbe4dAa816882De82BBe",
138
+ "stash": "0x0000000000000000000000000000000000000000",
139
+ "shutdown": false,
140
+ "extraRewards": []
141
+ },
142
+ {
143
+ "pid": 13,
144
+ "lpToken": "0x4f3E8F405CF5aFC05D68142F3783bDfE13811522",
145
+ "token": "0x3689f325E88c2363274E5F3d44b6DaB8f9e1f524",
146
+ "gauge": "0xF98450B5602fa59CC66e1379DFfB6FDDc724CfC4",
147
+ "crvRewards": "0x4a2631d090e8b40bBDe245e687BF09e5e534A239",
148
+ "stash": "0x0000000000000000000000000000000000000000",
149
+ "shutdown": false,
150
+ "extraRewards": []
151
+ },
152
+ {
153
+ "pid": 14,
154
+ "lpToken": "0x1AEf73d49Dedc4b1778d0706583995958Dc862e6",
155
+ "token": "0xd34d466233c5195193dF712936049729140DBBd7",
156
+ "gauge": "0x5f626c30EC1215f4EdCc9982265E8b1F411D1352",
157
+ "crvRewards": "0xDBFa6187C79f4fE4Cda20609E75760C5AaE88e52",
158
+ "stash": "0x2eEa402ff31c580630b8545A33EDc00881E6949c",
159
+ "shutdown": false,
160
+ "extraRewards": [
161
+ {
162
+ "pool": "0x93a5c724c4992fcbda6b96f06fa15eb8b5c485b7",
163
+ "token": "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2"
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "pid": 15,
169
+ "lpToken": "0xC2Ee6b0334C261ED60C72f6054450b61B8f18E35",
170
+ "token": "0x8b876C2C02B1f2Ac6Ec207B7f2f06034A4316A87",
171
+ "gauge": "0x4dC4A289a8E33600D8bD4cf5F6313E43a37adec7",
172
+ "crvRewards": "0xedfCCF611D7c40F43e77a1340cE2C29EEEC27205",
173
+ "stash": "0x3a076e8F088bFa7a43e1209B2E460927071e15F2",
174
+ "shutdown": false,
175
+ "extraRewards": [
176
+ {
177
+ "pool": "0x94c259dc4c6df248b0b5d23c055cb7574a587d67",
178
+ "token": "0x8762db106b2c2a0bccb3a80d1ed41273552616e8"
179
+ }
180
+ ],
181
+ "noTest": true
182
+ },
183
+ {
184
+ "pid": 16,
185
+ "lpToken": "0x64eda51d3Ad40D56b9dFc5554E06F94e1Dd786Fd",
186
+ "token": "0x36CED690A1516861f26755b978EE62c1157CFFF9",
187
+ "gauge": "0x6828bcF74279eE32f2723eC536c22c51Eed383C6",
188
+ "crvRewards": "0x081A6672f07B615B402e7558a867C97FA080Ce35",
189
+ "stash": "0x21FdcdeBf375e67219c1Bfa266BCfDaA36a2b4Fe",
190
+ "shutdown": false,
191
+ "extraRewards": [
192
+ {
193
+ "pool": "0x2aa030dcb729cf94bc096bd00d377aa719a09371",
194
+ "token": "0x85eee30c52b0b379b046fb0f85f4f3dc3009afec"
195
+ }
196
+ ]
197
+ },
198
+ {
199
+ "pid": 17,
200
+ "lpToken": "0x3a664Ab939FD8482048609f652f9a0B0677337B9",
201
+ "token": "0x06f4fFa5C3636AaA5C30B3DB97bfd1cd9Ac24A19",
202
+ "gauge": "0xAEA6c312f4b3E04D752946d329693F7293bC2e6D",
203
+ "crvRewards": "0x1992b82A8cCFC8f89785129D6403b13925d6226E",
204
+ "stash": "0x07815651B8F1c5bE84797840543F304b7F1aeC2a",
205
+ "shutdown": false,
206
+ "extraRewards": [
207
+ {
208
+ "pool": "0x666f8eee6fd6839853993977cc86a7a51425673c",
209
+ "token": "0x20c36f062a31865bed8a5b1e512d9a1a20aa333a"
210
+ }
211
+ ]
212
+ },
213
+ {
214
+ "pid": 18,
215
+ "lpToken": "0xDE5331AC4B3630f94853Ff322B66407e0D6331E8",
216
+ "token": "0x21Cce64289407081744F087950b9DB32906470fC",
217
+ "gauge": "0xd7d147c6Bb90A718c3De8C0568F9B560C79fa416",
218
+ "crvRewards": "0x2d3C90AEB11D1393CA839Afc9587515B1325D77A",
219
+ "stash": "0x930CfB64130a90d42eD37d4616792C9dEB791faf",
220
+ "shutdown": false,
221
+ "extraRewards": [
222
+ {
223
+ "pool": "0xaf138b29205c2246b069ed8f0b213b205fbc14e0",
224
+ "token": "0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed"
225
+ }
226
+ ]
227
+ },
228
+ {
229
+ "pid": 19,
230
+ "lpToken": "0x410e3E86ef427e30B9235497143881f717d93c2A",
231
+ "token": "0x2E1f902b9067b5fDd7AF29ef05D4fF6212588388",
232
+ "gauge": "0xdFc7AdFa664b08767b735dE28f9E84cd30492aeE",
233
+ "crvRewards": "0x61D741045cCAA5a215cF4E5e55f20E1199B4B843",
234
+ "stash": "0xd852eFBEd0f49a065194ca92c9F305DE6DdCbF35",
235
+ "shutdown": false,
236
+ "extraRewards": []
237
+ },
238
+ {
239
+ "pid": 20,
240
+ "lpToken": "0x2fE94ea3d5d4a175184081439753DE15AeF9d614",
241
+ "token": "0xc1C030139eEc070Ed8FD092CC8C273C638A18bBe",
242
+ "gauge": "0x11137B10C210b579405c21A07489e28F3c040AB1",
243
+ "crvRewards": "0xeeeCE77e0bc5e59c77fc408789A9A172A504bD2f",
244
+ "stash": "0x9a669fb0191D977e588b20CdA3C52EDbC6c9926c",
245
+ "shutdown": false,
246
+ "extraRewards": [
247
+ {
248
+ "pool": "0xae97d3766924526084da88ba9b2bd7af989bf6fc",
249
+ "token": "0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9"
250
+ },
251
+ {
252
+ "pool": "0x22a07a6bda1cecbe2a671203e2114d8a170e5529",
253
+ "token": "0xbc19712feb3a26080ebf6f2f7849b417fdd792ca"
254
+ }
255
+ ]
256
+ },
257
+ {
258
+ "pid": 21,
259
+ "lpToken": "0x94e131324b6054c0D789b190b2dAC504e4361b53",
260
+ "token": "0x67c4f788FEB82FAb27E3007daa3d7b90959D5b89",
261
+ "gauge": "0x3B7020743Bc2A4ca9EaF9D0722d42E20d6935855",
262
+ "crvRewards": "0xd4Be1911F8a0df178d6e7fF5cE39919c273E2B7B",
263
+ "stash": "0x6249fD91fE9FF597399c1B192D5A25Cd22Eba6dd",
264
+ "shutdown": false,
265
+ "extraRewards": []
266
+ },
267
+ {
268
+ "pid": 22,
269
+ "lpToken": "0x194eBd173F6cDacE046C53eACcE9B953F28411d1",
270
+ "token": "0xd7E2b9494c529b42Dea53EF6a237C16502E6A927",
271
+ "gauge": "0x90Bb609649E0451E5aD952683D64BD2d1f245840",
272
+ "crvRewards": "0xcB8F69E0064d8cdD29cbEb45A14cf771D904BcD3",
273
+ "stash": "0x007Cc4b4E9d9D088a9ae0e5261995D69e93B8E4C",
274
+ "shutdown": false,
275
+ "extraRewards": []
276
+ },
277
+ {
278
+ "pid": 23,
279
+ "lpToken": "0xA3D87FffcE63B53E0d54fAa1cc983B7eB0b74A9c",
280
+ "token": "0xAF1d4C576bF55f6aE493AEebAcC3a227675e5B98",
281
+ "gauge": "0x3C0FFFF15EA30C35d7A85B85c0782D6c94e1d238",
282
+ "crvRewards": "0x192469CadE297D6B21F418cFA8c366b63FFC9f9b",
283
+ "stash": "0x1e6f5B8b4CAc5806D182B33A35d0fFF5F4004e86",
284
+ "shutdown": false,
285
+ "extraRewards": []
286
+ },
287
+ {
288
+ "pid": 24,
289
+ "lpToken": "0xFd2a8fA60Abd58Efe3EeE34dd494cD491dC14900",
290
+ "token": "0x23F224C37C3A69A058d86a54D3f561295A93d542",
291
+ "gauge": "0xd662908ADA2Ea1916B3318327A97eB18aD588b5d",
292
+ "crvRewards": "0xE82c1eB4BC6F92f85BF7EB6421ab3b882C3F5a7B",
293
+ "stash": "0x5D4CF00939aa5F7C2cEb10c88615E9bcb0dd67fa",
294
+ "shutdown": false,
295
+ "extraRewards": [
296
+ {
297
+ "pool": "0x00469d388b06127221d6310843a43d079eb2bb18",
298
+ "token": "0x4da27a545c0c5b758a6ba100e3a049001de870f5"
299
+ }
300
+ ]
301
+ },
302
+ {
303
+ "pid": 25,
304
+ "lpToken": "0x06325440D014e39736583c165C2963BA99fAf14E",
305
+ "token": "0x9518c9063eB0262D791f38d8d6Eb0aca33c63ed0",
306
+ "gauge": "0x182B723a58739a9c974cFDB385ceaDb237453c28",
307
+ "crvRewards": "0x0A760466E1B4621579a82a39CB56Dda2F4E70f03",
308
+ "stash": "0x9710fD4e5CA524f1049EbeD8936c07C81b5EAB9f",
309
+ "shutdown": false,
310
+ "extraRewards": [
311
+ {
312
+ "pool": "0x008aea5036b819b4feaed10b2190fbb3954981e8",
313
+ "token": "0x5a98fcbea516cf06857215779fd812ca3bef1b32"
314
+ }
315
+ ]
316
+ },
317
+ {
318
+ "pid": 26,
319
+ "lpToken": "0x02d341CcB60fAaf662bC0554d13778015d1b285C",
320
+ "token": "0x09CCD0892b696AB21436e51588a7a7f8b649733d",
321
+ "gauge": "0x462253b8F74B72304c145DB0e4Eebd326B22ca39",
322
+ "crvRewards": "0xF86AE6790654b70727dbE58BF1a863B270317fD0",
323
+ "stash": "0xd2D46004b981FdE1e4D39d0C24E1Be1e93689DD9",
324
+ "shutdown": false,
325
+ "extraRewards": [
326
+ {
327
+ "pool": "0x20165075174b51a2f9efbf7d6d8f3c72bbc63064",
328
+ "token": "0x4da27a545c0c5b758a6ba100e3a049001de870f5"
329
+ }
330
+ ]
331
+ },
332
+ {
333
+ "pid": 27,
334
+ "lpToken": "0xaA17A236F2bAdc98DDc0Cf999AbB47D47Fc0A6Cf",
335
+ "token": "0x7E96955b66c89B931BBDAf187740Cc0fF2602F21",
336
+ "gauge": "0x6d10ed2cF043E6fcf51A0e7b4C2Af3Fa06695707",
337
+ "crvRewards": "0x8798b81b0261934aa850C8de8622472bfdc143F4",
338
+ "stash": "0x423C444589CE5dB1E6F99820A5f95b3a57976598",
339
+ "shutdown": false,
340
+ "extraRewards": [
341
+ {
342
+ "pool": "0x177252ac74f1d77513971aa85af7009c43ecdee2",
343
+ "token": "0xe0ad1806fd3e7edf6ff52fdb822432e847411033"
344
+ },
345
+ {
346
+ "pool": "0xc095cec98a9f8ad6d2baa282a8e6be246f98bd25",
347
+ "token": "0x8290333cef9e6d528dd5618fb97a76f268f3edd4"
348
+ }
349
+ ]
350
+ },
351
+ {
352
+ "pid": 28,
353
+ "lpToken": "0x7Eb40E450b9655f4B3cC4259BCC731c63ff55ae6",
354
+ "token": "0x7a5dC1FA2e1B10194bD2e2e9F1A224971A681444",
355
+ "gauge": "0x055be5DDB7A925BfEF3417FC157f53CA77cA7222",
356
+ "crvRewards": "0x24DfFd1949F888F91A0c8341Fc98a3F280a782a8",
357
+ "stash": "0xBE25313c53360780e03233Cc70a4409367EC15aE",
358
+ "shutdown": false,
359
+ "extraRewards": [
360
+ {
361
+ "pool": "0x5f91615268be6b4add646b2560785b8f17dccbb4",
362
+ "token": "0x92e187a03b6cd19cb6af293ba17f2745fd2357d5"
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "pid": 29,
368
+ "lpToken": "0x5282a4eF67D9C33135340fB3289cc1711c13638C",
369
+ "token": "0x912EC00eaEbf3820a9B0AC7a5E15F381A1C91f22",
370
+ "gauge": "0xF5194c3325202F456c95c1Cf0cA36f8475C1949F",
371
+ "crvRewards": "0x3E03fFF82F77073cc590b656D42FceB12E4910A8",
372
+ "stash": "0x3aEaAB3eF0b5a484d8A2380215eA0A64d3101A6D",
373
+ "shutdown": false,
374
+ "extraRewards": []
375
+ },
376
+ {
377
+ "pid": 30,
378
+ "lpToken": "0xcee60cFa923170e4f8204AE08B4fA6A3F5656F3a",
379
+ "token": "0xD37969740d78C94C648d74671B8BE31eF43c30aB",
380
+ "gauge": "0xFD4D8a17df4C27c1dD245d153ccf4499e806C87D",
381
+ "crvRewards": "0x9700152175dc22E7d1f3245fE3c1D2cfa3602548",
382
+ "stash": "0x63201dc22e52985153E038086c448252d44Bed40",
383
+ "shutdown": false,
384
+ "extraRewards": []
385
+ },
386
+ {
387
+ "pid": 31,
388
+ "lpToken": "0xEcd5e75AFb02eFa118AF914515D6521aaBd189F1",
389
+ "token": "0x0A2eA49EB5F9e23058deffD509D13DDd553c2A19",
390
+ "gauge": "0x359FD5d6417aE3D8D6497d9B2e7A890798262BA4",
391
+ "crvRewards": "0x308b48F037AAa75406426dACFACA864ebd88eDbA",
392
+ "stash": "0x12566645C209C1518BD25BdD3B0fd0bAe0910344",
393
+ "shutdown": false,
394
+ "extraRewards": []
395
+ },
396
+ {
397
+ "pid": 32,
398
+ "lpToken": "0xd632f22692FaC7611d2AA1C0D552930D43CAEd3B",
399
+ "token": "0xbE0F6478E0E4894CFb14f32855603A083A57c7dA",
400
+ "gauge": "0x72E158d38dbd50A483501c24f792bDAAA3e7D55C",
401
+ "crvRewards": "0xB900EF131301B307dB5eFcbed9DBb50A3e209B2e",
402
+ "stash": "0x10a63847e6cdD2b07e0a22D1f30eB037a72eB790",
403
+ "shutdown": false,
404
+ "extraRewards": [
405
+ {
406
+ "pool": "0xcdec6714eb482f28f4889a0c122868450cdbf0b0",
407
+ "token": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0"
408
+ }
409
+ ]
410
+ },
411
+ {
412
+ "pid": 33,
413
+ "lpToken": "0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA",
414
+ "token": "0xFB9B2f06FDb404Fd3E2278E9A9edc8f252F273d0",
415
+ "gauge": "0x9B8519A9a00100720CCdC8a120fBeD319cA47a14",
416
+ "crvRewards": "0x2ad92A7aE036a038ff02B96c88de868ddf3f8190",
417
+ "stash": "0x06D972728A9d05CA6F27EDc01e20b50A60b1Deed",
418
+ "shutdown": false,
419
+ "extraRewards": [
420
+ {
421
+ "pool": "0x55d59b791f06dc519b176791c4e037e8cf2f6361",
422
+ "token": "0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d"
423
+ }
424
+ ]
425
+ },
426
+ {
427
+ "pid": 34,
428
+ "lpToken": "0x4807862AA8b2bF68830e4C8dc86D0e9A998e085a",
429
+ "token": "0x02D784f98A312aF3e2771297Feff1Da8273e4F29",
430
+ "gauge": "0xd4B22fEdcA85E684919955061fDf353b9d38389b",
431
+ "crvRewards": "0xbD223812d360C9587921292D0644D18aDb6a2ad0",
432
+ "stash": "0xBE3ED241c90F39cC50450C4937523FCC8d3e9bbc",
433
+ "shutdown": false,
434
+ "extraRewards": []
435
+ },
436
+ {
437
+ "pid": 35,
438
+ "lpToken": "0x53a901d48795C58f485cBB38df08FA96a24669D5",
439
+ "token": "0x7ADd8D0E923CB692DF6bC65d96d510f0E2fC37af",
440
+ "gauge": "0x824F13f1a2F29cFEEa81154b46C0fc820677A637",
441
+ "crvRewards": "0x61dB6c2321f784c8fAb8d5eF80f58F27C831dCc8",
442
+ "stash": "0x644C8d1eD4b6aA68738a93C5c13c7fC19e126587",
443
+ "shutdown": false,
444
+ "extraRewards": [
445
+ {
446
+ "pool": "0x681a790debe586a64eea055bf0983cd6629d8359",
447
+ "token": "0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d"
448
+ }
449
+ ]
450
+ },
451
+ {
452
+ "pid": 36,
453
+ "lpToken": "0x43b4FdFD4Ff969587185cDB6f0BD875c5Fc83f8c",
454
+ "token": "0xCA3D9F45FfA69ED454E66539298709cb2dB8cA61",
455
+ "gauge": "0x9582C4ADACB3BCE56Fea3e590F05c3ca2fb9C477",
456
+ "crvRewards": "0x02E2151D4F351881017ABdF2DD2b51150841d5B3",
457
+ "stash": "0x521e6EEfDa35f7228f8f83462552bDB41D64d86B",
458
+ "shutdown": false,
459
+ "extraRewards": [
460
+ {
461
+ "pool": "0xd731495bb78a4250bc094686788f3ff890dee0f4",
462
+ "token": "0xdbdb4d16eda451d0503b854cf79d55697f90c8df"
463
+ }
464
+ ]
465
+ },
466
+ {
467
+ "pid": 37,
468
+ "lpToken": "0xcA3d75aC011BF5aD07a98d02f18225F9bD9A6BDF",
469
+ "token": "0x18684099414dcEF486F4FA5b4e44e6eA53C8c554",
470
+ "gauge": "0x6955a55416a06839309018A8B0cB72c4DDC11f15",
471
+ "crvRewards": "0x5Edced358e6C0B435D53CC30fbE6f5f0833F404F",
472
+ "stash": "0x35e86E54eCb0227fe33382c35E12856cF227E9ce",
473
+ "shutdown": false,
474
+ "extraRewards": []
475
+ },
476
+ {
477
+ "pid": 38,
478
+ "lpToken": "0xc4AD29ba4B3c580e6D59105FFf484999997675Ff",
479
+ "token": "0x903C9974aAA431A765e60bC07aF45f0A1B3b61fb",
480
+ "gauge": "0xDeFd8FdD20e0f34115C7018CCfb655796F6B2168",
481
+ "crvRewards": "0x9D5C5E364D81DaB193b72db9E9BE9D8ee669B652",
482
+ "stash": "0xDb1A0Bb8C14Bc7B4eDA5ca95B4A6C6013a7b359D",
483
+ "shutdown": false,
484
+ "extraRewards": []
485
+ },
486
+ {
487
+ "pid": 39,
488
+ "lpToken": "0xFD5dB7463a3aB53fD211b4af195c5BCCC1A03890",
489
+ "token": "0x2b2175AC371Ec2900AC39fb87452340F65CC9895",
490
+ "gauge": "0xe8060Ad8971450E624d5289A10017dD30F5dA85F",
491
+ "crvRewards": "0xD814BFC091111E1417a669672144aFFAA081c3CE",
492
+ "stash": "0x353460EACDAaEC993eCdA986440F4c343BBf6c05",
493
+ "shutdown": false,
494
+ "extraRewards": []
495
+ },
496
+ {
497
+ "pid": 40,
498
+ "lpToken": "0x5a6A4D54456819380173272A5E8E9B9904BdF41B",
499
+ "token": "0xabB54222c2b77158CC975a2b715a3d703c256F05",
500
+ "gauge": "0xd8b712d29381748dB89c36BCa0138d7c75866ddF",
501
+ "crvRewards": "0xFd5AbF66b003881b88567EB9Ed9c651F14Dc4771",
502
+ "stash": "0xEd3D937A12fEed5298827B3adf05caaFfb0efDda",
503
+ "shutdown": false,
504
+ "extraRewards": [
505
+ {
506
+ "pool": "0x69a92f1656cd2e193797546cfe2eaf32eaccf6f7",
507
+ "token": "0x090185f2135308bad17527004364ebcc2d37e5f6"
508
+ }
509
+ ]
510
+ },
511
+ {
512
+ "pid": 41,
513
+ "lpToken": "0x9D0464996170c6B9e75eED71c68B99dDEDf279e8",
514
+ "token": "0x8FDF7cabfEc73d5FfD1447867834b4cf39B745B7",
515
+ "gauge": "0x903dA6213a5A12B61c821598154EfAd98C3B20E4",
516
+ "crvRewards": "0x0392321e86F42C2F94FBb0c6853052487db521F0",
517
+ "stash": "0xF025A9FbcaA41E03e7a443716fe2182d13cf80a4",
518
+ "shutdown": false,
519
+ "extraRewards": [
520
+ {
521
+ "pool": "0xbe4dea8e5d1e53fad661610e47501f858f25852d",
522
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
523
+ }
524
+ ]
525
+ },
526
+ {
527
+ "pid": 42,
528
+ "lpToken": "0x8818a9bb44Fbf33502bE7c15c500d0C783B73067",
529
+ "token": "0xF527FF4d2f8D84ec51D31C6F533B8cC78AFf6918",
530
+ "gauge": "0xeFF437A56A22D7dD86C1202A308536ED8C7da7c1",
531
+ "crvRewards": "0xbA8fE590498ed24D330Bb925E69913b1Ac35a81E",
532
+ "stash": "0xc87E93D6138c08a99b581f6dE4424c1e4b71A03F",
533
+ "shutdown": false,
534
+ "extraRewards": [
535
+ {
536
+ "pool": "0x771bc5c888d1b318d0c5b177e4f996d3d5fd3d18",
537
+ "token": "0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"
538
+ },
539
+ {
540
+ "pool": "0x8a3f52c2eb02de2d8356a8286c96909352c62b10",
541
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
542
+ }
543
+ ]
544
+ },
545
+ {
546
+ "pid": 43,
547
+ "lpToken": "0xD6Ac1CB9019137a896343Da59dDE6d097F710538",
548
+ "token": "0xe6b9b86a593E6c33fa3F0887753cdC39EA49B246",
549
+ "gauge": "0x63d9f3aB7d0c528797A12a0684E50C397E9e79dC",
550
+ "crvRewards": "0x51a16DA36c79E28dD3C8c0c19214D8aF413984Aa",
551
+ "stash": "0xA335f705e0e33e986Bae79244F2Cd73899932290",
552
+ "shutdown": false,
553
+ "extraRewards": [
554
+ {
555
+ "pool": "0xe689db5d753abc411acb8a3fef226c08acdae13f",
556
+ "token": "0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"
557
+ },
558
+ {
559
+ "pool": "0x00a4f5d12e3faa909c53cdcc90968f735633e988",
560
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
561
+ }
562
+ ]
563
+ },
564
+ {
565
+ "pid": 44,
566
+ "lpToken": "0x3F1B0278A9ee595635B61817630cC19DE792f506",
567
+ "token": "0xBec1Fa170974F0B38Eb76D8ca87053AbD5cedffF",
568
+ "gauge": "0x05ca5c01629a8E5845f12ea3A03fF7331932233A",
569
+ "crvRewards": "0xb1Fae59F23CaCe4949Ae734E63E42168aDb0CcB3",
570
+ "stash": "0xCc96f06fa34d934a90089793b27d36801842A599",
571
+ "shutdown": false,
572
+ "extraRewards": [
573
+ {
574
+ "pool": "0x91ad51f0897552ce77f76b44e9a86b4ad2b28c25",
575
+ "token": "0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"
576
+ },
577
+ {
578
+ "pool": "0x040a6ae6314e190974ee4839f3c2fbf849ef54eb",
579
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
580
+ }
581
+ ]
582
+ },
583
+ {
584
+ "pid": 45,
585
+ "lpToken": "0x19b080FE1ffA0553469D20Ca36219F17Fcf03859",
586
+ "token": "0x864510e93c38C771adC1B67308cE0b7c4AA1AA9e",
587
+ "gauge": "0x99fb76F75501039089AAC8f20f487bf84E51d76F",
588
+ "crvRewards": "0xCd0559ADb6fAa2fc83aB21Cf4497c3b9b45bB29f",
589
+ "stash": "0x65d3834Ca2F62AB3f484cD50bB8a2Ba784cc69AA",
590
+ "shutdown": false,
591
+ "extraRewards": [
592
+ {
593
+ "pool": "0x21034ccc4f8d07d0cf8998fdd4c45e426540dec1",
594
+ "token": "0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"
595
+ },
596
+ {
597
+ "pool": "0xba5ef047ce02cc0096db3bc8ed84aad14291f8a0",
598
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
599
+ }
600
+ ]
601
+ },
602
+ {
603
+ "pid": 46,
604
+ "lpToken": "0x9c2C8910F113181783c249d8F6Aa41b51Cde0f0c",
605
+ "token": "0xcd555A686486160D815C89D92EE69A88E356f34C",
606
+ "gauge": "0x2fA53e8fa5fAdb81f4332C8EcE39Fe62eA2f919E",
607
+ "crvRewards": "0xa5A5905efc55B05059eE247d5CaC6DD6791Cfc33",
608
+ "stash": "0x44789Fa0e02ed06E3cA4A1405CBef7EA2F11D282",
609
+ "shutdown": false,
610
+ "extraRewards": [
611
+ {
612
+ "pool": "0x9d9ebcc8e7b4ef061c0f7bab532d1710b874f789",
613
+ "token": "0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"
614
+ },
615
+ {
616
+ "pool": "0x1c86460640457466e2ec86916b4a91ed86ce0d1e",
617
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
618
+ }
619
+ ]
620
+ },
621
+ {
622
+ "pid": 47,
623
+ "lpToken": "0x8461A004b50d321CB22B7d034969cE6803911899",
624
+ "token": "0xAA4e7d24230B1F3AF324C7574ABD5D28525807cA",
625
+ "gauge": "0x1750a3a3d80A3F5333BBe9c4695B0fAd41061ab1",
626
+ "crvRewards": "0x8F18C0AF0d7d511E8Bdc6B3c64926B04EDfE4892",
627
+ "stash": "0xb75b7297f29d5f6211f112D24b1edF9Dc77eD834",
628
+ "shutdown": false,
629
+ "extraRewards": [
630
+ {
631
+ "pool": "0xe3a64e08eebf38b19a3d9fec51d8cd5a8898dd5e",
632
+ "token": "0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"
633
+ },
634
+ {
635
+ "pool": "0x93649cd43635bc5f7ad8fa2fa27cb9ae765ec58a",
636
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
637
+ }
638
+ ]
639
+ },
640
+ {
641
+ "pid": 48,
642
+ "lpToken": "0xB15fFb543211b558D40160811e5DcBcd7d5aaac9",
643
+ "token": "0x281C17920DaB8B2Cb3ce631E2D53c8ccE94262B4",
644
+ "gauge": "0xB15fFb543211b558D40160811e5DcBcd7d5aaac9",
645
+ "crvRewards": "0xc3628b8FAaDe10aCeAe88c9b982cE0AAc9bBaaD3",
646
+ "stash": "0x01140351069af98416cC08b16424b9E765436531",
647
+ "shutdown": false,
648
+ "extraRewards": [],
649
+ "noTest": true
650
+ },
651
+ {
652
+ "pid": 49,
653
+ "lpToken": "0xC4C319E2D4d66CcA4464C0c2B32c9Bd23ebe784e",
654
+ "token": "0x0BF4C896100801cecFF4ad1e742E5227D67EcD7b",
655
+ "gauge": "0x12dCD9E8D1577b5E4F066d8e7D404404Ef045342",
656
+ "crvRewards": "0x48Bc302d8295FeA1f8c3e7F57D4dDC9981FEE410",
657
+ "stash": "0xfFA249074F7846Ee072e2068A1DEC44eDD802491",
658
+ "shutdown": false,
659
+ "extraRewards": [
660
+ {
661
+ "pool": "0xcec9a6efff1daf52af12beebf87f81bda7b95c0b",
662
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
663
+ }
664
+ ]
665
+ },
666
+ {
667
+ "pid": 50,
668
+ "lpToken": "0x3Fb78e61784C9c637D560eDE23Ad57CA1294c14a",
669
+ "token": "0x3c5208849fa77Aaa98483527f20303cAF25a1Ad8",
670
+ "gauge": "0xD9277b0D007464eFF133622eC0d42081c93Cef02",
671
+ "crvRewards": "0x7CDA2a83D29d7Fc2ccb8F7716b5c1c34781aeb12",
672
+ "stash": "0xb24Ea588066fBEB9610141d4b779d5D9F80A1180",
673
+ "shutdown": false,
674
+ "extraRewards": []
675
+ },
676
+ {
677
+ "pid": 51,
678
+ "lpToken": "0x5B3b5DF2BF2B6543f78e053bD91C4Bdd820929f1",
679
+ "token": "0x23e3AAAA5034165cF194F19692b41d801BEB5304",
680
+ "gauge": "0x9AF13a7B1f1Bbf1A2B05c6fBF23ac23A9E573b4E",
681
+ "crvRewards": "0xA689C00F3fd87dD3871C79C73343cd9F7957377E",
682
+ "stash": "0x3f2A3f6ab577B562a193C008686fb81b5eEe6586",
683
+ "shutdown": false,
684
+ "extraRewards": [
685
+ {
686
+ "pool": "0xb9e2e39c9c804a01f1fcb4e86f765774d511d535",
687
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
688
+ }
689
+ ]
690
+ },
691
+ {
692
+ "pid": 52,
693
+ "lpToken": "0x55A8a39bc9694714E2874c1ce77aa1E599461E18",
694
+ "token": "0x766A8D4DE01D3eD575CdEf0587Eaf615eCB46726",
695
+ "gauge": "0xB518f5e3242393d4eC792BD3f44946A3b98d0E48",
696
+ "crvRewards": "0xC62DE533ea77D46f3172516aB6b1000dAf577E89",
697
+ "stash": "0xa69e5023d5Dc71ec5Bf602A5AC80cb0C5078423E",
698
+ "shutdown": false,
699
+ "extraRewards": [
700
+ {
701
+ "pool": "0x27801399d60594bfede955d54c3e85b2f00179c5",
702
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
703
+ }
704
+ ]
705
+ },
706
+ {
707
+ "pid": 53,
708
+ "lpToken": "0xFbdCA68601f835b27790D98bbb8eC7f05FDEaA9B",
709
+ "token": "0xb43ed35B5A3a9544BBEd8039c67AB04AD428deEa",
710
+ "gauge": "0x346C7BB1A7a6A30c8e81c14e90FC2f0FBddc54d8",
711
+ "crvRewards": "0x4F2b8a15d0Dd58c1eB60bd53e966872828519Cee",
712
+ "stash": "0x4fd82224bEa0653215A5d6cAec59689Deb018c46",
713
+ "shutdown": false,
714
+ "extraRewards": [
715
+ {
716
+ "pool": "0xaaf75a94394f6d06e01cce62e2545ceffbfa1e2d",
717
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
718
+ }
719
+ ]
720
+ },
721
+ {
722
+ "pid": 54,
723
+ "lpToken": "0x3D229E1B4faab62F621eF2F6A610961f7BD7b23B",
724
+ "token": "0x18F320B124A80ee2FA491e1438CdA771c3d8c84b",
725
+ "gauge": "0x65CA7Dc5CB661fC58De57B1E1aF404649a27AD35",
726
+ "crvRewards": "0xb0c1B7b83Baae51284B8BbBa02Ec37742440199d",
727
+ "stash": "0x6Ffb6C270D2E9AeEd7654eaEe8A39310e2bB508e",
728
+ "shutdown": false,
729
+ "extraRewards": []
730
+ },
731
+ {
732
+ "pid": 55,
733
+ "lpToken": "0x3b6831c0077a1e44ED0a21841C3bC4dC11bCE833",
734
+ "token": "0x410ACa1a116cCc718e9A0BDd8080655a52f1FAC4",
735
+ "gauge": "0x4Fd86Ce7Ecea88F7E0aA78DC12625996Fb3a04bC",
736
+ "crvRewards": "0xD2B756Af4E345A8657C0656C148aDCD3000C97A4",
737
+ "stash": "0x03d1e553667F0cf0A4775069DAA5ed8F125308e8",
738
+ "shutdown": false,
739
+ "extraRewards": []
740
+ },
741
+ {
742
+ "pid": 56,
743
+ "lpToken": "0x87650D7bbfC3A9F10587d7778206671719d9910D",
744
+ "token": "0xd1daFC25bf672a52eF9c092258389dC2AD078309",
745
+ "gauge": "0x25f0cE4E2F8dbA112D9b115710AC297F816087CD",
746
+ "crvRewards": "0x7D536a737C13561e0D2Decf1152a653B4e615158",
747
+ "stash": "0x899996778C4e0cae5680d76262E44a2a7a5852A1",
748
+ "shutdown": false,
749
+ "extraRewards": [
750
+ {
751
+ "pool": "0x08ede581d9b9ae55fa7decc4e4331d191bbbf9db",
752
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
753
+ },
754
+ {
755
+ "pool": "0x8a05801c1512f6018e450b0f69e9ca7b985fcea3",
756
+ "token": "0x8207c1ffc5b6804f6024322ccf34f29c3541ae26"
757
+ }
758
+ ]
759
+ },
760
+ {
761
+ "pid": 57,
762
+ "lpToken": "0xc270b3B858c335B6BA5D5b10e2Da8a09976005ad",
763
+ "token": "0x918696AB70bF4F9a22497fC73903F3498a885980",
764
+ "gauge": "0xC95bdf13A08A547E4dD9f29B00aB7fF08C5d093d",
765
+ "crvRewards": "0x500E169c15961DE8798Edb52e0f88a8662d30EC5",
766
+ "stash": "0x1aE471f8C3338e826a5f6f47Cdf33b504Da7cD83",
767
+ "shutdown": false,
768
+ "extraRewards": []
769
+ },
770
+ {
771
+ "pid": 58,
772
+ "lpToken": "0xBaaa1F5DbA42C3389bDbc2c9D2dE134F5cD0Dc89",
773
+ "token": "0x88c82d9767CC8AF564Da81dDD10741fa9D875682",
774
+ "gauge": "0x16C2beE6f55dAB7F494dBa643fF52ef2D47FBA36",
775
+ "crvRewards": "0x329cb014b562d5d42927cfF0dEdF4c13ab0442EF",
776
+ "stash": "0x755758DcAa6e8072B541863983ADA9c7BDA7c420",
777
+ "shutdown": false,
778
+ "extraRewards": [
779
+ {
780
+ "pool": "0x880c2c5c4ea8cef892a90e3f714eb60144c08c30",
781
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
782
+ }
783
+ ]
784
+ },
785
+ {
786
+ "pid": 59,
787
+ "lpToken": "0xCEAF7747579696A2F0bb206a14210e3c9e6fB269",
788
+ "token": "0x2d2006135e682984a8a2eB74F5C87c2251cC71E9",
789
+ "gauge": "0xb0f5d00e5916c8b8981e99191A1458704B587b2b",
790
+ "crvRewards": "0x7e2b9B5244bcFa5108A76D5E7b507CFD5581AD4A",
791
+ "stash": "0x77Aa721Ba9C1423c5DBce6E0804887eEbD99cd00",
792
+ "shutdown": false,
793
+ "extraRewards": [
794
+ {
795
+ "pool": "0x28a68d9c58086daeb32d5c9297366cc91e50215d",
796
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
797
+ }
798
+ ]
799
+ },
800
+ {
801
+ "pid": 60,
802
+ "lpToken": "0xb9446c4Ef5EBE66268dA6700D26f96273DE3d571",
803
+ "token": "0xC98786A97d667Fe67AAe694BD7949813A73f1BF0",
804
+ "gauge": "0x1E212e054d74ed136256fc5a5DDdB4867c6E003F",
805
+ "crvRewards": "0x4a9b7eDD67f58654a2c33B587f98c5709AC7d482",
806
+ "stash": "0x54aD657aEe30c0f954944f639852d50960689Fa4",
807
+ "shutdown": false,
808
+ "extraRewards": [
809
+ {
810
+ "pool": "0x74835a39fd0e72e142d5e83d514e3ef6e7642220",
811
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
812
+ },
813
+ {
814
+ "pool": "0xb83eaada3757432f7a894944c3ac154fbdbd8b46",
815
+ "token": "0x31429d1856ad1377a8a0079410b297e1a9e214c2"
816
+ }
817
+ ]
818
+ },
819
+ {
820
+ "pid": 61,
821
+ "lpToken": "0xEd4064f376cB8d68F770FB1Ff088a3d0F3FF5c4d",
822
+ "token": "0x0Fb8dcdD95e4C48D3dD0eFA4086512f6F8FD4565",
823
+ "gauge": "0x1cEBdB0856dd985fAe9b8fEa2262469360B8a3a6",
824
+ "crvRewards": "0x085A2054c51eA5c91dbF7f90d65e728c0f2A270f",
825
+ "stash": "0x285972e5799cF224c4C6e81E9e47d4ae9EA7CBD3",
826
+ "shutdown": false,
827
+ "extraRewards": [
828
+ {
829
+ "pool": "0xe1ecbb4181378e2346eac90eb5606c01aa08f052",
830
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
831
+ }
832
+ ]
833
+ },
834
+ {
835
+ "pid": 62,
836
+ "lpToken": "0xAA5A67c256e27A5d80712c51971408db3370927D",
837
+ "token": "0xb3E8f3D7Ec208a032178880955f6c877479d1FDd",
838
+ "gauge": "0x8Fa728F393588E8D8dD1ca397E9a710E53fA553a",
839
+ "crvRewards": "0x835f69e58087E5B6bffEf182fe2bf959Fe253c3c",
840
+ "stash": "0xE7c811697ac3dd92cb100882dAc5Bd4183Bab747",
841
+ "shutdown": false,
842
+ "extraRewards": []
843
+ },
844
+ {
845
+ "pid": 63,
846
+ "lpToken": "0x6BA5b4e438FA0aAf7C1bD179285aF65d13bD3D90",
847
+ "token": "0x2937Ef019db60C826Fe6141EB300847f85E66956",
848
+ "gauge": "0x66ec719045bBD62db5eBB11184c18237D3Cc2E62",
849
+ "crvRewards": "0x29B91c6CEC4F43aFdb6f6d71FAf1C03d6b712f55",
850
+ "stash": "0xAEA94fC182b7Fe73E25C0C7954FE1d5f5173C0B9",
851
+ "shutdown": false,
852
+ "extraRewards": []
853
+ },
854
+ {
855
+ "pid": 64,
856
+ "lpToken": "0x3A283D9c08E8b55966afb64C515f5143cf907611",
857
+ "token": "0x0bC857f97c0554d1d0D602b56F2EEcE682016fBA",
858
+ "gauge": "0x7E1444BA99dcdFfE8fBdb42C02F0005D14f13BE1",
859
+ "crvRewards": "0xb1Fb0BA0676A1fFA83882c7F4805408bA232C1fA",
860
+ "stash": "0x679df29F380F1BEc31657cd6a5638aec4AEA3300",
861
+ "shutdown": false,
862
+ "extraRewards": [
863
+ {
864
+ "pool": "0x834b9147fd23bf131644abc6e557daf99c5cda15",
865
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
866
+ }
867
+ ]
868
+ },
869
+ {
870
+ "pid": 65,
871
+ "lpToken": "0x8484673cA7BfF40F82B041916881aeA15ee84834",
872
+ "token": "0x7B00e822F9E05882F9e088655e738F656C99C53A",
873
+ "gauge": "0x1B3E14157ED33F60668f2103bCd5Db39a1573E5B",
874
+ "crvRewards": "0x6cb1933E49C48AE8ec12d39aD7D85695b247deDB",
875
+ "stash": "0x2B7559683B0cC4dbF06CEd4c3AC1B589f7F5a53B",
876
+ "shutdown": false,
877
+ "extraRewards": []
878
+ },
879
+ {
880
+ "pid": 66,
881
+ "lpToken": "0x8282BD15dcA2EA2bDf24163E8f2781B30C43A2ef",
882
+ "token": "0xe87f447ef9B76905A25ab8160c7EF66864f4984A",
883
+ "gauge": "0x08380a4999Be1a958E2abbA07968d703C7A3027C",
884
+ "crvRewards": "0xb2f0bB6352417c1Bf017862aC165E67623611aF3",
885
+ "stash": "0x8bf218F98e1f433D083A6313FB49b2e69Cb89148",
886
+ "shutdown": false,
887
+ "extraRewards": []
888
+ },
889
+ {
890
+ "pid": 67,
891
+ "lpToken": "0xCb08717451aaE9EF950a2524E33B6DCaBA60147B",
892
+ "token": "0x1766EDBa8CD066e3eB1912D2b8c7E2c59A3D7Ece",
893
+ "gauge": "0x6070fBD4E608ee5391189E7205d70cc4A274c017",
894
+ "crvRewards": "0x3E91E7c822AC8b4b7905d108c3faCF22A3ee5d2c",
895
+ "stash": "0xf9c837b180744F1C2855D3008740ADf1f305dfe5",
896
+ "shutdown": false,
897
+ "extraRewards": []
898
+ },
899
+ {
900
+ "pid": 68,
901
+ "lpToken": "0x29059568bB40344487d62f7450E78b8E6C74e0e5",
902
+ "token": "0x73b78A30A1D249D88Ad6CCb80B1e0b357Fb4b5Ea",
903
+ "gauge": "0x05255C5BD33672b9FEA4129C13274D1E6193312d",
904
+ "crvRewards": "0x3207bDc327aB67f182B82948fd3DF757F8771324",
905
+ "stash": "0x24C93C04E1ed12cF15E7f69611d59e3145150ADE",
906
+ "shutdown": false,
907
+ "extraRewards": []
908
+ },
909
+ {
910
+ "pid": 69,
911
+ "lpToken": "0x90244F43D548a4f8dFecfAD91a193465B1fad6F7",
912
+ "token": "0x7E72dDA16B916c986972B1c9F3fbfAe67D96D733",
913
+ "gauge": "0x009aCD89535DAbC270C93F9b39D3232105Fef453",
914
+ "crvRewards": "0xAA0e8Ef60BaBda02Ef11c89a061D82b1D61a462C",
915
+ "stash": "0xAC86e1b070b8364D49fA34CDc3e2fA6e98674873",
916
+ "shutdown": false,
917
+ "extraRewards": []
918
+ },
919
+ {
920
+ "pid": 70,
921
+ "lpToken": "0xB37D6c07482Bc11cd28a1f11f1a6ad7b66Dec933",
922
+ "token": "0xbAff5309fa5bf4556cddf83BD729A18Dc8058a9f",
923
+ "gauge": "0x38039dD47636154273b287F74C432Cac83Da97e2",
924
+ "crvRewards": "0x769499A7B4093b2AA35E3F3C00B1ab5dc8EF7146",
925
+ "stash": "0x434Bf2F8fdfAD278571e4b46d1628353FaCb0B73",
926
+ "shutdown": false,
927
+ "extraRewards": [
928
+ {
929
+ "pool": "0x92dfd397b6d0b878126f5a5f6f446ae9fc8a8356",
930
+ "token": "0x31429d1856ad1377a8a0079410b297e1a9e214c2"
931
+ },
932
+ {
933
+ "pool": "0x19ba12d57ad7b126de898706aa6dbf7d6dc85ff8",
934
+ "token": "0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"
935
+ }
936
+ ]
937
+ },
938
+ {
939
+ "pid": 71,
940
+ "lpToken": "0x06cb22615BA53E60D67Bf6C341a0fD5E718E1655",
941
+ "token": "0x6b35abd7612270E09244aFdbE3e5cf67f3B4E09F",
942
+ "gauge": "0xdC69D4cB5b86388Fff0b51885677e258883534ae",
943
+ "crvRewards": "0x3133A4428AAC0b4ad96a09845363386ECd289A9c",
944
+ "stash": "0xe842D814EB4Ff3420d6873eBDDE1d9c6ac384fB2",
945
+ "shutdown": false,
946
+ "extraRewards": []
947
+ },
948
+ {
949
+ "pid": 72,
950
+ "lpToken": "0xF3A43307DcAFa93275993862Aae628fCB50dC768",
951
+ "token": "0xCB6D873f7BbE57584a9b08380901Dc200Be7CE74",
952
+ "gauge": "0xAB1927160EC7414C6Fa71763E2a9f3D107c126dd",
953
+ "crvRewards": "0xf27AFAD0142393e4b3E5510aBc5fe3743Ad669Cb",
954
+ "stash": "0x4f3AD55D7b884CDC48ADD1e2451A13af17887F26",
955
+ "shutdown": false,
956
+ "extraRewards": [
957
+ {
958
+ "pool": "0xe2585f27bf5aab7756f626d6444ed5fc9154e606",
959
+ "token": "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
960
+ },
961
+ {
962
+ "pool": "0x28120d9d49dbaeb5e34d6b809b842684c482ef27",
963
+ "token": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0"
964
+ }
965
+ ]
966
+ },
967
+ {
968
+ "pid": 73,
969
+ "lpToken": "0x447Ddd4960d9fdBF6af9a790560d0AF76795CB08",
970
+ "token": "0x38C9E856C289594F8E0F095FF396142F19004cdb",
971
+ "gauge": "0x8aD7e0e6EDc61bC48ca0DD07f9021c249044eD30",
972
+ "crvRewards": "0x5c463069b99AfC9333F4dC2203a9f0c6C7658cCc",
973
+ "stash": "0x96Cf7f62b073ddEBf9b4F989586f5c7BC3483b66",
974
+ "shutdown": false,
975
+ "extraRewards": []
976
+ },
977
+ {
978
+ "pid": 74,
979
+ "lpToken": "0x137469B55D1f15651BA46A89D0588e97dD0B6562",
980
+ "token": "0xe7f50e96e0FE8285D3B27B3b9A464a2102C9708c",
981
+ "gauge": "0x02246583870b36Be0fEf2819E1d3A771d6C07546",
982
+ "crvRewards": "0x36c7E7F9031647A74687ce46A8e16BcEA84f3865",
983
+ "stash": "0x406868FBFdb61f976C2A76d617259EFB7778860A",
984
+ "shutdown": false,
985
+ "extraRewards": []
986
+ },
987
+ {
988
+ "pid": 75,
989
+ "lpToken": "0xE160364FD8407FFc8b163e278300c6C5D18Ff61d",
990
+ "token": "0x6b45b93B4505B5c134262c3985d776D71a20D601",
991
+ "gauge": "0x5AC6886Edd18ED0AD01C0B0910660637c551FBd6",
992
+ "crvRewards": "0x41565A76DC949E57486Ca4550C2e086D95AEfb19",
993
+ "stash": "0xFf4bEA60c48bA9210527F24E28bAC56BACE1f286",
994
+ "shutdown": false,
995
+ "extraRewards": []
996
+ },
997
+ {
998
+ "pid": 76,
999
+ "lpToken": "0xbcb91E689114B9Cc865AD7871845C95241Df4105",
1000
+ "token": "0x80D68884f425f73395EA0a7476a786De38Ca1306",
1001
+ "gauge": "0xb07d00e0eE9b1b2eb9f1B483924155Af7AF0c8Fa",
1002
+ "crvRewards": "0xC4d009E61a904BfDf39144295F12870E8305D4d9",
1003
+ "stash": "0x2f95d210231aC0eEc91C312F80783bF97133C8Bb",
1004
+ "shutdown": false,
1005
+ "extraRewards": []
1006
+ },
1007
+ {
1008
+ "pid": 77,
1009
+ "lpToken": "0xC9467E453620f16b57a34a770C6bceBECe002587",
1010
+ "token": "0x518AbdbEe7B2e1D62d3C7435B8FEE56AED7dcE53",
1011
+ "gauge": "0xB5efA93d5D23642f970aF41a1ea9A26f19CbD2Eb",
1012
+ "crvRewards": "0x589761B61D8d1C8ecc36F3cFE35932670749015a",
1013
+ "stash": "0xA8ec0bf38200188DcE8344a8B82d7aAc26A6faF5",
1014
+ "shutdown": false,
1015
+ "extraRewards": []
1016
+ },
1017
+ {
1018
+ "pid": 78,
1019
+ "lpToken": "0x2302aaBe69e6E7A1b0Aa23aAC68fcCB8A4D2B460",
1020
+ "token": "0x77d869e95a08b6b88f8f87DeEdEd5e9b8bb30B29",
1021
+ "gauge": "0x784342E983E9283A7108F20FcA21995534b3fE65",
1022
+ "crvRewards": "0xE259d085f55825624bBA8571eD20984c125Ba720",
1023
+ "stash": "0x637aC4C86b8b85fbA60e657D1Ba312b3451D7386",
1024
+ "shutdown": false,
1025
+ "extraRewards": [],
1026
+ "noTest": true
1027
+ },
1028
+ {
1029
+ "pid": 79,
1030
+ "lpToken": "0x1054Ff2ffA34c055a13DCD9E0b4c0cA5b3aecEB9",
1031
+ "token": "0x98A0f1541684542Da2455A965dC8CEA1D5f26c24",
1032
+ "gauge": "0xE786Df7076AFeECC3faCD841ED4AD20d0F04CF19",
1033
+ "crvRewards": "0x8731A63dD6aF83c044F623A89ABD50A8bb5a5022",
1034
+ "stash": "0x777C03A0B05e0954F789256E9048ed076f5EbE3d",
1035
+ "shutdown": false,
1036
+ "extraRewards": [],
1037
+ "noTest": true
1038
+ }
1039
+ ]