Skip to content

Commit

Permalink
feat: update addressHoldAssets api
Browse files Browse the repository at this point in the history
  • Loading branch information
PainterPuppets committed Dec 27, 2024
1 parent 874284a commit c36b3f1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion trpc.d.cts
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,20 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
addressHoldAssets: _trpc_server.TRPCQueryProcedure<{
input: {
address: string;
network: "ckb" | "btc" | "unknown" | "doge";
};
output: {
assets: {
info: {
symbol: string | null;
id: string;
name: string | null;
decimals: number | null;
icon: string | null;
};
value: string;
amount: string;
priceChange24h: number | null;
}[];
balance: string;
} | null;
}>;
Expand Down

0 comments on commit c36b3f1

Please sign in to comment.