@venusprotocol/isolated-pools 3.7.0-dev.6 → 3.7.0-dev.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/deployments/ethereum/VToken_vLBTC_Core.json +257 -0
- package/deployments/ethereum.json +74 -0
- package/deployments/ethereum_addresses.json +1 -0
- package/deployments/sepolia/MockLBTC.json +458 -0
- package/deployments/sepolia/VToken_vLBTC_Core.json +257 -0
- package/deployments/sepolia.json +383 -0
- package/deployments/sepolia_addresses.json +2 -0
- package/dist/deployments/ethereum.json +74 -0
- package/dist/deployments/sepolia.json +383 -0
- package/dist/helpers/deploymentConfig.js +50 -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
package/deployments/sepolia.json
CHANGED
|
@@ -8241,6 +8241,315 @@
|
|
|
8241
8241
|
}
|
|
8242
8242
|
]
|
|
8243
8243
|
},
|
|
8244
|
+
"MockLBTC": {
|
|
8245
|
+
"address": "0x37798CaB3Adde2F4064afBc1C7F9bbBc6A826375",
|
|
8246
|
+
"abi": [
|
|
8247
|
+
{
|
|
8248
|
+
"inputs": [
|
|
8249
|
+
{
|
|
8250
|
+
"internalType": "string",
|
|
8251
|
+
"name": "name_",
|
|
8252
|
+
"type": "string"
|
|
8253
|
+
},
|
|
8254
|
+
{
|
|
8255
|
+
"internalType": "string",
|
|
8256
|
+
"name": "symbol_",
|
|
8257
|
+
"type": "string"
|
|
8258
|
+
},
|
|
8259
|
+
{
|
|
8260
|
+
"internalType": "uint8",
|
|
8261
|
+
"name": "decimals_",
|
|
8262
|
+
"type": "uint8"
|
|
8263
|
+
}
|
|
8264
|
+
],
|
|
8265
|
+
"stateMutability": "nonpayable",
|
|
8266
|
+
"type": "constructor"
|
|
8267
|
+
},
|
|
8268
|
+
{
|
|
8269
|
+
"anonymous": false,
|
|
8270
|
+
"inputs": [
|
|
8271
|
+
{
|
|
8272
|
+
"indexed": true,
|
|
8273
|
+
"internalType": "address",
|
|
8274
|
+
"name": "owner",
|
|
8275
|
+
"type": "address"
|
|
8276
|
+
},
|
|
8277
|
+
{
|
|
8278
|
+
"indexed": true,
|
|
8279
|
+
"internalType": "address",
|
|
8280
|
+
"name": "spender",
|
|
8281
|
+
"type": "address"
|
|
8282
|
+
},
|
|
8283
|
+
{
|
|
8284
|
+
"indexed": false,
|
|
8285
|
+
"internalType": "uint256",
|
|
8286
|
+
"name": "value",
|
|
8287
|
+
"type": "uint256"
|
|
8288
|
+
}
|
|
8289
|
+
],
|
|
8290
|
+
"name": "Approval",
|
|
8291
|
+
"type": "event"
|
|
8292
|
+
},
|
|
8293
|
+
{
|
|
8294
|
+
"anonymous": false,
|
|
8295
|
+
"inputs": [
|
|
8296
|
+
{
|
|
8297
|
+
"indexed": true,
|
|
8298
|
+
"internalType": "address",
|
|
8299
|
+
"name": "from",
|
|
8300
|
+
"type": "address"
|
|
8301
|
+
},
|
|
8302
|
+
{
|
|
8303
|
+
"indexed": true,
|
|
8304
|
+
"internalType": "address",
|
|
8305
|
+
"name": "to",
|
|
8306
|
+
"type": "address"
|
|
8307
|
+
},
|
|
8308
|
+
{
|
|
8309
|
+
"indexed": false,
|
|
8310
|
+
"internalType": "uint256",
|
|
8311
|
+
"name": "value",
|
|
8312
|
+
"type": "uint256"
|
|
8313
|
+
}
|
|
8314
|
+
],
|
|
8315
|
+
"name": "Transfer",
|
|
8316
|
+
"type": "event"
|
|
8317
|
+
},
|
|
8318
|
+
{
|
|
8319
|
+
"inputs": [
|
|
8320
|
+
{
|
|
8321
|
+
"internalType": "address",
|
|
8322
|
+
"name": "owner",
|
|
8323
|
+
"type": "address"
|
|
8324
|
+
},
|
|
8325
|
+
{
|
|
8326
|
+
"internalType": "address",
|
|
8327
|
+
"name": "spender",
|
|
8328
|
+
"type": "address"
|
|
8329
|
+
}
|
|
8330
|
+
],
|
|
8331
|
+
"name": "allowance",
|
|
8332
|
+
"outputs": [
|
|
8333
|
+
{
|
|
8334
|
+
"internalType": "uint256",
|
|
8335
|
+
"name": "",
|
|
8336
|
+
"type": "uint256"
|
|
8337
|
+
}
|
|
8338
|
+
],
|
|
8339
|
+
"stateMutability": "view",
|
|
8340
|
+
"type": "function"
|
|
8341
|
+
},
|
|
8342
|
+
{
|
|
8343
|
+
"inputs": [
|
|
8344
|
+
{
|
|
8345
|
+
"internalType": "address",
|
|
8346
|
+
"name": "spender",
|
|
8347
|
+
"type": "address"
|
|
8348
|
+
},
|
|
8349
|
+
{
|
|
8350
|
+
"internalType": "uint256",
|
|
8351
|
+
"name": "amount",
|
|
8352
|
+
"type": "uint256"
|
|
8353
|
+
}
|
|
8354
|
+
],
|
|
8355
|
+
"name": "approve",
|
|
8356
|
+
"outputs": [
|
|
8357
|
+
{
|
|
8358
|
+
"internalType": "bool",
|
|
8359
|
+
"name": "",
|
|
8360
|
+
"type": "bool"
|
|
8361
|
+
}
|
|
8362
|
+
],
|
|
8363
|
+
"stateMutability": "nonpayable",
|
|
8364
|
+
"type": "function"
|
|
8365
|
+
},
|
|
8366
|
+
{
|
|
8367
|
+
"inputs": [
|
|
8368
|
+
{
|
|
8369
|
+
"internalType": "address",
|
|
8370
|
+
"name": "account",
|
|
8371
|
+
"type": "address"
|
|
8372
|
+
}
|
|
8373
|
+
],
|
|
8374
|
+
"name": "balanceOf",
|
|
8375
|
+
"outputs": [
|
|
8376
|
+
{
|
|
8377
|
+
"internalType": "uint256",
|
|
8378
|
+
"name": "",
|
|
8379
|
+
"type": "uint256"
|
|
8380
|
+
}
|
|
8381
|
+
],
|
|
8382
|
+
"stateMutability": "view",
|
|
8383
|
+
"type": "function"
|
|
8384
|
+
},
|
|
8385
|
+
{
|
|
8386
|
+
"inputs": [],
|
|
8387
|
+
"name": "decimals",
|
|
8388
|
+
"outputs": [
|
|
8389
|
+
{
|
|
8390
|
+
"internalType": "uint8",
|
|
8391
|
+
"name": "",
|
|
8392
|
+
"type": "uint8"
|
|
8393
|
+
}
|
|
8394
|
+
],
|
|
8395
|
+
"stateMutability": "view",
|
|
8396
|
+
"type": "function"
|
|
8397
|
+
},
|
|
8398
|
+
{
|
|
8399
|
+
"inputs": [
|
|
8400
|
+
{
|
|
8401
|
+
"internalType": "address",
|
|
8402
|
+
"name": "spender",
|
|
8403
|
+
"type": "address"
|
|
8404
|
+
},
|
|
8405
|
+
{
|
|
8406
|
+
"internalType": "uint256",
|
|
8407
|
+
"name": "subtractedValue",
|
|
8408
|
+
"type": "uint256"
|
|
8409
|
+
}
|
|
8410
|
+
],
|
|
8411
|
+
"name": "decreaseAllowance",
|
|
8412
|
+
"outputs": [
|
|
8413
|
+
{
|
|
8414
|
+
"internalType": "bool",
|
|
8415
|
+
"name": "",
|
|
8416
|
+
"type": "bool"
|
|
8417
|
+
}
|
|
8418
|
+
],
|
|
8419
|
+
"stateMutability": "nonpayable",
|
|
8420
|
+
"type": "function"
|
|
8421
|
+
},
|
|
8422
|
+
{
|
|
8423
|
+
"inputs": [
|
|
8424
|
+
{
|
|
8425
|
+
"internalType": "uint256",
|
|
8426
|
+
"name": "amount",
|
|
8427
|
+
"type": "uint256"
|
|
8428
|
+
}
|
|
8429
|
+
],
|
|
8430
|
+
"name": "faucet",
|
|
8431
|
+
"outputs": [],
|
|
8432
|
+
"stateMutability": "nonpayable",
|
|
8433
|
+
"type": "function"
|
|
8434
|
+
},
|
|
8435
|
+
{
|
|
8436
|
+
"inputs": [
|
|
8437
|
+
{
|
|
8438
|
+
"internalType": "address",
|
|
8439
|
+
"name": "spender",
|
|
8440
|
+
"type": "address"
|
|
8441
|
+
},
|
|
8442
|
+
{
|
|
8443
|
+
"internalType": "uint256",
|
|
8444
|
+
"name": "addedValue",
|
|
8445
|
+
"type": "uint256"
|
|
8446
|
+
}
|
|
8447
|
+
],
|
|
8448
|
+
"name": "increaseAllowance",
|
|
8449
|
+
"outputs": [
|
|
8450
|
+
{
|
|
8451
|
+
"internalType": "bool",
|
|
8452
|
+
"name": "",
|
|
8453
|
+
"type": "bool"
|
|
8454
|
+
}
|
|
8455
|
+
],
|
|
8456
|
+
"stateMutability": "nonpayable",
|
|
8457
|
+
"type": "function"
|
|
8458
|
+
},
|
|
8459
|
+
{
|
|
8460
|
+
"inputs": [],
|
|
8461
|
+
"name": "name",
|
|
8462
|
+
"outputs": [
|
|
8463
|
+
{
|
|
8464
|
+
"internalType": "string",
|
|
8465
|
+
"name": "",
|
|
8466
|
+
"type": "string"
|
|
8467
|
+
}
|
|
8468
|
+
],
|
|
8469
|
+
"stateMutability": "view",
|
|
8470
|
+
"type": "function"
|
|
8471
|
+
},
|
|
8472
|
+
{
|
|
8473
|
+
"inputs": [],
|
|
8474
|
+
"name": "symbol",
|
|
8475
|
+
"outputs": [
|
|
8476
|
+
{
|
|
8477
|
+
"internalType": "string",
|
|
8478
|
+
"name": "",
|
|
8479
|
+
"type": "string"
|
|
8480
|
+
}
|
|
8481
|
+
],
|
|
8482
|
+
"stateMutability": "view",
|
|
8483
|
+
"type": "function"
|
|
8484
|
+
},
|
|
8485
|
+
{
|
|
8486
|
+
"inputs": [],
|
|
8487
|
+
"name": "totalSupply",
|
|
8488
|
+
"outputs": [
|
|
8489
|
+
{
|
|
8490
|
+
"internalType": "uint256",
|
|
8491
|
+
"name": "",
|
|
8492
|
+
"type": "uint256"
|
|
8493
|
+
}
|
|
8494
|
+
],
|
|
8495
|
+
"stateMutability": "view",
|
|
8496
|
+
"type": "function"
|
|
8497
|
+
},
|
|
8498
|
+
{
|
|
8499
|
+
"inputs": [
|
|
8500
|
+
{
|
|
8501
|
+
"internalType": "address",
|
|
8502
|
+
"name": "to",
|
|
8503
|
+
"type": "address"
|
|
8504
|
+
},
|
|
8505
|
+
{
|
|
8506
|
+
"internalType": "uint256",
|
|
8507
|
+
"name": "amount",
|
|
8508
|
+
"type": "uint256"
|
|
8509
|
+
}
|
|
8510
|
+
],
|
|
8511
|
+
"name": "transfer",
|
|
8512
|
+
"outputs": [
|
|
8513
|
+
{
|
|
8514
|
+
"internalType": "bool",
|
|
8515
|
+
"name": "",
|
|
8516
|
+
"type": "bool"
|
|
8517
|
+
}
|
|
8518
|
+
],
|
|
8519
|
+
"stateMutability": "nonpayable",
|
|
8520
|
+
"type": "function"
|
|
8521
|
+
},
|
|
8522
|
+
{
|
|
8523
|
+
"inputs": [
|
|
8524
|
+
{
|
|
8525
|
+
"internalType": "address",
|
|
8526
|
+
"name": "from",
|
|
8527
|
+
"type": "address"
|
|
8528
|
+
},
|
|
8529
|
+
{
|
|
8530
|
+
"internalType": "address",
|
|
8531
|
+
"name": "to",
|
|
8532
|
+
"type": "address"
|
|
8533
|
+
},
|
|
8534
|
+
{
|
|
8535
|
+
"internalType": "uint256",
|
|
8536
|
+
"name": "amount",
|
|
8537
|
+
"type": "uint256"
|
|
8538
|
+
}
|
|
8539
|
+
],
|
|
8540
|
+
"name": "transferFrom",
|
|
8541
|
+
"outputs": [
|
|
8542
|
+
{
|
|
8543
|
+
"internalType": "bool",
|
|
8544
|
+
"name": "",
|
|
8545
|
+
"type": "bool"
|
|
8546
|
+
}
|
|
8547
|
+
],
|
|
8548
|
+
"stateMutability": "nonpayable",
|
|
8549
|
+
"type": "function"
|
|
8550
|
+
}
|
|
8551
|
+
]
|
|
8552
|
+
},
|
|
8244
8553
|
"MockPT-weETH-26DEC2024": {
|
|
8245
8554
|
"address": "0x56107201d3e4b7Db92dEa0Edb9e0454346AEb8B5",
|
|
8246
8555
|
"abi": [
|
|
@@ -28656,6 +28965,80 @@
|
|
|
28656
28965
|
}
|
|
28657
28966
|
]
|
|
28658
28967
|
},
|
|
28968
|
+
"VToken_vLBTC_Core": {
|
|
28969
|
+
"address": "0x315F064cF5B5968fE1655436e1856F3ca558d395",
|
|
28970
|
+
"abi": [
|
|
28971
|
+
{
|
|
28972
|
+
"inputs": [
|
|
28973
|
+
{
|
|
28974
|
+
"internalType": "address",
|
|
28975
|
+
"name": "beacon",
|
|
28976
|
+
"type": "address"
|
|
28977
|
+
},
|
|
28978
|
+
{
|
|
28979
|
+
"internalType": "bytes",
|
|
28980
|
+
"name": "data",
|
|
28981
|
+
"type": "bytes"
|
|
28982
|
+
}
|
|
28983
|
+
],
|
|
28984
|
+
"stateMutability": "payable",
|
|
28985
|
+
"type": "constructor"
|
|
28986
|
+
},
|
|
28987
|
+
{
|
|
28988
|
+
"anonymous": false,
|
|
28989
|
+
"inputs": [
|
|
28990
|
+
{
|
|
28991
|
+
"indexed": false,
|
|
28992
|
+
"internalType": "address",
|
|
28993
|
+
"name": "previousAdmin",
|
|
28994
|
+
"type": "address"
|
|
28995
|
+
},
|
|
28996
|
+
{
|
|
28997
|
+
"indexed": false,
|
|
28998
|
+
"internalType": "address",
|
|
28999
|
+
"name": "newAdmin",
|
|
29000
|
+
"type": "address"
|
|
29001
|
+
}
|
|
29002
|
+
],
|
|
29003
|
+
"name": "AdminChanged",
|
|
29004
|
+
"type": "event"
|
|
29005
|
+
},
|
|
29006
|
+
{
|
|
29007
|
+
"anonymous": false,
|
|
29008
|
+
"inputs": [
|
|
29009
|
+
{
|
|
29010
|
+
"indexed": true,
|
|
29011
|
+
"internalType": "address",
|
|
29012
|
+
"name": "beacon",
|
|
29013
|
+
"type": "address"
|
|
29014
|
+
}
|
|
29015
|
+
],
|
|
29016
|
+
"name": "BeaconUpgraded",
|
|
29017
|
+
"type": "event"
|
|
29018
|
+
},
|
|
29019
|
+
{
|
|
29020
|
+
"anonymous": false,
|
|
29021
|
+
"inputs": [
|
|
29022
|
+
{
|
|
29023
|
+
"indexed": true,
|
|
29024
|
+
"internalType": "address",
|
|
29025
|
+
"name": "implementation",
|
|
29026
|
+
"type": "address"
|
|
29027
|
+
}
|
|
29028
|
+
],
|
|
29029
|
+
"name": "Upgraded",
|
|
29030
|
+
"type": "event"
|
|
29031
|
+
},
|
|
29032
|
+
{
|
|
29033
|
+
"stateMutability": "payable",
|
|
29034
|
+
"type": "fallback"
|
|
29035
|
+
},
|
|
29036
|
+
{
|
|
29037
|
+
"stateMutability": "payable",
|
|
29038
|
+
"type": "receive"
|
|
29039
|
+
}
|
|
29040
|
+
]
|
|
29041
|
+
},
|
|
28659
29042
|
"VToken_vPT-weETH-26DEC2024_LiquidStakedETH": {
|
|
28660
29043
|
"address": "0x3AF2bE7AbEF0f840b196D99d79F4B803a5dB14a1",
|
|
28661
29044
|
"abi": [
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"MockDAI": "0x75236711d42D0f7Ba91E03fdCe0C9377F5b76c07",
|
|
27
27
|
"MockEIGEN": "0xf140594470Bff436aE82F2116ab8a438671C6e83",
|
|
28
28
|
"MockFRAX": "0x10630d59848547c9F59538E2d8963D63B912C075",
|
|
29
|
+
"MockLBTC": "0x37798CaB3Adde2F4064afBc1C7F9bbBc6A826375",
|
|
29
30
|
"MockPT-weETH-26DEC2024": "0x56107201d3e4b7Db92dEa0Edb9e0454346AEb8B5",
|
|
30
31
|
"MockTUSD": "0x78b292069da1661b7C12B6E766cB506C220b987a",
|
|
31
32
|
"MockUSDC": "0x772d68929655ce7234C8C94256526ddA66Ef641E",
|
|
@@ -68,6 +69,7 @@
|
|
|
68
69
|
"VToken_vDAI_Core": "0xfe050f628bF5278aCfA1e7B13b59fF207e769235",
|
|
69
70
|
"VToken_vEIGEN": "0x6DB4aDbA8F144a57a397b57183BF619e957040B1",
|
|
70
71
|
"VToken_vFRAX_Core": "0x33942B932159A67E3274f54bC4082cbA4A704340",
|
|
72
|
+
"VToken_vLBTC_Core": "0x315F064cF5B5968fE1655436e1856F3ca558d395",
|
|
71
73
|
"VToken_vPT-weETH-26DEC2024_LiquidStakedETH": "0x3AF2bE7AbEF0f840b196D99d79F4B803a5dB14a1",
|
|
72
74
|
"VToken_vTUSD_Core": "0xE23A1fC1545F1b072308c846a38447b23d322Ee2",
|
|
73
75
|
"VToken_vUSDC_Core": "0xF87bceab8DD37489015B426bA931e08A4D787616",
|
|
@@ -29970,6 +29970,80 @@
|
|
|
29970
29970
|
}
|
|
29971
29971
|
]
|
|
29972
29972
|
},
|
|
29973
|
+
"VToken_vLBTC_Core": {
|
|
29974
|
+
"address": "0x25C20e6e110A1cE3FEbaCC8b7E48368c7b2F0C91",
|
|
29975
|
+
"abi": [
|
|
29976
|
+
{
|
|
29977
|
+
"inputs": [
|
|
29978
|
+
{
|
|
29979
|
+
"internalType": "address",
|
|
29980
|
+
"name": "beacon",
|
|
29981
|
+
"type": "address"
|
|
29982
|
+
},
|
|
29983
|
+
{
|
|
29984
|
+
"internalType": "bytes",
|
|
29985
|
+
"name": "data",
|
|
29986
|
+
"type": "bytes"
|
|
29987
|
+
}
|
|
29988
|
+
],
|
|
29989
|
+
"stateMutability": "payable",
|
|
29990
|
+
"type": "constructor"
|
|
29991
|
+
},
|
|
29992
|
+
{
|
|
29993
|
+
"anonymous": false,
|
|
29994
|
+
"inputs": [
|
|
29995
|
+
{
|
|
29996
|
+
"indexed": false,
|
|
29997
|
+
"internalType": "address",
|
|
29998
|
+
"name": "previousAdmin",
|
|
29999
|
+
"type": "address"
|
|
30000
|
+
},
|
|
30001
|
+
{
|
|
30002
|
+
"indexed": false,
|
|
30003
|
+
"internalType": "address",
|
|
30004
|
+
"name": "newAdmin",
|
|
30005
|
+
"type": "address"
|
|
30006
|
+
}
|
|
30007
|
+
],
|
|
30008
|
+
"name": "AdminChanged",
|
|
30009
|
+
"type": "event"
|
|
30010
|
+
},
|
|
30011
|
+
{
|
|
30012
|
+
"anonymous": false,
|
|
30013
|
+
"inputs": [
|
|
30014
|
+
{
|
|
30015
|
+
"indexed": true,
|
|
30016
|
+
"internalType": "address",
|
|
30017
|
+
"name": "beacon",
|
|
30018
|
+
"type": "address"
|
|
30019
|
+
}
|
|
30020
|
+
],
|
|
30021
|
+
"name": "BeaconUpgraded",
|
|
30022
|
+
"type": "event"
|
|
30023
|
+
},
|
|
30024
|
+
{
|
|
30025
|
+
"anonymous": false,
|
|
30026
|
+
"inputs": [
|
|
30027
|
+
{
|
|
30028
|
+
"indexed": true,
|
|
30029
|
+
"internalType": "address",
|
|
30030
|
+
"name": "implementation",
|
|
30031
|
+
"type": "address"
|
|
30032
|
+
}
|
|
30033
|
+
],
|
|
30034
|
+
"name": "Upgraded",
|
|
30035
|
+
"type": "event"
|
|
30036
|
+
},
|
|
30037
|
+
{
|
|
30038
|
+
"stateMutability": "payable",
|
|
30039
|
+
"type": "fallback"
|
|
30040
|
+
},
|
|
30041
|
+
{
|
|
30042
|
+
"stateMutability": "payable",
|
|
30043
|
+
"type": "receive"
|
|
30044
|
+
}
|
|
30045
|
+
]
|
|
30046
|
+
},
|
|
29973
30047
|
"VToken_vPT-weETH-26DEC2024_LiquidStakedETH": {
|
|
29974
30048
|
"address": "0x76697f8eaeA4bE01C678376aAb97498Ee8f80D5C",
|
|
29975
30049
|
"abi": [
|