@0xtorch/core 0.0.15 → 0.0.16
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/_cjs/actions/index.js +3 -1
- package/_cjs/actions/index.js.map +1 -1
- package/_cjs/actions/utils.js +1318 -1
- package/_cjs/actions/utils.js.map +1 -1
- package/_cjs/index.js +3 -1
- package/_cjs/index.js.map +1 -1
- package/_esm/actions/index.js +1 -1
- package/_esm/actions/index.js.map +1 -1
- package/_esm/actions/utils.js +1389 -0
- package/_esm/actions/utils.js.map +1 -1
- package/_esm/index.js +1 -1
- package/_esm/index.js.map +1 -1
- package/_types/actions/index.d.ts +2 -2
- package/_types/actions/index.d.ts.map +1 -1
- package/_types/actions/parsers/default.d.ts +1 -1
- package/_types/actions/schemas/action.d.ts +950 -950
- package/_types/actions/schemas/borrow/borrow.d.ts +16 -16
- package/_types/actions/schemas/borrow/borrowWithDebt.d.ts +16 -16
- package/_types/actions/schemas/crossActionBundle.d.ts +40 -40
- package/_types/actions/schemas/crossReplace/bridgeFrom.d.ts +16 -16
- package/_types/actions/schemas/crossReplace/bridgeTo.d.ts +16 -16
- package/_types/actions/schemas/crossReplace/crossReplace.d.ts +16 -16
- package/_types/actions/schemas/crossTrade/crossTrade.d.ts +16 -16
- package/_types/actions/schemas/default/accountAction.d.ts +18 -18
- package/_types/actions/schemas/default/normalAction.d.ts +18 -18
- package/_types/actions/schemas/deposit/addLiquidity.d.ts +16 -16
- package/_types/actions/schemas/deposit/deposit.d.ts +16 -16
- package/_types/actions/schemas/deposit/depositWithBond.d.ts +16 -16
- package/_types/actions/schemas/deposit/stake.d.ts +16 -16
- package/_types/actions/schemas/fee/fee.d.ts +16 -16
- package/_types/actions/schemas/fee/transactionFee.d.ts +16 -16
- package/_types/actions/schemas/ignore/approve.d.ts +16 -16
- package/_types/actions/schemas/ignore/failTx.d.ts +16 -16
- package/_types/actions/schemas/ignore/ignore.d.ts +8 -8
- package/_types/actions/schemas/ignore/move.d.ts +8 -8
- package/_types/actions/schemas/ignore/receiveFromCex.d.ts +16 -16
- package/_types/actions/schemas/ignore/revoke.d.ts +16 -16
- package/_types/actions/schemas/ignore/sendToCex.d.ts +16 -16
- package/_types/actions/schemas/ignore/spam.d.ts +16 -16
- package/_types/actions/schemas/income/atomicArbitrage.d.ts +16 -16
- package/_types/actions/schemas/income/freeMintNft.d.ts +16 -16
- package/_types/actions/schemas/income/income.d.ts +16 -16
- package/_types/actions/schemas/income/nftRoyalty.d.ts +8 -8
- package/_types/actions/schemas/income/swapIncome.d.ts +8 -8
- package/_types/actions/schemas/reduce/reduce.d.ts +8 -8
- package/_types/actions/schemas/repayment/repayment.d.ts +16 -16
- package/_types/actions/schemas/repayment/repaymentWithDebt.d.ts +16 -16
- package/_types/actions/schemas/replace/replace.d.ts +16 -16
- package/_types/actions/schemas/replace/swapNft.d.ts +16 -16
- package/_types/actions/schemas/replace/unwrap.d.ts +16 -16
- package/_types/actions/schemas/replace/wrap.d.ts +16 -16
- package/_types/actions/schemas/trade/buyCrypto.d.ts +16 -16
- package/_types/actions/schemas/trade/buyNft.d.ts +16 -16
- package/_types/actions/schemas/trade/mintNft.d.ts +16 -16
- package/_types/actions/schemas/trade/sellCrypto.d.ts +16 -16
- package/_types/actions/schemas/trade/sellNft.d.ts +16 -16
- package/_types/actions/schemas/trade/trade.d.ts +16 -16
- package/_types/actions/schemas/transfer/swapTransfer.d.ts +8 -8
- package/_types/actions/schemas/transfer/transfer.d.ts +16 -16
- package/_types/actions/schemas/valuedown/valuedown.d.ts +16 -16
- package/_types/actions/schemas/valueup/valueup.d.ts +16 -16
- package/_types/actions/schemas/withdraw/removeLiquidity.d.ts +16 -16
- package/_types/actions/schemas/withdraw/unstake.d.ts +16 -16
- package/_types/actions/schemas/withdraw/withdraw.d.ts +16 -16
- package/_types/actions/schemas/withdraw/withdrawWithBond.d.ts +16 -16
- package/_types/actions/types/action.d.ts +17 -1
- package/_types/actions/types/action.d.ts.map +1 -1
- package/_types/actions/types/index.d.ts +1 -1
- package/_types/actions/types/index.d.ts.map +1 -1
- package/_types/actions/utils.d.ts +3 -0
- package/_types/actions/utils.d.ts.map +1 -1
- package/_types/apps/schemas.d.ts +4 -4
- package/_types/index.d.ts +2 -2
- package/_types/index.d.ts.map +1 -1
- package/actions/index.ts +4 -0
- package/actions/types/action.ts +26 -1
- package/actions/types/index.ts +2 -0
- package/actions/utils.ts +1951 -0
- package/index.ts +4 -0
- package/package.json +1 -1
|
@@ -13,15 +13,15 @@ export declare const normalActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
13
13
|
icon: z.ZodOptional<z.ZodString>;
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
|
15
15
|
id: string;
|
|
16
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
17
16
|
name: string;
|
|
17
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
18
18
|
description?: string | undefined;
|
|
19
19
|
website?: string | undefined;
|
|
20
20
|
icon?: string | undefined;
|
|
21
21
|
}, {
|
|
22
22
|
id: string;
|
|
23
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
24
23
|
name: string;
|
|
24
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
25
25
|
description?: string | undefined;
|
|
26
26
|
website?: string | undefined;
|
|
27
27
|
icon?: string | undefined;
|
|
@@ -30,12 +30,12 @@ export declare const normalActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
30
30
|
website: string | undefined;
|
|
31
31
|
icon: string | undefined;
|
|
32
32
|
id: string;
|
|
33
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
34
33
|
name: string;
|
|
34
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
35
35
|
}, {
|
|
36
36
|
id: string;
|
|
37
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
38
37
|
name: string;
|
|
38
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
39
39
|
description?: string | undefined;
|
|
40
40
|
website?: string | undefined;
|
|
41
41
|
icon?: string | undefined;
|
|
@@ -444,8 +444,8 @@ export declare const normalActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
444
444
|
website: string | undefined;
|
|
445
445
|
icon: string | undefined;
|
|
446
446
|
id: string;
|
|
447
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
448
447
|
name: string;
|
|
448
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
449
449
|
} | undefined;
|
|
450
450
|
}, {
|
|
451
451
|
type: "NormalAction";
|
|
@@ -497,8 +497,8 @@ export declare const normalActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
497
497
|
comment?: string | undefined;
|
|
498
498
|
app?: {
|
|
499
499
|
id: string;
|
|
500
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
501
500
|
name: string;
|
|
501
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
502
502
|
description?: string | undefined;
|
|
503
503
|
website?: string | undefined;
|
|
504
504
|
icon?: string | undefined;
|
|
@@ -510,8 +510,8 @@ export declare const normalActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
510
510
|
website: string | undefined;
|
|
511
511
|
icon: string | undefined;
|
|
512
512
|
id: string;
|
|
513
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
514
513
|
name: string;
|
|
514
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
515
515
|
} | undefined;
|
|
516
516
|
type: "NormalAction";
|
|
517
517
|
timestamp: number;
|
|
@@ -609,8 +609,8 @@ export declare const normalActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
609
609
|
comment?: string | undefined;
|
|
610
610
|
app?: {
|
|
611
611
|
id: string;
|
|
612
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
613
612
|
name: string;
|
|
613
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
614
614
|
description?: string | undefined;
|
|
615
615
|
website?: string | undefined;
|
|
616
616
|
icon?: string | undefined;
|
|
@@ -632,15 +632,15 @@ export declare const accountActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
632
632
|
icon: z.ZodOptional<z.ZodString>;
|
|
633
633
|
}, "strip", z.ZodTypeAny, {
|
|
634
634
|
id: string;
|
|
635
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
636
635
|
name: string;
|
|
636
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
637
637
|
description?: string | undefined;
|
|
638
638
|
website?: string | undefined;
|
|
639
639
|
icon?: string | undefined;
|
|
640
640
|
}, {
|
|
641
641
|
id: string;
|
|
642
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
643
642
|
name: string;
|
|
643
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
644
644
|
description?: string | undefined;
|
|
645
645
|
website?: string | undefined;
|
|
646
646
|
icon?: string | undefined;
|
|
@@ -649,12 +649,12 @@ export declare const accountActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
649
649
|
website: string | undefined;
|
|
650
650
|
icon: string | undefined;
|
|
651
651
|
id: string;
|
|
652
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
653
652
|
name: string;
|
|
653
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
654
654
|
}, {
|
|
655
655
|
id: string;
|
|
656
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
657
656
|
name: string;
|
|
657
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
658
658
|
description?: string | undefined;
|
|
659
659
|
website?: string | undefined;
|
|
660
660
|
icon?: string | undefined;
|
|
@@ -1065,8 +1065,8 @@ export declare const accountActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1065
1065
|
website: string | undefined;
|
|
1066
1066
|
icon: string | undefined;
|
|
1067
1067
|
id: string;
|
|
1068
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1069
1068
|
name: string;
|
|
1069
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1070
1070
|
} | undefined;
|
|
1071
1071
|
}, {
|
|
1072
1072
|
type: "NormalAccountAction";
|
|
@@ -1120,8 +1120,8 @@ export declare const accountActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1120
1120
|
comment?: string | undefined;
|
|
1121
1121
|
app?: {
|
|
1122
1122
|
id: string;
|
|
1123
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1124
1123
|
name: string;
|
|
1124
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1125
1125
|
description?: string | undefined;
|
|
1126
1126
|
website?: string | undefined;
|
|
1127
1127
|
icon?: string | undefined;
|
|
@@ -1133,8 +1133,8 @@ export declare const accountActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1133
1133
|
website: string | undefined;
|
|
1134
1134
|
icon: string | undefined;
|
|
1135
1135
|
id: string;
|
|
1136
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1137
1136
|
name: string;
|
|
1137
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1138
1138
|
} | undefined;
|
|
1139
1139
|
type: "NormalAccountAction";
|
|
1140
1140
|
timestamp: number;
|
|
@@ -1236,8 +1236,8 @@ export declare const accountActionIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1236
1236
|
comment?: string | undefined;
|
|
1237
1237
|
app?: {
|
|
1238
1238
|
id: string;
|
|
1239
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1240
1239
|
name: string;
|
|
1240
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1241
1241
|
description?: string | undefined;
|
|
1242
1242
|
website?: string | undefined;
|
|
1243
1243
|
icon?: string | undefined;
|
|
@@ -15,15 +15,15 @@ export declare const accountActionNftRoyaltySchema: z.ZodEffects<z.ZodObject<{
|
|
|
15
15
|
icon: z.ZodOptional<z.ZodString>;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
17
|
id: string;
|
|
18
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
19
18
|
name: string;
|
|
19
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
20
20
|
description?: string | undefined;
|
|
21
21
|
website?: string | undefined;
|
|
22
22
|
icon?: string | undefined;
|
|
23
23
|
}, {
|
|
24
24
|
id: string;
|
|
25
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
26
25
|
name: string;
|
|
26
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
27
27
|
description?: string | undefined;
|
|
28
28
|
website?: string | undefined;
|
|
29
29
|
icon?: string | undefined;
|
|
@@ -32,12 +32,12 @@ export declare const accountActionNftRoyaltySchema: z.ZodEffects<z.ZodObject<{
|
|
|
32
32
|
website: string | undefined;
|
|
33
33
|
icon: string | undefined;
|
|
34
34
|
id: string;
|
|
35
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
36
35
|
name: string;
|
|
36
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
37
37
|
}, {
|
|
38
38
|
id: string;
|
|
39
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
40
39
|
name: string;
|
|
40
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
41
41
|
description?: string | undefined;
|
|
42
42
|
website?: string | undefined;
|
|
43
43
|
icon?: string | undefined;
|
|
@@ -560,8 +560,8 @@ export declare const accountActionNftRoyaltySchema: z.ZodEffects<z.ZodObject<{
|
|
|
560
560
|
website: string | undefined;
|
|
561
561
|
icon: string | undefined;
|
|
562
562
|
id: string;
|
|
563
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
564
563
|
name: string;
|
|
564
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
565
565
|
} | undefined;
|
|
566
566
|
}, {
|
|
567
567
|
type: "NormalAccountAction";
|
|
@@ -630,8 +630,8 @@ export declare const accountActionNftRoyaltySchema: z.ZodEffects<z.ZodObject<{
|
|
|
630
630
|
comment?: string | undefined;
|
|
631
631
|
app?: {
|
|
632
632
|
id: string;
|
|
633
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
634
633
|
name: string;
|
|
634
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
635
635
|
description?: string | undefined;
|
|
636
636
|
website?: string | undefined;
|
|
637
637
|
icon?: string | undefined;
|
|
@@ -643,8 +643,8 @@ export declare const accountActionNftRoyaltySchema: z.ZodEffects<z.ZodObject<{
|
|
|
643
643
|
website: string | undefined;
|
|
644
644
|
icon: string | undefined;
|
|
645
645
|
id: string;
|
|
646
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
647
646
|
name: string;
|
|
647
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
648
648
|
} | undefined;
|
|
649
649
|
type: "NormalAccountAction";
|
|
650
650
|
timestamp: number;
|
|
@@ -776,8 +776,8 @@ export declare const accountActionNftRoyaltySchema: z.ZodEffects<z.ZodObject<{
|
|
|
776
776
|
comment?: string | undefined;
|
|
777
777
|
app?: {
|
|
778
778
|
id: string;
|
|
779
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
780
779
|
name: string;
|
|
780
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
781
781
|
description?: string | undefined;
|
|
782
782
|
website?: string | undefined;
|
|
783
783
|
icon?: string | undefined;
|
|
@@ -15,15 +15,15 @@ export declare const accountActionSwapIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
15
15
|
icon: z.ZodOptional<z.ZodString>;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
17
|
id: string;
|
|
18
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
19
18
|
name: string;
|
|
19
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
20
20
|
description?: string | undefined;
|
|
21
21
|
website?: string | undefined;
|
|
22
22
|
icon?: string | undefined;
|
|
23
23
|
}, {
|
|
24
24
|
id: string;
|
|
25
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
26
25
|
name: string;
|
|
26
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
27
27
|
description?: string | undefined;
|
|
28
28
|
website?: string | undefined;
|
|
29
29
|
icon?: string | undefined;
|
|
@@ -32,12 +32,12 @@ export declare const accountActionSwapIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
32
32
|
website: string | undefined;
|
|
33
33
|
icon: string | undefined;
|
|
34
34
|
id: string;
|
|
35
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
36
35
|
name: string;
|
|
36
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
37
37
|
}, {
|
|
38
38
|
id: string;
|
|
39
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
40
39
|
name: string;
|
|
40
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
41
41
|
description?: string | undefined;
|
|
42
42
|
website?: string | undefined;
|
|
43
43
|
icon?: string | undefined;
|
|
@@ -524,8 +524,8 @@ export declare const accountActionSwapIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
524
524
|
website: string | undefined;
|
|
525
525
|
icon: string | undefined;
|
|
526
526
|
id: string;
|
|
527
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
528
527
|
name: string;
|
|
528
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
529
529
|
} | undefined;
|
|
530
530
|
}, {
|
|
531
531
|
type: "NormalAccountAction";
|
|
@@ -591,8 +591,8 @@ export declare const accountActionSwapIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
591
591
|
comment?: string | undefined;
|
|
592
592
|
app?: {
|
|
593
593
|
id: string;
|
|
594
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
595
594
|
name: string;
|
|
595
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
596
596
|
description?: string | undefined;
|
|
597
597
|
website?: string | undefined;
|
|
598
598
|
icon?: string | undefined;
|
|
@@ -604,8 +604,8 @@ export declare const accountActionSwapIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
604
604
|
website: string | undefined;
|
|
605
605
|
icon: string | undefined;
|
|
606
606
|
id: string;
|
|
607
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
608
607
|
name: string;
|
|
608
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
609
609
|
} | undefined;
|
|
610
610
|
type: "NormalAccountAction";
|
|
611
611
|
timestamp: number;
|
|
@@ -731,8 +731,8 @@ export declare const accountActionSwapIncomeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
731
731
|
comment?: string | undefined;
|
|
732
732
|
app?: {
|
|
733
733
|
id: string;
|
|
734
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
735
734
|
name: string;
|
|
735
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
736
736
|
description?: string | undefined;
|
|
737
737
|
website?: string | undefined;
|
|
738
738
|
icon?: string | undefined;
|
|
@@ -15,15 +15,15 @@ export declare const accountActionReduceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
15
15
|
icon: z.ZodOptional<z.ZodString>;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
17
|
id: string;
|
|
18
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
19
18
|
name: string;
|
|
19
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
20
20
|
description?: string | undefined;
|
|
21
21
|
website?: string | undefined;
|
|
22
22
|
icon?: string | undefined;
|
|
23
23
|
}, {
|
|
24
24
|
id: string;
|
|
25
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
26
25
|
name: string;
|
|
26
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
27
27
|
description?: string | undefined;
|
|
28
28
|
website?: string | undefined;
|
|
29
29
|
icon?: string | undefined;
|
|
@@ -32,12 +32,12 @@ export declare const accountActionReduceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
32
32
|
website: string | undefined;
|
|
33
33
|
icon: string | undefined;
|
|
34
34
|
id: string;
|
|
35
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
36
35
|
name: string;
|
|
36
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
37
37
|
}, {
|
|
38
38
|
id: string;
|
|
39
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
40
39
|
name: string;
|
|
40
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
41
41
|
description?: string | undefined;
|
|
42
42
|
website?: string | undefined;
|
|
43
43
|
icon?: string | undefined;
|
|
@@ -524,8 +524,8 @@ export declare const accountActionReduceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
524
524
|
website: string | undefined;
|
|
525
525
|
icon: string | undefined;
|
|
526
526
|
id: string;
|
|
527
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
528
527
|
name: string;
|
|
528
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
529
529
|
} | undefined;
|
|
530
530
|
}, {
|
|
531
531
|
type: "NormalAccountAction";
|
|
@@ -591,8 +591,8 @@ export declare const accountActionReduceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
591
591
|
comment?: string | undefined;
|
|
592
592
|
app?: {
|
|
593
593
|
id: string;
|
|
594
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
595
594
|
name: string;
|
|
595
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
596
596
|
description?: string | undefined;
|
|
597
597
|
website?: string | undefined;
|
|
598
598
|
icon?: string | undefined;
|
|
@@ -604,8 +604,8 @@ export declare const accountActionReduceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
604
604
|
website: string | undefined;
|
|
605
605
|
icon: string | undefined;
|
|
606
606
|
id: string;
|
|
607
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
608
607
|
name: string;
|
|
608
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
609
609
|
} | undefined;
|
|
610
610
|
type: "NormalAccountAction";
|
|
611
611
|
timestamp: number;
|
|
@@ -731,8 +731,8 @@ export declare const accountActionReduceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
731
731
|
comment?: string | undefined;
|
|
732
732
|
app?: {
|
|
733
733
|
id: string;
|
|
734
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
735
734
|
name: string;
|
|
735
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
736
736
|
description?: string | undefined;
|
|
737
737
|
website?: string | undefined;
|
|
738
738
|
icon?: string | undefined;
|
|
@@ -13,15 +13,15 @@ export declare const normalActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
13
13
|
icon: z.ZodOptional<z.ZodString>;
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
|
15
15
|
id: string;
|
|
16
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
17
16
|
name: string;
|
|
17
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
18
18
|
description?: string | undefined;
|
|
19
19
|
website?: string | undefined;
|
|
20
20
|
icon?: string | undefined;
|
|
21
21
|
}, {
|
|
22
22
|
id: string;
|
|
23
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
24
23
|
name: string;
|
|
24
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
25
25
|
description?: string | undefined;
|
|
26
26
|
website?: string | undefined;
|
|
27
27
|
icon?: string | undefined;
|
|
@@ -30,12 +30,12 @@ export declare const normalActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
30
30
|
website: string | undefined;
|
|
31
31
|
icon: string | undefined;
|
|
32
32
|
id: string;
|
|
33
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
34
33
|
name: string;
|
|
34
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
35
35
|
}, {
|
|
36
36
|
id: string;
|
|
37
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
38
37
|
name: string;
|
|
38
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
39
39
|
description?: string | undefined;
|
|
40
40
|
website?: string | undefined;
|
|
41
41
|
icon?: string | undefined;
|
|
@@ -522,8 +522,8 @@ export declare const normalActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
522
522
|
website: string | undefined;
|
|
523
523
|
icon: string | undefined;
|
|
524
524
|
id: string;
|
|
525
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
526
525
|
name: string;
|
|
526
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
527
527
|
} | undefined;
|
|
528
528
|
}, {
|
|
529
529
|
type: "LoanNormalAction";
|
|
@@ -588,8 +588,8 @@ export declare const normalActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
588
588
|
comment?: string | undefined;
|
|
589
589
|
app?: {
|
|
590
590
|
id: string;
|
|
591
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
592
591
|
name: string;
|
|
592
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
593
593
|
description?: string | undefined;
|
|
594
594
|
website?: string | undefined;
|
|
595
595
|
icon?: string | undefined;
|
|
@@ -601,8 +601,8 @@ export declare const normalActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
601
601
|
website: string | undefined;
|
|
602
602
|
icon: string | undefined;
|
|
603
603
|
id: string;
|
|
604
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
605
604
|
name: string;
|
|
605
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
606
606
|
} | undefined;
|
|
607
607
|
type: "LoanNormalAction";
|
|
608
608
|
timestamp: number;
|
|
@@ -726,8 +726,8 @@ export declare const normalActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
726
726
|
comment?: string | undefined;
|
|
727
727
|
app?: {
|
|
728
728
|
id: string;
|
|
729
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
730
729
|
name: string;
|
|
730
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
731
731
|
description?: string | undefined;
|
|
732
732
|
website?: string | undefined;
|
|
733
733
|
icon?: string | undefined;
|
|
@@ -749,15 +749,15 @@ export declare const accountActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
749
749
|
icon: z.ZodOptional<z.ZodString>;
|
|
750
750
|
}, "strip", z.ZodTypeAny, {
|
|
751
751
|
id: string;
|
|
752
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
753
752
|
name: string;
|
|
753
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
754
754
|
description?: string | undefined;
|
|
755
755
|
website?: string | undefined;
|
|
756
756
|
icon?: string | undefined;
|
|
757
757
|
}, {
|
|
758
758
|
id: string;
|
|
759
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
760
759
|
name: string;
|
|
760
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
761
761
|
description?: string | undefined;
|
|
762
762
|
website?: string | undefined;
|
|
763
763
|
icon?: string | undefined;
|
|
@@ -766,12 +766,12 @@ export declare const accountActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
766
766
|
website: string | undefined;
|
|
767
767
|
icon: string | undefined;
|
|
768
768
|
id: string;
|
|
769
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
770
769
|
name: string;
|
|
770
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
771
771
|
}, {
|
|
772
772
|
id: string;
|
|
773
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
774
773
|
name: string;
|
|
774
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
775
775
|
description?: string | undefined;
|
|
776
776
|
website?: string | undefined;
|
|
777
777
|
icon?: string | undefined;
|
|
@@ -1260,8 +1260,8 @@ export declare const accountActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1260
1260
|
website: string | undefined;
|
|
1261
1261
|
icon: string | undefined;
|
|
1262
1262
|
id: string;
|
|
1263
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1264
1263
|
name: string;
|
|
1264
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1265
1265
|
} | undefined;
|
|
1266
1266
|
}, {
|
|
1267
1267
|
type: "LoanAccountAction";
|
|
@@ -1328,8 +1328,8 @@ export declare const accountActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1328
1328
|
comment?: string | undefined;
|
|
1329
1329
|
app?: {
|
|
1330
1330
|
id: string;
|
|
1331
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1332
1331
|
name: string;
|
|
1332
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1333
1333
|
description?: string | undefined;
|
|
1334
1334
|
website?: string | undefined;
|
|
1335
1335
|
icon?: string | undefined;
|
|
@@ -1341,8 +1341,8 @@ export declare const accountActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1341
1341
|
website: string | undefined;
|
|
1342
1342
|
icon: string | undefined;
|
|
1343
1343
|
id: string;
|
|
1344
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1345
1344
|
name: string;
|
|
1345
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1346
1346
|
} | undefined;
|
|
1347
1347
|
type: "LoanAccountAction";
|
|
1348
1348
|
timestamp: number;
|
|
@@ -1470,8 +1470,8 @@ export declare const accountActionRepaymentSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1470
1470
|
comment?: string | undefined;
|
|
1471
1471
|
app?: {
|
|
1472
1472
|
id: string;
|
|
1473
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1474
1473
|
name: string;
|
|
1474
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1475
1475
|
description?: string | undefined;
|
|
1476
1476
|
website?: string | undefined;
|
|
1477
1477
|
icon?: string | undefined;
|