Documentation ¶
Index ¶
- Constants
- Variables
- type Account
- type AssetCollection
- type AssetContract
- type BaseItemMetadataType
- type BaseItemType
- type BaseStreamMessage
- type Chain
- type CollectionOfferEvent
- type CollectionOfferPayload
- type CollectionResponse
- type CollectionSlug
- type CollectionStats
- type CollectionStatsResponse
- type EventType
- type FullCollectionStats
- type ItemCancelledEvent
- type ItemCancelledEventPayload
- type ItemEvent
- type ItemEventPayload
- type ItemListedEvent
- func (e *ItemListedEvent) ContractAddress() common.Address
- func (e *ItemListedEvent) GetContractAddress() common.Address
- func (e *ItemListedEvent) GetEventTimestamp() time.Time
- func (e *ItemListedEvent) GetEventType() string
- func (e *ItemListedEvent) GetMakerAddress() common.Address
- func (e *ItemListedEvent) GetNftID() []string
- func (e *ItemListedEvent) GetPermalink() string
- func (e *ItemListedEvent) GetPrice() *price.Price
- func (e *ItemListedEvent) GetQuantity() int
- func (e *ItemListedEvent) GetTokenID() *big.Int
- func (e *ItemListedEvent) GetTokenName() string
- func (e *ItemListedEvent) NftID() []string
- type ItemListedEventPayload
- type ItemMetadataUpdateEvent
- type ItemMetadataUpdatePayload
- type ItemReceivedBidEvent
- type ItemReceivedBidEventPayload
- type ItemReceivedOfferEvent
- type ItemReceivedOfferEventPayload
- type ItemSoldEvent
- type ItemSoldEventPayload
- type ItemTransferredEvent
- type ItemTransferredEventPayload
- type OSCollection
- type OpenSeaAsset
- type OpenSeaAssetsResponse
- type OpenSeaListingsResponse
- type PayloadItemAndColl
- type PaymentToken
- type SeaportAccount
- type SeaportAsset
- type SeaportAssetBundle
- type SeaportAssetContract
- type SeaportCollection
- type SeaportConsiderationItem
- type SeaportDisplayData
- type SeaportFees
- type SeaportMakerFees
- type SeaportOffer
- type SeaportOrder
- type SeaportOwner
- type SeaportParameters
- type SeaportProtocolData
- type SeaportUser
- type Trait
- type Transaction
Constants ¶
View Source
const ( ItemListed EventType = "item_listed" ItemSold EventType = "item_sold" ItemReceivedBid EventType = "item_received_bid" // ItemReceivedOffer EventType = "item_received_offer". ItemMetadataUpdated EventType = "item_metadata_updated" CollectionOffer EventType = "collection_offer" StreamAPIEndpoint string = "wss://stream.openseabeta.com/socket" )
Variables ¶
View Source
var TxType = map[EventType]degendb.EventType{ ItemListed: degendb.Listing, ItemSold: degendb.Sale, CollectionOffer: degendb.CollectionOffer, ItemReceivedBid: degendb.Bid, }
Functions ¶
This section is empty.
Types ¶
type AssetCollection ¶
type AssetCollection struct { Editors []string `json:"editors"` PaymentTokens []PaymentToken `json:"payment_tokens"` PrimaryAssetContracts []AssetContract `json:"primary_asset_contracts"` Traits struct{} `json:"traits"` Stats CollectionStats `json:"stats"` BannerImageURL string `json:"banner_image_url"` ChatURL any `json:"chat_url"` CreatedDate string `json:"created_date"` DefaultToFiat bool `json:"default_to_fiat"` Description string `json:"description"` DevBuyerFeeBasisPoints string `json:"dev_buyer_fee_basis_points"` DevSellerFeeBasisPoints string `json:"dev_seller_fee_basis_points"` DiscordURL string `json:"discord_url"` DisplayData struct { CardDisplayStyle string `json:"card_display_style"` } `json:"display_data"` ExternalURL string `json:"external_url"` Featured bool `json:"featured"` FeaturedImageURL any `json:"featured_image_url"` Hidden bool `json:"hidden"` SafelistRequestStatus string `json:"safelist_request_status"` ImageURL string `json:"image_url"` IsSubjectToWhitelist bool `json:"is_subject_to_whitelist"` LargeImageURL any `json:"large_image_url"` MediumUsername any `json:"medium_username"` Name string `json:"name"` OnlyProxiedTransfers bool `json:"only_proxied_transfers"` OpenseaBuyerFeeBasisPoints interface{} `json:"opensea_buyer_fee_basis_points"` OpenseaSellerFeeBasisPoints interface{} `json:"opensea_seller_fee_basis_points"` PayoutAddress any `json:"payout_address"` RequireEmail bool `json:"require_email"` ShortDescription any `json:"short_description"` Slug string `json:"slug"` TelegramURL any `json:"telegram_url"` TwitterUsername any `json:"twitter_username"` InstagramUsername any `json:"instagram_username"` WikiURL any `json:"wiki_url"` OwnedAssetCount int `json:"owned_asset_count"` }
type AssetContract ¶
type AssetContract struct { Collection OSCollection `json:"collection"` Address string `json:"address"` AssetContractType string `json:"asset_contract_type"` CreatedDate string `json:"created_date"` Name string `json:"name"` NftVersion string `json:"nft_version"` OpenseaVersion any `json:"opensea_version"` Owner int `json:"owner"` SchemaName string `json:"schema_name"` Symbol string `json:"symbol"` TotalSupply any `json:"total_supply"` Description string `json:"description"` ExternalLink string `json:"external_link"` ImageURL string `json:"image_url"` DefaultToFiat bool `json:"default_to_fiat"` DevBuyerFeeBasisPoints int `json:"dev_buyer_fee_basis_points"` DevSellerFeeBasisPoints int `json:"dev_seller_fee_basis_points"` OnlyProxiedTransfers bool `json:"only_proxied_transfers"` OpenseaBuyerFeeBasisPoints interface{} `json:"opensea_buyer_fee_basis_points"` OpenseaSellerFeeBasisPoints interface{} `json:"opensea_seller_fee_basis_points"` BuyerFeeBasisPoints int `json:"buyer_fee_basis_points"` SellerFeeBasisPoints int `json:"seller_fee_basis_points"` PayoutAddress string `json:"payout_address"` }
type BaseItemMetadataType ¶
type BaseItemType ¶
type BaseItemType struct { NftID string `json:"nft_id" mapstructure:"nft_id"` Permalink string `json:"permalink" mapstructure:"permalink"` Metadata BaseItemMetadataType `json:"metadata" mapstructure:"metadata"` Chain Chain `json:"chain" mapstructure:"chain"` }
type BaseStreamMessage ¶
type BaseStreamMessage struct { StreamEvent EventType `json:"event_type" mapstructure:"event_type"` SentAt string `json:"sent_at" mapstructure:"sent_at"` }
func (*BaseStreamMessage) StreamEventType ¶ added in v0.7.1
func (m *BaseStreamMessage) StreamEventType() EventType
type CollectionOfferEvent ¶ added in v0.7.1
type CollectionOfferEvent struct { BaseStreamMessage `json:"base_stream_message" mapstructure:",squash"` Payload CollectionOfferPayload `json:"payload" mapstructure:"payload"` }
func (CollectionOfferEvent) ContractAddress ¶ added in v0.7.1
func (co CollectionOfferEvent) ContractAddress() common.Address
func (CollectionOfferEvent) NftID ¶ added in v0.7.1
func (co CollectionOfferEvent) NftID() []string
type CollectionOfferPayload ¶ added in v0.7.1
type CollectionOfferPayload struct { AssetContractCriteria struct { Address string `json:"address"` } `json:"asset_contract_criteria" mapstructure:"asset_contract_criteria"` BasePrice string `json:"base_price" mapstructure:"base_price"` Collection struct { Slug string `json:"slug"` } `json:"collection"` CollectionCriteria struct { Slug string `json:"slug"` } `json:"collection_criteria"` CreatedDate string `json:"created_date"` EventTimestamp time.Time `json:"event_timestamp"` ExpirationDate string `json:"expiration_date"` Maker Account `json:"maker"` OrderHash string `json:"order_hash"` PaymentToken PaymentToken `json:"payment_token" mapstructure:"payment_token"` ProtocolData SeaportProtocolData `json:"protocol_data" mapstructure:"protocol_data"` Quantity int `json:"quantity"` Taker any `json:"taker"` }
type CollectionResponse ¶ added in v0.8.0
type CollectionResponse struct { Collection struct { Editors []string `json:"editors"` PaymentTokens []PaymentToken `json:"payment_tokens"` IsCollectionOffersEnabled bool `json:"is_collection_offers_enabled"` IsTraitOffersEnabled bool `json:"is_trait_offers_enabled"` PrimaryAssetContracts []struct { Address string `json:"address"` AssetContractType string `json:"asset_contract_type"` ChainIdentifier string `json:"chain_identifier"` CreatedDate string `json:"created_date"` Name string `json:"name"` NftVersion string `json:"nft_version"` OpenseaVersion interface{} `json:"opensea_version"` Owner int `json:"owner"` SchemaName string `json:"schema_name"` Symbol string `json:"symbol"` TotalSupply string `json:"total_supply"` Description string `json:"description"` ExternalLink string `json:"external_link"` ImageURL string `json:"image_url"` DefaultToFiat bool `json:"default_to_fiat"` DevBuyerFeeBasisPoints int `json:"dev_buyer_fee_basis_points"` DevSellerFeeBasisPoints int `json:"dev_seller_fee_basis_points"` OnlyProxiedTransfers bool `json:"only_proxied_transfers"` OpenseaBuyerFeeBasisPoints int `json:"opensea_buyer_fee_basis_points"` OpenseaSellerFeeBasisPoints int `json:"opensea_seller_fee_basis_points"` BuyerFeeBasisPoints int `json:"buyer_fee_basis_points"` SellerFeeBasisPoints int `json:"seller_fee_basis_points"` PayoutAddress string `json:"payout_address"` } `json:"primary_asset_contracts"` Traits interface{} `json:"traits,omitempty"` Stats FullCollectionStats `json:"stats"` BannerImageURL string `json:"banner_image_url"` ChatURL interface{} `json:"chat_url"` CreatedDate time.Time `json:"created_date"` DefaultToFiat bool `json:"default_to_fiat"` Description string `json:"description"` DevBuyerFeeBasisPoints string `json:"dev_buyer_fee_basis_points"` DevSellerFeeBasisPoints string `json:"dev_seller_fee_basis_points"` DiscordURL string `json:"discord_url"` DisplayData struct { CardDisplayStyle string `json:"card_display_style"` } `json:"display_data"` ExternalURL string `json:"external_url"` Featured bool `json:"featured"` FeaturedImageURL string `json:"featured_image_url"` Hidden bool `json:"hidden"` SafelistRequestStatus string `json:"safelist_request_status"` ImageURL string `json:"image_url"` IsSubjectToWhitelist bool `json:"is_subject_to_whitelist"` LargeImageURL string `json:"large_image_url"` MediumUsername interface{} `json:"medium_username"` Name string `json:"name"` OnlyProxiedTransfers bool `json:"only_proxied_transfers"` OpenseaBuyerFeeBasisPoints string `json:"opensea_buyer_fee_basis_points"` OpenseaSellerFeeBasisPoints int `json:"opensea_seller_fee_basis_points"` PayoutAddress string `json:"payout_address"` RequireEmail bool `json:"require_email"` ShortDescription interface{} `json:"short_description"` Slug string `json:"slug"` TelegramURL interface{} `json:"telegram_url"` TwitterUsername string `json:"twitter_username"` InstagramUsername interface{} `json:"instagram_username"` WikiURL interface{} `json:"wiki_url"` IsNsfw bool `json:"is_nsfw"` Fees struct { SellerFees interface{} `json:"seller_fees"` OpenseaFees interface{} `json:"opensea_fees"` } `json:"fees"` IsRarityEnabled bool `json:"is_rarity_enabled"` IsCreatorFeesEnforced bool `json:"is_creator_fees_enforced"` } `json:"collection"` }
type CollectionSlug ¶
type CollectionStats ¶
type CollectionStats struct { OneDayVolume float64 `json:"one_day_volume"` OneDayChange float64 `json:"one_day_change"` OneDaySales float64 `json:"one_day_sales"` OneDayAveragePrice float64 `json:"one_day_average_price"` SevenDayVolume float64 `json:"seven_day_volume"` SevenDayChange float64 `json:"seven_day_change"` SevenDaySales float64 `json:"seven_day_sales"` SevenDayAveragePrice float64 `json:"seven_day_average_price"` ThirtyDayVolume float64 `json:"thirty_day_volume"` ThirtyDayChange float64 `json:"thirty_day_change"` ThirtyDaySales float64 `json:"thirty_day_sales"` ThirtyDayAveragePrice float64 `json:"thirty_day_average_price"` TotalVolume float64 `json:"total_volume"` TotalSales float64 `json:"total_sales"` TotalSupply float64 `json:"total_supply"` Count float64 `json:"count"` NumOwners float64 `json:"num_owners"` AveragePrice float64 `json:"average_price"` NumReports float64 `json:"num_reports"` MarketCap float64 `json:"market_cap"` FloorPrice float64 `json:"floor_price"` }
type CollectionStatsResponse ¶ added in v0.7.1
type CollectionStatsResponse struct {
Stats *FullCollectionStats `json:"stats"`
}
type FullCollectionStats ¶ added in v0.8.0
type FullCollectionStats struct { OneMinuteVolume float64 `json:"one_minute_volume"` OneMinuteChange float64 `json:"one_minute_change"` OneMinuteSales float64 `json:"one_minute_sales"` OneMinuteSalesChange float64 `json:"one_minute_sales_change"` OneMinuteAveragePrice float64 `json:"one_minute_average_price"` OneMinuteDifference float64 `json:"one_minute_difference"` FiveMinuteVolume float64 `json:"five_minute_volume"` FiveMinuteChange float64 `json:"five_minute_change"` FiveMinuteSales float64 `json:"five_minute_sales"` FiveMinuteSalesChange float64 `json:"five_minute_sales_change"` FiveMinuteAveragePrice float64 `json:"five_minute_average_price"` FiveMinuteDifference float64 `json:"five_minute_difference"` FifteenMinuteVolume float64 `json:"fifteen_minute_volume"` FifteenMinuteChange float64 `json:"fifteen_minute_change"` FifteenMinuteSales float64 `json:"fifteen_minute_sales"` FifteenMinuteSalesChange float64 `json:"fifteen_minute_sales_change"` FifteenMinuteAveragePrice float64 `json:"fifteen_minute_average_price"` FifteenMinuteDifference float64 `json:"fifteen_minute_difference"` ThirtyMinuteVolume float64 `json:"thirty_minute_volume"` ThirtyMinuteChange float64 `json:"thirty_minute_change"` ThirtyMinuteSales float64 `json:"thirty_minute_sales"` ThirtyMinuteSalesChange float64 `json:"thirty_minute_sales_change"` ThirtyMinuteAveragePrice float64 `json:"thirty_minute_average_price"` ThirtyMinuteDifference float64 `json:"thirty_minute_difference"` OneHourVolume float64 `json:"one_hour_volume"` OneHourChange float64 `json:"one_hour_change"` OneHourSales float64 `json:"one_hour_sales"` OneHourSalesChange float64 `json:"one_hour_sales_change"` OneHourAveragePrice float64 `json:"one_hour_average_price"` OneHourDifference float64 `json:"one_hour_difference"` SixHourVolume float64 `json:"six_hour_volume"` SixHourChange float64 `json:"six_hour_change"` SixHourSales float64 `json:"six_hour_sales"` SixHourSalesChange float64 `json:"six_hour_sales_change"` SixHourAveragePrice float64 `json:"six_hour_average_price"` SixHourDifference float64 `json:"six_hour_difference"` OneDayVolume float64 `json:"one_day_volume"` OneDayChange float64 `json:"one_day_change"` OneDaySales float64 `json:"one_day_sales"` OneDaySalesChange float64 `json:"one_day_sales_change"` OneDayAveragePrice float64 `json:"one_day_average_price"` OneDayDifference float64 `json:"one_day_difference"` SevenDayVolume float64 `json:"seven_day_volume"` SevenDayChange float64 `json:"seven_day_change"` SevenDaySales float64 `json:"seven_day_sales"` SevenDayAveragePrice float64 `json:"seven_day_average_price"` SevenDayDifference float64 `json:"seven_day_difference"` ThirtyDayVolume float64 `json:"thirty_day_volume"` ThirtyDayChange float64 `json:"thirty_day_change"` ThirtyDaySales float64 `json:"thirty_day_sales"` ThirtyDayAveragePrice float64 `json:"thirty_day_average_price"` ThirtyDayDifference float64 `json:"thirty_day_difference"` TotalVolume float64 `json:"total_volume"` TotalSales float64 `json:"total_sales"` TotalSupply float64 `json:"total_supply"` Count float64 `json:"count"` NumOwners float64 `json:"num_owners"` AveragePrice float64 `json:"average_price"` NumReports float64 `json:"num_reports"` MarketCap float64 `json:"market_cap"` FloorPrice float64 `json:"floor_price"` }
type ItemCancelledEvent ¶
type ItemCancelledEvent struct { BaseStreamMessage `mapstructure:",squash"` Payload ItemCancelledEventPayload `mapstructure:"payload"` }
type ItemCancelledEventPayload ¶
type ItemCancelledEventPayload struct { Item BaseItemType `json:"item" mapstructure:"item"` Collection CollectionSlug `json:"collection" mapstructure:"collection"` Quantity int `mapstructure:"quantity"` ListingType string `mapstructure:"listing_type"` Transaction Transaction `mapstructure:"transaction"` PaymentToken PaymentToken `mapstructure:"payment_token"` EventTimestamp string `mapstructure:"event_timestamp"` }
type ItemEventPayload ¶ added in v0.7.1
type ItemEventPayload struct { Item BaseItemType `json:"item" mapstructure:"item"` Collection CollectionSlug `json:"collection" mapstructure:"collection"` }
type ItemListedEvent ¶
type ItemListedEvent struct { BaseStreamMessage `json:"base_stream_message" mapstructure:",squash"` // Payload ItemEventPayload `json:"payload" mapstructure:"payload"` Payload ItemListedEventPayload `json:"payload" mapstructure:"payload"` }
func (*ItemListedEvent) ContractAddress ¶ added in v0.7.1
func (e *ItemListedEvent) ContractAddress() common.Address
func (*ItemListedEvent) GetContractAddress ¶ added in v0.7.3
func (e *ItemListedEvent) GetContractAddress() common.Address
func (*ItemListedEvent) GetEventTimestamp ¶ added in v0.7.3
func (e *ItemListedEvent) GetEventTimestamp() time.Time
func (*ItemListedEvent) GetEventType ¶ added in v0.7.3
func (e *ItemListedEvent) GetEventType() string
func (*ItemListedEvent) GetMakerAddress ¶ added in v0.7.3
func (e *ItemListedEvent) GetMakerAddress() common.Address
func (*ItemListedEvent) GetNftID ¶ added in v0.7.1
func (e *ItemListedEvent) GetNftID() []string
func (*ItemListedEvent) GetPermalink ¶ added in v0.7.3
func (e *ItemListedEvent) GetPermalink() string
func (*ItemListedEvent) GetPrice ¶ added in v0.7.3
func (e *ItemListedEvent) GetPrice() *price.Price
func (*ItemListedEvent) GetQuantity ¶ added in v0.7.3
func (e *ItemListedEvent) GetQuantity() int
func (*ItemListedEvent) GetTokenID ¶ added in v0.7.3
func (e *ItemListedEvent) GetTokenID() *big.Int
func (*ItemListedEvent) GetTokenName ¶ added in v0.7.3
func (e *ItemListedEvent) GetTokenName() string
func (*ItemListedEvent) NftID ¶ added in v0.7.3
func (e *ItemListedEvent) NftID() []string
type ItemListedEventPayload ¶
type ItemListedEventPayload struct { PayloadItemAndColl `json:"payload_item_and_coll" mapstructure:",squash"` Quantity int `json:"quantity" mapstructure:"quantity"` ListingType string `json:"listing_type" mapstructure:"listing_type"` ListingDate string `json:"listing_date" mapstructure:"listing_date"` ExpirationDate string `json:"expiration_date" mapstructure:"expiration_date"` Maker Account `json:"maker" mapstructure:"maker"` Taker Account `json:"taker" mapstructure:"taker"` BasePrice *big.Int `json:"base_price" mapstructure:"base_price"` // BasePrice string `json:"base_price" mapstructure:"base_price"` PaymentToken PaymentToken `json:"payment_token" mapstructure:"payment_token"` IsPrivate bool `json:"is_private" mapstructure:"is_private"` EventTimestamp string `json:"event_timestamp" mapstructure:"event_timestamp"` }
type ItemMetadataUpdateEvent ¶
type ItemMetadataUpdateEvent struct { BaseStreamMessage `mapstructure:",squash"` Payload ItemMetadataUpdatePayload `mapstructure:"payload"` }
type ItemMetadataUpdatePayload ¶
type ItemMetadataUpdatePayload struct { Item BaseItemType `json:"item" mapstructure:"item"` Collection CollectionSlug `json:"collection" mapstructure:"collection"` BaseItemMetadataType `mapstructure:",squash"` Description string `mapstructure:"description"` BackgroundColor string `mapstructure:"background_color"` Traits []Trait `mapstructure:"traits"` }
type ItemReceivedBidEvent ¶
type ItemReceivedBidEvent struct { BaseStreamMessage `mapstructure:",squash"` Payload ItemReceivedBidEventPayload `mapstructure:"payload"` }
type ItemReceivedBidEventPayload ¶
type ItemReceivedBidEventPayload struct { Item BaseItemType `json:"item" mapstructure:"item"` Collection CollectionSlug `json:"collection" mapstructure:"collection"` Quantity int `mapstructure:"quantity"` CreatedDate string `mapstructure:"created_date"` ExpirationDate string `mapstructure:"expiration_date"` Maker Account `mapstructure:"maker"` Taker Account `mapstructure:"taker"` BasePrice string `mapstructure:"base_price"` PaymentToken PaymentToken `mapstructure:"payment_token"` EventTimestamp string `mapstructure:"event_timestamp"` }
type ItemReceivedOfferEvent ¶
type ItemReceivedOfferEvent struct { BaseStreamMessage `json:"base_stream_message" mapstructure:",squash"` Payload ItemReceivedOfferEventPayload `json:"payload" mapstructure:"payload"` }
type ItemReceivedOfferEventPayload ¶
type ItemReceivedOfferEventPayload struct { Item BaseItemType `json:"item" mapstructure:"item"` Collection CollectionSlug `json:"collection" mapstructure:"collection"` Quantity int `json:"quantity" mapstructure:"quantity"` CreatedDate string `json:"created_date" mapstructure:"created_date"` ExpirationDate string `json:"expiration_date" mapstructure:"expiration_date"` Maker Account `json:"maker" mapstructure:"maker"` Taker Account `json:"taker" mapstructure:"taker"` BasePrice string `json:"base_price" mapstructure:"base_price"` PaymentToken PaymentToken `json:"payment_token" mapstructure:"payment_token"` EventTimestamp string `json:"event_timestamp" mapstructure:"event_timestamp"` }
type ItemSoldEvent ¶
type ItemSoldEvent struct { BaseStreamMessage `mapstructure:",squash"` Payload ItemSoldEventPayload `mapstructure:"payload"` }
type ItemSoldEventPayload ¶
type ItemSoldEventPayload struct { Item BaseItemType `json:"item" mapstructure:"item"` Collection CollectionSlug `json:"collection" mapstructure:"collection"` ListingType string `mapstructure:"listing_type"` ClosingDate string `mapstructure:"closing_date"` Transaction Transaction `mapstructure:"transaction"` Maker Account `mapstructure:"maker"` Taker Account `mapstructure:"taker"` SalePrice string `mapstructure:"sale_price"` PaymentToken PaymentToken `mapstructure:"payment_token"` IsPrivate bool `mapstructure:"is_private"` EventTimestamp string `mapstructure:"event_timestamp"` }
type ItemTransferredEvent ¶
type ItemTransferredEvent struct { BaseStreamMessage `mapstructure:",squash"` Payload ItemTransferredEventPayload `mapstructure:"payload"` }
type ItemTransferredEventPayload ¶
type ItemTransferredEventPayload struct { Item BaseItemType `json:"item" mapstructure:"item"` Collection CollectionSlug `json:"collection" mapstructure:"collection"` FromAccount Account `mapstructure:"from_account"` Quantity int `mapstructure:"quantity"` ToAccount Account `mapstructure:"to_account"` Transaction Transaction `mapstructure:"transaction"` EventTimestamp string `mapstructure:"event_timestamp"` }
type OSCollection ¶
type OSCollection struct { BannerImageURL string `json:"banner_image_url"` ChatURL any `json:"chat_url"` CreatedDate string `json:"created_date"` DefaultToFiat bool `json:"default_to_fiat"` Description string `json:"description"` DevBuyerFeeBasisPoints string `json:"dev_buyer_fee_basis_points"` DevSellerFeeBasisPoints string `json:"dev_seller_fee_basis_points"` DiscordURL string `json:"discord_url"` DisplayData struct { CardDisplayStyle string `json:"card_display_style"` } `json:"display_data"` ExternalURL string `json:"external_url"` Featured bool `json:"featured"` FeaturedImageURL any `json:"featured_image_url"` Hidden bool `json:"hidden"` SafelistRequestStatus string `json:"safelist_request_status"` ImageURL string `json:"image_url"` IsSubjectToWhitelist bool `json:"is_subject_to_whitelist"` LargeImageURL any `json:"large_image_url"` MediumUsername any `json:"medium_username"` Name string `json:"name"` OnlyProxiedTransfers bool `json:"only_proxied_transfers"` OpenseaBuyerFeeBasisPoints interface{} `json:"opensea_buyer_fee_basis_points"` OpenseaSellerFeeBasisPoints interface{} `json:"opensea_seller_fee_basis_points"` PayoutAddress string `json:"payout_address"` RequireEmail bool `json:"require_email"` ShortDescription any `json:"short_description"` Slug string `json:"slug"` TelegramURL any `json:"telegram_url"` TwitterUsername any `json:"twitter_username"` InstagramUsername any `json:"instagram_username"` WikiURL any `json:"wiki_url"` }
type OpenSeaAsset ¶ added in v0.7.1
type OpenSeaAssetsResponse ¶ added in v0.7.1
type OpenSeaAssetsResponse struct { Assets []SeaportAsset `json:"assets"` Next string `json:"next"` Previous string `json:"previous"` }
type OpenSeaListingsResponse ¶
type OpenSeaListingsResponse struct { Next interface{} `json:"next"` Previous interface{} `json:"previous"` Orders []SeaportOrder `json:"orders"` }
type PayloadItemAndColl ¶
type PayloadItemAndColl struct { Item BaseItemType `json:"item" mapstructure:"item"` Collection CollectionSlug `json:"collection" mapstructure:"collection"` }
type PaymentToken ¶
type PaymentToken struct { ID int `json:"id" mapstructure:"id"` Symbol string `json:"symbol" mapstructure:"symbol"` Address string `json:"address" mapstructure:"address"` ImageURL string `json:"image_url" mapstructure:"image_url"` Name string `json:"name" mapstructure:"name"` Decimals int `json:"decimals" mapstructure:"decimals"` EthPrice string `json:"eth_price" mapstructure:"eth_price"` UsdPrice string `json:"usd_price" mapstructure:"usd_price"` }
type SeaportAccount ¶
type SeaportAsset ¶
type SeaportAsset struct { ID int `json:"id"` NumSales int `json:"num_sales"` BackgroundColor interface{} `json:"background_color"` ImageURL string `json:"image_url"` ImagePreviewURL string `json:"image_preview_url"` ImageThumbnailURL string `json:"image_thumbnail_url"` ImageOriginalURL string `json:"image_original_url"` AnimationURL interface{} `json:"animation_url"` AnimationOriginalURL interface{} `json:"animation_original_url"` Name string `json:"name"` Description string `json:"description"` ExternalLink interface{} `json:"external_link"` AssetContract SeaportAssetContract `json:"asset_contract"` Permalink string `json:"permalink"` Collection SeaportCollection `json:"collection"` Decimals interface{} `json:"decimals"` TokenMetadata string `json:"token_metadata"` IsNsfw bool `json:"is_nsfw"` Owner SeaportOwner `json:"owner"` TokenID string `json:"token_id"` }
type SeaportAssetBundle ¶
type SeaportAssetBundle struct { Assets []SeaportAsset `json:"assets"` Maker interface{} `json:"maker"` Slug interface{} `json:"slug"` Name string `json:"name"` Description interface{} `json:"description"` ExternalLink interface{} `json:"external_link"` AssetContract SeaportAssetContract `json:"asset_contract"` Permalink string `json:"permalink"` SeaportSellOrders interface{} `json:"seaport_sell_orders"` }
type SeaportAssetContract ¶
type SeaportAssetContract struct { Address string `json:"address"` AssetContractType string `json:"asset_contract_type"` CreatedDate string `json:"created_date"` Name string `json:"name"` NftVersion interface{} `json:"nft_version"` OpenseaVersion interface{} `json:"opensea_version"` Owner interface{} `json:"owner"` SchemaName string `json:"schema_name"` Symbol string `json:"symbol"` TotalSupply interface{} `json:"total_supply"` Description string `json:"description"` ExternalLink interface{} `json:"external_link"` ImageURL interface{} `json:"image_url"` DefaultToFiat bool `json:"default_to_fiat"` DevBuyerFeeBasisPoints int `json:"dev_buyer_fee_basis_points"` DevSellerFeeBasisPoints int `json:"dev_seller_fee_basis_points"` OnlyProxiedTransfers bool `json:"only_proxied_transfers"` OpenseaBuyerFeeBasisPoints interface{} `json:"opensea_buyer_fee_basis_points"` OpenseaSellerFeeBasisPoints interface{} `json:"opensea_seller_fee_basis_points"` BuyerFeeBasisPoints int `json:"buyer_fee_basis_points"` SellerFeeBasisPoints int `json:"seller_fee_basis_points"` PayoutAddress interface{} `json:"payout_address"` }
type SeaportCollection ¶
type SeaportCollection struct { BannerImageURL string `json:"banner_image_url"` ChatURL interface{} `json:"chat_url"` CreatedDate time.Time `json:"created_date"` DefaultToFiat bool `json:"default_to_fiat"` Description string `json:"description"` DevBuyerFeeBasisPoints string `json:"dev_buyer_fee_basis_points"` DevSellerFeeBasisPoints string `json:"dev_seller_fee_basis_points"` DiscordURL string `json:"discord_url"` DisplayData SeaportDisplayData `json:"display_data"` ExternalURL string `json:"external_url"` Featured bool `json:"featured"` FeaturedImageURL string `json:"featured_image_url"` Hidden bool `json:"hidden"` SafelistRequestStatus string `json:"safelist_request_status"` ImageURL string `json:"image_url"` IsSubjectToWhitelist bool `json:"is_subject_to_whitelist"` LargeImageURL string `json:"large_image_url"` MediumUsername interface{} `json:"medium_username"` Name string `json:"name"` OnlyProxiedTransfers bool `json:"only_proxied_transfers"` OpenseaBuyerFeeBasisPoints interface{} `json:"opensea_buyer_fee_basis_points"` OpenseaSellerFeeBasisPoints interface{} `json:"opensea_seller_fee_basis_points"` PayoutAddress string `json:"payout_address"` RequireEmail bool `json:"require_email"` ShortDescription interface{} `json:"short_description"` Slug string `json:"slug"` TelegramURL interface{} `json:"telegram_url"` TwitterUsername interface{} `json:"twitter_username"` InstagramUsername interface{} `json:"instagram_username"` WikiURL interface{} `json:"wiki_url"` IsNsfw bool `json:"is_nsfw"` Fees SeaportFees `json:"fees"` IsRarityEnabled bool `json:"is_rarity_enabled"` }
type SeaportDisplayData ¶
type SeaportDisplayData struct {
CardDisplayStyle string `json:"card_display_style"`
}
type SeaportFees ¶
type SeaportMakerFees ¶
type SeaportMakerFees struct { Account SeaportAccount `json:"account"` BasisPoints string `json:"basis_points"` }
type SeaportOffer ¶
type SeaportOrder ¶
type SeaportOrder struct { CreatedDate string `json:"created_date"` ClosingDate string `json:"closing_date"` ListingTime int `json:"listing_time"` ExpirationTime int `json:"expiration_time"` OrderHash string `json:"order_hash"` ProtocolData SeaportProtocolData `json:"protocol_data"` ProtocolAddress string `json:"protocol_address"` Maker SeaportAccount `json:"maker"` Taker interface{} `json:"taker"` CurrentPrice string `json:"current_price"` MakerFees []SeaportMakerFees `json:"maker_fees"` TakerFees []interface{} `json:"taker_fees"` Side string `json:"side"` OrderType string `json:"order_type"` Cancelled bool `json:"cancelled"` Finalized bool `json:"finalized"` MarkedInvalid bool `json:"marked_invalid"` ClientSignature string `json:"client_signature"` RelayID string `json:"relay_id"` CriteriaProof interface{} `json:"criteria_proof"` MakerAssetBundle SeaportAssetBundle `json:"maker_asset_bundle"` TakerAssetBundle SeaportAssetBundle `json:"taker_asset_bundle"` }
type SeaportOwner ¶
type SeaportOwner struct { User SeaportUser `json:"user"` ProfileImgURL string `json:"profile_img_url"` Address string `json:"address"` Config string `json:"config"` }
type SeaportParameters ¶
type SeaportParameters struct { Offerer common.Address `json:"offerer"` Offer []SeaportOffer `json:"offer"` Consideration []SeaportConsiderationItem `json:"consideration"` StartTime string `json:"startTime"` EndTime string `json:"endTime"` OrderType int `json:"orderType"` // Zone common.Address `json:"zone"` // ZoneHash common.Hash `json:"zoneHash"` Salt string `json:"salt"` // ConduitKey common.Hash `json:"conduitKey"` TotalOriginalConsiderationItems int `json:"totalOriginalConsiderationItems"` Counter interface{} `json:"counter"` }
type SeaportProtocolData ¶
type SeaportProtocolData struct { Parameters SeaportParameters `json:"parameters"` Signature string `json:"signature"` }
type SeaportUser ¶
type SeaportUser struct {
Username string `json:"username"`
}
type Trait ¶
type Trait struct { TraitType interface{} `json:"trait_type"` Value interface{} `json:"value"` DisplayType interface{} `json:"display_type"` MaxValue interface{} `json:"max_value"` TraitCount interface{} `json:"trait_count"` Order interface{} `json:"order"` }
type Transaction ¶
Click to show internal directories.
Click to hide internal directories.