From 7b4379c9021f460fed3b6e6c383bcf370f5f152e Mon Sep 17 00:00:00 2001 From: BitcoinVM <18786721@qq.com> Date: Wed, 31 Jan 2024 10:27:18 +0800 Subject: [PATCH] add packet detail types --- src/types/transaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/transaction.ts b/src/types/transaction.ts index 950518cf..399c85d8 100644 --- a/src/types/transaction.ts +++ b/src/types/transaction.ts @@ -3,7 +3,7 @@ import type { Coin, Key, PaginatedResponse } from "./common" export interface Tx { "@type"?: string, "body": { - "messages": {"@type": string, "amount"?: Coin[]}[], + "messages": {"@type": string, "amount"?: Coin[], packet?: { data: string }}[], "memo": string, "timeout_height": string, "extension_options": any[],