@0xtorch/core 0.0.14 → 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/schemas/crossActionBundle.js +8 -2
- package/_cjs/actions/schemas/crossActionBundle.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/schemas/crossActionBundle.js +8 -2
- package/_esm/actions/schemas/crossActionBundle.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 +1578 -45107
- package/_types/actions/schemas/crossActionBundle.d.ts.map +1 -1
- 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/schemas/crossActionBundle.ts +14 -2
- 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 normalActionTransferSchema: 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 normalActionTransferSchema: 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;
|
|
@@ -1224,8 +1224,8 @@ export declare const normalActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1224
1224
|
website: string | undefined;
|
|
1225
1225
|
icon: string | undefined;
|
|
1226
1226
|
id: string;
|
|
1227
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1228
1227
|
name: string;
|
|
1228
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1229
1229
|
} | undefined;
|
|
1230
1230
|
}, {
|
|
1231
1231
|
type: "NormalAction";
|
|
@@ -1359,8 +1359,8 @@ export declare const normalActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1359
1359
|
comment?: string | undefined;
|
|
1360
1360
|
app?: {
|
|
1361
1361
|
id: string;
|
|
1362
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1363
1362
|
name: string;
|
|
1363
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1364
1364
|
description?: string | undefined;
|
|
1365
1365
|
website?: string | undefined;
|
|
1366
1366
|
icon?: string | undefined;
|
|
@@ -1372,8 +1372,8 @@ export declare const normalActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1372
1372
|
website: string | undefined;
|
|
1373
1373
|
icon: string | undefined;
|
|
1374
1374
|
id: string;
|
|
1375
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1376
1375
|
name: string;
|
|
1376
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1377
1377
|
} | undefined;
|
|
1378
1378
|
type: "NormalAction";
|
|
1379
1379
|
timestamp: number;
|
|
@@ -1635,8 +1635,8 @@ export declare const normalActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1635
1635
|
comment?: string | undefined;
|
|
1636
1636
|
app?: {
|
|
1637
1637
|
id: string;
|
|
1638
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1639
1638
|
name: string;
|
|
1639
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1640
1640
|
description?: string | undefined;
|
|
1641
1641
|
website?: string | undefined;
|
|
1642
1642
|
icon?: string | undefined;
|
|
@@ -1658,15 +1658,15 @@ export declare const accountActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1658
1658
|
icon: z.ZodOptional<z.ZodString>;
|
|
1659
1659
|
}, "strip", z.ZodTypeAny, {
|
|
1660
1660
|
id: string;
|
|
1661
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1662
1661
|
name: string;
|
|
1662
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1663
1663
|
description?: string | undefined;
|
|
1664
1664
|
website?: string | undefined;
|
|
1665
1665
|
icon?: string | undefined;
|
|
1666
1666
|
}, {
|
|
1667
1667
|
id: string;
|
|
1668
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1669
1668
|
name: string;
|
|
1669
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1670
1670
|
description?: string | undefined;
|
|
1671
1671
|
website?: string | undefined;
|
|
1672
1672
|
icon?: string | undefined;
|
|
@@ -1675,12 +1675,12 @@ export declare const accountActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1675
1675
|
website: string | undefined;
|
|
1676
1676
|
icon: string | undefined;
|
|
1677
1677
|
id: string;
|
|
1678
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1679
1678
|
name: string;
|
|
1679
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1680
1680
|
}, {
|
|
1681
1681
|
id: string;
|
|
1682
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1683
1682
|
name: string;
|
|
1683
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1684
1684
|
description?: string | undefined;
|
|
1685
1685
|
website?: string | undefined;
|
|
1686
1686
|
icon?: string | undefined;
|
|
@@ -2091,8 +2091,8 @@ export declare const accountActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2091
2091
|
website: string | undefined;
|
|
2092
2092
|
icon: string | undefined;
|
|
2093
2093
|
id: string;
|
|
2094
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2095
2094
|
name: string;
|
|
2095
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2096
2096
|
} | undefined;
|
|
2097
2097
|
}, {
|
|
2098
2098
|
type: "NormalAccountAction";
|
|
@@ -2146,8 +2146,8 @@ export declare const accountActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2146
2146
|
comment?: string | undefined;
|
|
2147
2147
|
app?: {
|
|
2148
2148
|
id: string;
|
|
2149
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2150
2149
|
name: string;
|
|
2150
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2151
2151
|
description?: string | undefined;
|
|
2152
2152
|
website?: string | undefined;
|
|
2153
2153
|
icon?: string | undefined;
|
|
@@ -2159,8 +2159,8 @@ export declare const accountActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2159
2159
|
website: string | undefined;
|
|
2160
2160
|
icon: string | undefined;
|
|
2161
2161
|
id: string;
|
|
2162
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2163
2162
|
name: string;
|
|
2163
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2164
2164
|
} | undefined;
|
|
2165
2165
|
type: "NormalAccountAction";
|
|
2166
2166
|
timestamp: number;
|
|
@@ -2262,8 +2262,8 @@ export declare const accountActionTransferSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2262
2262
|
comment?: string | undefined;
|
|
2263
2263
|
app?: {
|
|
2264
2264
|
id: string;
|
|
2265
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2266
2265
|
name: string;
|
|
2266
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2267
2267
|
description?: string | undefined;
|
|
2268
2268
|
website?: string | undefined;
|
|
2269
2269
|
icon?: string | undefined;
|
|
@@ -13,15 +13,15 @@ export declare const normalActionValuedownSchema: 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 normalActionValuedownSchema: 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;
|
|
@@ -458,8 +458,8 @@ export declare const normalActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
458
458
|
website: string | undefined;
|
|
459
459
|
icon: string | undefined;
|
|
460
460
|
id: string;
|
|
461
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
462
461
|
name: string;
|
|
462
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
463
463
|
} | undefined;
|
|
464
464
|
}, {
|
|
465
465
|
type: "NormalAction";
|
|
@@ -515,8 +515,8 @@ export declare const normalActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
515
515
|
comment?: string | undefined;
|
|
516
516
|
app?: {
|
|
517
517
|
id: string;
|
|
518
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
519
518
|
name: string;
|
|
519
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
520
520
|
description?: string | undefined;
|
|
521
521
|
website?: string | undefined;
|
|
522
522
|
icon?: string | undefined;
|
|
@@ -528,8 +528,8 @@ export declare const normalActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
528
528
|
website: string | undefined;
|
|
529
529
|
icon: string | undefined;
|
|
530
530
|
id: string;
|
|
531
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
532
531
|
name: string;
|
|
532
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
533
533
|
} | undefined;
|
|
534
534
|
type: "NormalAction";
|
|
535
535
|
timestamp: number;
|
|
@@ -635,8 +635,8 @@ export declare const normalActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
635
635
|
comment?: string | undefined;
|
|
636
636
|
app?: {
|
|
637
637
|
id: string;
|
|
638
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
639
638
|
name: string;
|
|
639
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
640
640
|
description?: string | undefined;
|
|
641
641
|
website?: string | undefined;
|
|
642
642
|
icon?: string | undefined;
|
|
@@ -658,15 +658,15 @@ export declare const accountActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
658
658
|
icon: z.ZodOptional<z.ZodString>;
|
|
659
659
|
}, "strip", z.ZodTypeAny, {
|
|
660
660
|
id: string;
|
|
661
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
662
661
|
name: string;
|
|
662
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
663
663
|
description?: string | undefined;
|
|
664
664
|
website?: string | undefined;
|
|
665
665
|
icon?: string | undefined;
|
|
666
666
|
}, {
|
|
667
667
|
id: string;
|
|
668
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
669
668
|
name: string;
|
|
669
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
670
670
|
description?: string | undefined;
|
|
671
671
|
website?: string | undefined;
|
|
672
672
|
icon?: string | undefined;
|
|
@@ -675,12 +675,12 @@ export declare const accountActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
675
675
|
website: string | undefined;
|
|
676
676
|
icon: string | undefined;
|
|
677
677
|
id: string;
|
|
678
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
679
678
|
name: string;
|
|
679
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
680
680
|
}, {
|
|
681
681
|
id: string;
|
|
682
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
683
682
|
name: string;
|
|
683
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
684
684
|
description?: string | undefined;
|
|
685
685
|
website?: string | undefined;
|
|
686
686
|
icon?: string | undefined;
|
|
@@ -1105,8 +1105,8 @@ export declare const accountActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1105
1105
|
website: string | undefined;
|
|
1106
1106
|
icon: string | undefined;
|
|
1107
1107
|
id: string;
|
|
1108
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1109
1108
|
name: string;
|
|
1109
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1110
1110
|
} | undefined;
|
|
1111
1111
|
}, {
|
|
1112
1112
|
type: "NormalAccountAction";
|
|
@@ -1164,8 +1164,8 @@ export declare const accountActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1164
1164
|
comment?: string | undefined;
|
|
1165
1165
|
app?: {
|
|
1166
1166
|
id: string;
|
|
1167
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1168
1167
|
name: string;
|
|
1168
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1169
1169
|
description?: string | undefined;
|
|
1170
1170
|
website?: string | undefined;
|
|
1171
1171
|
icon?: string | undefined;
|
|
@@ -1177,8 +1177,8 @@ export declare const accountActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1177
1177
|
website: string | undefined;
|
|
1178
1178
|
icon: string | undefined;
|
|
1179
1179
|
id: string;
|
|
1180
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1181
1180
|
name: string;
|
|
1181
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1182
1182
|
} | undefined;
|
|
1183
1183
|
type: "NormalAccountAction";
|
|
1184
1184
|
timestamp: number;
|
|
@@ -1288,8 +1288,8 @@ export declare const accountActionValuedownSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1288
1288
|
comment?: string | undefined;
|
|
1289
1289
|
app?: {
|
|
1290
1290
|
id: string;
|
|
1291
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1292
1291
|
name: string;
|
|
1292
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1293
1293
|
description?: string | undefined;
|
|
1294
1294
|
website?: string | undefined;
|
|
1295
1295
|
icon?: string | undefined;
|
|
@@ -13,15 +13,15 @@ export declare const normalActionValueupSchema: 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 normalActionValueupSchema: 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;
|
|
@@ -458,8 +458,8 @@ export declare const normalActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
458
458
|
website: string | undefined;
|
|
459
459
|
icon: string | undefined;
|
|
460
460
|
id: string;
|
|
461
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
462
461
|
name: string;
|
|
462
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
463
463
|
} | undefined;
|
|
464
464
|
}, {
|
|
465
465
|
type: "NormalAction";
|
|
@@ -515,8 +515,8 @@ export declare const normalActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
515
515
|
comment?: string | undefined;
|
|
516
516
|
app?: {
|
|
517
517
|
id: string;
|
|
518
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
519
518
|
name: string;
|
|
519
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
520
520
|
description?: string | undefined;
|
|
521
521
|
website?: string | undefined;
|
|
522
522
|
icon?: string | undefined;
|
|
@@ -528,8 +528,8 @@ export declare const normalActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
528
528
|
website: string | undefined;
|
|
529
529
|
icon: string | undefined;
|
|
530
530
|
id: string;
|
|
531
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
532
531
|
name: string;
|
|
532
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
533
533
|
} | undefined;
|
|
534
534
|
type: "NormalAction";
|
|
535
535
|
timestamp: number;
|
|
@@ -635,8 +635,8 @@ export declare const normalActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
635
635
|
comment?: string | undefined;
|
|
636
636
|
app?: {
|
|
637
637
|
id: string;
|
|
638
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
639
638
|
name: string;
|
|
639
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
640
640
|
description?: string | undefined;
|
|
641
641
|
website?: string | undefined;
|
|
642
642
|
icon?: string | undefined;
|
|
@@ -658,15 +658,15 @@ export declare const accountActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
658
658
|
icon: z.ZodOptional<z.ZodString>;
|
|
659
659
|
}, "strip", z.ZodTypeAny, {
|
|
660
660
|
id: string;
|
|
661
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
662
661
|
name: string;
|
|
662
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
663
663
|
description?: string | undefined;
|
|
664
664
|
website?: string | undefined;
|
|
665
665
|
icon?: string | undefined;
|
|
666
666
|
}, {
|
|
667
667
|
id: string;
|
|
668
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
669
668
|
name: string;
|
|
669
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
670
670
|
description?: string | undefined;
|
|
671
671
|
website?: string | undefined;
|
|
672
672
|
icon?: string | undefined;
|
|
@@ -675,12 +675,12 @@ export declare const accountActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
675
675
|
website: string | undefined;
|
|
676
676
|
icon: string | undefined;
|
|
677
677
|
id: string;
|
|
678
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
679
678
|
name: string;
|
|
679
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
680
680
|
}, {
|
|
681
681
|
id: string;
|
|
682
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
683
682
|
name: string;
|
|
683
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
684
684
|
description?: string | undefined;
|
|
685
685
|
website?: string | undefined;
|
|
686
686
|
icon?: string | undefined;
|
|
@@ -1105,8 +1105,8 @@ export declare const accountActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1105
1105
|
website: string | undefined;
|
|
1106
1106
|
icon: string | undefined;
|
|
1107
1107
|
id: string;
|
|
1108
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1109
1108
|
name: string;
|
|
1109
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1110
1110
|
} | undefined;
|
|
1111
1111
|
}, {
|
|
1112
1112
|
type: "NormalAccountAction";
|
|
@@ -1164,8 +1164,8 @@ export declare const accountActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1164
1164
|
comment?: string | undefined;
|
|
1165
1165
|
app?: {
|
|
1166
1166
|
id: string;
|
|
1167
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1168
1167
|
name: string;
|
|
1168
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1169
1169
|
description?: string | undefined;
|
|
1170
1170
|
website?: string | undefined;
|
|
1171
1171
|
icon?: string | undefined;
|
|
@@ -1177,8 +1177,8 @@ export declare const accountActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1177
1177
|
website: string | undefined;
|
|
1178
1178
|
icon: string | undefined;
|
|
1179
1179
|
id: string;
|
|
1180
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1181
1180
|
name: string;
|
|
1181
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1182
1182
|
} | undefined;
|
|
1183
1183
|
type: "NormalAccountAction";
|
|
1184
1184
|
timestamp: number;
|
|
@@ -1288,8 +1288,8 @@ export declare const accountActionValueupSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1288
1288
|
comment?: string | undefined;
|
|
1289
1289
|
app?: {
|
|
1290
1290
|
id: string;
|
|
1291
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1292
1291
|
name: string;
|
|
1292
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1293
1293
|
description?: string | undefined;
|
|
1294
1294
|
website?: string | undefined;
|
|
1295
1295
|
icon?: string | undefined;
|
|
@@ -13,15 +13,15 @@ export declare const normalActionRemoveLiquiditySchema: 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 normalActionRemoveLiquiditySchema: 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;
|
|
@@ -988,8 +988,8 @@ export declare const normalActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObject
|
|
|
988
988
|
website: string | undefined;
|
|
989
989
|
icon: string | undefined;
|
|
990
990
|
id: string;
|
|
991
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
992
991
|
name: string;
|
|
992
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
993
993
|
} | undefined;
|
|
994
994
|
}, {
|
|
995
995
|
type: "LoanNormalAction";
|
|
@@ -1107,8 +1107,8 @@ export declare const normalActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObject
|
|
|
1107
1107
|
comment?: string | undefined;
|
|
1108
1108
|
app?: {
|
|
1109
1109
|
id: string;
|
|
1110
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1111
1110
|
name: string;
|
|
1111
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1112
1112
|
description?: string | undefined;
|
|
1113
1113
|
website?: string | undefined;
|
|
1114
1114
|
icon?: string | undefined;
|
|
@@ -1120,8 +1120,8 @@ export declare const normalActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObject
|
|
|
1120
1120
|
website: string | undefined;
|
|
1121
1121
|
icon: string | undefined;
|
|
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
|
} | undefined;
|
|
1126
1126
|
type: "LoanNormalAction";
|
|
1127
1127
|
timestamp: number;
|
|
@@ -1351,8 +1351,8 @@ export declare const normalActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObject
|
|
|
1351
1351
|
comment?: string | undefined;
|
|
1352
1352
|
app?: {
|
|
1353
1353
|
id: string;
|
|
1354
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1355
1354
|
name: string;
|
|
1355
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1356
1356
|
description?: string | undefined;
|
|
1357
1357
|
website?: string | undefined;
|
|
1358
1358
|
icon?: string | undefined;
|
|
@@ -1374,15 +1374,15 @@ export declare const accountActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObjec
|
|
|
1374
1374
|
icon: z.ZodOptional<z.ZodString>;
|
|
1375
1375
|
}, "strip", z.ZodTypeAny, {
|
|
1376
1376
|
id: string;
|
|
1377
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1378
1377
|
name: string;
|
|
1378
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1379
1379
|
description?: string | undefined;
|
|
1380
1380
|
website?: string | undefined;
|
|
1381
1381
|
icon?: string | undefined;
|
|
1382
1382
|
}, {
|
|
1383
1383
|
id: string;
|
|
1384
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1385
1384
|
name: string;
|
|
1385
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1386
1386
|
description?: string | undefined;
|
|
1387
1387
|
website?: string | undefined;
|
|
1388
1388
|
icon?: string | undefined;
|
|
@@ -1391,12 +1391,12 @@ export declare const accountActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObjec
|
|
|
1391
1391
|
website: string | undefined;
|
|
1392
1392
|
icon: string | undefined;
|
|
1393
1393
|
id: string;
|
|
1394
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1395
1394
|
name: string;
|
|
1395
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1396
1396
|
}, {
|
|
1397
1397
|
id: string;
|
|
1398
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1399
1398
|
name: string;
|
|
1399
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1400
1400
|
description?: string | undefined;
|
|
1401
1401
|
website?: string | undefined;
|
|
1402
1402
|
icon?: string | undefined;
|
|
@@ -2351,8 +2351,8 @@ export declare const accountActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObjec
|
|
|
2351
2351
|
website: string | undefined;
|
|
2352
2352
|
icon: string | undefined;
|
|
2353
2353
|
id: string;
|
|
2354
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2355
2354
|
name: string;
|
|
2355
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2356
2356
|
} | undefined;
|
|
2357
2357
|
}, {
|
|
2358
2358
|
type: "LoanAccountAction";
|
|
@@ -2472,8 +2472,8 @@ export declare const accountActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObjec
|
|
|
2472
2472
|
comment?: string | undefined;
|
|
2473
2473
|
app?: {
|
|
2474
2474
|
id: string;
|
|
2475
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2476
2475
|
name: string;
|
|
2476
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2477
2477
|
description?: string | undefined;
|
|
2478
2478
|
website?: string | undefined;
|
|
2479
2479
|
icon?: string | undefined;
|
|
@@ -2485,8 +2485,8 @@ export declare const accountActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObjec
|
|
|
2485
2485
|
website: string | undefined;
|
|
2486
2486
|
icon: string | undefined;
|
|
2487
2487
|
id: string;
|
|
2488
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2489
2488
|
name: string;
|
|
2489
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2490
2490
|
} | undefined;
|
|
2491
2491
|
type: "LoanAccountAction";
|
|
2492
2492
|
timestamp: number;
|
|
@@ -2720,8 +2720,8 @@ export declare const accountActionRemoveLiquiditySchema: z.ZodEffects<z.ZodObjec
|
|
|
2720
2720
|
comment?: string | undefined;
|
|
2721
2721
|
app?: {
|
|
2722
2722
|
id: string;
|
|
2723
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2724
2723
|
name: string;
|
|
2724
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2725
2725
|
description?: string | undefined;
|
|
2726
2726
|
website?: string | undefined;
|
|
2727
2727
|
icon?: string | undefined;
|