Documentation ¶ Index ¶ type TxBuild func (b *TxBuild) Sender() string func (b *TxBuild) Transfer(ctx context.Context, to string, value *big.Int) (bytes.HexBytes, error) type TxBuilder func NewTxBuilder(provider string, privateKey *ed25519.PrivateKey, chainId string, prefix string, ...) (TxBuilder, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type TxBuild ¶ type TxBuild struct { // contains filtered or unexported fields } func (*TxBuild) Sender ¶ func (b *TxBuild) Sender() string func (*TxBuild) Transfer ¶ func (b *TxBuild) Transfer(ctx context.Context, to string, value *big.Int) (bytes.HexBytes, error) type TxBuilder ¶ type TxBuilder interface { Sender() string Transfer(ctx context.Context, to string, value *big.Int) (bytes.HexBytes, error) } func NewTxBuilder ¶ func NewTxBuilder(provider string, privateKey *ed25519.PrivateKey, chainId string, prefix string, asset string) (TxBuilder, error) Source Files ¶ View all Source files transaction.go Click to show internal directories. Click to hide internal directories.