Skip to content

Commit e9cb26a

Browse files
committed
chore(init-testnet): Update lending markets
1 parent 4f64ad2 commit e9cb26a

1 file changed

Lines changed: 12 additions & 8 deletions

File tree

scripts/init-testnet.ts

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@ function constructLendingSetup(api: ApiPromise) {
6565
}
6666
},
6767
state: "Pending",
68-
supplyCap: "2000000000",
69-
borrowCap: "2000000000",
68+
// 100 KBTC. Mainnet will be only 20 KBTC.
69+
supplyCap: "10000000000",
70+
borrowCap: "10000000000",
7071
lendTokenId: { LendToken: 1 }
7172
}
7273
], [
@@ -89,6 +90,7 @@ function constructLendingSetup(api: ApiPromise) {
8990
}
9091
},
9192
state: "Pending",
93+
// 30,000 KSM
9294
supplyCap: "30000000000000000",
9395
borrowCap: "30000000000000000",
9496
lendTokenId: { LendToken: 2 }
@@ -107,14 +109,15 @@ function constructLendingSetup(api: ApiPromise) {
107109
rateModel: {
108110
Jump: {
109111
baseRate: 0,
110-
jumpRate: "100000000000000000",
112+
jumpRate: "150000000000000000",
111113
fullRate: "400000000000000000",
112114
jumpUtilization: 900000
113115
}
114116
},
115117
state: "Pending",
116-
supplyCap: "80000000000",
117-
borrowCap: "80000000000",
118+
// 800,000 USDT
119+
supplyCap: "800000000000",
120+
borrowCap: "800000000000",
118121
lendTokenId: { LendToken: 3 }
119122
}
120123
], [
@@ -131,14 +134,15 @@ function constructLendingSetup(api: ApiPromise) {
131134
rateModel: {
132135
Jump: {
133136
baseRate: 0,
134-
jumpRate: "150000000000000000",
137+
jumpRate: "100000000000000000",
135138
fullRate: "400000000000000000",
136139
jumpUtilization: 900000
137140
}
138141
},
139142
state: "Pending",
140-
supplyCap: "20000000000000000000000",
141-
borrowCap: "20000000000000000000000",
143+
// 10,000 MOVR
144+
supplyCap: "10000000000000000000000",
145+
borrowCap: "10000000000000000000000",
142146
lendTokenId: { LendToken: 4 }
143147
}
144148
],

0 commit comments

Comments
 (0)