From f888fddedd34230b776f046434509f6771078da1 Mon Sep 17 00:00:00 2001 From: Mohamed Fayaz <55308975+MoFayaz@users.noreply.github.com> Date: Sun, 21 Dec 2025 13:47:41 +0530 Subject: [PATCH] fix: Missing ?unspent includes the used utxos --- packages/mesh-provider/src/kupo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mesh-provider/src/kupo.ts b/packages/mesh-provider/src/kupo.ts index 8ae75b83f..8c83e8978 100644 --- a/packages/mesh-provider/src/kupo.ts +++ b/packages/mesh-provider/src/kupo.ts @@ -31,7 +31,7 @@ export class KupoProvider implements IFetcher { throw new Error("Method not implemented."); } async fetchAddressUTxOs(address: string, asset?: string): Promise { - const { status, data } = await this.get(address); + const { status, data } = await this.get(`${address}?unspent`); if (status === 200) { return data .map((utxo: any) => {