@venusprotocol/isolated-pools 4.2.0-dev.13 → 4.2.0-dev.14
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/deployments/ethereum/JumpRateModelV2_base0bps_slope0bps_jump0bps_kink0bps_bpy2628000.json +600 -0
- package/deployments/ethereum/JumpRateModelV2_base0bps_slope1000bps_jump25000bps_kink8000bps_bpy2628000.json +608 -0
- package/deployments/ethereum/VToken_vUSDe_Core.json +257 -0
- package/deployments/ethereum/VToken_vsUSDe_Core.json +257 -0
- package/deployments/ethereum/solcInputs/63aefd090744a1a82e68ec023a9846aa.json +460 -0
- package/deployments/ethereum.json +1344 -476
- package/deployments/ethereum_addresses.json +4 -0
- package/deployments/sepolia/JumpRateModelV2_base0bps_slope0bps_jump0bps_kink0bps_bpy2628000.json +600 -0
- package/deployments/sepolia/JumpRateModelV2_base0bps_slope1000bps_jump25000bps_kink8000bps_bpy2628000.json +608 -0
- package/deployments/sepolia/VToken_vUSDe_Core.json +257 -0
- package/deployments/sepolia/VToken_vsUSDe_Core.json +257 -0
- package/deployments/sepolia/solcInputs/63aefd090744a1a82e68ec023a9846aa.json +460 -0
- package/deployments/sepolia.json +1113 -245
- package/deployments/sepolia_addresses.json +4 -0
- package/dist/deployments/ethereum.json +1344 -476
- package/dist/deployments/sepolia.json +1113 -245
- package/dist/helpers/deploymentConfig.js +86 -0
- package/dist/typechain/factories/IVToken__factory.d.ts +5 -1
- package/dist/typechain/factories/IVToken__factory.js +201 -1
- package/package.json +1 -1
- package/typechain/IVToken.d.ts +341 -4
- package/typechain/factories/IVToken__factory.ts +201 -1
|
@@ -3129,6 +3129,13 @@ exports.globalConfig = {
|
|
|
3129
3129
|
decimals: 18,
|
|
3130
3130
|
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
3131
3131
|
},
|
|
3132
|
+
{
|
|
3133
|
+
isMock: true,
|
|
3134
|
+
name: "USDe",
|
|
3135
|
+
symbol: "USDe",
|
|
3136
|
+
decimals: 18,
|
|
3137
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
3138
|
+
},
|
|
3132
3139
|
],
|
|
3133
3140
|
poolConfig: [
|
|
3134
3141
|
{
|
|
@@ -3516,6 +3523,42 @@ exports.globalConfig = {
|
|
|
3516
3523
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3517
3524
|
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
3518
3525
|
},
|
|
3526
|
+
{
|
|
3527
|
+
name: "Venus sUSDe (Core)",
|
|
3528
|
+
asset: "sUSDe",
|
|
3529
|
+
symbol: "vsUSDe_Core",
|
|
3530
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3531
|
+
baseRatePerYear: "0",
|
|
3532
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.1", 18),
|
|
3533
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.5", 18),
|
|
3534
|
+
kink_: (0, utils_1.convertToUnit)("0.8", 18),
|
|
3535
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.72", 18),
|
|
3536
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
3537
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.1", 18),
|
|
3538
|
+
initialSupply: (0, utils_1.convertToUnit)("10_000", 18),
|
|
3539
|
+
supplyCap: (0, utils_1.convertToUnit)("20_000_000", 18),
|
|
3540
|
+
borrowCap: (0, utils_1.convertToUnit)("0", 18),
|
|
3541
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3542
|
+
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
3543
|
+
},
|
|
3544
|
+
{
|
|
3545
|
+
name: "Venus USDe (Core)",
|
|
3546
|
+
asset: "USDe",
|
|
3547
|
+
symbol: "vUSDe_Core",
|
|
3548
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3549
|
+
baseRatePerYear: "0",
|
|
3550
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.1", 18),
|
|
3551
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.5", 18),
|
|
3552
|
+
kink_: (0, utils_1.convertToUnit)("0.8", 18),
|
|
3553
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.72", 18),
|
|
3554
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
3555
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.1", 18),
|
|
3556
|
+
initialSupply: (0, utils_1.convertToUnit)("10_000", 18),
|
|
3557
|
+
supplyCap: (0, utils_1.convertToUnit)("30_000_000", 18),
|
|
3558
|
+
borrowCap: (0, utils_1.convertToUnit)("25_000_000", 18),
|
|
3559
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3560
|
+
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
3561
|
+
},
|
|
3519
3562
|
],
|
|
3520
3563
|
rewards: [
|
|
3521
3564
|
// XVS Rewards Over 90 days (648000 blocks)
|
|
@@ -4218,6 +4261,13 @@ exports.globalConfig = {
|
|
|
4218
4261
|
decimals: 18,
|
|
4219
4262
|
tokenAddress: "0xba100000625a3754423978a60c9317c58a424e3D",
|
|
4220
4263
|
},
|
|
4264
|
+
{
|
|
4265
|
+
isMock: false,
|
|
4266
|
+
name: "USDe",
|
|
4267
|
+
symbol: "USDe",
|
|
4268
|
+
decimals: 18,
|
|
4269
|
+
tokenAddress: "0x4c9edd5852cd905f086c759e8383e09bff1e68b3",
|
|
4270
|
+
},
|
|
4221
4271
|
],
|
|
4222
4272
|
poolConfig: [
|
|
4223
4273
|
{
|
|
@@ -4593,6 +4643,42 @@ exports.globalConfig = {
|
|
|
4593
4643
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
4594
4644
|
vTokenReceiver: "0x3e8734ec146c981e3ed1f6b582d447dde701d90c",
|
|
4595
4645
|
},
|
|
4646
|
+
{
|
|
4647
|
+
name: "Venus sUSDe (Core)",
|
|
4648
|
+
asset: "sUSDe",
|
|
4649
|
+
symbol: "vsUSDe_Core",
|
|
4650
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
4651
|
+
baseRatePerYear: "0",
|
|
4652
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.1", 18),
|
|
4653
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.5", 18),
|
|
4654
|
+
kink_: (0, utils_1.convertToUnit)("0.8", 18),
|
|
4655
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.72", 18),
|
|
4656
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
4657
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.1", 18),
|
|
4658
|
+
initialSupply: (0, utils_1.convertToUnit)("10_000", 18),
|
|
4659
|
+
supplyCap: (0, utils_1.convertToUnit)("20_000_000", 18),
|
|
4660
|
+
borrowCap: (0, utils_1.convertToUnit)("0", 18),
|
|
4661
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
4662
|
+
vTokenReceiver: "0x3e8734ec146c981e3ed1f6b582d447dde701d90c",
|
|
4663
|
+
},
|
|
4664
|
+
{
|
|
4665
|
+
name: "Venus USDe (Core)",
|
|
4666
|
+
asset: "USDe",
|
|
4667
|
+
symbol: "vUSDe_Core",
|
|
4668
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
4669
|
+
baseRatePerYear: "0",
|
|
4670
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.1", 18),
|
|
4671
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.5", 18),
|
|
4672
|
+
kink_: (0, utils_1.convertToUnit)("0.8", 18),
|
|
4673
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.72", 18),
|
|
4674
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
4675
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.1", 18),
|
|
4676
|
+
initialSupply: (0, utils_1.convertToUnit)("10_000", 18),
|
|
4677
|
+
supplyCap: (0, utils_1.convertToUnit)("30_000_000", 18),
|
|
4678
|
+
borrowCap: (0, utils_1.convertToUnit)("25_000_000", 18),
|
|
4679
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
4680
|
+
vTokenReceiver: "0x3e8734ec146c981e3ed1f6b582d447dde701d90c",
|
|
4681
|
+
},
|
|
4596
4682
|
],
|
|
4597
4683
|
rewards: [
|
|
4598
4684
|
// XVS Rewards Over 90 days (648000 blocks)
|
|
@@ -3,7 +3,11 @@ import { Provider } from "@ethersproject/providers";
|
|
|
3
3
|
import type { IVToken, IVTokenInterface } from "../IVToken";
|
|
4
4
|
export declare class IVToken__factory {
|
|
5
5
|
static readonly abi: {
|
|
6
|
-
inputs:
|
|
6
|
+
inputs: {
|
|
7
|
+
internalType: string;
|
|
8
|
+
name: string;
|
|
9
|
+
type: string;
|
|
10
|
+
}[];
|
|
7
11
|
name: string;
|
|
8
12
|
outputs: {
|
|
9
13
|
internalType: string;
|
|
@@ -6,6 +6,206 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.IVToken__factory = void 0;
|
|
7
7
|
const ethers_1 = require("ethers");
|
|
8
8
|
const _abi = [
|
|
9
|
+
{
|
|
10
|
+
inputs: [
|
|
11
|
+
{
|
|
12
|
+
internalType: "address",
|
|
13
|
+
name: "account",
|
|
14
|
+
type: "address",
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
name: "borrowBalanceCurrent",
|
|
18
|
+
outputs: [
|
|
19
|
+
{
|
|
20
|
+
internalType: "uint256",
|
|
21
|
+
name: "",
|
|
22
|
+
type: "uint256",
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
stateMutability: "nonpayable",
|
|
26
|
+
type: "function",
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
inputs: [
|
|
30
|
+
{
|
|
31
|
+
internalType: "address",
|
|
32
|
+
name: "borrower",
|
|
33
|
+
type: "address",
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
internalType: "uint256",
|
|
37
|
+
name: "borrowAmount",
|
|
38
|
+
type: "uint256",
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
name: "borrowBehalf",
|
|
42
|
+
outputs: [
|
|
43
|
+
{
|
|
44
|
+
internalType: "uint256",
|
|
45
|
+
name: "",
|
|
46
|
+
type: "uint256",
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
stateMutability: "nonpayable",
|
|
50
|
+
type: "function",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
inputs: [],
|
|
54
|
+
name: "exchangeRateCurrent",
|
|
55
|
+
outputs: [
|
|
56
|
+
{
|
|
57
|
+
internalType: "uint256",
|
|
58
|
+
name: "",
|
|
59
|
+
type: "uint256",
|
|
60
|
+
},
|
|
61
|
+
],
|
|
62
|
+
stateMutability: "nonpayable",
|
|
63
|
+
type: "function",
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
inputs: [
|
|
67
|
+
{
|
|
68
|
+
internalType: "address",
|
|
69
|
+
name: "receiver",
|
|
70
|
+
type: "address",
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
internalType: "uint256",
|
|
74
|
+
name: "mintAmount",
|
|
75
|
+
type: "uint256",
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
name: "mintBehalf",
|
|
79
|
+
outputs: [
|
|
80
|
+
{
|
|
81
|
+
internalType: "uint256",
|
|
82
|
+
name: "",
|
|
83
|
+
type: "uint256",
|
|
84
|
+
},
|
|
85
|
+
],
|
|
86
|
+
stateMutability: "nonpayable",
|
|
87
|
+
type: "function",
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
inputs: [
|
|
91
|
+
{
|
|
92
|
+
internalType: "uint256",
|
|
93
|
+
name: "redeemTokens",
|
|
94
|
+
type: "uint256",
|
|
95
|
+
},
|
|
96
|
+
],
|
|
97
|
+
name: "redeem",
|
|
98
|
+
outputs: [
|
|
99
|
+
{
|
|
100
|
+
internalType: "uint256",
|
|
101
|
+
name: "",
|
|
102
|
+
type: "uint256",
|
|
103
|
+
},
|
|
104
|
+
],
|
|
105
|
+
stateMutability: "nonpayable",
|
|
106
|
+
type: "function",
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
inputs: [
|
|
110
|
+
{
|
|
111
|
+
internalType: "address",
|
|
112
|
+
name: "redeemer",
|
|
113
|
+
type: "address",
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
internalType: "uint256",
|
|
117
|
+
name: "redeemTokens",
|
|
118
|
+
type: "uint256",
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
name: "redeemBehalf",
|
|
122
|
+
outputs: [
|
|
123
|
+
{
|
|
124
|
+
internalType: "uint256",
|
|
125
|
+
name: "",
|
|
126
|
+
type: "uint256",
|
|
127
|
+
},
|
|
128
|
+
],
|
|
129
|
+
stateMutability: "nonpayable",
|
|
130
|
+
type: "function",
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
inputs: [
|
|
134
|
+
{
|
|
135
|
+
internalType: "address",
|
|
136
|
+
name: "redeemer",
|
|
137
|
+
type: "address",
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
internalType: "uint256",
|
|
141
|
+
name: "redeemAmount",
|
|
142
|
+
type: "uint256",
|
|
143
|
+
},
|
|
144
|
+
],
|
|
145
|
+
name: "redeemUnderlyingBehalf",
|
|
146
|
+
outputs: [
|
|
147
|
+
{
|
|
148
|
+
internalType: "uint256",
|
|
149
|
+
name: "",
|
|
150
|
+
type: "uint256",
|
|
151
|
+
},
|
|
152
|
+
],
|
|
153
|
+
stateMutability: "nonpayable",
|
|
154
|
+
type: "function",
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
inputs: [
|
|
158
|
+
{
|
|
159
|
+
internalType: "address",
|
|
160
|
+
name: "borrower",
|
|
161
|
+
type: "address",
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
internalType: "uint256",
|
|
165
|
+
name: "repayAmount",
|
|
166
|
+
type: "uint256",
|
|
167
|
+
},
|
|
168
|
+
],
|
|
169
|
+
name: "repayBorrowBehalf",
|
|
170
|
+
outputs: [
|
|
171
|
+
{
|
|
172
|
+
internalType: "uint256",
|
|
173
|
+
name: "",
|
|
174
|
+
type: "uint256",
|
|
175
|
+
},
|
|
176
|
+
],
|
|
177
|
+
stateMutability: "nonpayable",
|
|
178
|
+
type: "function",
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
inputs: [
|
|
182
|
+
{
|
|
183
|
+
internalType: "address",
|
|
184
|
+
name: "from",
|
|
185
|
+
type: "address",
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
internalType: "address",
|
|
189
|
+
name: "to",
|
|
190
|
+
type: "address",
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
internalType: "uint256",
|
|
194
|
+
name: "amount",
|
|
195
|
+
type: "uint256",
|
|
196
|
+
},
|
|
197
|
+
],
|
|
198
|
+
name: "transferFrom",
|
|
199
|
+
outputs: [
|
|
200
|
+
{
|
|
201
|
+
internalType: "bool",
|
|
202
|
+
name: "",
|
|
203
|
+
type: "bool",
|
|
204
|
+
},
|
|
205
|
+
],
|
|
206
|
+
stateMutability: "nonpayable",
|
|
207
|
+
type: "function",
|
|
208
|
+
},
|
|
9
209
|
{
|
|
10
210
|
inputs: [],
|
|
11
211
|
name: "underlying",
|
|
@@ -16,7 +216,7 @@ const _abi = [
|
|
|
16
216
|
type: "address",
|
|
17
217
|
},
|
|
18
218
|
],
|
|
19
|
-
stateMutability: "
|
|
219
|
+
stateMutability: "nonpayable",
|
|
20
220
|
type: "function",
|
|
21
221
|
},
|
|
22
222
|
];
|