[SDK] Export ListVtxos (#282)

This commit is contained in:
Pietralberto Mazza
2024-08-30 17:30:47 +02:00
committed by GitHub
parent c183f99244
commit e46f2ce392
2 changed files with 22 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ package arksdk
import (
"context"
"github.com/ark-network/ark/pkg/client-sdk/client"
"github.com/ark-network/ark/pkg/client-sdk/store"
)
@@ -26,6 +27,7 @@ type ArkClient interface {
) (string, error)
SendAsync(ctx context.Context, withExpiryCoinselect bool, receivers []Receiver) (string, error)
ClaimAsync(ctx context.Context) (string, error)
ListVtxos(ctx context.Context) ([]client.Vtxo, []client.Vtxo, error)
}
type Receiver interface {