ws

package
v0.0.0-...-aac4122 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 12, 2023 License: Apache-2.0 Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var DefaultHandshakeTimeout = 45 * time.Second
View Source
var ErrTimeout = fmt.Errorf("timeout waiting for confirmation")

Functions

This section is empty.

Types

type AccountResult

type AccountResult struct {
	Context struct {
		Slot uint64
	} `json:"context"`
	Value struct {
		rpc.Account
	} `json:"value"`
}

type AccountSubscription

type AccountSubscription struct {
	// contains filtered or unexported fields
}

func (*AccountSubscription) Recv

func (sw *AccountSubscription) Recv() (*AccountResult, error)

func (*AccountSubscription) Unsubscribe

func (sw *AccountSubscription) Unsubscribe()

type BankStats

type BankStats struct {
	NumTransactionEntries     uint64 `json:"numTransactionEntries"`
	NumSuccessfulTransactions uint64 `json:"numSuccessfulTransactions"`
	NumFailedTransactions     uint64 `json:"numFailedTransactions"`
	MaxTransactionsPerEntry   uint64 `json:"maxTransactionsPerEntry"`
}

type BlockResult

type BlockResult struct {
	Context struct {
		Slot uint64
	} `json:"context"`
	Value struct {
		Slot  uint64              `json:"slot"`
		Err   interface{}         `json:"err,omitempty"`
		Block *rpc.GetBlockResult `json:"block,omitempty"`
	} `json:"value"`
}

type BlockSubscribeFilter

type BlockSubscribeFilter interface {
	// contains filtered or unexported methods
}

func NewBlockSubscribeFilterAll

func NewBlockSubscribeFilterAll() BlockSubscribeFilter

type BlockSubscribeFilterAll

type BlockSubscribeFilterAll string

type BlockSubscribeFilterMentionsAccountOrProgram

type BlockSubscribeFilterMentionsAccountOrProgram struct {
	Pubkey solana.PublicKey `json:"pubkey"`
}

func NewBlockSubscribeFilterMentionsAccountOrProgram

func NewBlockSubscribeFilterMentionsAccountOrProgram(pubkey solana.PublicKey) *BlockSubscribeFilterMentionsAccountOrProgram

type BlockSubscribeOpts

type BlockSubscribeOpts struct {
	Commitment rpc.CommitmentType
	Encoding   solana.EncodingType `json:"encoding,omitempty"`

	// Level of transaction detail to return.
	TransactionDetails rpc.TransactionDetailsType

	// Whether to populate the rewards array. If parameter not provided, the default includes rewards.
	Rewards *bool
}

type BlockSubscription

type BlockSubscription struct {
	// contains filtered or unexported fields
}

func (*BlockSubscription) Recv

func (sw *BlockSubscription) Recv() (*BlockResult, error)

func (*BlockSubscription) Unsubscribe

func (sw *BlockSubscription) Unsubscribe()

type Client

type Client struct {
	// contains filtered or unexported fields
}

func Connect

func Connect(ctx context.Context, rpcEndpoint string) (c *Client, err error)

Connect creates a new websocket client connecting to the provided endpoint.

func ConnectWithOptions

func ConnectWithOptions(ctx context.Context, rpcEndpoint string, opt *Options) (c *Client, err error)

ConnectWithOptions creates a new websocket client connecting to the provided endpoint with a http header if available The http header can be helpful to pass basic authentication params as prescribed ref https://github.com/gorilla/websocket/issues/209

func (*Client) AccountSubscribe

func (cl *Client) AccountSubscribe(
	account solana.PublicKey,
	commitment rpc.CommitmentType,
) (*AccountSubscription, error)

AccountSubscribe subscribes to an account to receive notifications when the lamports or data for a given account public key changes.

func (*Client) AccountSubscribeWithOpts

func (cl *Client) AccountSubscribeWithOpts(
	account solana.PublicKey,
	commitment rpc.CommitmentType,
	encoding solana.EncodingType,
) (*AccountSubscription, error)

AccountSubscribe subscribes to an account to receive notifications when the lamports or data for a given account public key changes.

func (*Client) BlockSubscribe

func (cl *Client) BlockSubscribe(
	filter BlockSubscribeFilter,
	opts *BlockSubscribeOpts,
) (*BlockSubscription, error)

NOTE: Unstable, disabled by default

Subscribe to receive notification anytime a new block is Confirmed or Finalized.

**This subscription is unstable and only available if the validator was started with the `--rpc-pubsub-enable-block-subscription` flag. The format of this subscription may change in the future**

func (*Client) Close

func (c *Client) Close()

func (*Client) LogsSubscribe

func (cl *Client) LogsSubscribe(

	filter LogsSubscribeFilterType,
	commitment rpc.CommitmentType,
) (*LogSubscription, error)

LogsSubscribe subscribes to transaction logging.

func (*Client) LogsSubscribeMentions

func (cl *Client) LogsSubscribeMentions(

	mentions solana.PublicKey,

	commitment rpc.CommitmentType,
) (*LogSubscription, error)

LogsSubscribe subscribes to all transactions that mention the provided Pubkey.

func (*Client) ProgramSubscribe

func (cl *Client) ProgramSubscribe(
	programID solana.PublicKey,
	commitment rpc.CommitmentType,
) (*ProgramSubscription, error)

ProgramSubscribe subscribes to a program to receive notifications when the lamports or data for a given account owned by the program changes.

func (*Client) ProgramSubscribeWithOpts

func (cl *Client) ProgramSubscribeWithOpts(
	programID solana.PublicKey,
	commitment rpc.CommitmentType,
	encoding solana.EncodingType,
	filters []rpc.RPCFilter,
) (*ProgramSubscription, error)

ProgramSubscribe subscribes to a program to receive notifications when the lamports or data for a given account owned by the program changes.

func (*Client) RootSubscribe

func (cl *Client) RootSubscribe() (*RootSubscription, error)

SignatureSubscribe subscribes to receive notification anytime a new root is set by the validator.

func (*Client) SignatureSubscribe

func (cl *Client) SignatureSubscribe(
	signature solana.Signature,
	commitment rpc.CommitmentType,
) (*SignatureSubscription, error)

SignatureSubscribe subscribes to a transaction signature to receive notification when the transaction is confirmed On signatureNotification, the subscription is automatically cancelled

func (*Client) SlotSubscribe

func (cl *Client) SlotSubscribe() (*SlotSubscription, error)

SlotSubscribe subscribes to receive notification anytime a slot is processed by the validator.

func (*Client) SlotsUpdatesSubscribe

func (cl *Client) SlotsUpdatesSubscribe() (*SlotsUpdatesSubscription, error)

SlotsUpdatesSubscribe (UNSTABLE) subscribes to receive a notification from the validator on a variety of updates on every slot.

This subscription is unstable; the format of this subscription may change in the future and it may not always be supported.

func (*Client) VoteSubscribe

func (cl *Client) VoteSubscribe() (*VoteSubscription, error)

VoteSubscribe (UNSTABLE, disabled by default) subscribes to receive notification anytime a new vote is observed in gossip. These votes are pre-consensus therefore there is no guarantee these votes will enter the ledger.

This subscription is unstable and only available if the validator was started with the --rpc-pubsub-enable-vote-subscription flag. The format of this subscription may change in the future.

type LogResult

type LogResult struct {
	Context struct {
		Slot uint64
	} `json:"context"`
	Value struct {
		// The transaction signature.
		Signature solana.Signature `json:"signature"`
		// Error if transaction failed, null if transaction succeeded.
		Err interface{} `json:"err"`
		// Array of log messages the transaction instructions output
		// during execution, null if simulation failed before the transaction
		// was able to execute (for example due to an invalid blockhash
		// or signature verification failure)
		Logs []string `json:"logs"`
	} `json:"value"`
}

type LogSubscription

type LogSubscription struct {
	// contains filtered or unexported fields
}

func (*LogSubscription) Recv

func (sw *LogSubscription) Recv() (*LogResult, error)

func (*LogSubscription) Unsubscribe

func (sw *LogSubscription) Unsubscribe()

type LogsSubscribeFilterType

type LogsSubscribeFilterType string
const (
	// Subscribe to all transactions except for simple vote transactions.
	LogsSubscribeFilterAll LogsSubscribeFilterType = "all"
	// Subscribe to all transactions including simple vote transactions.
	LogsSubscribeFilterAllWithVotes LogsSubscribeFilterType = "allWithVotes"
)

type Options

type Options struct {
	HttpHeader       http.Header
	HandshakeTimeout time.Duration
}

type ProgramResult

type ProgramResult struct {
	Context struct {
		Slot uint64
	} `json:"context"`
	Value rpc.KeyedAccount `json:"value"`
}

type ProgramSubscription

type ProgramSubscription struct {
	// contains filtered or unexported fields
}

func (*ProgramSubscription) Recv

func (sw *ProgramSubscription) Recv() (*ProgramResult, error)

func (*ProgramSubscription) Unsubscribe

func (sw *ProgramSubscription) Unsubscribe()

type RootResult

type RootResult uint64

type RootSubscription

type RootSubscription struct {
	// contains filtered or unexported fields
}

func (*RootSubscription) Recv

func (sw *RootSubscription) Recv() (*RootResult, error)

func (*RootSubscription) Unsubscribe

func (sw *RootSubscription) Unsubscribe()

type SignatureResult

type SignatureResult struct {
	Context struct {
		Slot uint64
	} `json:"context"`
	Value struct {
		Err interface{} `json:"err"`
	} `json:"value"`
}

type SignatureSubscription

type SignatureSubscription struct {
	// contains filtered or unexported fields
}

func (*SignatureSubscription) Err

func (sw *SignatureSubscription) Err() <-chan error

func (*SignatureSubscription) Recv

func (*SignatureSubscription) RecvWithTimeout

func (sw *SignatureSubscription) RecvWithTimeout(timeout time.Duration) (*SignatureResult, error)

func (*SignatureSubscription) Response

func (sw *SignatureSubscription) Response() <-chan *SignatureResult

func (*SignatureSubscription) Unsubscribe

func (sw *SignatureSubscription) Unsubscribe()

type SlotResult

type SlotResult struct {
	Parent uint64 `json:"parent"`
	Root   uint64 `json:"root"`
	Slot   uint64 `json:"slot"`
}

type SlotSubscription

type SlotSubscription struct {
	// contains filtered or unexported fields
}

func (*SlotSubscription) Recv

func (sw *SlotSubscription) Recv() (*SlotResult, error)

func (*SlotSubscription) Unsubscribe

func (sw *SlotSubscription) Unsubscribe()

type SlotsUpdatesResult

type SlotsUpdatesResult struct {
	// The parent slot.
	Parent uint64 `json:"parent"`
	// The newly updated slot.
	Slot uint64 `json:"slot"`
	// The Unix timestamp of the update.
	Timestamp *solana.UnixTimeMilliseconds `json:"timestamp"`
	// The update type.
	Type SlotsUpdatesType `json:"type"`
	// Extra stats provided when a bank is frozen.
	Stats *BankStats `json:"stats"`
}

type SlotsUpdatesSubscription

type SlotsUpdatesSubscription struct {
	// contains filtered or unexported fields
}

func (*SlotsUpdatesSubscription) Recv

func (*SlotsUpdatesSubscription) Unsubscribe

func (sw *SlotsUpdatesSubscription) Unsubscribe()

type SlotsUpdatesType

type SlotsUpdatesType string
const (
	SlotsUpdatesFirstShredReceived     SlotsUpdatesType = "firstShredReceived"
	SlotsUpdatesCompleted              SlotsUpdatesType = "completed"
	SlotsUpdatesCreatedBank            SlotsUpdatesType = "createdBank"
	SlotsUpdatesFrozen                 SlotsUpdatesType = "frozen"
	SlotsUpdatesDead                   SlotsUpdatesType = "dead"
	SlotsUpdatesOptimisticConfirmation SlotsUpdatesType = "optimisticConfirmation"
	SlotsUpdatesRoot                   SlotsUpdatesType = "root"
)

type Subscription

type Subscription struct {
	// contains filtered or unexported fields
}

func (*Subscription) Recv

func (s *Subscription) Recv() (interface{}, error)

func (*Subscription) Unsubscribe

func (s *Subscription) Unsubscribe()

type VoteResult

type VoteResult struct {
	// The vote hash.
	Hash solana.Hash `json:"hash"`
	// The slots covered by the vote.
	Slots []uint64 `json:"slots"`
	// The timestamp of the vote.
	Timestamp *solana.UnixTimeSeconds `json:"timestamp,omitempty"`
}

type VoteSubscription

type VoteSubscription struct {
	// contains filtered or unexported fields
}

func (*VoteSubscription) Recv

func (sw *VoteSubscription) Recv() (*VoteResult, error)

func (*VoteSubscription) Unsubscribe

func (sw *VoteSubscription) Unsubscribe()

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL