diff --git a/packages/mesh-provider/src/kupo.ts b/packages/mesh-provider/src/kupo.ts index 8ae75b83..8c83e897 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) => {