1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(not(feature = "std"))]
extern crate alloc;
#[cfg(not(feature = "std"))]
use alloc::{vec, vec::Vec};
use bitcoin::{Address as BtcAddress, PublicKey as BtcPublicKey};
use bstringify::bstringify;
use codec::{Decode, Encode, MaxEncodedLen};
use core::convert::TryFrom;
#[cfg(any(feature = "runtime-benchmarks", feature = "substrate-compat"))]
use core::convert::TryInto;
use primitive_types::H256;
#[cfg(feature = "std")]
use scale_decode::DecodeAsType;
#[cfg(feature = "std")]
use scale_encode::EncodeAsType;
use scale_info::TypeInfo;
use serde::{Deserialize, Deserializer, Serialize, Serializer};
pub use bitcoin::types::H256Le;
pub const BITCOIN_TESTNET: &str = "bitcoin-testnet";
pub const BITCOIN_MAINNET: &str = "bitcoin-mainnet";
pub const BITCOIN_REGTEST: &str = "bitcoin-regtest";
#[cfg(feature = "substrate-compat")]
pub use arithmetic::*;
#[cfg(feature = "substrate-compat")]
mod arithmetic {
use super::*;
use sp_runtime::{FixedI128, FixedPointNumber, FixedU128};
pub type SignedFixedPoint = FixedI128;
pub type SignedInner = <FixedI128 as FixedPointNumber>::Inner;
pub type UnsignedFixedPoint = FixedU128;
pub type UnsignedInner = <FixedU128 as FixedPointNumber>::Inner;
pub trait BalanceToFixedPoint<FixedPoint> {
fn to_fixed(self) -> Option<FixedPoint>;
}
impl BalanceToFixedPoint<SignedFixedPoint> for Balance {
fn to_fixed(self) -> Option<SignedFixedPoint> {
SignedFixedPoint::checked_from_integer(
TryInto::<<SignedFixedPoint as FixedPointNumber>::Inner>::try_into(self).ok()?,
)
}
}
pub trait TruncateFixedPointToInt: FixedPointNumber {
fn truncate_to_inner(&self) -> Option<<Self as FixedPointNumber>::Inner>;
}
impl TruncateFixedPointToInt for SignedFixedPoint {
fn truncate_to_inner(&self) -> Option<Self::Inner> {
self.into_inner().checked_div(SignedFixedPoint::accuracy())
}
}
impl TruncateFixedPointToInt for UnsignedFixedPoint {
fn truncate_to_inner(&self) -> Option<<Self as FixedPointNumber>::Inner> {
self.into_inner().checked_div(UnsignedFixedPoint::accuracy())
}
}
}
#[derive(
Serialize, Deserialize, Encode, Decode, Clone, PartialEq, Eq, Debug, PartialOrd, Ord, TypeInfo, MaxEncodedLen,
)]
#[cfg_attr(feature = "std", derive(std::hash::Hash))]
pub struct VaultCurrencyPair<CurrencyId: Copy> {
pub collateral: CurrencyId,
pub wrapped: CurrencyId,
}
#[derive(
Serialize, Deserialize, Encode, Decode, Clone, PartialEq, Eq, Debug, PartialOrd, Ord, TypeInfo, MaxEncodedLen,
)]
#[cfg_attr(feature = "std", derive(std::hash::Hash))]
pub struct VaultId<AccountId, CurrencyId: Copy> {
pub account_id: AccountId,
pub currencies: VaultCurrencyPair<CurrencyId>,
}
impl<AccountId, CurrencyId: Copy> VaultId<AccountId, CurrencyId> {
pub fn new(account_id: AccountId, collateral_currency: CurrencyId, wrapped_currency: CurrencyId) -> Self {
Self {
account_id,
currencies: VaultCurrencyPair::<CurrencyId> {
collateral: collateral_currency,
wrapped: wrapped_currency,
},
}
}
pub fn from_pair(account_id: AccountId, currencies: VaultCurrencyPair<CurrencyId>) -> Self {
Self { account_id, currencies }
}
pub fn collateral_currency(&self) -> CurrencyId {
self.currencies.collateral
}
pub fn wrapped_currency(&self) -> CurrencyId {
self.currencies.wrapped
}
}
impl<AccountId, CurrencyId: Copy> From<(AccountId, VaultCurrencyPair<CurrencyId>)> for VaultId<AccountId, CurrencyId> {
fn from((account_id, currencies): (AccountId, VaultCurrencyPair<CurrencyId>)) -> Self {
VaultId::new(account_id, currencies.collateral, currencies.wrapped)
}
}
pub mod issue {
use super::*;
#[derive(Serialize, Deserialize, Encode, Decode, Clone, PartialEq, TypeInfo, MaxEncodedLen)]
#[cfg_attr(feature = "std", derive(Debug))]
#[serde(rename_all = "camelCase")]
pub enum IssueRequestStatus {
Pending,
Completed,
Cancelled,
}
impl Default for IssueRequestStatus {
fn default() -> Self {
IssueRequestStatus::Pending
}
}
#[derive(Serialize, Deserialize, Encode, Decode, Clone, PartialEq, TypeInfo, MaxEncodedLen)]
#[cfg_attr(feature = "std", derive(Debug))]
pub struct IssueRequest<AccountId, BlockNumber, Balance, CurrencyId: Copy> {
pub vault: VaultId<AccountId, CurrencyId>,
pub opentime: BlockNumber,
pub period: BlockNumber,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub griefing_collateral: Balance,
pub griefing_currency: CurrencyId,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub amount: Balance,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub fee: Balance,
pub requester: AccountId,
pub btc_address: BtcAddress,
pub btc_public_key: BtcPublicKey,
pub btc_height: u32,
pub status: IssueRequestStatus,
}
}
#[derive(Serialize, Deserialize, Eq, PartialEq, Encode, Decode, Default, TypeInfo)]
#[serde(rename_all = "camelCase")]
pub struct BalanceWrapper<T> {
#[cfg_attr(feature = "std", serde(bound(serialize = "T: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
#[cfg_attr(feature = "std", serde(bound(deserialize = "T: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
pub amount: T,
}
#[cfg(feature = "std")]
fn serialize_as_string<S: Serializer, T: std::fmt::Display>(t: &T, serializer: S) -> Result<S::Ok, S::Error> {
serializer.serialize_str(&t.to_string())
}
#[cfg(feature = "std")]
fn deserialize_from_string<'de, D: Deserializer<'de>, T: std::str::FromStr>(deserializer: D) -> Result<T, D::Error> {
let s = String::deserialize(deserializer)?;
s.parse::<T>()
.map_err(|_| serde::de::Error::custom("Parse from string failed"))
}
pub mod redeem {
use super::*;
#[derive(Serialize, Deserialize, Encode, Decode, Clone, Eq, PartialEq, TypeInfo, MaxEncodedLen)]
#[cfg_attr(feature = "std", derive(Debug))]
#[serde(rename_all = "camelCase")]
pub enum RedeemRequestStatus {
Pending,
Completed,
Reimbursed(bool),
Retried,
}
impl Default for RedeemRequestStatus {
fn default() -> Self {
RedeemRequestStatus::Pending
}
}
#[derive(Serialize, Deserialize, Encode, Decode, Clone, PartialEq, TypeInfo, MaxEncodedLen)]
#[cfg_attr(feature = "std", derive(Debug))]
pub struct RedeemRequest<AccountId, BlockNumber, Balance, CurrencyId: Copy> {
pub vault: VaultId<AccountId, CurrencyId>,
pub opentime: BlockNumber,
pub period: BlockNumber,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub fee: Balance,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub transfer_fee_btc: Balance,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub amount_btc: Balance,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub premium: Balance,
pub redeemer: AccountId,
pub btc_address: BtcAddress,
pub btc_height: u32,
pub status: RedeemRequestStatus,
}
}
pub mod replace {
use super::*;
#[derive(Serialize, Deserialize, Encode, Decode, Clone, PartialEq, TypeInfo, MaxEncodedLen)]
#[cfg_attr(feature = "std", derive(Debug, Eq))]
#[serde(rename_all = "camelCase")]
pub enum ReplaceRequestStatus {
Pending,
Completed,
Cancelled,
}
impl Default for ReplaceRequestStatus {
fn default() -> Self {
ReplaceRequestStatus::Pending
}
}
#[derive(Serialize, Deserialize, Encode, Decode, Clone, PartialEq, TypeInfo, MaxEncodedLen)]
#[cfg_attr(feature = "std", derive(Eq, Debug))]
pub struct ReplaceRequest<AccountId, BlockNumber, Balance, CurrencyId: Copy> {
pub old_vault: VaultId<AccountId, CurrencyId>,
pub new_vault: VaultId<AccountId, CurrencyId>,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub amount: Balance,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub griefing_collateral: Balance,
#[cfg_attr(feature = "std", serde(bound(deserialize = "Balance: std::str::FromStr")))]
#[cfg_attr(feature = "std", serde(deserialize_with = "deserialize_from_string"))]
#[cfg_attr(feature = "std", serde(bound(serialize = "Balance: std::fmt::Display")))]
#[cfg_attr(feature = "std", serde(serialize_with = "serialize_as_string"))]
pub collateral: Balance,
pub accept_time: BlockNumber,
pub period: BlockNumber,
pub btc_address: BtcAddress,
pub btc_height: u32,
pub status: ReplaceRequestStatus,
}
}
pub mod oracle {
use super::*;
#[derive(Serialize, Deserialize, Encode, Decode, Clone, Eq, PartialEq, Debug, TypeInfo, MaxEncodedLen)]
#[serde(rename_all = "camelCase")]
pub enum Key {
ExchangeRate(CurrencyId),
FeeEstimation,
}
}
#[cfg(feature = "substrate-compat")]
pub use runtime::*;
#[cfg(feature = "substrate-compat")]
mod runtime {
use super::*;
use sp_runtime::{
generic,
traits::{BlakeTwo256, IdentifyAccount, Verify},
MultiSignature, OpaqueExtrinsic,
};
pub type Signature = MultiSignature;
pub type AccountId = <<Signature as Verify>::Signer as IdentifyAccount>::AccountId;
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
pub type Block = generic::Block<Header, OpaqueExtrinsic>;
}
pub type BlockNumber = u32;
pub type Nonce = u32;
pub type Balance = u128;
pub type SignedBalance = i128;
pub type Index = u32;
pub type Hash = H256;
pub type Moment = u64;
#[cfg(feature = "substrate-compat")]
pub use loans::*;
#[cfg(feature = "substrate-compat")]
mod loans {
use super::*;
use sp_runtime::{FixedU128, Permill};
pub type Price = FixedU128;
pub type Timestamp = Moment;
pub type PriceDetail = (Price, Timestamp);
pub type Rate = FixedU128;
pub type Ratio = Permill;
pub type Shortfall = FixedU128;
pub type Liquidity = FixedU128;
pub const SECONDS_PER_YEAR: Timestamp = 365 * 24 * 60 * 60;
}
pub trait CurrencyInfo {
fn name(&self) -> &str;
fn symbol(&self) -> &str;
fn decimals(&self) -> u8;
}
macro_rules! create_currency_id {
($(#[$meta:meta])*
$vis:vis enum TokenSymbol {
$($(#[$vmeta:meta])* $symbol:ident($name:expr, $deci:literal) = $val:literal,)*
}) => {
$(#[$meta])*
$vis enum TokenSymbol {
$($(#[$vmeta])* $symbol = $val,)*
}
$(pub const $symbol: TokenSymbol = TokenSymbol::$symbol;)*
impl TryFrom<u8> for TokenSymbol {
type Error = ();
fn try_from(v: u8) -> Result<Self, Self::Error> {
match v {
$($val => Ok(TokenSymbol::$symbol),)*
_ => Err(()),
}
}
}
impl Into<u8> for TokenSymbol {
fn into(self) -> u8 {
match self {
$(TokenSymbol::$symbol => ($val),)*
}
}
}
impl TokenSymbol {
pub fn get_info() -> Vec<(&'static str, u32)> {
vec![
$((stringify!($symbol), $deci),)*
]
}
pub const fn one(&self) -> Balance {
10u128.pow(self.decimals() as u32)
}
const fn decimals(&self) -> u8 {
match self {
$(TokenSymbol::$symbol => $deci,)*
}
}
}
impl CurrencyInfo for TokenSymbol {
fn name(&self) -> &str {
match self {
$(TokenSymbol::$symbol => $name,)*
}
}
fn symbol(&self) -> &str {
match self {
$(TokenSymbol::$symbol => stringify!($symbol),)*
}
}
fn decimals(&self) -> u8 {
self.decimals()
}
}
impl TryFrom<Vec<u8>> for TokenSymbol {
type Error = ();
fn try_from(v: Vec<u8>) -> Result<TokenSymbol, ()> {
match v.as_slice() {
$(bstringify!($symbol) => Ok(TokenSymbol::$symbol),)*
_ => Err(()),
}
}
}
}
}
create_currency_id! {
#[derive(Serialize, Deserialize,Encode, Decode, Eq, Hash, PartialEq, Copy, Clone, Debug, PartialOrd, Ord, TypeInfo, MaxEncodedLen)]
#[cfg_attr(feature = "std", derive(EncodeAsType,DecodeAsType))]
#[repr(u8)]
pub enum TokenSymbol {
DOT("Polkadot", 10) = 0,
IBTC("interBTC", 8) = 1,
INTR("Interlay", 10) = 2,
KSM("Kusama", 12) = 10,
KBTC("kBTC", 8) = 11,
KINT("Kintsugi", 12) = 12,
}
}
#[derive(
Serialize,
Deserialize,
Encode,
Decode,
Eq,
Hash,
PartialEq,
Copy,
Clone,
Debug,
PartialOrd,
Ord,
TypeInfo,
MaxEncodedLen,
)]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "std", derive(EncodeAsType, DecodeAsType))]
pub enum LpToken {
Token(TokenSymbol),
ForeignAsset(ForeignAssetId),
StableLpToken(StablePoolId),
}
#[derive(
Serialize,
Deserialize,
Encode,
Decode,
Eq,
Hash,
PartialEq,
Copy,
Clone,
Debug,
PartialOrd,
Ord,
TypeInfo,
MaxEncodedLen,
)]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "std", derive(EncodeAsType, DecodeAsType))]
pub enum CurrencyId {
Token(TokenSymbol),
ForeignAsset(ForeignAssetId),
LendToken(LendTokenId),
LpToken(LpToken, LpToken),
StableLpToken(StablePoolId),
}
pub type ForeignAssetId = u32;
pub type LendTokenId = u32;
pub type StablePoolId = u32;
#[derive(scale_info::TypeInfo, Encode, Decode, Clone, Eq, PartialEq, Debug)]
pub struct CustomMetadata {
pub fee_per_second: u128,
pub coingecko_id: Vec<u8>,
}
impl CurrencyId {
pub fn sort(&mut self) {
match *self {
CurrencyId::LpToken(x, y) => {
if x > y {
*self = CurrencyId::LpToken(y, x)
}
}
_ => {}
}
}
pub fn is_lend_token(&self) -> bool {
matches!(self, CurrencyId::LendToken(_))
}
pub fn join_lp_token(currency_id_0: Self, currency_id_1: Self) -> Option<Self> {
let lp_token_0 = match currency_id_0 {
CurrencyId::Token(symbol) => LpToken::Token(symbol),
CurrencyId::ForeignAsset(foreign_asset_id) => LpToken::ForeignAsset(foreign_asset_id),
CurrencyId::StableLpToken(stable_pool_id) => LpToken::StableLpToken(stable_pool_id),
_ => return None,
};
let lp_token_1 = match currency_id_1 {
CurrencyId::Token(symbol) => LpToken::Token(symbol),
CurrencyId::ForeignAsset(foreign_asset_id) => LpToken::ForeignAsset(foreign_asset_id),
CurrencyId::StableLpToken(stable_pool_id) => LpToken::StableLpToken(stable_pool_id),
_ => return None,
};
Some(CurrencyId::LpToken(lp_token_0, lp_token_1))
}
pub fn is_lp_token(&self) -> bool {
match self {
Self::Token(_) | Self::ForeignAsset(_) | Self::StableLpToken(_) => true,
_ => false,
}
}
}
impl Into<CurrencyId> for LpToken {
fn into(self) -> CurrencyId {
match self {
LpToken::Token(token) => CurrencyId::Token(token),
LpToken::ForeignAsset(foreign_asset_id) => CurrencyId::ForeignAsset(foreign_asset_id),
LpToken::StableLpToken(stable_pool_id) => CurrencyId::StableLpToken(stable_pool_id),
}
}
}
#[cfg(feature = "runtime-benchmarks")]
impl From<u32> for CurrencyId {
fn from(value: u32) -> Self {
if value < 1000 {
CurrencyId::ForeignAsset((value % 256).try_into().unwrap())
} else {
CurrencyId::StableLpToken((value % 256).try_into().unwrap())
}
}
}