From d24f80c44a9a1fdb56dc00cda1fd4cc1cf436769 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 24 Nov 2024 10:07:17 +0000 Subject: [PATCH] feat: update immutable zkEVM API package --- .../ZkEvmApi/Documentation~/NFTBundle.md | 3 +- .../ZkEvmApi/Documentation~/StackBundle.md | 1 + .../ZkEvmApi/Runtime/Model/NFTBundle.cs | 23 +- .../ZkEvmApi/Runtime/Model/StackBundle.cs | 17 +- src/Packages/ZkEvmApi/api~/openapi.yaml | 709 ++++++++++++++++-- 5 files changed, 682 insertions(+), 71 deletions(-) diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTBundle.md b/src/Packages/ZkEvmApi/Documentation~/NFTBundle.md index 451cb0b0..c84a2896 100644 --- a/src/Packages/ZkEvmApi/Documentation~/NFTBundle.md +++ b/src/Packages/ZkEvmApi/Documentation~/NFTBundle.md @@ -7,7 +7,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **NftWithStack** | [**NFTWithStack**](NFTWithStack.md) | | **Market** | [**Market**](Market.md) | | -**Listings** | [**List<Listing>**](Listing.md) | List of open listings for the stack. | +**Listings** | [**List<Listing>**](Listing.md) | List of open listings for the NFT. | +**Bids** | [**List<Bid>**](Bid.md) | List of open bids for the NFT. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/src/Packages/ZkEvmApi/Documentation~/StackBundle.md b/src/Packages/ZkEvmApi/Documentation~/StackBundle.md index 1567ef8e..0424f158 100644 --- a/src/Packages/ZkEvmApi/Documentation~/StackBundle.md +++ b/src/Packages/ZkEvmApi/Documentation~/StackBundle.md @@ -9,6 +9,7 @@ Name | Type | Description | Notes **StackCount** | **int** | Total count of NFTs in the stack matching the filter params | **Market** | [**Market**](Market.md) | | **Listings** | [**List<Listing>**](Listing.md) | List of open listings for the stack. | +**Bids** | [**List<Bid>**](Bid.md) | List of open bids for the stack. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/src/Packages/ZkEvmApi/Runtime/Model/NFTBundle.cs b/src/Packages/ZkEvmApi/Runtime/Model/NFTBundle.cs index 4bbf1682..1ffcc949 100644 --- a/src/Packages/ZkEvmApi/Runtime/Model/NFTBundle.cs +++ b/src/Packages/ZkEvmApi/Runtime/Model/NFTBundle.cs @@ -41,8 +41,9 @@ protected NFTBundle() { } /// /// nftWithStack (required). /// market (required). - /// List of open listings for the stack. (required). - public NFTBundle(NFTWithStack nftWithStack = default(NFTWithStack), Market market = default(Market), List listings = default(List)) + /// List of open listings for the NFT. (required). + /// List of open bids for the NFT. (required). + public NFTBundle(NFTWithStack nftWithStack = default(NFTWithStack), Market market = default(Market), List listings = default(List), List bids = default(List)) { // to ensure "nftWithStack" is required (not null) if (nftWithStack == null) @@ -62,6 +63,12 @@ protected NFTBundle() { } throw new ArgumentNullException("listings is a required property for NFTBundle and cannot be null"); } this.Listings = listings; + // to ensure "bids" is required (not null) + if (bids == null) + { + throw new ArgumentNullException("bids is a required property for NFTBundle and cannot be null"); + } + this.Bids = bids; } /// @@ -77,12 +84,19 @@ protected NFTBundle() { } public Market Market { get; set; } /// - /// List of open listings for the stack. + /// List of open listings for the NFT. /// - /// List of open listings for the stack. + /// List of open listings for the NFT. [DataMember(Name = "listings", IsRequired = true, EmitDefaultValue = true)] public List Listings { get; set; } + /// + /// List of open bids for the NFT. + /// + /// List of open bids for the NFT. + [DataMember(Name = "bids", IsRequired = true, EmitDefaultValue = true)] + public List Bids { get; set; } + /// /// Returns the string presentation of the object /// @@ -94,6 +108,7 @@ public override string ToString() sb.Append(" NftWithStack: ").Append(NftWithStack).Append("\n"); sb.Append(" Market: ").Append(Market).Append("\n"); sb.Append(" Listings: ").Append(Listings).Append("\n"); + sb.Append(" Bids: ").Append(Bids).Append("\n"); sb.Append("}\n"); return sb.ToString(); } diff --git a/src/Packages/ZkEvmApi/Runtime/Model/StackBundle.cs b/src/Packages/ZkEvmApi/Runtime/Model/StackBundle.cs index 489dd8fe..7a1eea57 100644 --- a/src/Packages/ZkEvmApi/Runtime/Model/StackBundle.cs +++ b/src/Packages/ZkEvmApi/Runtime/Model/StackBundle.cs @@ -43,7 +43,8 @@ protected StackBundle() { } /// Total count of NFTs in the stack matching the filter params (required). /// market (required). /// List of open listings for the stack. (required). - public StackBundle(Stack stack = default(Stack), int stackCount = default(int), Market market = default(Market), List listings = default(List)) + /// List of open bids for the stack. (required). + public StackBundle(Stack stack = default(Stack), int stackCount = default(int), Market market = default(Market), List listings = default(List), List bids = default(List)) { // to ensure "stack" is required (not null) if (stack == null) @@ -64,6 +65,12 @@ protected StackBundle() { } throw new ArgumentNullException("listings is a required property for StackBundle and cannot be null"); } this.Listings = listings; + // to ensure "bids" is required (not null) + if (bids == null) + { + throw new ArgumentNullException("bids is a required property for StackBundle and cannot be null"); + } + this.Bids = bids; } /// @@ -93,6 +100,13 @@ protected StackBundle() { } [DataMember(Name = "listings", IsRequired = true, EmitDefaultValue = true)] public List Listings { get; set; } + /// + /// List of open bids for the stack. + /// + /// List of open bids for the stack. + [DataMember(Name = "bids", IsRequired = true, EmitDefaultValue = true)] + public List Bids { get; set; } + /// /// Returns the string presentation of the object /// @@ -105,6 +119,7 @@ public override string ToString() sb.Append(" StackCount: ").Append(StackCount).Append("\n"); sb.Append(" Market: ").Append(Market).Append("\n"); sb.Append(" Listings: ").Append(Listings).Append("\n"); + sb.Append(" Bids: ").Append(Bids).Append("\n"); sb.Append("}\n"); return sb.ToString(); } diff --git a/src/Packages/ZkEvmApi/api~/openapi.yaml b/src/Packages/ZkEvmApi/api~/openapi.yaml index b9ba1a95..c00762b2 100644 --- a/src/Packages/ZkEvmApi/api~/openapi.yaml +++ b/src/Packages/ZkEvmApi/api~/openapi.yaml @@ -9219,6 +9219,25 @@ components: - token_id type: object Bid: + example: + creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 properties: bid_id: description: Global Order identifier @@ -9471,6 +9490,97 @@ components: type: NATIVE fee_inclusive_amount: "9750000000000000000" contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + bids: + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 nft_with_stack: image: https://some-url chain: @@ -9503,12 +9613,19 @@ components: - $ref: '#/components/schemas/Market' nullable: true listings: - description: List of open listings for the stack. + description: List of open listings for the NFT. items: $ref: '#/components/schemas/Listing' maxItems: 10 type: array + bids: + description: List of open bids for the NFT. + items: + $ref: '#/components/schemas/Bid' + maxItems: 10 + type: array required: + - bids - listings - market - nft_with_stack @@ -9609,6 +9726,97 @@ components: type: NATIVE fee_inclusive_amount: "9750000000000000000" contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + bids: + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 nft_with_stack: image: https://some-url chain: @@ -9725,70 +9933,161 @@ components: type: NATIVE fee_inclusive_amount: "9750000000000000000" contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 - nft_with_stack: - image: https://some-url - chain: - name: imtbl-zkevm-testnet - id: eip155:13372 - animation_url: https://some-url - created_at: 2022-08-16T17:43:26.991388Z - description: 2022-08-16T17:43:26.991388Z - contract_address: contract_address - contract_type: ERC721 - external_url: https://some-url - token_id: token_id - updated_at: 2022-08-16T17:43:26.991388Z - balance: 1 - stack_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 - name: Sword - attributes: - - display_type: number - value: Happy - trait_type: Aqua Power - - display_type: number - value: Happy - trait_type: Aqua Power - youtube_url: https://some-url - page: - previous_cursor: ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0= - next_cursor: ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0= - properties: - result: - description: List of nft bundles - items: - $ref: '#/components/schemas/NFTBundle' - type: array - page: - $ref: '#/components/schemas/Page' - required: - - page - - result - type: object - Stack: - description: Stack - example: - image: https://some-url - chain: - name: imtbl-zkevm-testnet - id: eip155:13372 - animation_url: https://some-url - created_at: 2022-08-16T17:43:26.991388Z - description: 2022-08-16T17:43:26.991388Z - contract_address: contract_address - contract_type: ERC721 - external_url: https://some-url - updated_at: 2022-08-16T17:43:26.991388Z - stack_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 - name: Sword - attributes: - - display_type: number - value: Happy - trait_type: Aqua Power - - display_type: number - value: Happy - trait_type: Aqua Power - youtube_url: https://some-url - properties: + bids: + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + nft_with_stack: + image: https://some-url + chain: + name: imtbl-zkevm-testnet + id: eip155:13372 + animation_url: https://some-url + created_at: 2022-08-16T17:43:26.991388Z + description: 2022-08-16T17:43:26.991388Z + contract_address: contract_address + contract_type: ERC721 + external_url: https://some-url + token_id: token_id + updated_at: 2022-08-16T17:43:26.991388Z + balance: 1 + stack_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 + name: Sword + attributes: + - display_type: number + value: Happy + trait_type: Aqua Power + - display_type: number + value: Happy + trait_type: Aqua Power + youtube_url: https://some-url + page: + previous_cursor: ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0= + next_cursor: ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0= + properties: + result: + description: List of nft bundles + items: + $ref: '#/components/schemas/NFTBundle' + type: array + page: + $ref: '#/components/schemas/Page' + required: + - page + - result + type: object + Stack: + description: Stack + example: + image: https://some-url + chain: + name: imtbl-zkevm-testnet + id: eip155:13372 + animation_url: https://some-url + created_at: 2022-08-16T17:43:26.991388Z + description: 2022-08-16T17:43:26.991388Z + contract_address: contract_address + contract_type: ERC721 + external_url: https://some-url + updated_at: 2022-08-16T17:43:26.991388Z + stack_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 + name: Sword + attributes: + - display_type: number + value: Happy + trait_type: Aqua Power + - display_type: number + value: Happy + trait_type: Aqua Power + youtube_url: https://some-url + properties: stack_id: description: Stack ID format: uuid @@ -9978,6 +10277,97 @@ components: value: Happy trait_type: Aqua Power youtube_url: https://some-url + bids: + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 stack_count: 1 properties: stack: @@ -9996,7 +10386,14 @@ components: $ref: '#/components/schemas/Listing' maxItems: 10 type: array + bids: + description: List of open bids for the stack. + items: + $ref: '#/components/schemas/Bid' + maxItems: 10 + type: array required: + - bids - listings - market - stack @@ -10120,6 +10517,97 @@ components: value: Happy trait_type: Aqua Power youtube_url: https://some-url + bids: + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 stack_count: 1 - market: "" listings: @@ -10235,6 +10723,97 @@ components: value: Happy trait_type: Aqua Power youtube_url: https://some-url + bids: + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + - creator: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 + amount: "1" + token_id: "1" + price_details: + amount: "9750000000000000000" + fees: + - type: TAKER_ECOSYSTEM + recipient_address: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92233 + amount: "1000000000000000000" + converted_prices: + ETH: "0.0058079775" + USD: "15.89" + token: + symbol: IMX + type: NATIVE + fee_inclusive_amount: "9750000000000000000" + bid_id: 018792C9-4AD7-8EC4-4038-9E05C598534A + contract_address: 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3 stack_count: 1 page: previous_cursor: ewogICJ0eXBlIjogInByZXYiLAogICJpdGVtIjogewogICAgImlkIjogNjI3NTEzMCwKICAgICJjcmVhdGVkX2F0IjogIjIwMjItMDktMTNUMTc6MDQ6MTIuMDI0MTI2WiIKICB9Cn0=