@curvefi/api 2.4.1 → 2.5.0

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.
Files changed (33) hide show
  1. package/lib/constants/abis/factory-v2/DepositZapFantom.json +164 -0
  2. package/lib/constants/abis/factory-v2/DepositZapMetaUsd2Fantom.json +197 -0
  3. package/lib/constants/abis/factory-v2/MetaUSDGeist.json +932 -0
  4. package/lib/constants/abis/fusdt/swap.json +1221 -0
  5. package/lib/constants/abis/fusdt/zap.json +215 -0
  6. package/lib/constants/abis/gauge_child.json +0 -100
  7. package/lib/constants/abis/gauge_rewards_only.json +649 -0
  8. package/lib/constants/abis/ren-fantom/swap.json +868 -0
  9. package/lib/constants/abis/tricrypto/swapNoZap.json +1250 -0
  10. package/lib/constants/aliases.d.ts +1 -0
  11. package/lib/constants/aliases.js +14 -2
  12. package/lib/constants/coins/fantom.d.ts +7 -0
  13. package/lib/constants/coins/fantom.js +36 -0
  14. package/lib/constants/pools/fantom.d.ts +4 -0
  15. package/lib/constants/pools/fantom.js +191 -0
  16. package/lib/constants/pools/index.d.ts +2 -1
  17. package/lib/constants/pools/index.js +3 -1
  18. package/lib/curve.js +31 -10
  19. package/lib/factory/common.js +19 -0
  20. package/lib/factory/constants.d.ts +11 -2
  21. package/lib/factory/constants.js +58 -3
  22. package/lib/factory/factory-api.js +4 -3
  23. package/lib/factory/factory-crypto.js +14 -10
  24. package/lib/factory/factory.js +3 -0
  25. package/lib/pools/PoolTemplate.d.ts +1 -2
  26. package/lib/pools/PoolTemplate.js +44 -166
  27. package/lib/pools/mixins/depositBonusMixins.js +52 -26
  28. package/lib/pools/mixins/withdrawBonusMixins.d.ts +7 -0
  29. package/lib/pools/mixins/withdrawBonusMixins.js +216 -0
  30. package/lib/pools/poolConstructor.js +20 -2
  31. package/lib/router.js +6 -6
  32. package/lib/utils.js +3 -0
  33. package/package.json +1 -1
@@ -0,0 +1,164 @@
1
+ [
2
+ {
3
+ "stateMutability": "nonpayable",
4
+ "type": "constructor",
5
+ "inputs": [],
6
+ "outputs": []
7
+ },
8
+ {
9
+ "stateMutability": "nonpayable",
10
+ "type": "function",
11
+ "name": "add_liquidity",
12
+ "inputs": [
13
+ {
14
+ "name": "_pool",
15
+ "type": "address"
16
+ },
17
+ {
18
+ "name": "_deposit_amounts",
19
+ "type": "uint256[3]"
20
+ },
21
+ {
22
+ "name": "_min_mint_amount",
23
+ "type": "uint256"
24
+ }
25
+ ],
26
+ "outputs": [
27
+ {
28
+ "name": "",
29
+ "type": "uint256"
30
+ }
31
+ ]
32
+ },
33
+ {
34
+ "stateMutability": "nonpayable",
35
+ "type": "function",
36
+ "name": "remove_liquidity",
37
+ "inputs": [
38
+ {
39
+ "name": "_pool",
40
+ "type": "address"
41
+ },
42
+ {
43
+ "name": "_burn_amount",
44
+ "type": "uint256"
45
+ },
46
+ {
47
+ "name": "_min_amounts",
48
+ "type": "uint256[3]"
49
+ }
50
+ ],
51
+ "outputs": [
52
+ {
53
+ "name": "",
54
+ "type": "uint256[3]"
55
+ }
56
+ ]
57
+ },
58
+ {
59
+ "stateMutability": "nonpayable",
60
+ "type": "function",
61
+ "name": "remove_liquidity_one_coin",
62
+ "inputs": [
63
+ {
64
+ "name": "_pool",
65
+ "type": "address"
66
+ },
67
+ {
68
+ "name": "_burn_amount",
69
+ "type": "uint256"
70
+ },
71
+ {
72
+ "name": "i",
73
+ "type": "int128"
74
+ },
75
+ {
76
+ "name": "_min_amount",
77
+ "type": "uint256"
78
+ }
79
+ ],
80
+ "outputs": [
81
+ {
82
+ "name": "",
83
+ "type": "uint256"
84
+ }
85
+ ]
86
+ },
87
+ {
88
+ "stateMutability": "nonpayable",
89
+ "type": "function",
90
+ "name": "remove_liquidity_imbalance",
91
+ "inputs": [
92
+ {
93
+ "name": "_pool",
94
+ "type": "address"
95
+ },
96
+ {
97
+ "name": "_amounts",
98
+ "type": "uint256[3]"
99
+ },
100
+ {
101
+ "name": "_max_burn_amount",
102
+ "type": "uint256"
103
+ }
104
+ ],
105
+ "outputs": [
106
+ {
107
+ "name": "",
108
+ "type": "uint256"
109
+ }
110
+ ]
111
+ },
112
+ {
113
+ "stateMutability": "view",
114
+ "type": "function",
115
+ "name": "calc_withdraw_one_coin",
116
+ "inputs": [
117
+ {
118
+ "name": "_pool",
119
+ "type": "address"
120
+ },
121
+ {
122
+ "name": "_token_amount",
123
+ "type": "uint256"
124
+ },
125
+ {
126
+ "name": "i",
127
+ "type": "int128"
128
+ }
129
+ ],
130
+ "outputs": [
131
+ {
132
+ "name": "",
133
+ "type": "uint256"
134
+ }
135
+ ],
136
+ "gas": "5753"
137
+ },
138
+ {
139
+ "stateMutability": "view",
140
+ "type": "function",
141
+ "name": "calc_token_amount",
142
+ "inputs": [
143
+ {
144
+ "name": "_pool",
145
+ "type": "address"
146
+ },
147
+ {
148
+ "name": "_amounts",
149
+ "type": "uint256[3]"
150
+ },
151
+ {
152
+ "name": "_is_deposit",
153
+ "type": "bool"
154
+ }
155
+ ],
156
+ "outputs": [
157
+ {
158
+ "name": "",
159
+ "type": "uint256"
160
+ }
161
+ ],
162
+ "gas": "6289"
163
+ }
164
+ ]
@@ -0,0 +1,197 @@
1
+ [
2
+ {
3
+ "stateMutability": "nonpayable",
4
+ "type": "constructor",
5
+ "inputs": [],
6
+ "outputs": []
7
+ },
8
+ {
9
+ "stateMutability": "nonpayable",
10
+ "type": "function",
11
+ "name": "add_liquidity",
12
+ "inputs": [
13
+ {
14
+ "name": "_pool",
15
+ "type": "address"
16
+ },
17
+ {
18
+ "name": "_deposit_amounts",
19
+ "type": "uint256[4]"
20
+ },
21
+ {
22
+ "name": "_min_mint_amount",
23
+ "type": "uint256"
24
+ }
25
+ ],
26
+ "outputs": [
27
+ {
28
+ "name": "",
29
+ "type": "uint256"
30
+ }
31
+ ]
32
+ },
33
+ {
34
+ "stateMutability": "nonpayable",
35
+ "type": "function",
36
+ "name": "remove_liquidity",
37
+ "inputs": [
38
+ {
39
+ "name": "_pool",
40
+ "type": "address"
41
+ },
42
+ {
43
+ "name": "_burn_amount",
44
+ "type": "uint256"
45
+ },
46
+ {
47
+ "name": "_min_amounts",
48
+ "type": "uint256[4]"
49
+ }
50
+ ],
51
+ "outputs": [
52
+ {
53
+ "name": "",
54
+ "type": "uint256[4]"
55
+ }
56
+ ]
57
+ },
58
+ {
59
+ "stateMutability": "nonpayable",
60
+ "type": "function",
61
+ "name": "remove_liquidity_one_coin",
62
+ "inputs": [
63
+ {
64
+ "name": "_pool",
65
+ "type": "address"
66
+ },
67
+ {
68
+ "name": "_burn_amount",
69
+ "type": "uint256"
70
+ },
71
+ {
72
+ "name": "i",
73
+ "type": "int128"
74
+ },
75
+ {
76
+ "name": "_min_amount",
77
+ "type": "uint256"
78
+ }
79
+ ],
80
+ "outputs": [
81
+ {
82
+ "name": "",
83
+ "type": "uint256"
84
+ }
85
+ ]
86
+ },
87
+ {
88
+ "stateMutability": "nonpayable",
89
+ "type": "function",
90
+ "name": "remove_liquidity_imbalance",
91
+ "inputs": [
92
+ {
93
+ "name": "_pool",
94
+ "type": "address"
95
+ },
96
+ {
97
+ "name": "_amounts",
98
+ "type": "uint256[4]"
99
+ },
100
+ {
101
+ "name": "_max_burn_amount",
102
+ "type": "uint256"
103
+ }
104
+ ],
105
+ "outputs": [
106
+ {
107
+ "name": "",
108
+ "type": "uint256"
109
+ }
110
+ ]
111
+ },
112
+ {
113
+ "stateMutability": "view",
114
+ "type": "function",
115
+ "name": "calc_withdraw_one_coin",
116
+ "inputs": [
117
+ {
118
+ "name": "_pool",
119
+ "type": "address"
120
+ },
121
+ {
122
+ "name": "_token_amount",
123
+ "type": "uint256"
124
+ },
125
+ {
126
+ "name": "i",
127
+ "type": "int128"
128
+ }
129
+ ],
130
+ "outputs": [
131
+ {
132
+ "name": "",
133
+ "type": "uint256"
134
+ }
135
+ ],
136
+ "gas": "5753"
137
+ },
138
+ {
139
+ "stateMutability": "view",
140
+ "type": "function",
141
+ "name": "calc_token_amount",
142
+ "inputs": [
143
+ {
144
+ "name": "_pool",
145
+ "type": "address"
146
+ },
147
+ {
148
+ "name": "_amounts",
149
+ "type": "uint256[4]"
150
+ },
151
+ {
152
+ "name": "_is_deposit",
153
+ "type": "bool"
154
+ }
155
+ ],
156
+ "outputs": [
157
+ {
158
+ "name": "",
159
+ "type": "uint256"
160
+ }
161
+ ],
162
+ "gas": "6666"
163
+ },
164
+ {
165
+ "stateMutability": "nonpayable",
166
+ "type": "function",
167
+ "name": "exchange_underlying",
168
+ "inputs": [
169
+ {
170
+ "name": "_pool",
171
+ "type": "address"
172
+ },
173
+ {
174
+ "name": "_i",
175
+ "type": "int128"
176
+ },
177
+ {
178
+ "name": "_j",
179
+ "type": "int128"
180
+ },
181
+ {
182
+ "name": "_dx",
183
+ "type": "uint256"
184
+ },
185
+ {
186
+ "name": "_min_dy",
187
+ "type": "uint256"
188
+ }
189
+ ],
190
+ "outputs": [
191
+ {
192
+ "name": "",
193
+ "type": "uint256"
194
+ }
195
+ ]
196
+ }
197
+ ]