We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd26eef + 911bc34 commit dcd529eCopy full SHA for dcd529e
packages/mesh-provider/src/kupo.ts
@@ -31,7 +31,7 @@ export class KupoProvider implements IFetcher {
31
throw new Error("Method not implemented.");
32
}
33
async fetchAddressUTxOs(address: string, asset?: string): Promise<UTxO[]> {
34
- const { status, data } = await this.get(address);
+ const { status, data } = await this.get(`${address}?unspent`);
35
if (status === 200) {
36
return data
37
.map((utxo: any) => {
0 commit comments