mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
* Rename asp > server * Rename pool > round * Consolidate naming for pubkey/prvkey vars and types * Fix * Fix * Fix wasm * Rename congestionTree > vtxoTree * Fix wasm * Rename payment > request * Rename congestionTree > vtxoTree after syncing with master * Fix Send API in SDK * Fix wasm * Fix wasm * Fixes * Fixes after review * Fix * Fix naming * Fix * Fix e2e tests
43 lines
1.5 KiB
Go
43 lines
1.5 KiB
Go
package arksdk
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ark-network/ark/pkg/client-sdk/client"
|
|
"github.com/ark-network/ark/pkg/client-sdk/types"
|
|
)
|
|
|
|
type ArkClient interface {
|
|
GetConfigData(ctx context.Context) (*types.Config, error)
|
|
Init(ctx context.Context, args InitArgs) error
|
|
InitWithWallet(ctx context.Context, args InitWithWalletArgs) error
|
|
IsLocked(ctx context.Context) bool
|
|
Unlock(ctx context.Context, password string) error
|
|
Lock(ctx context.Context, password string) error
|
|
Balance(ctx context.Context, computeExpiryDetails bool) (*Balance, error)
|
|
Receive(ctx context.Context) (offchainAddr, boardingAddr string, err error)
|
|
SendOnChain(ctx context.Context, receivers []Receiver) (string, error)
|
|
SendOffChain(
|
|
ctx context.Context, withExpiryCoinselect bool, receivers []Receiver,
|
|
) (string, error)
|
|
UnilateralRedeem(ctx context.Context) error
|
|
CollaborativeRedeem(
|
|
ctx context.Context, addr string, amount uint64, withExpiryCoinselect bool,
|
|
) (string, error)
|
|
Settle(ctx context.Context) (string, error)
|
|
ListVtxos(ctx context.Context) (spendable, spent []client.Vtxo, err error)
|
|
Dump(ctx context.Context) (seed string, err error)
|
|
GetTransactionHistory(ctx context.Context) ([]types.Transaction, error)
|
|
GetTransactionEventChannel() chan types.TransactionEvent
|
|
RedeemNotes(ctx context.Context, notes []string) (string, error)
|
|
SetNostrNotificationRecipient(ctx context.Context, nostrRecipient string) error
|
|
Stop() error
|
|
}
|
|
|
|
type Receiver interface {
|
|
To() string
|
|
Amount() uint64
|
|
|
|
IsOnchain() bool
|
|
}
|