@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 normalActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObje
|
|
|
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 normalActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObje
|
|
|
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 normalActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObje
|
|
|
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 normalActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObje
|
|
|
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 normalActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObje
|
|
|
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 normalActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObje
|
|
|
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 accountActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObj
|
|
|
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 accountActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObj
|
|
|
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 accountActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObj
|
|
|
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 accountActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObj
|
|
|
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 accountActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObj
|
|
|
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 accountActionRepaymentWithDebtSchema: z.ZodEffects<z.ZodObj
|
|
|
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;
|
|
@@ -13,15 +13,15 @@ export declare const normalActionReplaceSchema: 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 normalActionReplaceSchema: 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;
|
|
@@ -986,8 +986,8 @@ export declare const normalActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
986
986
|
website: string | undefined;
|
|
987
987
|
icon: string | undefined;
|
|
988
988
|
id: string;
|
|
989
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
990
989
|
name: string;
|
|
990
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
991
991
|
} | undefined;
|
|
992
992
|
}, {
|
|
993
993
|
type: "NormalAction";
|
|
@@ -1104,8 +1104,8 @@ export declare const normalActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1104
1104
|
comment?: string | undefined;
|
|
1105
1105
|
app?: {
|
|
1106
1106
|
id: string;
|
|
1107
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1108
1107
|
name: string;
|
|
1108
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1109
1109
|
description?: string | undefined;
|
|
1110
1110
|
website?: string | undefined;
|
|
1111
1111
|
icon?: string | undefined;
|
|
@@ -1117,8 +1117,8 @@ export declare const normalActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1117
1117
|
website: string | undefined;
|
|
1118
1118
|
icon: string | undefined;
|
|
1119
1119
|
id: string;
|
|
1120
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1121
1120
|
name: string;
|
|
1121
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1122
1122
|
} | undefined;
|
|
1123
1123
|
type: "NormalAction";
|
|
1124
1124
|
timestamp: number;
|
|
@@ -1346,8 +1346,8 @@ export declare const normalActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1346
1346
|
comment?: string | undefined;
|
|
1347
1347
|
app?: {
|
|
1348
1348
|
id: string;
|
|
1349
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1350
1349
|
name: string;
|
|
1350
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1351
1351
|
description?: string | undefined;
|
|
1352
1352
|
website?: string | undefined;
|
|
1353
1353
|
icon?: string | undefined;
|
|
@@ -1369,15 +1369,15 @@ export declare const accountActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1369
1369
|
icon: z.ZodOptional<z.ZodString>;
|
|
1370
1370
|
}, "strip", z.ZodTypeAny, {
|
|
1371
1371
|
id: string;
|
|
1372
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1373
1372
|
name: string;
|
|
1373
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1374
1374
|
description?: string | undefined;
|
|
1375
1375
|
website?: string | undefined;
|
|
1376
1376
|
icon?: string | undefined;
|
|
1377
1377
|
}, {
|
|
1378
1378
|
id: string;
|
|
1379
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1380
1379
|
name: string;
|
|
1380
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1381
1381
|
description?: string | undefined;
|
|
1382
1382
|
website?: string | undefined;
|
|
1383
1383
|
icon?: string | undefined;
|
|
@@ -1386,12 +1386,12 @@ export declare const accountActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1386
1386
|
website: string | undefined;
|
|
1387
1387
|
icon: string | undefined;
|
|
1388
1388
|
id: string;
|
|
1389
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1390
1389
|
name: string;
|
|
1390
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1391
1391
|
}, {
|
|
1392
1392
|
id: string;
|
|
1393
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1394
1393
|
name: string;
|
|
1394
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1395
1395
|
description?: string | undefined;
|
|
1396
1396
|
website?: string | undefined;
|
|
1397
1397
|
icon?: string | undefined;
|
|
@@ -2344,8 +2344,8 @@ export declare const accountActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2344
2344
|
website: string | undefined;
|
|
2345
2345
|
icon: string | undefined;
|
|
2346
2346
|
id: string;
|
|
2347
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2348
2347
|
name: string;
|
|
2348
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2349
2349
|
} | undefined;
|
|
2350
2350
|
}, {
|
|
2351
2351
|
type: "NormalAccountAction";
|
|
@@ -2464,8 +2464,8 @@ export declare const accountActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2464
2464
|
comment?: string | undefined;
|
|
2465
2465
|
app?: {
|
|
2466
2466
|
id: string;
|
|
2467
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2468
2467
|
name: string;
|
|
2468
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2469
2469
|
description?: string | undefined;
|
|
2470
2470
|
website?: string | undefined;
|
|
2471
2471
|
icon?: string | undefined;
|
|
@@ -2477,8 +2477,8 @@ export declare const accountActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2477
2477
|
website: string | undefined;
|
|
2478
2478
|
icon: string | undefined;
|
|
2479
2479
|
id: string;
|
|
2480
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2481
2480
|
name: string;
|
|
2481
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2482
2482
|
} | undefined;
|
|
2483
2483
|
type: "NormalAccountAction";
|
|
2484
2484
|
timestamp: number;
|
|
@@ -2710,8 +2710,8 @@ export declare const accountActionReplaceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2710
2710
|
comment?: string | undefined;
|
|
2711
2711
|
app?: {
|
|
2712
2712
|
id: string;
|
|
2713
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2714
2713
|
name: string;
|
|
2714
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
2715
2715
|
description?: string | undefined;
|
|
2716
2716
|
website?: string | undefined;
|
|
2717
2717
|
icon?: string | undefined;
|
|
@@ -13,15 +13,15 @@ export declare const normalActionSwapNftSchema: 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 normalActionSwapNftSchema: 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;
|
|
@@ -374,8 +374,8 @@ export declare const normalActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
374
374
|
website: string | undefined;
|
|
375
375
|
icon: string | undefined;
|
|
376
376
|
id: string;
|
|
377
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
378
377
|
name: string;
|
|
378
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
379
379
|
} | undefined;
|
|
380
380
|
}, {
|
|
381
381
|
type: "NormalAction";
|
|
@@ -428,8 +428,8 @@ export declare const normalActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
428
428
|
comment?: string | undefined;
|
|
429
429
|
app?: {
|
|
430
430
|
id: string;
|
|
431
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
432
431
|
name: string;
|
|
432
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
433
433
|
description?: string | undefined;
|
|
434
434
|
website?: string | undefined;
|
|
435
435
|
icon?: string | undefined;
|
|
@@ -441,8 +441,8 @@ export declare const normalActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
441
441
|
website: string | undefined;
|
|
442
442
|
icon: string | undefined;
|
|
443
443
|
id: string;
|
|
444
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
445
444
|
name: string;
|
|
445
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
446
446
|
} | undefined;
|
|
447
447
|
type: "NormalAction";
|
|
448
448
|
timestamp: number;
|
|
@@ -542,8 +542,8 @@ export declare const normalActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
542
542
|
comment?: string | undefined;
|
|
543
543
|
app?: {
|
|
544
544
|
id: string;
|
|
545
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
546
545
|
name: string;
|
|
546
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
547
547
|
description?: string | undefined;
|
|
548
548
|
website?: string | undefined;
|
|
549
549
|
icon?: string | undefined;
|
|
@@ -565,15 +565,15 @@ export declare const accountActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
565
565
|
icon: z.ZodOptional<z.ZodString>;
|
|
566
566
|
}, "strip", z.ZodTypeAny, {
|
|
567
567
|
id: string;
|
|
568
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
569
568
|
name: string;
|
|
569
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
570
570
|
description?: string | undefined;
|
|
571
571
|
website?: string | undefined;
|
|
572
572
|
icon?: string | undefined;
|
|
573
573
|
}, {
|
|
574
574
|
id: string;
|
|
575
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
576
575
|
name: string;
|
|
576
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
577
577
|
description?: string | undefined;
|
|
578
578
|
website?: string | undefined;
|
|
579
579
|
icon?: string | undefined;
|
|
@@ -582,12 +582,12 @@ export declare const accountActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
582
582
|
website: string | undefined;
|
|
583
583
|
icon: string | undefined;
|
|
584
584
|
id: string;
|
|
585
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
586
585
|
name: string;
|
|
586
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
587
587
|
}, {
|
|
588
588
|
id: string;
|
|
589
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
590
589
|
name: string;
|
|
590
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
591
591
|
description?: string | undefined;
|
|
592
592
|
website?: string | undefined;
|
|
593
593
|
icon?: string | undefined;
|
|
@@ -928,8 +928,8 @@ export declare const accountActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
928
928
|
website: string | undefined;
|
|
929
929
|
icon: string | undefined;
|
|
930
930
|
id: string;
|
|
931
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
932
931
|
name: string;
|
|
932
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
933
933
|
} | undefined;
|
|
934
934
|
}, {
|
|
935
935
|
type: "NormalAccountAction";
|
|
@@ -984,8 +984,8 @@ export declare const accountActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
984
984
|
comment?: string | undefined;
|
|
985
985
|
app?: {
|
|
986
986
|
id: string;
|
|
987
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
988
987
|
name: string;
|
|
988
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
989
989
|
description?: string | undefined;
|
|
990
990
|
website?: string | undefined;
|
|
991
991
|
icon?: string | undefined;
|
|
@@ -997,8 +997,8 @@ export declare const accountActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
997
997
|
website: string | undefined;
|
|
998
998
|
icon: string | undefined;
|
|
999
999
|
id: string;
|
|
1000
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1001
1000
|
name: string;
|
|
1001
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1002
1002
|
} | undefined;
|
|
1003
1003
|
type: "NormalAccountAction";
|
|
1004
1004
|
timestamp: number;
|
|
@@ -1102,8 +1102,8 @@ export declare const accountActionSwapNftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1102
1102
|
comment?: string | undefined;
|
|
1103
1103
|
app?: {
|
|
1104
1104
|
id: string;
|
|
1105
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1106
1105
|
name: string;
|
|
1106
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1107
1107
|
description?: string | undefined;
|
|
1108
1108
|
website?: string | undefined;
|
|
1109
1109
|
icon?: string | undefined;
|
|
@@ -13,15 +13,15 @@ export declare const normalActionUnwrapSchema: 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 normalActionUnwrapSchema: 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;
|
|
@@ -666,8 +666,8 @@ export declare const normalActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
666
666
|
website: string | undefined;
|
|
667
667
|
icon: string | undefined;
|
|
668
668
|
id: string;
|
|
669
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
670
669
|
name: string;
|
|
670
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
671
671
|
} | undefined;
|
|
672
672
|
}, {
|
|
673
673
|
type: "NormalAction";
|
|
@@ -742,8 +742,8 @@ export declare const normalActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
742
742
|
comment?: string | undefined;
|
|
743
743
|
app?: {
|
|
744
744
|
id: string;
|
|
745
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
746
745
|
name: string;
|
|
746
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
747
747
|
description?: string | undefined;
|
|
748
748
|
website?: string | undefined;
|
|
749
749
|
icon?: string | undefined;
|
|
@@ -755,8 +755,8 @@ export declare const normalActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
755
755
|
website: string | undefined;
|
|
756
756
|
icon: string | undefined;
|
|
757
757
|
id: string;
|
|
758
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
759
758
|
name: string;
|
|
759
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
760
760
|
} | undefined;
|
|
761
761
|
type: "NormalAction";
|
|
762
762
|
timestamp: number;
|
|
@@ -900,8 +900,8 @@ export declare const normalActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
900
900
|
comment?: string | undefined;
|
|
901
901
|
app?: {
|
|
902
902
|
id: string;
|
|
903
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
904
903
|
name: string;
|
|
904
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
905
905
|
description?: string | undefined;
|
|
906
906
|
website?: string | undefined;
|
|
907
907
|
icon?: string | undefined;
|
|
@@ -923,15 +923,15 @@ export declare const accountActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
923
923
|
icon: z.ZodOptional<z.ZodString>;
|
|
924
924
|
}, "strip", z.ZodTypeAny, {
|
|
925
925
|
id: string;
|
|
926
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
927
926
|
name: string;
|
|
927
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
928
928
|
description?: string | undefined;
|
|
929
929
|
website?: string | undefined;
|
|
930
930
|
icon?: string | undefined;
|
|
931
931
|
}, {
|
|
932
932
|
id: string;
|
|
933
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
934
933
|
name: string;
|
|
934
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
935
935
|
description?: string | undefined;
|
|
936
936
|
website?: string | undefined;
|
|
937
937
|
icon?: string | undefined;
|
|
@@ -940,12 +940,12 @@ export declare const accountActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
940
940
|
website: string | undefined;
|
|
941
941
|
icon: string | undefined;
|
|
942
942
|
id: string;
|
|
943
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
944
943
|
name: string;
|
|
944
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
945
945
|
}, {
|
|
946
946
|
id: string;
|
|
947
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
948
947
|
name: string;
|
|
948
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
949
949
|
description?: string | undefined;
|
|
950
950
|
website?: string | undefined;
|
|
951
951
|
icon?: string | undefined;
|
|
@@ -1578,8 +1578,8 @@ export declare const accountActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1578
1578
|
website: string | undefined;
|
|
1579
1579
|
icon: string | undefined;
|
|
1580
1580
|
id: string;
|
|
1581
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1582
1581
|
name: string;
|
|
1582
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1583
1583
|
} | undefined;
|
|
1584
1584
|
}, {
|
|
1585
1585
|
type: "NormalAccountAction";
|
|
@@ -1656,8 +1656,8 @@ export declare const accountActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1656
1656
|
comment?: string | undefined;
|
|
1657
1657
|
app?: {
|
|
1658
1658
|
id: string;
|
|
1659
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1660
1659
|
name: string;
|
|
1660
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1661
1661
|
description?: string | undefined;
|
|
1662
1662
|
website?: string | undefined;
|
|
1663
1663
|
icon?: string | undefined;
|
|
@@ -1669,8 +1669,8 @@ export declare const accountActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1669
1669
|
website: string | undefined;
|
|
1670
1670
|
icon: string | undefined;
|
|
1671
1671
|
id: string;
|
|
1672
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1673
1672
|
name: string;
|
|
1673
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1674
1674
|
} | undefined;
|
|
1675
1675
|
type: "NormalAccountAction";
|
|
1676
1676
|
timestamp: number;
|
|
@@ -1818,8 +1818,8 @@ export declare const accountActionUnwrapSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1818
1818
|
comment?: string | undefined;
|
|
1819
1819
|
app?: {
|
|
1820
1820
|
id: string;
|
|
1821
|
-
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1822
1821
|
name: string;
|
|
1822
|
+
categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
|
|
1823
1823
|
description?: string | undefined;
|
|
1824
1824
|
website?: string | undefined;
|
|
1825
1825
|
icon?: string | undefined;
|