Versions in this module Expand all Collapse all v1 v1.0.1 Feb 26, 2021 v1.0.0 Feb 4, 2021 Changes in this version + type ClientCaller interface + Commit func(ctx context.Context, data []byte) (string, error) + GetReward func(ctx context.Context, data []byte) (string, error) + GetTransaction func(ctx context.Context, txID string) (*tx.Transaction, error) + LastTransaction func(ctx context.Context, address string) (string, error) + type Transactor struct + Client ClientCaller + func NewTransactor(fullURL string) (*Transactor, error) + func (tr *Transactor) CreateTransaction(ctx context.Context, w arweave_go.WalletSigner, amount string, data []byte, ...) (*tx.Transaction, error) + func (tr *Transactor) SendTransaction(ctx context.Context, tx *tx.Transaction) (string, error) + func (tr *Transactor) SendTransactionV2(ctx context.Context, tx *tx.TransactionV2) (string, error) + func (tr *Transactor) WaitMined(ctx context.Context, tx *tx.Transaction) (*tx.Transaction, error)