@rarible/api-client
Advanced tools
Comparing version 0.0.11-sol1 to 0.0.11-sol2
@@ -5,4 +5,5 @@ import { BigNumber } from "@rarible/types"; | ||
import { Creator } from "./Creator"; | ||
import { ItemId } from "@rarible/types"; | ||
import { Royalty } from "./Royalty"; | ||
export declare type AssetType = FlowAssetTypeNft | FlowAssetTypeFt | TezosXTZAssetType | TezosFTAssetType | TezosNFTAssetType | TezosMTAssetType | EthEthereumAssetType | EthErc20AssetType | EthErc721AssetType | EthErc721LazyAssetType | EthErc1155AssetType | EthErc1155LazyAssetType | EthCryptoPunksAssetType | EthGenerativeArtAssetType | EthCollectionAssetType; | ||
export declare type AssetType = FlowAssetTypeNft | FlowAssetTypeFt | TezosXTZAssetType | TezosFTAssetType | TezosNFTAssetType | TezosMTAssetType | SolanaSolAssetType | SolanaNftAssetType | EthEthereumAssetType | EthErc20AssetType | EthErc721AssetType | EthErc721LazyAssetType | EthErc1155AssetType | EthErc1155LazyAssetType | EthCryptoPunksAssetType | EthGenerativeArtAssetType | EthCollectionAssetType; | ||
export declare type FlowAssetTypeNft = { | ||
@@ -35,2 +36,9 @@ "@type": "FLOW_NFT"; | ||
}; | ||
export declare type SolanaSolAssetType = { | ||
"@type": "SOLANA_SOL"; | ||
}; | ||
export declare type SolanaNftAssetType = { | ||
"@type": "SOLANA_NFT"; | ||
itemId: ItemId; | ||
}; | ||
export declare type EthEthereumAssetType = { | ||
@@ -37,0 +45,0 @@ "@type": "ETH"; |
import { BigNumber } from "@rarible/types"; | ||
import { ContractAddress } from "@rarible/types"; | ||
import { Payout } from "./Payout"; | ||
import { UnionAddress } from "@rarible/types"; | ||
export declare type OrderData = EthOrderDataLegacy | EthOrderDataRaribleV2DataV1 | EthOrderOpenSeaV1DataV1 | EthOrderCryptoPunksData | TezosOrderDataRaribleV2DataV1 | FlowOrderDataV1; | ||
export declare type OrderData = EthOrderDataLegacy | EthOrderDataRaribleV2DataV1 | EthOrderOpenSeaV1DataV1 | EthOrderCryptoPunksData | TezosOrderDataRaribleV2DataV1 | FlowOrderDataV1 | SolanaAuctionHouseDataV1; | ||
export declare type EthOrderDataLegacy = { | ||
@@ -64,1 +65,5 @@ "@type": "ETH_RARIBLE_V1"; | ||
}; | ||
export declare type SolanaAuctionHouseDataV1 = { | ||
"@type": "SOLANA_AUCTION_HOUSE_V1"; | ||
auctionHouse?: ContractAddress; | ||
}; |
{ | ||
"name": "@rarible/api-client", | ||
"version": "0.0.11-sol1", | ||
"version": "0.0.11-sol2", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "axios", |
296825
7037