Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNotFound = errors.New("not found")
Functions ¶
func Connect ¶
Connect dials the given address and returns a net.Conn. The protoAddr argument should be prefixed with the protocol, eg. "tcp://127.0.0.1:8080" or "unix:///tmp/test.sock"
func ProtocolAndAddress ¶
ProtocolAndAddress splits an address into the protocol and address components. For instance, "tcp://127.0.0.1:8080" will be split into "tcp" and "127.0.0.1:8080". If the address has no protocol prefix, the default is "tcp".
Types ¶
type PeggyBroadcastClient ¶
type PeggyBroadcastClient interface { ValFromAddress() sdk.ValAddress AccFromAddress() sdk.AccAddress /// Send a transaction updating the eth address for the sending /// Cosmos address. The sending Cosmos address should be a validator UpdatePeggyOrchestratorAddresses( ctx context.Context, ethFrom ethcmn.Address, orchAddr sdk.AccAddress, ) error // SendValsetConfirm broadcasts in a confirmation for a specific validator set for a specific block height. SendValsetConfirm( ctx context.Context, ethFrom ethcmn.Address, peggyID ethcmn.Hash, valset *types.Valset, ) error // SendBatchConfirm broadcasts in a confirmation for a specific transaction batch set for a specific block height // since transaction batches also include validator sets this has all the arguments SendBatchConfirm( ctx context.Context, ethFrom ethcmn.Address, peggyID ethcmn.Hash, batch *types.OutgoingTxBatch, ) error SendEthereumClaims( ctx context.Context, lastClaimEvent uint64, deposits []*wrappers.PeggySendToInjectiveEvent, withdraws []*wrappers.PeggyTransactionBatchExecutedEvent, valsetUpdates []*wrappers.PeggyValsetUpdatedEvent, ) error // SendToEth broadcasts a Tx that tokens from Cosmos to Ethereum. // These tokens will not be sent immediately. Instead, they will require // some time to be included in a batch. SendToEth( ctx context.Context, destination ethcmn.Address, amount, fee sdk.Coin, ) error // SendRequestBatch broadcasts a requests a batch of withdrawal transactions to be generated on the chain. SendRequestBatch( ctx context.Context, denom string, ) error }
func NewPeggyBroadcastClient ¶
func NewPeggyBroadcastClient( queryClient types.QueryClient, broadcastClient client.CosmosClient, ethSignerFn keystore.SignerFn, ethPersonalSignFn keystore.PersonalSignFn, ) PeggyBroadcastClient
type PeggyQueryClient ¶
type PeggyQueryClient interface { ValsetAt(ctx context.Context, nonce uint64) (*types.Valset, error) CurrentValset(ctx context.Context) (*types.Valset, error) OldestUnsignedValsets(ctx context.Context, valAccountAddress sdk.AccAddress) ([]*types.Valset, error) LatestValsets(ctx context.Context) ([]*types.Valset, error) AllValsetConfirms(ctx context.Context, nonce uint64) ([]*types.MsgValsetConfirm, error) OldestUnsignedTransactionBatch(ctx context.Context, valAccountAddress sdk.AccAddress) (*types.OutgoingTxBatch, error) LatestTransactionBatches(ctx context.Context) ([]*types.OutgoingTxBatch, error) UnbatchedTokensWithFees(ctx context.Context) ([]*types.BatchFees, error) TransactionBatchSignatures(ctx context.Context, nonce uint64, tokenContract ethcmn.Address) ([]*types.MsgConfirmBatch, error) LastClaimEventByAddr(ctx context.Context, validatorAccountAddress sdk.AccAddress) (*types.LastClaimEvent, error) PeggyParams(ctx context.Context) (*types.Params, error) }
func NewPeggyQueryClient ¶
func NewPeggyQueryClient(client types.QueryClient) PeggyQueryClient
Click to show internal directories.
Click to hide internal directories.