Skip to content

Commit

Permalink
feat: add price filed for addressHoldAssets result
Browse files Browse the repository at this point in the history
  • Loading branch information
PainterPuppets committed Dec 27, 2024
1 parent c36b3f1 commit 8ec6741
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions trpc.d.cts
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
quote: {
totalSupply: string | null;
holderCount: {
network: "ckb" | "btc" | "unknown" | "doge";
network: "ckb" | "btc" | "doge" | "unknown";
count: number;
}[];
price: string | null;
marketCap: string | null;
volume24h: string | null;
priceChange24h: number | null;
circulatingSupply: string | null;
fdv: string | null;
priceChange24h: number | null;
txCount24h: number;
};
}[];
Expand All @@ -60,7 +60,7 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
status: {
timestamp: number;
};
network: "ckb" | "btc" | "unknown" | "doge";
network: "ckb" | "btc" | "doge" | "unknown";
count: number;
}[];
}>;
Expand All @@ -80,7 +80,7 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
status: {
timestamp: number;
};
network: "ckb" | "btc" | "unknown" | "doge";
network: "ckb" | "btc" | "doge" | "unknown";
count: number;
}[];
}>;
Expand Down Expand Up @@ -109,15 +109,15 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
quote: {
totalSupply: string | null;
holderCount: {
network: "ckb" | "btc" | "unknown" | "doge";
network: "ckb" | "btc" | "doge" | "unknown";
count: number;
}[];
price: string | null;
marketCap: string | null;
volume24h: string | null;
priceChange24h: number | null;
circulatingSupply: string | null;
fdv: string | null;
priceChange24h: number | null;
txCount24h: number;
};
} | null;
Expand All @@ -129,15 +129,15 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
output: {
totalSupply: string | null;
holderCount: {
network: "ckb" | "btc" | "unknown" | "doge";
network: "ckb" | "btc" | "doge" | "unknown";
count: number;
}[];
price: string | null;
marketCap: string | null;
volume24h: string | null;
priceChange24h: number | null;
circulatingSupply: string | null;
fdv: string | null;
priceChange24h: number | null;
txCount24h: number;
} | null;
}>;
Expand All @@ -151,7 +151,7 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
data: {
value: string;
address: string;
network: "ckb" | "btc" | "unknown" | "doge";
network: "ckb" | "btc" | "doge" | "unknown";
usd: string;
percentage: number;
}[];
Expand All @@ -176,6 +176,7 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
};
value: string;
amount: string;
price: string | null;
priceChange24h: number | null;
}[];
balance: string;
Expand All @@ -189,7 +190,7 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
};
output: {
data: {
network: "ckb" | "btc" | "unknown" | "doge";
network: "ckb" | "btc" | "doge" | "unknown";
txHash: string;
}[];
pagination: {
Expand Down

0 comments on commit 8ec6741

Please sign in to comment.