Versions in this module Expand all Collapse all v0 v0.1.0 Jan 8, 2025 Changes in this version + type Client struct + func New(ctx context.Context, client *http.Client) *Client + func (api *Client) GetBundleInfo(bundleID string) (*GetBundleInfoResponse, error) + func (api *Client) GetLargestBundlesBySigner() error + func (api *Client) RetrieveBundleIDfromTransactionSignature(signature string) (string, error) + func (api *Client) RetrieveRecentBundles(limit int, timeFrame Timeframe) (*RecentBundlesResponse, error) + type GetBundleInfoResponse struct + BlockIndex int + BundleId string + LandedCu int + LandedTipLamports int64 + Slot int + Timestamp time.Time + Tippers []string + TxSignatures []string + Validator string + type RecentBundlesResponse []struct + type Sort string + var Time Sort = "Time" + var Tip Sort = "Tip" + type Timeframe string + var Day Timeframe = "Day" + var Month Timeframe = "Month" + var Week Timeframe = "Week" + var Year Timeframe = "Year"