Documentation ¶
Index ¶
- Constants
- Variables
- type Asset
- type AssetContainer
- type Client
- func (o *Client) FetchAllAssetsByOwner(owner common.Address, cursor string, limit int) (*AssetContainer, error)
- func (o *Client) FetchAllAssetsByOwnerAndCollection(owner common.Address, collectionSlug string, cursor string, limit int) (*AssetContainer, error)
- func (o *Client) FetchAllAssetsByOwnerAndContractAddress(owner common.Address, contractAddresses []common.Address, cursor string, ...) (*AssetContainer, error)
- func (o *Client) FetchAllCollectionsByOwner(owner common.Address) ([]OwnedCollection, error)
- func (o *Client) FetchAssetsByNFTUniqueID(uniqueIDs []thirdparty.NFTUniqueID, limit int) (*AssetContainer, error)
- type Collection
- type CollectionTrait
- type Contract
- type HTTPClient
- type LastSale
- type OwnedCollection
- type PaymentToken
- type SellOrder
- type Trait
- type TraitValue
Constants ¶
View Source
const AssetLimit = 200
View Source
const ChainIDRequiringAPIKey = 1
View Source
const CollectionLimit = 300
View Source
const GetRequestRetryMaxCount = 15
View Source
const GetRequestWaitTime = 300 * time.Millisecond
View Source
const RequestTimeout = 5 * time.Second
Variables ¶
View Source
var OpenseaClientInstances = make(map[uint64]*Client)
Functions ¶
This section is empty.
Types ¶
type Asset ¶
type Asset struct { ID int `json:"id"` TokenID *bigint.BigInt `json:"token_id"` Name string `json:"name"` Description string `json:"description"` Permalink string `json:"permalink"` ImageThumbnailURL string `json:"image_thumbnail_url"` ImageURL string `json:"image_url"` Contract Contract `json:"asset_contract"` Collection Collection `json:"collection"` Traits []Trait `json:"traits"` LastSale LastSale `json:"last_sale"` SellOrders []SellOrder `json:"sell_orders"` BackgroundColor string `json:"background_color"` TokenURI string `json:"token_metadata"` }
type AssetContainer ¶
type Client ¶
type Client struct { IsConnected bool LastCheckedAt int64 IsConnectedLock sync.RWMutex // contains filtered or unexported fields }
func NewOpenseaClient ¶
new opensea client.
func (*Client) FetchAllAssetsByOwner ¶ added in v0.138.1
func (*Client) FetchAllAssetsByOwnerAndCollection ¶
func (*Client) FetchAllAssetsByOwnerAndContractAddress ¶ added in v0.138.8
func (*Client) FetchAllCollectionsByOwner ¶
func (o *Client) FetchAllCollectionsByOwner(owner common.Address) ([]OwnedCollection, error)
func (*Client) FetchAssetsByNFTUniqueID ¶ added in v0.137.2
func (o *Client) FetchAssetsByNFTUniqueID(uniqueIDs []thirdparty.NFTUniqueID, limit int) (*AssetContainer, error)
type Collection ¶
type Collection struct { Name string `json:"name"` Slug string `json:"slug"` ImageURL string `json:"image_url"` Traits map[string]CollectionTrait `json:"traits"` }
type CollectionTrait ¶
type HTTPClient ¶ added in v0.142.2
type HTTPClient struct {
// contains filtered or unexported fields
}
var OpenseaHTTPClient *HTTPClient = nil
type LastSale ¶
type LastSale struct {
PaymentToken PaymentToken `json:"payment_token"`
}
type OwnedCollection ¶ added in v0.137.2
type OwnedCollection struct { Collection OwnedAssetCount *bigint.BigInt `json:"owned_asset_count"` }
type PaymentToken ¶
type Trait ¶
type Trait struct { TraitType string `json:"trait_type"` Value TraitValue `json:"value"` DisplayType string `json:"display_type"` MaxValue string `json:"max_value"` }
type TraitValue ¶
type TraitValue string
func (*TraitValue) UnmarshalJSON ¶
func (st *TraitValue) UnmarshalJSON(b []byte) error
Click to show internal directories.
Click to hide internal directories.