From 6dffd7bdc4ab639c5667bf2f2b7ae485ed115b15 Mon Sep 17 00:00:00 2001 From: lissavxo Date: Sat, 11 Jan 2025 21:08:21 -0300 Subject: [PATCH 1/2] feat: add inputs to tx type --- react/lib/util/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/react/lib/util/types.ts b/react/lib/util/types.ts index 692fea0a..c27da957 100644 --- a/react/lib/util/types.ts +++ b/react/lib/util/types.ts @@ -15,6 +15,7 @@ export interface Transaction { timestamp: number address: string rawMessage?: string + inputAddresses?: (string | undefined)[] } export interface UtxoDetails { From 4dec09ab3720200d7ddf8af5c46b0fc712b94e10 Mon Sep 17 00:00:00 2001 From: lissavxo Date: Fri, 17 Jan 2025 15:36:11 -0300 Subject: [PATCH 2/2] refactor: clean up --- react/lib/util/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/lib/util/types.ts b/react/lib/util/types.ts index c27da957..d3a9611e 100644 --- a/react/lib/util/types.ts +++ b/react/lib/util/types.ts @@ -15,7 +15,7 @@ export interface Transaction { timestamp: number address: string rawMessage?: string - inputAddresses?: (string | undefined)[] + inputAddresses?: string[] } export interface UtxoDetails {