@0xtorch/core 0.0.3 → 0.0.5
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/schemas/income/atomicArbitrage.js +4 -1
- package/_cjs/actions/schemas/income/atomicArbitrage.js.map +1 -1
- package/_cjs/actions/schemas/replace/swapNft.js +2 -8
- package/_cjs/actions/schemas/replace/swapNft.js.map +1 -1
- package/_esm/actions/schemas/income/atomicArbitrage.js +5 -2
- package/_esm/actions/schemas/income/atomicArbitrage.js.map +1 -1
- package/_esm/actions/schemas/replace/swapNft.js +3 -9
- package/_esm/actions/schemas/replace/swapNft.js.map +1 -1
- package/_types/actions/schemas/action.d.ts +460 -774
- package/_types/actions/schemas/action.d.ts.map +1 -1
- package/_types/actions/schemas/income/atomicArbitrage.d.ts +412 -10
- package/_types/actions/schemas/income/atomicArbitrage.d.ts.map +1 -1
- package/_types/actions/schemas/replace/swapNft.d.ts +48 -764
- package/_types/actions/schemas/replace/swapNft.d.ts.map +1 -1
- package/actions/schemas/income/atomicArbitrage.ts +7 -1
- package/actions/schemas/replace/swapNft.ts +4 -14
- package/package.json +1 -1
|
@@ -12363,7 +12363,7 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
12363
12363
|
icon?: string | undefined;
|
|
12364
12364
|
}>>;
|
|
12365
12365
|
action: z.ZodLiteral<"atomic-arbitrage">;
|
|
12366
|
-
transfers: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
12366
|
+
transfers: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
12367
12367
|
price: z.ZodOptional<z.ZodObject<{
|
|
12368
12368
|
cryptoCurrencyId: z.ZodString;
|
|
12369
12369
|
fiatCurrencyId: z.ZodString;
|
|
@@ -12637,13 +12637,287 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
12637
12637
|
} | undefined;
|
|
12638
12638
|
from?: string | undefined;
|
|
12639
12639
|
to?: string | undefined;
|
|
12640
|
-
}>,
|
|
12640
|
+
}>, z.ZodEffects<z.ZodObject<{
|
|
12641
|
+
price: z.ZodOptional<z.ZodObject<{
|
|
12642
|
+
cryptoCurrencyId: z.ZodString;
|
|
12643
|
+
fiatCurrencyId: z.ZodString;
|
|
12644
|
+
price: z.ZodObject<{
|
|
12645
|
+
value: z.ZodBigInt;
|
|
12646
|
+
decimals: z.ZodNumber;
|
|
12647
|
+
}, "strip", z.ZodTypeAny, {
|
|
12648
|
+
value: bigint;
|
|
12649
|
+
decimals: number;
|
|
12650
|
+
}, {
|
|
12651
|
+
value: bigint;
|
|
12652
|
+
decimals: number;
|
|
12653
|
+
}>;
|
|
12654
|
+
timestamp: z.ZodNumber;
|
|
12655
|
+
}, "strip", z.ZodTypeAny, {
|
|
12656
|
+
cryptoCurrencyId: string;
|
|
12657
|
+
fiatCurrencyId: string;
|
|
12658
|
+
price: {
|
|
12659
|
+
value: bigint;
|
|
12660
|
+
decimals: number;
|
|
12661
|
+
};
|
|
12662
|
+
timestamp: number;
|
|
12663
|
+
}, {
|
|
12664
|
+
cryptoCurrencyId: string;
|
|
12665
|
+
fiatCurrencyId: string;
|
|
12666
|
+
price: {
|
|
12667
|
+
value: bigint;
|
|
12668
|
+
decimals: number;
|
|
12669
|
+
};
|
|
12670
|
+
timestamp: number;
|
|
12671
|
+
}>>;
|
|
12672
|
+
from: z.ZodOptional<z.ZodString>;
|
|
12673
|
+
to: z.ZodOptional<z.ZodString>;
|
|
12674
|
+
amount: z.ZodObject<{
|
|
12675
|
+
value: z.ZodBigInt;
|
|
12676
|
+
decimals: z.ZodNumber;
|
|
12677
|
+
}, "strip", z.ZodTypeAny, {
|
|
12678
|
+
value: bigint;
|
|
12679
|
+
decimals: number;
|
|
12680
|
+
}, {
|
|
12681
|
+
value: bigint;
|
|
12682
|
+
decimals: number;
|
|
12683
|
+
}>;
|
|
12684
|
+
direction: z.ZodLiteral<"out">;
|
|
12685
|
+
asset: z.ZodEffects<z.ZodObject<{
|
|
12686
|
+
type: z.ZodLiteral<"CryptoCurrency">;
|
|
12687
|
+
id: z.ZodString;
|
|
12688
|
+
name: z.ZodString;
|
|
12689
|
+
symbol: z.ZodString;
|
|
12690
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
12691
|
+
market: z.ZodEffects<z.ZodObject<{
|
|
12692
|
+
coingeckoId: z.ZodOptional<z.ZodString>;
|
|
12693
|
+
marketCapUsd: z.ZodOptional<z.ZodObject<{
|
|
12694
|
+
value: z.ZodBigInt;
|
|
12695
|
+
decimals: z.ZodNumber;
|
|
12696
|
+
}, "strip", z.ZodTypeAny, {
|
|
12697
|
+
value: bigint;
|
|
12698
|
+
decimals: number;
|
|
12699
|
+
}, {
|
|
12700
|
+
value: bigint;
|
|
12701
|
+
decimals: number;
|
|
12702
|
+
}>>;
|
|
12703
|
+
}, "strip", z.ZodTypeAny, {
|
|
12704
|
+
coingeckoId?: string | undefined;
|
|
12705
|
+
marketCapUsd?: {
|
|
12706
|
+
value: bigint;
|
|
12707
|
+
decimals: number;
|
|
12708
|
+
} | undefined;
|
|
12709
|
+
}, {
|
|
12710
|
+
coingeckoId?: string | undefined;
|
|
12711
|
+
marketCapUsd?: {
|
|
12712
|
+
value: bigint;
|
|
12713
|
+
decimals: number;
|
|
12714
|
+
} | undefined;
|
|
12715
|
+
}>, {
|
|
12716
|
+
coingeckoId: string | undefined;
|
|
12717
|
+
marketCapUsd: {
|
|
12718
|
+
value: bigint;
|
|
12719
|
+
decimals: number;
|
|
12720
|
+
} | undefined;
|
|
12721
|
+
}, {
|
|
12722
|
+
coingeckoId?: string | undefined;
|
|
12723
|
+
marketCapUsd?: {
|
|
12724
|
+
value: bigint;
|
|
12725
|
+
decimals: number;
|
|
12726
|
+
} | undefined;
|
|
12727
|
+
}>;
|
|
12728
|
+
updatedAt: z.ZodNumber;
|
|
12729
|
+
}, "strip", z.ZodTypeAny, {
|
|
12730
|
+
symbol: string;
|
|
12731
|
+
type: "CryptoCurrency";
|
|
12732
|
+
id: string;
|
|
12733
|
+
name: string;
|
|
12734
|
+
market: {
|
|
12735
|
+
coingeckoId: string | undefined;
|
|
12736
|
+
marketCapUsd: {
|
|
12737
|
+
value: bigint;
|
|
12738
|
+
decimals: number;
|
|
12739
|
+
} | undefined;
|
|
12740
|
+
};
|
|
12741
|
+
updatedAt: number;
|
|
12742
|
+
icon?: string | undefined;
|
|
12743
|
+
}, {
|
|
12744
|
+
symbol: string;
|
|
12745
|
+
type: "CryptoCurrency";
|
|
12746
|
+
id: string;
|
|
12747
|
+
name: string;
|
|
12748
|
+
market: {
|
|
12749
|
+
coingeckoId?: string | undefined;
|
|
12750
|
+
marketCapUsd?: {
|
|
12751
|
+
value: bigint;
|
|
12752
|
+
decimals: number;
|
|
12753
|
+
} | undefined;
|
|
12754
|
+
};
|
|
12755
|
+
updatedAt: number;
|
|
12756
|
+
icon?: string | undefined;
|
|
12757
|
+
}>, {
|
|
12758
|
+
icon: string | undefined;
|
|
12759
|
+
symbol: string;
|
|
12760
|
+
type: "CryptoCurrency";
|
|
12761
|
+
id: string;
|
|
12762
|
+
name: string;
|
|
12763
|
+
market: {
|
|
12764
|
+
coingeckoId: string | undefined;
|
|
12765
|
+
marketCapUsd: {
|
|
12766
|
+
value: bigint;
|
|
12767
|
+
decimals: number;
|
|
12768
|
+
} | undefined;
|
|
12769
|
+
};
|
|
12770
|
+
updatedAt: number;
|
|
12771
|
+
}, {
|
|
12772
|
+
symbol: string;
|
|
12773
|
+
type: "CryptoCurrency";
|
|
12774
|
+
id: string;
|
|
12775
|
+
name: string;
|
|
12776
|
+
market: {
|
|
12777
|
+
coingeckoId?: string | undefined;
|
|
12778
|
+
marketCapUsd?: {
|
|
12779
|
+
value: bigint;
|
|
12780
|
+
decimals: number;
|
|
12781
|
+
} | undefined;
|
|
12782
|
+
};
|
|
12783
|
+
updatedAt: number;
|
|
12784
|
+
icon?: string | undefined;
|
|
12785
|
+
}>;
|
|
12786
|
+
}, "strip", z.ZodTypeAny, {
|
|
12787
|
+
asset: {
|
|
12788
|
+
icon: string | undefined;
|
|
12789
|
+
symbol: string;
|
|
12790
|
+
type: "CryptoCurrency";
|
|
12791
|
+
id: string;
|
|
12792
|
+
name: string;
|
|
12793
|
+
market: {
|
|
12794
|
+
coingeckoId: string | undefined;
|
|
12795
|
+
marketCapUsd: {
|
|
12796
|
+
value: bigint;
|
|
12797
|
+
decimals: number;
|
|
12798
|
+
} | undefined;
|
|
12799
|
+
};
|
|
12800
|
+
updatedAt: number;
|
|
12801
|
+
};
|
|
12802
|
+
amount: {
|
|
12803
|
+
value: bigint;
|
|
12804
|
+
decimals: number;
|
|
12805
|
+
};
|
|
12806
|
+
direction: "out";
|
|
12807
|
+
price?: {
|
|
12808
|
+
cryptoCurrencyId: string;
|
|
12809
|
+
fiatCurrencyId: string;
|
|
12810
|
+
price: {
|
|
12811
|
+
value: bigint;
|
|
12812
|
+
decimals: number;
|
|
12813
|
+
};
|
|
12814
|
+
timestamp: number;
|
|
12815
|
+
} | undefined;
|
|
12816
|
+
from?: string | undefined;
|
|
12817
|
+
to?: string | undefined;
|
|
12818
|
+
}, {
|
|
12819
|
+
asset: {
|
|
12820
|
+
symbol: string;
|
|
12821
|
+
type: "CryptoCurrency";
|
|
12822
|
+
id: string;
|
|
12823
|
+
name: string;
|
|
12824
|
+
market: {
|
|
12825
|
+
coingeckoId?: string | undefined;
|
|
12826
|
+
marketCapUsd?: {
|
|
12827
|
+
value: bigint;
|
|
12828
|
+
decimals: number;
|
|
12829
|
+
} | undefined;
|
|
12830
|
+
};
|
|
12831
|
+
updatedAt: number;
|
|
12832
|
+
icon?: string | undefined;
|
|
12833
|
+
};
|
|
12834
|
+
amount: {
|
|
12835
|
+
value: bigint;
|
|
12836
|
+
decimals: number;
|
|
12837
|
+
};
|
|
12838
|
+
direction: "out";
|
|
12839
|
+
price?: {
|
|
12840
|
+
cryptoCurrencyId: string;
|
|
12841
|
+
fiatCurrencyId: string;
|
|
12842
|
+
price: {
|
|
12843
|
+
value: bigint;
|
|
12844
|
+
decimals: number;
|
|
12845
|
+
};
|
|
12846
|
+
timestamp: number;
|
|
12847
|
+
} | undefined;
|
|
12848
|
+
from?: string | undefined;
|
|
12849
|
+
to?: string | undefined;
|
|
12850
|
+
}>, {
|
|
12851
|
+
from: string | undefined;
|
|
12852
|
+
to: string | undefined;
|
|
12853
|
+
price: {
|
|
12854
|
+
cryptoCurrencyId: string;
|
|
12855
|
+
fiatCurrencyId: string;
|
|
12856
|
+
price: {
|
|
12857
|
+
value: bigint;
|
|
12858
|
+
decimals: number;
|
|
12859
|
+
};
|
|
12860
|
+
timestamp: number;
|
|
12861
|
+
} | undefined;
|
|
12862
|
+
asset: {
|
|
12863
|
+
icon: string | undefined;
|
|
12864
|
+
symbol: string;
|
|
12865
|
+
type: "CryptoCurrency";
|
|
12866
|
+
id: string;
|
|
12867
|
+
name: string;
|
|
12868
|
+
market: {
|
|
12869
|
+
coingeckoId: string | undefined;
|
|
12870
|
+
marketCapUsd: {
|
|
12871
|
+
value: bigint;
|
|
12872
|
+
decimals: number;
|
|
12873
|
+
} | undefined;
|
|
12874
|
+
};
|
|
12875
|
+
updatedAt: number;
|
|
12876
|
+
};
|
|
12877
|
+
amount: {
|
|
12878
|
+
value: bigint;
|
|
12879
|
+
decimals: number;
|
|
12880
|
+
};
|
|
12881
|
+
direction: "out";
|
|
12882
|
+
}, {
|
|
12883
|
+
asset: {
|
|
12884
|
+
symbol: string;
|
|
12885
|
+
type: "CryptoCurrency";
|
|
12886
|
+
id: string;
|
|
12887
|
+
name: string;
|
|
12888
|
+
market: {
|
|
12889
|
+
coingeckoId?: string | undefined;
|
|
12890
|
+
marketCapUsd?: {
|
|
12891
|
+
value: bigint;
|
|
12892
|
+
decimals: number;
|
|
12893
|
+
} | undefined;
|
|
12894
|
+
};
|
|
12895
|
+
updatedAt: number;
|
|
12896
|
+
icon?: string | undefined;
|
|
12897
|
+
};
|
|
12898
|
+
amount: {
|
|
12899
|
+
value: bigint;
|
|
12900
|
+
decimals: number;
|
|
12901
|
+
};
|
|
12902
|
+
direction: "out";
|
|
12903
|
+
price?: {
|
|
12904
|
+
cryptoCurrencyId: string;
|
|
12905
|
+
fiatCurrencyId: string;
|
|
12906
|
+
price: {
|
|
12907
|
+
value: bigint;
|
|
12908
|
+
decimals: number;
|
|
12909
|
+
};
|
|
12910
|
+
timestamp: number;
|
|
12911
|
+
} | undefined;
|
|
12912
|
+
from?: string | undefined;
|
|
12913
|
+
to?: string | undefined;
|
|
12914
|
+
}>]>, "many">;
|
|
12641
12915
|
}, "strip", z.ZodTypeAny, {
|
|
12642
12916
|
type: "NormalAction";
|
|
12643
12917
|
timestamp: number;
|
|
12644
12918
|
action: "atomic-arbitrage";
|
|
12645
12919
|
evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
|
|
12646
|
-
transfers: {
|
|
12920
|
+
transfers: ({
|
|
12647
12921
|
from: string | undefined;
|
|
12648
12922
|
to: string | undefined;
|
|
12649
12923
|
price: {
|
|
@@ -12675,7 +12949,39 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
12675
12949
|
decimals: number;
|
|
12676
12950
|
};
|
|
12677
12951
|
direction: "in";
|
|
12678
|
-
}
|
|
12952
|
+
} | {
|
|
12953
|
+
from: string | undefined;
|
|
12954
|
+
to: string | undefined;
|
|
12955
|
+
price: {
|
|
12956
|
+
cryptoCurrencyId: string;
|
|
12957
|
+
fiatCurrencyId: string;
|
|
12958
|
+
price: {
|
|
12959
|
+
value: bigint;
|
|
12960
|
+
decimals: number;
|
|
12961
|
+
};
|
|
12962
|
+
timestamp: number;
|
|
12963
|
+
} | undefined;
|
|
12964
|
+
asset: {
|
|
12965
|
+
icon: string | undefined;
|
|
12966
|
+
symbol: string;
|
|
12967
|
+
type: "CryptoCurrency";
|
|
12968
|
+
id: string;
|
|
12969
|
+
name: string;
|
|
12970
|
+
market: {
|
|
12971
|
+
coingeckoId: string | undefined;
|
|
12972
|
+
marketCapUsd: {
|
|
12973
|
+
value: bigint;
|
|
12974
|
+
decimals: number;
|
|
12975
|
+
} | undefined;
|
|
12976
|
+
};
|
|
12977
|
+
updatedAt: number;
|
|
12978
|
+
};
|
|
12979
|
+
amount: {
|
|
12980
|
+
value: bigint;
|
|
12981
|
+
decimals: number;
|
|
12982
|
+
};
|
|
12983
|
+
direction: "out";
|
|
12984
|
+
})[];
|
|
12679
12985
|
comment?: string | undefined;
|
|
12680
12986
|
app?: {
|
|
12681
12987
|
description: string | undefined;
|
|
@@ -12690,7 +12996,7 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
12690
12996
|
timestamp: number;
|
|
12691
12997
|
action: "atomic-arbitrage";
|
|
12692
12998
|
evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
|
|
12693
|
-
transfers: {
|
|
12999
|
+
transfers: ({
|
|
12694
13000
|
asset: {
|
|
12695
13001
|
symbol: string;
|
|
12696
13002
|
type: "CryptoCurrency";
|
|
@@ -12722,7 +13028,39 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
12722
13028
|
} | undefined;
|
|
12723
13029
|
from?: string | undefined;
|
|
12724
13030
|
to?: string | undefined;
|
|
12725
|
-
}
|
|
13031
|
+
} | {
|
|
13032
|
+
asset: {
|
|
13033
|
+
symbol: string;
|
|
13034
|
+
type: "CryptoCurrency";
|
|
13035
|
+
id: string;
|
|
13036
|
+
name: string;
|
|
13037
|
+
market: {
|
|
13038
|
+
coingeckoId?: string | undefined;
|
|
13039
|
+
marketCapUsd?: {
|
|
13040
|
+
value: bigint;
|
|
13041
|
+
decimals: number;
|
|
13042
|
+
} | undefined;
|
|
13043
|
+
};
|
|
13044
|
+
updatedAt: number;
|
|
13045
|
+
icon?: string | undefined;
|
|
13046
|
+
};
|
|
13047
|
+
amount: {
|
|
13048
|
+
value: bigint;
|
|
13049
|
+
decimals: number;
|
|
13050
|
+
};
|
|
13051
|
+
direction: "out";
|
|
13052
|
+
price?: {
|
|
13053
|
+
cryptoCurrencyId: string;
|
|
13054
|
+
fiatCurrencyId: string;
|
|
13055
|
+
price: {
|
|
13056
|
+
value: bigint;
|
|
13057
|
+
decimals: number;
|
|
13058
|
+
};
|
|
13059
|
+
timestamp: number;
|
|
13060
|
+
} | undefined;
|
|
13061
|
+
from?: string | undefined;
|
|
13062
|
+
to?: string | undefined;
|
|
13063
|
+
})[];
|
|
12726
13064
|
comment?: string | undefined;
|
|
12727
13065
|
app?: {
|
|
12728
13066
|
id: string;
|
|
@@ -12746,7 +13084,7 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
12746
13084
|
timestamp: number;
|
|
12747
13085
|
action: "atomic-arbitrage";
|
|
12748
13086
|
evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
|
|
12749
|
-
transfers: {
|
|
13087
|
+
transfers: ({
|
|
12750
13088
|
from: string | undefined;
|
|
12751
13089
|
to: string | undefined;
|
|
12752
13090
|
price: {
|
|
@@ -12778,13 +13116,45 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
12778
13116
|
decimals: number;
|
|
12779
13117
|
};
|
|
12780
13118
|
direction: "in";
|
|
12781
|
-
}
|
|
13119
|
+
} | {
|
|
13120
|
+
from: string | undefined;
|
|
13121
|
+
to: string | undefined;
|
|
13122
|
+
price: {
|
|
13123
|
+
cryptoCurrencyId: string;
|
|
13124
|
+
fiatCurrencyId: string;
|
|
13125
|
+
price: {
|
|
13126
|
+
value: bigint;
|
|
13127
|
+
decimals: number;
|
|
13128
|
+
};
|
|
13129
|
+
timestamp: number;
|
|
13130
|
+
} | undefined;
|
|
13131
|
+
asset: {
|
|
13132
|
+
icon: string | undefined;
|
|
13133
|
+
symbol: string;
|
|
13134
|
+
type: "CryptoCurrency";
|
|
13135
|
+
id: string;
|
|
13136
|
+
name: string;
|
|
13137
|
+
market: {
|
|
13138
|
+
coingeckoId: string | undefined;
|
|
13139
|
+
marketCapUsd: {
|
|
13140
|
+
value: bigint;
|
|
13141
|
+
decimals: number;
|
|
13142
|
+
} | undefined;
|
|
13143
|
+
};
|
|
13144
|
+
updatedAt: number;
|
|
13145
|
+
};
|
|
13146
|
+
amount: {
|
|
13147
|
+
value: bigint;
|
|
13148
|
+
decimals: number;
|
|
13149
|
+
};
|
|
13150
|
+
direction: "out";
|
|
13151
|
+
})[];
|
|
12782
13152
|
}, {
|
|
12783
13153
|
type: "NormalAction";
|
|
12784
13154
|
timestamp: number;
|
|
12785
13155
|
action: "atomic-arbitrage";
|
|
12786
13156
|
evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
|
|
12787
|
-
transfers: {
|
|
13157
|
+
transfers: ({
|
|
12788
13158
|
asset: {
|
|
12789
13159
|
symbol: string;
|
|
12790
13160
|
type: "CryptoCurrency";
|
|
@@ -12816,7 +13186,39 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
12816
13186
|
} | undefined;
|
|
12817
13187
|
from?: string | undefined;
|
|
12818
13188
|
to?: string | undefined;
|
|
12819
|
-
}
|
|
13189
|
+
} | {
|
|
13190
|
+
asset: {
|
|
13191
|
+
symbol: string;
|
|
13192
|
+
type: "CryptoCurrency";
|
|
13193
|
+
id: string;
|
|
13194
|
+
name: string;
|
|
13195
|
+
market: {
|
|
13196
|
+
coingeckoId?: string | undefined;
|
|
13197
|
+
marketCapUsd?: {
|
|
13198
|
+
value: bigint;
|
|
13199
|
+
decimals: number;
|
|
13200
|
+
} | undefined;
|
|
13201
|
+
};
|
|
13202
|
+
updatedAt: number;
|
|
13203
|
+
icon?: string | undefined;
|
|
13204
|
+
};
|
|
13205
|
+
amount: {
|
|
13206
|
+
value: bigint;
|
|
13207
|
+
decimals: number;
|
|
13208
|
+
};
|
|
13209
|
+
direction: "out";
|
|
13210
|
+
price?: {
|
|
13211
|
+
cryptoCurrencyId: string;
|
|
13212
|
+
fiatCurrencyId: string;
|
|
13213
|
+
price: {
|
|
13214
|
+
value: bigint;
|
|
13215
|
+
decimals: number;
|
|
13216
|
+
};
|
|
13217
|
+
timestamp: number;
|
|
13218
|
+
} | undefined;
|
|
13219
|
+
from?: string | undefined;
|
|
13220
|
+
to?: string | undefined;
|
|
13221
|
+
})[];
|
|
12820
13222
|
comment?: string | undefined;
|
|
12821
13223
|
app?: {
|
|
12822
13224
|
id: string;
|
|
@@ -16683,122 +17085,20 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
16683
17085
|
decimals: number;
|
|
16684
17086
|
}>;
|
|
16685
17087
|
direction: z.ZodLiteral<"in">;
|
|
16686
|
-
asset: z.
|
|
16687
|
-
type: z.ZodLiteral<"
|
|
17088
|
+
asset: z.ZodObject<{
|
|
17089
|
+
type: z.ZodLiteral<"Nft">;
|
|
16688
17090
|
id: z.ZodString;
|
|
16689
|
-
name: z.ZodString;
|
|
16690
|
-
symbol: z.ZodString;
|
|
16691
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
16692
|
-
market: z.ZodEffects<z.ZodObject<{
|
|
16693
|
-
coingeckoId: z.ZodOptional<z.ZodString>;
|
|
16694
|
-
marketCapUsd: z.ZodOptional<z.ZodObject<{
|
|
16695
|
-
value: z.ZodBigInt;
|
|
16696
|
-
decimals: z.ZodNumber;
|
|
16697
|
-
}, "strip", z.ZodTypeAny, {
|
|
16698
|
-
value: bigint;
|
|
16699
|
-
decimals: number;
|
|
16700
|
-
}, {
|
|
16701
|
-
value: bigint;
|
|
16702
|
-
decimals: number;
|
|
16703
|
-
}>>;
|
|
16704
|
-
}, "strip", z.ZodTypeAny, {
|
|
16705
|
-
coingeckoId?: string | undefined;
|
|
16706
|
-
marketCapUsd?: {
|
|
16707
|
-
value: bigint;
|
|
16708
|
-
decimals: number;
|
|
16709
|
-
} | undefined;
|
|
16710
|
-
}, {
|
|
16711
|
-
coingeckoId?: string | undefined;
|
|
16712
|
-
marketCapUsd?: {
|
|
16713
|
-
value: bigint;
|
|
16714
|
-
decimals: number;
|
|
16715
|
-
} | undefined;
|
|
16716
|
-
}>, {
|
|
16717
|
-
coingeckoId: string | undefined;
|
|
16718
|
-
marketCapUsd: {
|
|
16719
|
-
value: bigint;
|
|
16720
|
-
decimals: number;
|
|
16721
|
-
} | undefined;
|
|
16722
|
-
}, {
|
|
16723
|
-
coingeckoId?: string | undefined;
|
|
16724
|
-
marketCapUsd?: {
|
|
16725
|
-
value: bigint;
|
|
16726
|
-
decimals: number;
|
|
16727
|
-
} | undefined;
|
|
16728
|
-
}>;
|
|
16729
|
-
updatedAt: z.ZodNumber;
|
|
16730
17091
|
}, "strip", z.ZodTypeAny, {
|
|
16731
|
-
|
|
16732
|
-
type: "CryptoCurrency";
|
|
16733
|
-
id: string;
|
|
16734
|
-
name: string;
|
|
16735
|
-
market: {
|
|
16736
|
-
coingeckoId: string | undefined;
|
|
16737
|
-
marketCapUsd: {
|
|
16738
|
-
value: bigint;
|
|
16739
|
-
decimals: number;
|
|
16740
|
-
} | undefined;
|
|
16741
|
-
};
|
|
16742
|
-
updatedAt: number;
|
|
16743
|
-
icon?: string | undefined;
|
|
16744
|
-
}, {
|
|
16745
|
-
symbol: string;
|
|
16746
|
-
type: "CryptoCurrency";
|
|
16747
|
-
id: string;
|
|
16748
|
-
name: string;
|
|
16749
|
-
market: {
|
|
16750
|
-
coingeckoId?: string | undefined;
|
|
16751
|
-
marketCapUsd?: {
|
|
16752
|
-
value: bigint;
|
|
16753
|
-
decimals: number;
|
|
16754
|
-
} | undefined;
|
|
16755
|
-
};
|
|
16756
|
-
updatedAt: number;
|
|
16757
|
-
icon?: string | undefined;
|
|
16758
|
-
}>, {
|
|
16759
|
-
icon: string | undefined;
|
|
16760
|
-
symbol: string;
|
|
16761
|
-
type: "CryptoCurrency";
|
|
17092
|
+
type: "Nft";
|
|
16762
17093
|
id: string;
|
|
16763
|
-
name: string;
|
|
16764
|
-
market: {
|
|
16765
|
-
coingeckoId: string | undefined;
|
|
16766
|
-
marketCapUsd: {
|
|
16767
|
-
value: bigint;
|
|
16768
|
-
decimals: number;
|
|
16769
|
-
} | undefined;
|
|
16770
|
-
};
|
|
16771
|
-
updatedAt: number;
|
|
16772
17094
|
}, {
|
|
16773
|
-
|
|
16774
|
-
type: "CryptoCurrency";
|
|
17095
|
+
type: "Nft";
|
|
16775
17096
|
id: string;
|
|
16776
|
-
name: string;
|
|
16777
|
-
market: {
|
|
16778
|
-
coingeckoId?: string | undefined;
|
|
16779
|
-
marketCapUsd?: {
|
|
16780
|
-
value: bigint;
|
|
16781
|
-
decimals: number;
|
|
16782
|
-
} | undefined;
|
|
16783
|
-
};
|
|
16784
|
-
updatedAt: number;
|
|
16785
|
-
icon?: string | undefined;
|
|
16786
17097
|
}>;
|
|
16787
17098
|
}, "strip", z.ZodTypeAny, {
|
|
16788
17099
|
asset: {
|
|
16789
|
-
|
|
16790
|
-
symbol: string;
|
|
16791
|
-
type: "CryptoCurrency";
|
|
17100
|
+
type: "Nft";
|
|
16792
17101
|
id: string;
|
|
16793
|
-
name: string;
|
|
16794
|
-
market: {
|
|
16795
|
-
coingeckoId: string | undefined;
|
|
16796
|
-
marketCapUsd: {
|
|
16797
|
-
value: bigint;
|
|
16798
|
-
decimals: number;
|
|
16799
|
-
} | undefined;
|
|
16800
|
-
};
|
|
16801
|
-
updatedAt: number;
|
|
16802
17102
|
};
|
|
16803
17103
|
amount: {
|
|
16804
17104
|
value: bigint;
|
|
@@ -16818,19 +17118,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
16818
17118
|
to?: string | undefined;
|
|
16819
17119
|
}, {
|
|
16820
17120
|
asset: {
|
|
16821
|
-
|
|
16822
|
-
type: "CryptoCurrency";
|
|
17121
|
+
type: "Nft";
|
|
16823
17122
|
id: string;
|
|
16824
|
-
name: string;
|
|
16825
|
-
market: {
|
|
16826
|
-
coingeckoId?: string | undefined;
|
|
16827
|
-
marketCapUsd?: {
|
|
16828
|
-
value: bigint;
|
|
16829
|
-
decimals: number;
|
|
16830
|
-
} | undefined;
|
|
16831
|
-
};
|
|
16832
|
-
updatedAt: number;
|
|
16833
|
-
icon?: string | undefined;
|
|
16834
17123
|
};
|
|
16835
17124
|
amount: {
|
|
16836
17125
|
value: bigint;
|
|
@@ -16861,19 +17150,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
16861
17150
|
timestamp: number;
|
|
16862
17151
|
} | undefined;
|
|
16863
17152
|
asset: {
|
|
16864
|
-
|
|
16865
|
-
symbol: string;
|
|
16866
|
-
type: "CryptoCurrency";
|
|
17153
|
+
type: "Nft";
|
|
16867
17154
|
id: string;
|
|
16868
|
-
name: string;
|
|
16869
|
-
market: {
|
|
16870
|
-
coingeckoId: string | undefined;
|
|
16871
|
-
marketCapUsd: {
|
|
16872
|
-
value: bigint;
|
|
16873
|
-
decimals: number;
|
|
16874
|
-
} | undefined;
|
|
16875
|
-
};
|
|
16876
|
-
updatedAt: number;
|
|
16877
17155
|
};
|
|
16878
17156
|
amount: {
|
|
16879
17157
|
value: bigint;
|
|
@@ -16882,19 +17160,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
16882
17160
|
direction: "in";
|
|
16883
17161
|
}, {
|
|
16884
17162
|
asset: {
|
|
16885
|
-
|
|
16886
|
-
type: "CryptoCurrency";
|
|
17163
|
+
type: "Nft";
|
|
16887
17164
|
id: string;
|
|
16888
|
-
name: string;
|
|
16889
|
-
market: {
|
|
16890
|
-
coingeckoId?: string | undefined;
|
|
16891
|
-
marketCapUsd?: {
|
|
16892
|
-
value: bigint;
|
|
16893
|
-
decimals: number;
|
|
16894
|
-
} | undefined;
|
|
16895
|
-
};
|
|
16896
|
-
updatedAt: number;
|
|
16897
|
-
icon?: string | undefined;
|
|
16898
17165
|
};
|
|
16899
17166
|
amount: {
|
|
16900
17167
|
value: bigint;
|
|
@@ -16957,122 +17224,20 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
16957
17224
|
decimals: number;
|
|
16958
17225
|
}>;
|
|
16959
17226
|
direction: z.ZodLiteral<"out">;
|
|
16960
|
-
asset: z.
|
|
16961
|
-
type: z.ZodLiteral<"
|
|
17227
|
+
asset: z.ZodObject<{
|
|
17228
|
+
type: z.ZodLiteral<"Nft">;
|
|
16962
17229
|
id: z.ZodString;
|
|
16963
|
-
name: z.ZodString;
|
|
16964
|
-
symbol: z.ZodString;
|
|
16965
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
16966
|
-
market: z.ZodEffects<z.ZodObject<{
|
|
16967
|
-
coingeckoId: z.ZodOptional<z.ZodString>;
|
|
16968
|
-
marketCapUsd: z.ZodOptional<z.ZodObject<{
|
|
16969
|
-
value: z.ZodBigInt;
|
|
16970
|
-
decimals: z.ZodNumber;
|
|
16971
|
-
}, "strip", z.ZodTypeAny, {
|
|
16972
|
-
value: bigint;
|
|
16973
|
-
decimals: number;
|
|
16974
|
-
}, {
|
|
16975
|
-
value: bigint;
|
|
16976
|
-
decimals: number;
|
|
16977
|
-
}>>;
|
|
16978
|
-
}, "strip", z.ZodTypeAny, {
|
|
16979
|
-
coingeckoId?: string | undefined;
|
|
16980
|
-
marketCapUsd?: {
|
|
16981
|
-
value: bigint;
|
|
16982
|
-
decimals: number;
|
|
16983
|
-
} | undefined;
|
|
16984
|
-
}, {
|
|
16985
|
-
coingeckoId?: string | undefined;
|
|
16986
|
-
marketCapUsd?: {
|
|
16987
|
-
value: bigint;
|
|
16988
|
-
decimals: number;
|
|
16989
|
-
} | undefined;
|
|
16990
|
-
}>, {
|
|
16991
|
-
coingeckoId: string | undefined;
|
|
16992
|
-
marketCapUsd: {
|
|
16993
|
-
value: bigint;
|
|
16994
|
-
decimals: number;
|
|
16995
|
-
} | undefined;
|
|
16996
|
-
}, {
|
|
16997
|
-
coingeckoId?: string | undefined;
|
|
16998
|
-
marketCapUsd?: {
|
|
16999
|
-
value: bigint;
|
|
17000
|
-
decimals: number;
|
|
17001
|
-
} | undefined;
|
|
17002
|
-
}>;
|
|
17003
|
-
updatedAt: z.ZodNumber;
|
|
17004
17230
|
}, "strip", z.ZodTypeAny, {
|
|
17005
|
-
|
|
17006
|
-
type: "CryptoCurrency";
|
|
17007
|
-
id: string;
|
|
17008
|
-
name: string;
|
|
17009
|
-
market: {
|
|
17010
|
-
coingeckoId: string | undefined;
|
|
17011
|
-
marketCapUsd: {
|
|
17012
|
-
value: bigint;
|
|
17013
|
-
decimals: number;
|
|
17014
|
-
} | undefined;
|
|
17015
|
-
};
|
|
17016
|
-
updatedAt: number;
|
|
17017
|
-
icon?: string | undefined;
|
|
17018
|
-
}, {
|
|
17019
|
-
symbol: string;
|
|
17020
|
-
type: "CryptoCurrency";
|
|
17021
|
-
id: string;
|
|
17022
|
-
name: string;
|
|
17023
|
-
market: {
|
|
17024
|
-
coingeckoId?: string | undefined;
|
|
17025
|
-
marketCapUsd?: {
|
|
17026
|
-
value: bigint;
|
|
17027
|
-
decimals: number;
|
|
17028
|
-
} | undefined;
|
|
17029
|
-
};
|
|
17030
|
-
updatedAt: number;
|
|
17031
|
-
icon?: string | undefined;
|
|
17032
|
-
}>, {
|
|
17033
|
-
icon: string | undefined;
|
|
17034
|
-
symbol: string;
|
|
17035
|
-
type: "CryptoCurrency";
|
|
17231
|
+
type: "Nft";
|
|
17036
17232
|
id: string;
|
|
17037
|
-
name: string;
|
|
17038
|
-
market: {
|
|
17039
|
-
coingeckoId: string | undefined;
|
|
17040
|
-
marketCapUsd: {
|
|
17041
|
-
value: bigint;
|
|
17042
|
-
decimals: number;
|
|
17043
|
-
} | undefined;
|
|
17044
|
-
};
|
|
17045
|
-
updatedAt: number;
|
|
17046
17233
|
}, {
|
|
17047
|
-
|
|
17048
|
-
type: "CryptoCurrency";
|
|
17234
|
+
type: "Nft";
|
|
17049
17235
|
id: string;
|
|
17050
|
-
name: string;
|
|
17051
|
-
market: {
|
|
17052
|
-
coingeckoId?: string | undefined;
|
|
17053
|
-
marketCapUsd?: {
|
|
17054
|
-
value: bigint;
|
|
17055
|
-
decimals: number;
|
|
17056
|
-
} | undefined;
|
|
17057
|
-
};
|
|
17058
|
-
updatedAt: number;
|
|
17059
|
-
icon?: string | undefined;
|
|
17060
17236
|
}>;
|
|
17061
17237
|
}, "strip", z.ZodTypeAny, {
|
|
17062
17238
|
asset: {
|
|
17063
|
-
|
|
17064
|
-
symbol: string;
|
|
17065
|
-
type: "CryptoCurrency";
|
|
17239
|
+
type: "Nft";
|
|
17066
17240
|
id: string;
|
|
17067
|
-
name: string;
|
|
17068
|
-
market: {
|
|
17069
|
-
coingeckoId: string | undefined;
|
|
17070
|
-
marketCapUsd: {
|
|
17071
|
-
value: bigint;
|
|
17072
|
-
decimals: number;
|
|
17073
|
-
} | undefined;
|
|
17074
|
-
};
|
|
17075
|
-
updatedAt: number;
|
|
17076
17241
|
};
|
|
17077
17242
|
amount: {
|
|
17078
17243
|
value: bigint;
|
|
@@ -17092,19 +17257,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17092
17257
|
to?: string | undefined;
|
|
17093
17258
|
}, {
|
|
17094
17259
|
asset: {
|
|
17095
|
-
|
|
17096
|
-
type: "CryptoCurrency";
|
|
17260
|
+
type: "Nft";
|
|
17097
17261
|
id: string;
|
|
17098
|
-
name: string;
|
|
17099
|
-
market: {
|
|
17100
|
-
coingeckoId?: string | undefined;
|
|
17101
|
-
marketCapUsd?: {
|
|
17102
|
-
value: bigint;
|
|
17103
|
-
decimals: number;
|
|
17104
|
-
} | undefined;
|
|
17105
|
-
};
|
|
17106
|
-
updatedAt: number;
|
|
17107
|
-
icon?: string | undefined;
|
|
17108
17262
|
};
|
|
17109
17263
|
amount: {
|
|
17110
17264
|
value: bigint;
|
|
@@ -17135,19 +17289,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17135
17289
|
timestamp: number;
|
|
17136
17290
|
} | undefined;
|
|
17137
17291
|
asset: {
|
|
17138
|
-
|
|
17139
|
-
symbol: string;
|
|
17140
|
-
type: "CryptoCurrency";
|
|
17292
|
+
type: "Nft";
|
|
17141
17293
|
id: string;
|
|
17142
|
-
name: string;
|
|
17143
|
-
market: {
|
|
17144
|
-
coingeckoId: string | undefined;
|
|
17145
|
-
marketCapUsd: {
|
|
17146
|
-
value: bigint;
|
|
17147
|
-
decimals: number;
|
|
17148
|
-
} | undefined;
|
|
17149
|
-
};
|
|
17150
|
-
updatedAt: number;
|
|
17151
17294
|
};
|
|
17152
17295
|
amount: {
|
|
17153
17296
|
value: bigint;
|
|
@@ -17156,19 +17299,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17156
17299
|
direction: "out";
|
|
17157
17300
|
}, {
|
|
17158
17301
|
asset: {
|
|
17159
|
-
|
|
17160
|
-
type: "CryptoCurrency";
|
|
17302
|
+
type: "Nft";
|
|
17161
17303
|
id: string;
|
|
17162
|
-
name: string;
|
|
17163
|
-
market: {
|
|
17164
|
-
coingeckoId?: string | undefined;
|
|
17165
|
-
marketCapUsd?: {
|
|
17166
|
-
value: bigint;
|
|
17167
|
-
decimals: number;
|
|
17168
|
-
} | undefined;
|
|
17169
|
-
};
|
|
17170
|
-
updatedAt: number;
|
|
17171
|
-
icon?: string | undefined;
|
|
17172
17304
|
};
|
|
17173
17305
|
amount: {
|
|
17174
17306
|
value: bigint;
|
|
@@ -17205,19 +17337,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17205
17337
|
timestamp: number;
|
|
17206
17338
|
} | undefined;
|
|
17207
17339
|
asset: {
|
|
17208
|
-
|
|
17209
|
-
symbol: string;
|
|
17210
|
-
type: "CryptoCurrency";
|
|
17340
|
+
type: "Nft";
|
|
17211
17341
|
id: string;
|
|
17212
|
-
name: string;
|
|
17213
|
-
market: {
|
|
17214
|
-
coingeckoId: string | undefined;
|
|
17215
|
-
marketCapUsd: {
|
|
17216
|
-
value: bigint;
|
|
17217
|
-
decimals: number;
|
|
17218
|
-
} | undefined;
|
|
17219
|
-
};
|
|
17220
|
-
updatedAt: number;
|
|
17221
17342
|
};
|
|
17222
17343
|
amount: {
|
|
17223
17344
|
value: bigint;
|
|
@@ -17237,19 +17358,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17237
17358
|
timestamp: number;
|
|
17238
17359
|
} | undefined;
|
|
17239
17360
|
asset: {
|
|
17240
|
-
|
|
17241
|
-
symbol: string;
|
|
17242
|
-
type: "CryptoCurrency";
|
|
17361
|
+
type: "Nft";
|
|
17243
17362
|
id: string;
|
|
17244
|
-
name: string;
|
|
17245
|
-
market: {
|
|
17246
|
-
coingeckoId: string | undefined;
|
|
17247
|
-
marketCapUsd: {
|
|
17248
|
-
value: bigint;
|
|
17249
|
-
decimals: number;
|
|
17250
|
-
} | undefined;
|
|
17251
|
-
};
|
|
17252
|
-
updatedAt: number;
|
|
17253
17363
|
};
|
|
17254
17364
|
amount: {
|
|
17255
17365
|
value: bigint;
|
|
@@ -17273,19 +17383,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17273
17383
|
evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
|
|
17274
17384
|
transfers: ({
|
|
17275
17385
|
asset: {
|
|
17276
|
-
|
|
17277
|
-
type: "CryptoCurrency";
|
|
17386
|
+
type: "Nft";
|
|
17278
17387
|
id: string;
|
|
17279
|
-
name: string;
|
|
17280
|
-
market: {
|
|
17281
|
-
coingeckoId?: string | undefined;
|
|
17282
|
-
marketCapUsd?: {
|
|
17283
|
-
value: bigint;
|
|
17284
|
-
decimals: number;
|
|
17285
|
-
} | undefined;
|
|
17286
|
-
};
|
|
17287
|
-
updatedAt: number;
|
|
17288
|
-
icon?: string | undefined;
|
|
17289
17388
|
};
|
|
17290
17389
|
amount: {
|
|
17291
17390
|
value: bigint;
|
|
@@ -17305,19 +17404,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17305
17404
|
to?: string | undefined;
|
|
17306
17405
|
} | {
|
|
17307
17406
|
asset: {
|
|
17308
|
-
|
|
17309
|
-
type: "CryptoCurrency";
|
|
17407
|
+
type: "Nft";
|
|
17310
17408
|
id: string;
|
|
17311
|
-
name: string;
|
|
17312
|
-
market: {
|
|
17313
|
-
coingeckoId?: string | undefined;
|
|
17314
|
-
marketCapUsd?: {
|
|
17315
|
-
value: bigint;
|
|
17316
|
-
decimals: number;
|
|
17317
|
-
} | undefined;
|
|
17318
|
-
};
|
|
17319
|
-
updatedAt: number;
|
|
17320
|
-
icon?: string | undefined;
|
|
17321
17409
|
};
|
|
17322
17410
|
amount: {
|
|
17323
17411
|
value: bigint;
|
|
@@ -17372,19 +17460,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17372
17460
|
timestamp: number;
|
|
17373
17461
|
} | undefined;
|
|
17374
17462
|
asset: {
|
|
17375
|
-
|
|
17376
|
-
symbol: string;
|
|
17377
|
-
type: "CryptoCurrency";
|
|
17463
|
+
type: "Nft";
|
|
17378
17464
|
id: string;
|
|
17379
|
-
name: string;
|
|
17380
|
-
market: {
|
|
17381
|
-
coingeckoId: string | undefined;
|
|
17382
|
-
marketCapUsd: {
|
|
17383
|
-
value: bigint;
|
|
17384
|
-
decimals: number;
|
|
17385
|
-
} | undefined;
|
|
17386
|
-
};
|
|
17387
|
-
updatedAt: number;
|
|
17388
17465
|
};
|
|
17389
17466
|
amount: {
|
|
17390
17467
|
value: bigint;
|
|
@@ -17404,19 +17481,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17404
17481
|
timestamp: number;
|
|
17405
17482
|
} | undefined;
|
|
17406
17483
|
asset: {
|
|
17407
|
-
|
|
17408
|
-
symbol: string;
|
|
17409
|
-
type: "CryptoCurrency";
|
|
17484
|
+
type: "Nft";
|
|
17410
17485
|
id: string;
|
|
17411
|
-
name: string;
|
|
17412
|
-
market: {
|
|
17413
|
-
coingeckoId: string | undefined;
|
|
17414
|
-
marketCapUsd: {
|
|
17415
|
-
value: bigint;
|
|
17416
|
-
decimals: number;
|
|
17417
|
-
} | undefined;
|
|
17418
|
-
};
|
|
17419
|
-
updatedAt: number;
|
|
17420
17486
|
};
|
|
17421
17487
|
amount: {
|
|
17422
17488
|
value: bigint;
|
|
@@ -17431,19 +17497,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17431
17497
|
evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
|
|
17432
17498
|
transfers: ({
|
|
17433
17499
|
asset: {
|
|
17434
|
-
|
|
17435
|
-
type: "CryptoCurrency";
|
|
17500
|
+
type: "Nft";
|
|
17436
17501
|
id: string;
|
|
17437
|
-
name: string;
|
|
17438
|
-
market: {
|
|
17439
|
-
coingeckoId?: string | undefined;
|
|
17440
|
-
marketCapUsd?: {
|
|
17441
|
-
value: bigint;
|
|
17442
|
-
decimals: number;
|
|
17443
|
-
} | undefined;
|
|
17444
|
-
};
|
|
17445
|
-
updatedAt: number;
|
|
17446
|
-
icon?: string | undefined;
|
|
17447
17502
|
};
|
|
17448
17503
|
amount: {
|
|
17449
17504
|
value: bigint;
|
|
@@ -17463,19 +17518,8 @@ export declare const normalActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
17463
17518
|
to?: string | undefined;
|
|
17464
17519
|
} | {
|
|
17465
17520
|
asset: {
|
|
17466
|
-
|
|
17467
|
-
type: "CryptoCurrency";
|
|
17521
|
+
type: "Nft";
|
|
17468
17522
|
id: string;
|
|
17469
|
-
name: string;
|
|
17470
|
-
market: {
|
|
17471
|
-
coingeckoId?: string | undefined;
|
|
17472
|
-
marketCapUsd?: {
|
|
17473
|
-
value: bigint;
|
|
17474
|
-
decimals: number;
|
|
17475
|
-
} | undefined;
|
|
17476
|
-
};
|
|
17477
|
-
updatedAt: number;
|
|
17478
|
-
icon?: string | undefined;
|
|
17479
17523
|
};
|
|
17480
17524
|
amount: {
|
|
17481
17525
|
value: bigint;
|
|
@@ -54871,122 +54915,20 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
54871
54915
|
decimals: number;
|
|
54872
54916
|
}>;
|
|
54873
54917
|
direction: z.ZodLiteral<"in">;
|
|
54874
|
-
asset: z.
|
|
54875
|
-
type: z.ZodLiteral<"
|
|
54918
|
+
asset: z.ZodObject<{
|
|
54919
|
+
type: z.ZodLiteral<"Nft">;
|
|
54876
54920
|
id: z.ZodString;
|
|
54877
|
-
name: z.ZodString;
|
|
54878
|
-
symbol: z.ZodString;
|
|
54879
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
54880
|
-
market: z.ZodEffects<z.ZodObject<{
|
|
54881
|
-
coingeckoId: z.ZodOptional<z.ZodString>;
|
|
54882
|
-
marketCapUsd: z.ZodOptional<z.ZodObject<{
|
|
54883
|
-
value: z.ZodBigInt;
|
|
54884
|
-
decimals: z.ZodNumber;
|
|
54885
|
-
}, "strip", z.ZodTypeAny, {
|
|
54886
|
-
value: bigint;
|
|
54887
|
-
decimals: number;
|
|
54888
|
-
}, {
|
|
54889
|
-
value: bigint;
|
|
54890
|
-
decimals: number;
|
|
54891
|
-
}>>;
|
|
54892
|
-
}, "strip", z.ZodTypeAny, {
|
|
54893
|
-
coingeckoId?: string | undefined;
|
|
54894
|
-
marketCapUsd?: {
|
|
54895
|
-
value: bigint;
|
|
54896
|
-
decimals: number;
|
|
54897
|
-
} | undefined;
|
|
54898
|
-
}, {
|
|
54899
|
-
coingeckoId?: string | undefined;
|
|
54900
|
-
marketCapUsd?: {
|
|
54901
|
-
value: bigint;
|
|
54902
|
-
decimals: number;
|
|
54903
|
-
} | undefined;
|
|
54904
|
-
}>, {
|
|
54905
|
-
coingeckoId: string | undefined;
|
|
54906
|
-
marketCapUsd: {
|
|
54907
|
-
value: bigint;
|
|
54908
|
-
decimals: number;
|
|
54909
|
-
} | undefined;
|
|
54910
|
-
}, {
|
|
54911
|
-
coingeckoId?: string | undefined;
|
|
54912
|
-
marketCapUsd?: {
|
|
54913
|
-
value: bigint;
|
|
54914
|
-
decimals: number;
|
|
54915
|
-
} | undefined;
|
|
54916
|
-
}>;
|
|
54917
|
-
updatedAt: z.ZodNumber;
|
|
54918
54921
|
}, "strip", z.ZodTypeAny, {
|
|
54919
|
-
|
|
54920
|
-
type: "CryptoCurrency";
|
|
54921
|
-
id: string;
|
|
54922
|
-
name: string;
|
|
54923
|
-
market: {
|
|
54924
|
-
coingeckoId: string | undefined;
|
|
54925
|
-
marketCapUsd: {
|
|
54926
|
-
value: bigint;
|
|
54927
|
-
decimals: number;
|
|
54928
|
-
} | undefined;
|
|
54929
|
-
};
|
|
54930
|
-
updatedAt: number;
|
|
54931
|
-
icon?: string | undefined;
|
|
54932
|
-
}, {
|
|
54933
|
-
symbol: string;
|
|
54934
|
-
type: "CryptoCurrency";
|
|
54935
|
-
id: string;
|
|
54936
|
-
name: string;
|
|
54937
|
-
market: {
|
|
54938
|
-
coingeckoId?: string | undefined;
|
|
54939
|
-
marketCapUsd?: {
|
|
54940
|
-
value: bigint;
|
|
54941
|
-
decimals: number;
|
|
54942
|
-
} | undefined;
|
|
54943
|
-
};
|
|
54944
|
-
updatedAt: number;
|
|
54945
|
-
icon?: string | undefined;
|
|
54946
|
-
}>, {
|
|
54947
|
-
icon: string | undefined;
|
|
54948
|
-
symbol: string;
|
|
54949
|
-
type: "CryptoCurrency";
|
|
54922
|
+
type: "Nft";
|
|
54950
54923
|
id: string;
|
|
54951
|
-
name: string;
|
|
54952
|
-
market: {
|
|
54953
|
-
coingeckoId: string | undefined;
|
|
54954
|
-
marketCapUsd: {
|
|
54955
|
-
value: bigint;
|
|
54956
|
-
decimals: number;
|
|
54957
|
-
} | undefined;
|
|
54958
|
-
};
|
|
54959
|
-
updatedAt: number;
|
|
54960
54924
|
}, {
|
|
54961
|
-
|
|
54962
|
-
type: "CryptoCurrency";
|
|
54925
|
+
type: "Nft";
|
|
54963
54926
|
id: string;
|
|
54964
|
-
name: string;
|
|
54965
|
-
market: {
|
|
54966
|
-
coingeckoId?: string | undefined;
|
|
54967
|
-
marketCapUsd?: {
|
|
54968
|
-
value: bigint;
|
|
54969
|
-
decimals: number;
|
|
54970
|
-
} | undefined;
|
|
54971
|
-
};
|
|
54972
|
-
updatedAt: number;
|
|
54973
|
-
icon?: string | undefined;
|
|
54974
54927
|
}>;
|
|
54975
54928
|
}, "strip", z.ZodTypeAny, {
|
|
54976
54929
|
asset: {
|
|
54977
|
-
|
|
54978
|
-
symbol: string;
|
|
54979
|
-
type: "CryptoCurrency";
|
|
54930
|
+
type: "Nft";
|
|
54980
54931
|
id: string;
|
|
54981
|
-
name: string;
|
|
54982
|
-
market: {
|
|
54983
|
-
coingeckoId: string | undefined;
|
|
54984
|
-
marketCapUsd: {
|
|
54985
|
-
value: bigint;
|
|
54986
|
-
decimals: number;
|
|
54987
|
-
} | undefined;
|
|
54988
|
-
};
|
|
54989
|
-
updatedAt: number;
|
|
54990
54932
|
};
|
|
54991
54933
|
amount: {
|
|
54992
54934
|
value: bigint;
|
|
@@ -55006,19 +54948,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55006
54948
|
to?: string | undefined;
|
|
55007
54949
|
}, {
|
|
55008
54950
|
asset: {
|
|
55009
|
-
|
|
55010
|
-
type: "CryptoCurrency";
|
|
54951
|
+
type: "Nft";
|
|
55011
54952
|
id: string;
|
|
55012
|
-
name: string;
|
|
55013
|
-
market: {
|
|
55014
|
-
coingeckoId?: string | undefined;
|
|
55015
|
-
marketCapUsd?: {
|
|
55016
|
-
value: bigint;
|
|
55017
|
-
decimals: number;
|
|
55018
|
-
} | undefined;
|
|
55019
|
-
};
|
|
55020
|
-
updatedAt: number;
|
|
55021
|
-
icon?: string | undefined;
|
|
55022
54953
|
};
|
|
55023
54954
|
amount: {
|
|
55024
54955
|
value: bigint;
|
|
@@ -55049,19 +54980,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55049
54980
|
timestamp: number;
|
|
55050
54981
|
} | undefined;
|
|
55051
54982
|
asset: {
|
|
55052
|
-
|
|
55053
|
-
symbol: string;
|
|
55054
|
-
type: "CryptoCurrency";
|
|
54983
|
+
type: "Nft";
|
|
55055
54984
|
id: string;
|
|
55056
|
-
name: string;
|
|
55057
|
-
market: {
|
|
55058
|
-
coingeckoId: string | undefined;
|
|
55059
|
-
marketCapUsd: {
|
|
55060
|
-
value: bigint;
|
|
55061
|
-
decimals: number;
|
|
55062
|
-
} | undefined;
|
|
55063
|
-
};
|
|
55064
|
-
updatedAt: number;
|
|
55065
54985
|
};
|
|
55066
54986
|
amount: {
|
|
55067
54987
|
value: bigint;
|
|
@@ -55070,19 +54990,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55070
54990
|
direction: "in";
|
|
55071
54991
|
}, {
|
|
55072
54992
|
asset: {
|
|
55073
|
-
|
|
55074
|
-
type: "CryptoCurrency";
|
|
54993
|
+
type: "Nft";
|
|
55075
54994
|
id: string;
|
|
55076
|
-
name: string;
|
|
55077
|
-
market: {
|
|
55078
|
-
coingeckoId?: string | undefined;
|
|
55079
|
-
marketCapUsd?: {
|
|
55080
|
-
value: bigint;
|
|
55081
|
-
decimals: number;
|
|
55082
|
-
} | undefined;
|
|
55083
|
-
};
|
|
55084
|
-
updatedAt: number;
|
|
55085
|
-
icon?: string | undefined;
|
|
55086
54995
|
};
|
|
55087
54996
|
amount: {
|
|
55088
54997
|
value: bigint;
|
|
@@ -55145,122 +55054,20 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55145
55054
|
decimals: number;
|
|
55146
55055
|
}>;
|
|
55147
55056
|
direction: z.ZodLiteral<"out">;
|
|
55148
|
-
asset: z.
|
|
55149
|
-
type: z.ZodLiteral<"
|
|
55057
|
+
asset: z.ZodObject<{
|
|
55058
|
+
type: z.ZodLiteral<"Nft">;
|
|
55150
55059
|
id: z.ZodString;
|
|
55151
|
-
name: z.ZodString;
|
|
55152
|
-
symbol: z.ZodString;
|
|
55153
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
55154
|
-
market: z.ZodEffects<z.ZodObject<{
|
|
55155
|
-
coingeckoId: z.ZodOptional<z.ZodString>;
|
|
55156
|
-
marketCapUsd: z.ZodOptional<z.ZodObject<{
|
|
55157
|
-
value: z.ZodBigInt;
|
|
55158
|
-
decimals: z.ZodNumber;
|
|
55159
|
-
}, "strip", z.ZodTypeAny, {
|
|
55160
|
-
value: bigint;
|
|
55161
|
-
decimals: number;
|
|
55162
|
-
}, {
|
|
55163
|
-
value: bigint;
|
|
55164
|
-
decimals: number;
|
|
55165
|
-
}>>;
|
|
55166
|
-
}, "strip", z.ZodTypeAny, {
|
|
55167
|
-
coingeckoId?: string | undefined;
|
|
55168
|
-
marketCapUsd?: {
|
|
55169
|
-
value: bigint;
|
|
55170
|
-
decimals: number;
|
|
55171
|
-
} | undefined;
|
|
55172
|
-
}, {
|
|
55173
|
-
coingeckoId?: string | undefined;
|
|
55174
|
-
marketCapUsd?: {
|
|
55175
|
-
value: bigint;
|
|
55176
|
-
decimals: number;
|
|
55177
|
-
} | undefined;
|
|
55178
|
-
}>, {
|
|
55179
|
-
coingeckoId: string | undefined;
|
|
55180
|
-
marketCapUsd: {
|
|
55181
|
-
value: bigint;
|
|
55182
|
-
decimals: number;
|
|
55183
|
-
} | undefined;
|
|
55184
|
-
}, {
|
|
55185
|
-
coingeckoId?: string | undefined;
|
|
55186
|
-
marketCapUsd?: {
|
|
55187
|
-
value: bigint;
|
|
55188
|
-
decimals: number;
|
|
55189
|
-
} | undefined;
|
|
55190
|
-
}>;
|
|
55191
|
-
updatedAt: z.ZodNumber;
|
|
55192
55060
|
}, "strip", z.ZodTypeAny, {
|
|
55193
|
-
|
|
55194
|
-
type: "CryptoCurrency";
|
|
55195
|
-
id: string;
|
|
55196
|
-
name: string;
|
|
55197
|
-
market: {
|
|
55198
|
-
coingeckoId: string | undefined;
|
|
55199
|
-
marketCapUsd: {
|
|
55200
|
-
value: bigint;
|
|
55201
|
-
decimals: number;
|
|
55202
|
-
} | undefined;
|
|
55203
|
-
};
|
|
55204
|
-
updatedAt: number;
|
|
55205
|
-
icon?: string | undefined;
|
|
55206
|
-
}, {
|
|
55207
|
-
symbol: string;
|
|
55208
|
-
type: "CryptoCurrency";
|
|
55209
|
-
id: string;
|
|
55210
|
-
name: string;
|
|
55211
|
-
market: {
|
|
55212
|
-
coingeckoId?: string | undefined;
|
|
55213
|
-
marketCapUsd?: {
|
|
55214
|
-
value: bigint;
|
|
55215
|
-
decimals: number;
|
|
55216
|
-
} | undefined;
|
|
55217
|
-
};
|
|
55218
|
-
updatedAt: number;
|
|
55219
|
-
icon?: string | undefined;
|
|
55220
|
-
}>, {
|
|
55221
|
-
icon: string | undefined;
|
|
55222
|
-
symbol: string;
|
|
55223
|
-
type: "CryptoCurrency";
|
|
55061
|
+
type: "Nft";
|
|
55224
55062
|
id: string;
|
|
55225
|
-
name: string;
|
|
55226
|
-
market: {
|
|
55227
|
-
coingeckoId: string | undefined;
|
|
55228
|
-
marketCapUsd: {
|
|
55229
|
-
value: bigint;
|
|
55230
|
-
decimals: number;
|
|
55231
|
-
} | undefined;
|
|
55232
|
-
};
|
|
55233
|
-
updatedAt: number;
|
|
55234
55063
|
}, {
|
|
55235
|
-
|
|
55236
|
-
type: "CryptoCurrency";
|
|
55064
|
+
type: "Nft";
|
|
55237
55065
|
id: string;
|
|
55238
|
-
name: string;
|
|
55239
|
-
market: {
|
|
55240
|
-
coingeckoId?: string | undefined;
|
|
55241
|
-
marketCapUsd?: {
|
|
55242
|
-
value: bigint;
|
|
55243
|
-
decimals: number;
|
|
55244
|
-
} | undefined;
|
|
55245
|
-
};
|
|
55246
|
-
updatedAt: number;
|
|
55247
|
-
icon?: string | undefined;
|
|
55248
55066
|
}>;
|
|
55249
55067
|
}, "strip", z.ZodTypeAny, {
|
|
55250
55068
|
asset: {
|
|
55251
|
-
|
|
55252
|
-
symbol: string;
|
|
55253
|
-
type: "CryptoCurrency";
|
|
55069
|
+
type: "Nft";
|
|
55254
55070
|
id: string;
|
|
55255
|
-
name: string;
|
|
55256
|
-
market: {
|
|
55257
|
-
coingeckoId: string | undefined;
|
|
55258
|
-
marketCapUsd: {
|
|
55259
|
-
value: bigint;
|
|
55260
|
-
decimals: number;
|
|
55261
|
-
} | undefined;
|
|
55262
|
-
};
|
|
55263
|
-
updatedAt: number;
|
|
55264
55071
|
};
|
|
55265
55072
|
amount: {
|
|
55266
55073
|
value: bigint;
|
|
@@ -55280,19 +55087,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55280
55087
|
to?: string | undefined;
|
|
55281
55088
|
}, {
|
|
55282
55089
|
asset: {
|
|
55283
|
-
|
|
55284
|
-
type: "CryptoCurrency";
|
|
55090
|
+
type: "Nft";
|
|
55285
55091
|
id: string;
|
|
55286
|
-
name: string;
|
|
55287
|
-
market: {
|
|
55288
|
-
coingeckoId?: string | undefined;
|
|
55289
|
-
marketCapUsd?: {
|
|
55290
|
-
value: bigint;
|
|
55291
|
-
decimals: number;
|
|
55292
|
-
} | undefined;
|
|
55293
|
-
};
|
|
55294
|
-
updatedAt: number;
|
|
55295
|
-
icon?: string | undefined;
|
|
55296
55092
|
};
|
|
55297
55093
|
amount: {
|
|
55298
55094
|
value: bigint;
|
|
@@ -55323,19 +55119,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55323
55119
|
timestamp: number;
|
|
55324
55120
|
} | undefined;
|
|
55325
55121
|
asset: {
|
|
55326
|
-
|
|
55327
|
-
symbol: string;
|
|
55328
|
-
type: "CryptoCurrency";
|
|
55122
|
+
type: "Nft";
|
|
55329
55123
|
id: string;
|
|
55330
|
-
name: string;
|
|
55331
|
-
market: {
|
|
55332
|
-
coingeckoId: string | undefined;
|
|
55333
|
-
marketCapUsd: {
|
|
55334
|
-
value: bigint;
|
|
55335
|
-
decimals: number;
|
|
55336
|
-
} | undefined;
|
|
55337
|
-
};
|
|
55338
|
-
updatedAt: number;
|
|
55339
55124
|
};
|
|
55340
55125
|
amount: {
|
|
55341
55126
|
value: bigint;
|
|
@@ -55344,19 +55129,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55344
55129
|
direction: "out";
|
|
55345
55130
|
}, {
|
|
55346
55131
|
asset: {
|
|
55347
|
-
|
|
55348
|
-
type: "CryptoCurrency";
|
|
55132
|
+
type: "Nft";
|
|
55349
55133
|
id: string;
|
|
55350
|
-
name: string;
|
|
55351
|
-
market: {
|
|
55352
|
-
coingeckoId?: string | undefined;
|
|
55353
|
-
marketCapUsd?: {
|
|
55354
|
-
value: bigint;
|
|
55355
|
-
decimals: number;
|
|
55356
|
-
} | undefined;
|
|
55357
|
-
};
|
|
55358
|
-
updatedAt: number;
|
|
55359
|
-
icon?: string | undefined;
|
|
55360
55134
|
};
|
|
55361
55135
|
amount: {
|
|
55362
55136
|
value: bigint;
|
|
@@ -55395,19 +55169,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55395
55169
|
timestamp: number;
|
|
55396
55170
|
} | undefined;
|
|
55397
55171
|
asset: {
|
|
55398
|
-
|
|
55399
|
-
symbol: string;
|
|
55400
|
-
type: "CryptoCurrency";
|
|
55172
|
+
type: "Nft";
|
|
55401
55173
|
id: string;
|
|
55402
|
-
name: string;
|
|
55403
|
-
market: {
|
|
55404
|
-
coingeckoId: string | undefined;
|
|
55405
|
-
marketCapUsd: {
|
|
55406
|
-
value: bigint;
|
|
55407
|
-
decimals: number;
|
|
55408
|
-
} | undefined;
|
|
55409
|
-
};
|
|
55410
|
-
updatedAt: number;
|
|
55411
55174
|
};
|
|
55412
55175
|
amount: {
|
|
55413
55176
|
value: bigint;
|
|
@@ -55427,19 +55190,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55427
55190
|
timestamp: number;
|
|
55428
55191
|
} | undefined;
|
|
55429
55192
|
asset: {
|
|
55430
|
-
|
|
55431
|
-
symbol: string;
|
|
55432
|
-
type: "CryptoCurrency";
|
|
55193
|
+
type: "Nft";
|
|
55433
55194
|
id: string;
|
|
55434
|
-
name: string;
|
|
55435
|
-
market: {
|
|
55436
|
-
coingeckoId: string | undefined;
|
|
55437
|
-
marketCapUsd: {
|
|
55438
|
-
value: bigint;
|
|
55439
|
-
decimals: number;
|
|
55440
|
-
} | undefined;
|
|
55441
|
-
};
|
|
55442
|
-
updatedAt: number;
|
|
55443
55195
|
};
|
|
55444
55196
|
amount: {
|
|
55445
55197
|
value: bigint;
|
|
@@ -55465,19 +55217,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55465
55217
|
evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
|
|
55466
55218
|
transfers: ({
|
|
55467
55219
|
asset: {
|
|
55468
|
-
|
|
55469
|
-
type: "CryptoCurrency";
|
|
55220
|
+
type: "Nft";
|
|
55470
55221
|
id: string;
|
|
55471
|
-
name: string;
|
|
55472
|
-
market: {
|
|
55473
|
-
coingeckoId?: string | undefined;
|
|
55474
|
-
marketCapUsd?: {
|
|
55475
|
-
value: bigint;
|
|
55476
|
-
decimals: number;
|
|
55477
|
-
} | undefined;
|
|
55478
|
-
};
|
|
55479
|
-
updatedAt: number;
|
|
55480
|
-
icon?: string | undefined;
|
|
55481
55222
|
};
|
|
55482
55223
|
amount: {
|
|
55483
55224
|
value: bigint;
|
|
@@ -55497,19 +55238,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55497
55238
|
to?: string | undefined;
|
|
55498
55239
|
} | {
|
|
55499
55240
|
asset: {
|
|
55500
|
-
|
|
55501
|
-
type: "CryptoCurrency";
|
|
55241
|
+
type: "Nft";
|
|
55502
55242
|
id: string;
|
|
55503
|
-
name: string;
|
|
55504
|
-
market: {
|
|
55505
|
-
coingeckoId?: string | undefined;
|
|
55506
|
-
marketCapUsd?: {
|
|
55507
|
-
value: bigint;
|
|
55508
|
-
decimals: number;
|
|
55509
|
-
} | undefined;
|
|
55510
|
-
};
|
|
55511
|
-
updatedAt: number;
|
|
55512
|
-
icon?: string | undefined;
|
|
55513
55243
|
};
|
|
55514
55244
|
amount: {
|
|
55515
55245
|
value: bigint;
|
|
@@ -55566,19 +55296,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55566
55296
|
timestamp: number;
|
|
55567
55297
|
} | undefined;
|
|
55568
55298
|
asset: {
|
|
55569
|
-
|
|
55570
|
-
symbol: string;
|
|
55571
|
-
type: "CryptoCurrency";
|
|
55299
|
+
type: "Nft";
|
|
55572
55300
|
id: string;
|
|
55573
|
-
name: string;
|
|
55574
|
-
market: {
|
|
55575
|
-
coingeckoId: string | undefined;
|
|
55576
|
-
marketCapUsd: {
|
|
55577
|
-
value: bigint;
|
|
55578
|
-
decimals: number;
|
|
55579
|
-
} | undefined;
|
|
55580
|
-
};
|
|
55581
|
-
updatedAt: number;
|
|
55582
55301
|
};
|
|
55583
55302
|
amount: {
|
|
55584
55303
|
value: bigint;
|
|
@@ -55598,19 +55317,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55598
55317
|
timestamp: number;
|
|
55599
55318
|
} | undefined;
|
|
55600
55319
|
asset: {
|
|
55601
|
-
|
|
55602
|
-
symbol: string;
|
|
55603
|
-
type: "CryptoCurrency";
|
|
55320
|
+
type: "Nft";
|
|
55604
55321
|
id: string;
|
|
55605
|
-
name: string;
|
|
55606
|
-
market: {
|
|
55607
|
-
coingeckoId: string | undefined;
|
|
55608
|
-
marketCapUsd: {
|
|
55609
|
-
value: bigint;
|
|
55610
|
-
decimals: number;
|
|
55611
|
-
} | undefined;
|
|
55612
|
-
};
|
|
55613
|
-
updatedAt: number;
|
|
55614
55322
|
};
|
|
55615
55323
|
amount: {
|
|
55616
55324
|
value: bigint;
|
|
@@ -55627,19 +55335,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55627
55335
|
evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
|
|
55628
55336
|
transfers: ({
|
|
55629
55337
|
asset: {
|
|
55630
|
-
|
|
55631
|
-
type: "CryptoCurrency";
|
|
55338
|
+
type: "Nft";
|
|
55632
55339
|
id: string;
|
|
55633
|
-
name: string;
|
|
55634
|
-
market: {
|
|
55635
|
-
coingeckoId?: string | undefined;
|
|
55636
|
-
marketCapUsd?: {
|
|
55637
|
-
value: bigint;
|
|
55638
|
-
decimals: number;
|
|
55639
|
-
} | undefined;
|
|
55640
|
-
};
|
|
55641
|
-
updatedAt: number;
|
|
55642
|
-
icon?: string | undefined;
|
|
55643
55340
|
};
|
|
55644
55341
|
amount: {
|
|
55645
55342
|
value: bigint;
|
|
@@ -55659,19 +55356,8 @@ export declare const accountActionSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
55659
55356
|
to?: string | undefined;
|
|
55660
55357
|
} | {
|
|
55661
55358
|
asset: {
|
|
55662
|
-
|
|
55663
|
-
type: "CryptoCurrency";
|
|
55359
|
+
type: "Nft";
|
|
55664
55360
|
id: string;
|
|
55665
|
-
name: string;
|
|
55666
|
-
market: {
|
|
55667
|
-
coingeckoId?: string | undefined;
|
|
55668
|
-
marketCapUsd?: {
|
|
55669
|
-
value: bigint;
|
|
55670
|
-
decimals: number;
|
|
55671
|
-
} | undefined;
|
|
55672
|
-
};
|
|
55673
|
-
updatedAt: number;
|
|
55674
|
-
icon?: string | undefined;
|
|
55675
55361
|
};
|
|
55676
55362
|
amount: {
|
|
55677
55363
|
value: bigint;
|