@venusprotocol/isolated-pools 3.7.0-dev.5 → 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/basesepolia/.chainId +1 -0
- package/deployments/basesepolia/ComptrollerBeacon.json +206 -0
- package/deployments/basesepolia/ComptrollerImpl.json +3396 -0
- package/deployments/basesepolia/Comptroller_Core.json +187 -0
- package/deployments/basesepolia/DefaultProxyAdmin.json +200 -0
- package/deployments/basesepolia/JumpRateModelV2_base0bps_slope750bps_jump25000bps_kink8000bps.json +608 -0
- package/deployments/basesepolia/JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps.json +608 -0
- package/deployments/basesepolia/MockUSDC.json +458 -0
- package/deployments/basesepolia/MockcbBTC.json +458 -0
- package/deployments/basesepolia/NativeTokenGateway_vWETH_Core.json +599 -0
- package/deployments/basesepolia/PoolLens.json +1416 -0
- package/deployments/basesepolia/PoolRegistry.json +940 -0
- package/deployments/basesepolia/PoolRegistry_Implementation.json +1194 -0
- package/deployments/basesepolia/PoolRegistry_Proxy.json +262 -0
- package/deployments/basesepolia/RewardsDistributorImpl.json +1856 -0
- package/deployments/basesepolia/RewardsDistributor_Core_0.json +1420 -0
- package/deployments/basesepolia/RewardsDistributor_Core_0_Proxy.json +272 -0
- package/deployments/basesepolia/VTokenBeacon.json +206 -0
- package/deployments/basesepolia/VTokenImpl.json +3269 -0
- package/deployments/basesepolia/VToken_vUSDC_Core.json +257 -0
- package/deployments/basesepolia/VToken_vWETH_Core.json +257 -0
- package/deployments/basesepolia/VToken_vcbBTC_Core.json +257 -0
- package/deployments/basesepolia/solcInputs/1cc1a300ca8c782ec718d1d686c359e7.json +301 -0
- package/deployments/basesepolia/solcInputs/9fb535a58937a08c38529913271f4d87.json +397 -0
- package/deployments/basesepolia.json +11959 -0
- package/deployments/basesepolia_addresses.json +27 -0
- 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/deploy/018-native-token-gateway.js +14 -0
- package/dist/deployments/basesepolia.json +11959 -0
- package/dist/deployments/ethereum.json +74 -0
- package/dist/deployments/opmainnet.json +9280 -0
- package/dist/deployments/sepolia.json +383 -0
- package/dist/hardhat.config.js +19 -0
- package/dist/helpers/deploymentConfig.d.ts +9 -0
- package/dist/helpers/deploymentConfig.js +186 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getMaxBorrowRateMantissa = exports.getBidderDeploymentValues = exports.getTokenAddress = exports.getTokenConfig = exports.getConfig = exports.globalConfig = exports.preconfiguredAddresses = exports.OP_MAINNET_MULTISIG = exports.OP_SEPOLIA_MULTISIG = exports.ZKSYNC_MAINNET_MULTISIG = exports.ZKSYNC_SEPOLIA_MULTISIG = exports.ARBITRUM_ONE_MULTISIG = exports.ARBITRUM_SEPOLIA_MULTISIG = exports.OPBNBMAINNET_MULTISIG = exports.OPBNBTESTNET_MULTISIG = exports.ETHEREUM_MULTISIG = exports.SEPOLIA_MULTISIG = exports.blocksPerYear = exports.SECONDS_PER_YEAR = exports.OPBNB_BLOCKS_PER_YEAR = exports.ETH_BLOCKS_PER_YEAR = exports.BSC_BLOCKS_PER_YEAR = exports.InterestRateModels = void 0;
|
|
3
|
+
exports.getMaxBorrowRateMantissa = exports.getBidderDeploymentValues = exports.getTokenAddress = exports.getTokenConfig = exports.getConfig = exports.globalConfig = exports.preconfiguredAddresses = exports.BASE_SEPOLIA_MULTISIG = exports.OP_MAINNET_MULTISIG = exports.OP_SEPOLIA_MULTISIG = exports.ZKSYNC_MAINNET_MULTISIG = exports.ZKSYNC_SEPOLIA_MULTISIG = exports.ARBITRUM_ONE_MULTISIG = exports.ARBITRUM_SEPOLIA_MULTISIG = exports.OPBNBMAINNET_MULTISIG = exports.OPBNBTESTNET_MULTISIG = exports.ETHEREUM_MULTISIG = exports.SEPOLIA_MULTISIG = exports.blocksPerYear = exports.SECONDS_PER_YEAR = exports.OPBNB_BLOCKS_PER_YEAR = exports.ETH_BLOCKS_PER_YEAR = exports.BSC_BLOCKS_PER_YEAR = exports.InterestRateModels = void 0;
|
|
4
4
|
const arbitrumone_json_1 = require("@venusprotocol/governance-contracts/deployments/arbitrumone.json");
|
|
5
5
|
const arbitrumsepolia_json_1 = require("@venusprotocol/governance-contracts/deployments/arbitrumsepolia.json");
|
|
6
6
|
const bscmainnet_json_1 = require("@venusprotocol/governance-contracts/deployments/bscmainnet.json");
|
|
@@ -48,6 +48,7 @@ exports.blocksPerYear = {
|
|
|
48
48
|
zksyncmainnet: 0,
|
|
49
49
|
opsepolia: 0,
|
|
50
50
|
opmainnet: 0,
|
|
51
|
+
basesepolia: 0,
|
|
51
52
|
isTimeBased: 0, // for time based contracts
|
|
52
53
|
};
|
|
53
54
|
exports.SEPOLIA_MULTISIG = "0x94fa6078b6b8a26f0b6edffbe6501b22a10470fb";
|
|
@@ -60,6 +61,7 @@ exports.ZKSYNC_SEPOLIA_MULTISIG = "0xa2f83de95E9F28eD443132C331B6a9C9B7a9F866";
|
|
|
60
61
|
exports.ZKSYNC_MAINNET_MULTISIG = "0x751Aa759cfBB6CE71A43b48e40e1cCcFC66Ba4aa";
|
|
61
62
|
exports.OP_SEPOLIA_MULTISIG = "0xd57365EE4E850e881229e2F8Aa405822f289e78d";
|
|
62
63
|
exports.OP_MAINNET_MULTISIG = "0x2e94dd14E81999CdBF5deDE31938beD7308354b3";
|
|
64
|
+
exports.BASE_SEPOLIA_MULTISIG = "0xdf3b635d2b535f906BB02abb22AED71346E36a00";
|
|
63
65
|
const DEFAULT_REDUCE_RESERVES_BLOCK_DELTA = "7200";
|
|
64
66
|
const REDUCE_RESERVES_BLOCK_DELTA_ETHEREUM = "7200";
|
|
65
67
|
const REDUCE_RESERVES_BLOCK_DELTA_OPBNBTESTNET = "300";
|
|
@@ -70,6 +72,7 @@ const REDUCE_RESERVES_BLOCK_DELTA_ZKSYNC_SEPOLIA = "86400";
|
|
|
70
72
|
const REDUCE_RESERVES_BLOCK_DELTA_OP_SEPOLIA = "86400";
|
|
71
73
|
const REDUCE_RESERVES_BLOCK_DELTA_ZKSYNC_MAINNET = "86400";
|
|
72
74
|
const REDUCE_RESERVES_BLOCK_DELTA_OP_MAINNET = "86400";
|
|
75
|
+
const REDUCE_RESERVES_BLOCK_DELTA_BASE_SEPOLIA = "86400";
|
|
73
76
|
exports.preconfiguredAddresses = {
|
|
74
77
|
hardhat: {
|
|
75
78
|
VTreasury: "account:deployer",
|
|
@@ -174,6 +177,13 @@ exports.preconfiguredAddresses = {
|
|
|
174
177
|
CriticalTimelock: exports.OP_MAINNET_MULTISIG,
|
|
175
178
|
AccessControlManager: "0xD71b1F33f6B0259683f11174EE4Ddc2bb9cE4eD6",
|
|
176
179
|
},
|
|
180
|
+
basesepolia: {
|
|
181
|
+
VTreasury: "0x07e880DaA6572829cE8ABaaf0f5323A4eFC417A6",
|
|
182
|
+
NormalTimelock: exports.BASE_SEPOLIA_MULTISIG,
|
|
183
|
+
FastTrackTimelock: exports.BASE_SEPOLIA_MULTISIG,
|
|
184
|
+
CriticalTimelock: exports.BASE_SEPOLIA_MULTISIG,
|
|
185
|
+
AccessControlManager: "0x724138223D8F76b519fdE715f60124E7Ce51e051",
|
|
186
|
+
},
|
|
177
187
|
};
|
|
178
188
|
const poolRegistryPermissions = () => {
|
|
179
189
|
const methods = [
|
|
@@ -2755,6 +2765,13 @@ exports.globalConfig = {
|
|
|
2755
2765
|
decimals: 18,
|
|
2756
2766
|
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2757
2767
|
},
|
|
2768
|
+
{
|
|
2769
|
+
isMock: true,
|
|
2770
|
+
name: "Lombard Staked Bitcoin",
|
|
2771
|
+
symbol: "LBTC",
|
|
2772
|
+
decimals: 8,
|
|
2773
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
2774
|
+
},
|
|
2758
2775
|
],
|
|
2759
2776
|
poolConfig: [
|
|
2760
2777
|
{
|
|
@@ -2980,6 +2997,24 @@ exports.globalConfig = {
|
|
|
2980
2997
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
2981
2998
|
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
2982
2999
|
},
|
|
3000
|
+
{
|
|
3001
|
+
name: "Venus LBTC (Core)",
|
|
3002
|
+
asset: "LBTC",
|
|
3003
|
+
symbol: "vLBTC_Core",
|
|
3004
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3005
|
+
baseRatePerYear: (0, utils_1.convertToUnit)("0", 18),
|
|
3006
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
3007
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.0", 18),
|
|
3008
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
3009
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.735", 18),
|
|
3010
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.785", 18),
|
|
3011
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
3012
|
+
initialSupply: (0, utils_1.convertToUnit)("0.106", 18),
|
|
3013
|
+
supplyCap: (0, utils_1.convertToUnit)("450", 18),
|
|
3014
|
+
borrowCap: (0, utils_1.convertToUnit)("45", 18),
|
|
3015
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3016
|
+
vTokenReceiver: exports.preconfiguredAddresses.sepolia.VTreasury,
|
|
3017
|
+
},
|
|
2983
3018
|
],
|
|
2984
3019
|
rewards: [
|
|
2985
3020
|
// XVS Rewards Over 90 days (648000 blocks)
|
|
@@ -3516,6 +3551,13 @@ exports.globalConfig = {
|
|
|
3516
3551
|
decimals: 18,
|
|
3517
3552
|
tokenAddress: "0xD9A442856C234a39a81a089C06451EBAa4306a72",
|
|
3518
3553
|
},
|
|
3554
|
+
{
|
|
3555
|
+
isMock: false,
|
|
3556
|
+
name: "Lombard Staked Bitcoin",
|
|
3557
|
+
symbol: "LBTC",
|
|
3558
|
+
decimals: 8,
|
|
3559
|
+
tokenAddress: "0x8236a87084f8B84306f72007F36F2618A5634494",
|
|
3560
|
+
},
|
|
3519
3561
|
],
|
|
3520
3562
|
poolConfig: [
|
|
3521
3563
|
{
|
|
@@ -3723,6 +3765,24 @@ exports.globalConfig = {
|
|
|
3723
3765
|
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3724
3766
|
vTokenReceiver: exports.preconfiguredAddresses.ethereum.VTreasury,
|
|
3725
3767
|
},
|
|
3768
|
+
{
|
|
3769
|
+
name: "Venus LBTC (Core)",
|
|
3770
|
+
asset: "LBTC",
|
|
3771
|
+
symbol: "vLBTC_Core",
|
|
3772
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
3773
|
+
baseRatePerYear: (0, utils_1.convertToUnit)("0", 18),
|
|
3774
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
3775
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.0", 18),
|
|
3776
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
3777
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.735", 18),
|
|
3778
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.785", 18),
|
|
3779
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
3780
|
+
initialSupply: (0, utils_1.convertToUnit)("0.106", 18),
|
|
3781
|
+
supplyCap: (0, utils_1.convertToUnit)("450", 18),
|
|
3782
|
+
borrowCap: (0, utils_1.convertToUnit)("45", 18),
|
|
3783
|
+
reduceReservesBlockDelta: DEFAULT_REDUCE_RESERVES_BLOCK_DELTA,
|
|
3784
|
+
vTokenReceiver: "0xCb09Ab3F6254437d225Ed3CABEBe0949782E2372",
|
|
3785
|
+
},
|
|
3726
3786
|
],
|
|
3727
3787
|
rewards: [
|
|
3728
3788
|
// XVS Rewards Over 90 days (648000 blocks)
|
|
@@ -5572,6 +5632,127 @@ exports.globalConfig = {
|
|
|
5572
5632
|
],
|
|
5573
5633
|
preconfiguredAddresses: exports.preconfiguredAddresses.opmainnet,
|
|
5574
5634
|
},
|
|
5635
|
+
basesepolia: {
|
|
5636
|
+
tokensConfig: [
|
|
5637
|
+
{
|
|
5638
|
+
isMock: true,
|
|
5639
|
+
name: "USD Coin",
|
|
5640
|
+
symbol: "USDC",
|
|
5641
|
+
decimals: 6,
|
|
5642
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
5643
|
+
},
|
|
5644
|
+
{
|
|
5645
|
+
isMock: false,
|
|
5646
|
+
name: "Wrapped Ether",
|
|
5647
|
+
symbol: "WETH",
|
|
5648
|
+
decimals: 18,
|
|
5649
|
+
tokenAddress: "0x4200000000000000000000000000000000000006",
|
|
5650
|
+
},
|
|
5651
|
+
{
|
|
5652
|
+
isMock: true,
|
|
5653
|
+
name: "Coinbase Wrapped BTC",
|
|
5654
|
+
symbol: "cbBTC",
|
|
5655
|
+
decimals: 8,
|
|
5656
|
+
tokenAddress: hardhat_1.ethers.constants.AddressZero,
|
|
5657
|
+
},
|
|
5658
|
+
{
|
|
5659
|
+
isMock: false,
|
|
5660
|
+
name: "Venus",
|
|
5661
|
+
symbol: "XVS",
|
|
5662
|
+
decimals: 18,
|
|
5663
|
+
tokenAddress: "0xE657EDb5579B82135a274E85187927C42E38C021",
|
|
5664
|
+
},
|
|
5665
|
+
],
|
|
5666
|
+
poolConfig: [
|
|
5667
|
+
{
|
|
5668
|
+
id: "Core",
|
|
5669
|
+
name: "Core",
|
|
5670
|
+
closeFactor: (0, utils_1.convertToUnit)("0.5", 18),
|
|
5671
|
+
liquidationIncentive: (0, utils_1.convertToUnit)("1.1", 18),
|
|
5672
|
+
minLiquidatableCollateral: (0, utils_1.convertToUnit)("100", 18),
|
|
5673
|
+
vtokens: [
|
|
5674
|
+
{
|
|
5675
|
+
name: "Venus USDC (Core)",
|
|
5676
|
+
asset: "USDC",
|
|
5677
|
+
symbol: "vUSDC_Core",
|
|
5678
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
5679
|
+
baseRatePerYear: "0",
|
|
5680
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.075", 18),
|
|
5681
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("2.5", 18),
|
|
5682
|
+
kink_: (0, utils_1.convertToUnit)("0.8", 18),
|
|
5683
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.75", 18),
|
|
5684
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.77", 18),
|
|
5685
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.1", 18),
|
|
5686
|
+
initialSupply: (0, utils_1.convertToUnit)("2000", 6),
|
|
5687
|
+
supplyCap: (0, utils_1.convertToUnit)("150000", 6),
|
|
5688
|
+
borrowCap: (0, utils_1.convertToUnit)("130000", 6),
|
|
5689
|
+
reduceReservesBlockDelta: REDUCE_RESERVES_BLOCK_DELTA_BASE_SEPOLIA,
|
|
5690
|
+
vTokenReceiver: exports.preconfiguredAddresses.basesepolia.VTreasury,
|
|
5691
|
+
},
|
|
5692
|
+
{
|
|
5693
|
+
name: "Venus WETH (Core)",
|
|
5694
|
+
asset: "WETH",
|
|
5695
|
+
symbol: "vWETH_Core",
|
|
5696
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
5697
|
+
baseRatePerYear: "0",
|
|
5698
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
5699
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("3", 18),
|
|
5700
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
5701
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.7", 18),
|
|
5702
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
5703
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
5704
|
+
initialSupply: (0, utils_1.convertToUnit)("0.6", 18),
|
|
5705
|
+
supplyCap: (0, utils_1.convertToUnit)(25, 18),
|
|
5706
|
+
borrowCap: (0, utils_1.convertToUnit)(16, 18),
|
|
5707
|
+
reduceReservesBlockDelta: REDUCE_RESERVES_BLOCK_DELTA_BASE_SEPOLIA,
|
|
5708
|
+
vTokenReceiver: exports.preconfiguredAddresses.basesepolia.VTreasury,
|
|
5709
|
+
},
|
|
5710
|
+
{
|
|
5711
|
+
name: "Venus cbBTC (Core)",
|
|
5712
|
+
asset: "cbBTC",
|
|
5713
|
+
symbol: "vcbBTC_Core",
|
|
5714
|
+
rateModel: InterestRateModels.JumpRate.toString(),
|
|
5715
|
+
baseRatePerYear: "0",
|
|
5716
|
+
multiplierPerYear: (0, utils_1.convertToUnit)("0.09", 18),
|
|
5717
|
+
jumpMultiplierPerYear: (0, utils_1.convertToUnit)("3", 18),
|
|
5718
|
+
kink_: (0, utils_1.convertToUnit)("0.45", 18),
|
|
5719
|
+
collateralFactor: (0, utils_1.convertToUnit)("0.7", 18),
|
|
5720
|
+
liquidationThreshold: (0, utils_1.convertToUnit)("0.75", 18),
|
|
5721
|
+
reserveFactor: (0, utils_1.convertToUnit)("0.2", 18),
|
|
5722
|
+
initialSupply: (0, utils_1.convertToUnit)("0.6", 8),
|
|
5723
|
+
supplyCap: (0, utils_1.convertToUnit)(25, 8),
|
|
5724
|
+
borrowCap: (0, utils_1.convertToUnit)(16, 8),
|
|
5725
|
+
reduceReservesBlockDelta: REDUCE_RESERVES_BLOCK_DELTA_BASE_SEPOLIA,
|
|
5726
|
+
vTokenReceiver: exports.preconfiguredAddresses.basesepolia.VTreasury,
|
|
5727
|
+
},
|
|
5728
|
+
],
|
|
5729
|
+
rewards: [
|
|
5730
|
+
// XVS Rewards Over 120 months (311040000 seconds)
|
|
5731
|
+
// WETH: 360 XVS for Suppliers
|
|
5732
|
+
// 360 XVS for Borrowers
|
|
5733
|
+
// WBTC: 360 XVS for Suppliers
|
|
5734
|
+
// 360 XVS for Borrowers
|
|
5735
|
+
// USDT: 360 XVS for Suppliers
|
|
5736
|
+
// 360 XVS for Borrowers
|
|
5737
|
+
// USDC: 360 XVS for Suppliers
|
|
5738
|
+
// 360 XVS for Borrowers
|
|
5739
|
+
// OP: 360 XVS for Suppliers
|
|
5740
|
+
// 360 XVS for Borrowers
|
|
5741
|
+
{
|
|
5742
|
+
asset: "XVS",
|
|
5743
|
+
markets: ["WETH", "USDC"],
|
|
5744
|
+
supplySpeeds: ["1157407407407", "1157407407407"],
|
|
5745
|
+
borrowSpeeds: ["1157407407407", "1157407407407"],
|
|
5746
|
+
},
|
|
5747
|
+
],
|
|
5748
|
+
},
|
|
5749
|
+
],
|
|
5750
|
+
accessControlConfig: [
|
|
5751
|
+
...poolRegistryPermissions(),
|
|
5752
|
+
...normalTimelockPermissions(exports.preconfiguredAddresses.basesepolia.NormalTimelock),
|
|
5753
|
+
],
|
|
5754
|
+
preconfiguredAddresses: exports.preconfiguredAddresses.basesepolia,
|
|
5755
|
+
},
|
|
5575
5756
|
};
|
|
5576
5757
|
async function getConfig(networkName) {
|
|
5577
5758
|
switch (networkName) {
|
|
@@ -5601,6 +5782,8 @@ async function getConfig(networkName) {
|
|
|
5601
5782
|
return exports.globalConfig.opsepolia;
|
|
5602
5783
|
case "opmainnet":
|
|
5603
5784
|
return exports.globalConfig.opmainnet;
|
|
5785
|
+
case "basesepolia":
|
|
5786
|
+
return exports.globalConfig.basesepolia;
|
|
5604
5787
|
case "development":
|
|
5605
5788
|
return exports.globalConfig.bsctestnet;
|
|
5606
5789
|
default:
|
|
@@ -5702,6 +5885,8 @@ function getMaxBorrowRateMantissa(networkName) {
|
|
|
5702
5885
|
return ethers_1.BigNumber.from(0.0005e16);
|
|
5703
5886
|
case "opbnbmainnet":
|
|
5704
5887
|
return ethers_1.BigNumber.from(0.0005e16);
|
|
5888
|
+
case "basesepolia":
|
|
5889
|
+
return ethers_1.BigNumber.from(0.0005e16);
|
|
5705
5890
|
case "development":
|
|
5706
5891
|
return ethers_1.BigNumber.from(0.0005e16);
|
|
5707
5892
|
default:
|