{"openapi":"3.0.0","paths":{"/contract-assets":{"post":{"operationId":"AssetsController_addContractAssets","parameters":[{"name":"Access-Token","required":true,"in":"header","schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ContractAssetsRequest"}}}},"responses":{"201":{"description":""}},"tags":["assets"]}},"/assets":{"post":{"operationId":"AssetsController_addAssets","parameters":[{"name":"Access-Token","required":true,"in":"header","schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TokenAssetsRequest"}}}},"responses":{"201":{"description":""}},"tags":["assets"]}},"/assets/convert":{"post":{"operationId":"AssetsController_convertFile","parameters":[],"responses":{"201":{"description":""}},"tags":["assets"]}},"/assets/auth":{"post":{"operationId":"AssetsController_auth","parameters":[],"responses":{"201":{"description":""}},"tags":["assets"]}},"/accounts":{"get":{"operationId":"AccountController_getAccounts","summary":"Accounts details","description":"Returns all accounts available on blockchain. By default it returns 25 accounts","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"ownerAddress","required":false,"in":"query","description":"Search by owner address","schema":{"type":"string"}},{"name":"name","required":false,"in":"query","description":"Filter accounts by assets name","schema":{"type":"string"}},{"name":"tags","required":false,"in":"query","description":"Filter accounts by assets tags","schema":{"type":"array","items":{"type":"string"}}},{"name":"sort","required":false,"in":"query","description":"Sort criteria (balance / timestamp)","schema":{"enum":["balance","timestamp","transfersLast24h"],"type":"string"}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"isSmartContract","required":false,"in":"query","description":"Filter accounts by whether they are smart contract or not","schema":{"type":"boolean"}},{"name":"withOwnerAssets","required":false,"in":"query","description":"Return a list accounts with owner assets","schema":{"type":"boolean"}},{"name":"withDeployInfo","required":false,"in":"query","description":"Include deployedAt and deployTxHash fields in the result","schema":{"type":"boolean"}},{"name":"withTxCount","required":false,"in":"query","description":"Include txCount field in the result","schema":{"type":"boolean"}},{"name":"withScrCount","required":false,"in":"query","description":"Include scrCount field in the result","schema":{"type":"boolean"}},{"name":"excludeTags","required":false,"in":"query","description":"Exclude specific tags from result","schema":{"type":"array","items":{"type":"string"}}},{"name":"hasAssets","required":false,"in":"query","description":"Returns a list of accounts that have assets","schema":{"type":"boolean"}},{"name":"search","required":false,"in":"query","description":"Search by account address","schema":{"type":"string"}},{"name":"addresses","required":false,"in":"query","description":"A comma-separated list of addresses to filter by","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Account"}}}}}},"tags":["accounts"]}},"/accounts/count":{"get":{"operationId":"AccountController_getAccountsCount","summary":"Total number of accounts","description":"Returns total number of accounts available on blockchain","parameters":[{"name":"ownerAddress","required":false,"in":"query","description":"Search by owner address","schema":{"type":"string"}},{"name":"isSmartContract","required":false,"in":"query","description":"Return total smart contracts count","schema":{"type":"boolean"}},{"name":"name","required":false,"in":"query","description":"Filter accounts by assets name","schema":{"type":"string"}},{"name":"tags","required":false,"in":"query","description":"Filter accounts by assets tags","schema":{"type":"array","items":{"type":"string"}}},{"name":"excludeTags","required":false,"in":"query","description":"Exclude specific tags from result","schema":{"type":"array","items":{"type":"string"}}},{"name":"hasAssets","required":false,"in":"query","description":"Returns a list of accounts that have assets","schema":{"type":"boolean"}},{"name":"search","required":false,"in":"query","description":"Search by account address, assets name","schema":{"type":"string"}},{"name":"withBalance","required":false,"in":"query","description":"Filter accounts by balance (true = balance > 0, false = balance = 0)","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}":{"get":{"operationId":"AccountController_getAccountDetails","summary":"Account details","description":"Returns account details for a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"withGuardianInfo","required":false,"in":"query","description":"Returns guardian data for a given address","schema":{"type":"boolean"}},{"name":"withTxCount","required":false,"in":"query","description":"Returns the count of the transactions for a given address","schema":{"type":"boolean"}},{"name":"withScrCount","required":false,"in":"query","description":"Returns the sc results count for a given address","schema":{"type":"boolean"}},{"name":"withTimestamp","required":false,"in":"query","description":"Returns the timestamp of the last activity for a given address","schema":{"type":"boolean"}},{"name":"withAssets","required":false,"in":"query","description":"Returns the assets for a given address","schema":{"type":"boolean"}},{"name":"timestamp","required":false,"in":"query","description":"Retrieve entry from timestamp","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AccountDetailed"}}}}},"tags":["accounts"]}},"/accounts/{address}/deferred":{"get":{"operationId":"AccountController_getAccountDeferred","summary":"Account deferred payment details","description":"Returns deferred payments from legacy staking","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AccountDeferred"}}}}}},"tags":["accounts"]}},"/accounts/{address}/verification":{"get":{"operationId":"AccountController_getAccountVerification","summary":"Account verification details","description":"Returns contract verification details","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AccountVerification"}}}}},"tags":["accounts"]}},"/accounts/{address}/tokens":{"get":{"operationId":"AccountController_getAccountTokens","summary":"Account tokens","description":"Returns a list of all available fungible tokens for a given address, together with their balance","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"type","required":false,"in":"query","description":"Token type","schema":{"enum":["FungibleESDT","MetaESDT"],"type":"string"}},{"name":"subType","required":false,"in":"query","description":"Token sub type","schema":{"enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""],"type":"string"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"name","required":false,"in":"query","description":"Search by token name","schema":{"type":"string"}},{"name":"identifier","required":false,"in":"query","description":"Search by token identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"A comma-separated list of identifiers to filter by","schema":{"type":"string"}},{"name":"includeMetaESDT","required":false,"in":"query","description":"Include MetaESDTs in response","schema":{"type":"boolean"}},{"name":"timestamp","required":false,"in":"query","description":"Retrieve entries from timestamp","schema":{"type":"number"}},{"name":"mexPairType","required":false,"in":"query","description":"Token Mex Pair","schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TokenWithBalance"}}}}}},"tags":["accounts"]}},"/accounts/{address}/tokens/count":{"get":{"operationId":"AccountController_getTokenCount","summary":"Account token count","description":"Returns the total number of tokens for a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"type","required":false,"in":"query","description":"Token type","schema":{"enum":["FungibleESDT","MetaESDT"],"type":"string"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"name","required":false,"in":"query","description":"Search by token name","schema":{"type":"string"}},{"name":"identifier","required":false,"in":"query","description":"Search by token identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"A comma-separated list of identifiers to filter by","schema":{"type":"string"}},{"name":"includeMetaESDT","required":false,"in":"query","description":"Include MetaESDTs in response","schema":{"type":"boolean"}},{"name":"timestamp","required":false,"in":"query","description":"Retrieve entries from timestamp","schema":{"type":"number"}},{"name":"mexPairType","required":false,"in":"query","description":"Token Mex Pair","schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/tokens/{token}":{"get":{"operationId":"AccountController_getAccountToken","summary":"Account token details","description":"Returns details about a specific fungible token from a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"token","required":true,"in":"path","schema":{"type":"string"}},{"name":"timestamp","required":false,"in":"query","description":"Retrieve entries from timestamp","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TokenWithBalance"}}}}},"tags":["accounts"]}},"/accounts/{address}/roles/collections":{"get":{"operationId":"AccountController_getAccountCollectionsWithRoles","summary":"Account collections","description":"Returns NFT/SFT/MetaESDT collections where the account is owner or has some special roles assigned to it","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT/MetaESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by type (NonFungibleESDTv2/DynamicNonFungibleESDT/DynamicSemiFungibleESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"owner","required":false,"in":"query","description":"Filter by collection owner","schema":{"type":"string"}},{"name":"canCreate","required":false,"in":"query","description":"Filter by property canCreate (boolean)","schema":{"type":"boolean"}},{"name":"canBurn","required":false,"in":"query","description":"Filter by property canBurn (boolean)","schema":{"type":"boolean"}},{"name":"canAddQuantity","required":false,"in":"query","description":"Filter by property canAddQuantity (boolean)","schema":{"type":"boolean"}},{"name":"canUpdateAttributes","required":false,"in":"query","description":"Filter by property canUpdateAttributes (boolean)","schema":{"type":"boolean"}},{"name":"canAddUri","required":false,"in":"query","description":"Filter by property canAddUri (boolean)","schema":{"type":"boolean"}},{"name":"canTransferRole","required":false,"in":"query","description":"Filter by property canTransferRole (boolean)","schema":{"type":"boolean"}},{"name":"excludeMetaESDT","required":false,"in":"query","description":"Exclude collections of type \"MetaESDT\" in the response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/NftCollectionWithRoles"}}}}}},"tags":["accounts"]}},"/accounts/{address}/roles/collections/count":{"get":{"operationId":"AccountController_getCollectionWithRolesCount","summary":"Account collection count","description":"Returns the total number of NFT/SFT/MetaESDT collections where the account is owner or has some special roles assigned to it","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT/MetaESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by type (NonFungibleESDTv2/DynamicNonFungibleESDT/DynamicSemiFungibleESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"owner","required":false,"in":"query","description":"Filter by collection owner","schema":{"type":"string"}},{"name":"canCreate","required":false,"in":"query","description":"Filter by property canCreate (boolean)","schema":{"type":"boolean"}},{"name":"canBurn","required":false,"in":"query","description":"Filter by property canCreate (boolean)","schema":{"type":"boolean"}},{"name":"canAddQuantity","required":false,"in":"query","description":"Filter by property canAddQuantity (boolean)","schema":{"type":"boolean"}},{"name":"excludeMetaESDT","required":false,"in":"query","description":"Exclude collections of type \"MetaESDT\" in the response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/roles/collections/{collection}":{"get":{"operationId":"AccountController_getAccountCollection","summary":"Account collection details","description":"Returns details about a specific NFT/SFT/MetaESDT collection from a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"collection","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftCollectionWithRoles"}}}}},"tags":["accounts"]}},"/accounts/{address}/roles/tokens":{"get":{"operationId":"AccountController_getAccountTokensWithRoles","summary":"Account token roles","description":"Returns fungible token roles where the account is owner or has some special roles assigned to it","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"search","required":false,"in":"query","description":"Search by token identifier or name","schema":{"type":"string"}},{"name":"owner","required":false,"in":"query","description":"Filter by token owner","schema":{"type":"string"}},{"name":"canMint","required":false,"in":"query","description":"Filter by property canMint (boolean)","schema":{"type":"boolean"}},{"name":"canBurn","required":false,"in":"query","description":"Filter by property canBurn (boolean)","schema":{"type":"boolean"}},{"name":"includeMetaESDT","required":false,"in":"query","description":"Include MetaESDTs in response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TokenWithRoles"}}}}}},"tags":["accounts"]}},"/accounts/{address}/roles/tokens/count":{"get":{"operationId":"AccountController_getTokensWithRolesCount","summary":"Account token roles count","description":"Returns the total number of fungible token roles where the account is owner or has some special roles assigned to it","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"search","required":false,"in":"query","description":"Search by token identifier or name","schema":{"type":"string"}},{"name":"owner","required":false,"in":"query","description":"Filter by token owner","schema":{"type":"string"}},{"name":"canMint","required":false,"in":"query","description":"Filter by property canMint (boolean)","schema":{"type":"boolean"}},{"name":"canBurn","required":false,"in":"query","description":"Filter by property canCreate (boolean)","schema":{"type":"boolean"}},{"name":"includeMetaESDT","required":false,"in":"query","description":"Include MetaESDTs in response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/roles/tokens/{identifier}":{"get":{"operationId":"AccountController_getTokenWithRoles","summary":"Account token roles details","description":"Returns details about fungible token roles where the account is owner or has some special roles assigned to it","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TokenWithRoles"}}}}},"tags":["accounts"]}},"/accounts/{address}/collections":{"get":{"operationId":"AccountController_getAccountNftCollections","summary":"Account collections","description":"Returns NFT/SFT/MetaESDT collections where the account owns one or more NFTs","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT/MetaESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by type (NonFungibleESDTv2/DynamicNonFungibleESDT/DynamicSemiFungibleESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"excludeMetaESDT","required":false,"in":"query","description":"Exclude collections of type \"MetaESDT\" in the response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/NftCollectionAccount"}}}}}},"tags":["accounts"]}},"/accounts/{address}/collections/count":{"get":{"operationId":"AccountController_getNftCollectionCount","summary":"Account collection count","description":"Returns the total number of NFT/SFT/MetaESDT collections where the account is owner or has some special roles assigned to it","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT/MetaESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by type (NonFungibleESDTv2/DynamicNonFungibleESDT/DynamicSemiFungibleESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"excludeMetaESDT","required":false,"in":"query","description":"Exclude collections of type \"MetaESDT\" in the response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/collections/{collection}":{"get":{"operationId":"AccountController_getAccountNftCollection","summary":"Account collection details","description":"Returns details about a specific NFT/SFT/MetaESDT collection from a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"collection","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftCollectionAccount"}}}}},"tags":["accounts"]}},"/accounts/{address}/nfts":{"get":{"operationId":"AccountController_getAccountNfts","summary":"Account NFTs","description":"Returns a list of all available NFTs/SFTs/MetaESDTs owned by the provided address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"Filter by identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT/MetaESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by type (NonFungibleESDTv2/DynamicNonFungibleESDT/DynamicSemiFungibleESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"collection","required":false,"in":"query","description":"Get all tokens by token collection. Deprecated, replaced by collections parameter","deprecated":true,"schema":{"type":"string"}},{"name":"collections","required":false,"in":"query","description":"Get all tokens by token collections, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"name","required":false,"in":"query","description":"Get all nfts by name","schema":{"type":"string"}},{"name":"tags","required":false,"in":"query","description":"Filter by one or more comma-separated tags","schema":{"type":"array","items":{"type":"string"}}},{"name":"creator","required":false,"in":"query","description":"Return all NFTs associated with a given creator","schema":{"type":"string"}},{"name":"hasUris","required":false,"in":"query","description":"Return all NFTs that have one or more uris","schema":{"type":"boolean"}},{"name":"includeFlagged","required":false,"in":"query","description":"Include NFTs that are flagged or not","schema":{"type":"boolean"}},{"name":"withSupply","required":false,"in":"query","description":"Return supply where type = SemiFungibleESDT","schema":{"type":"boolean"}},{"name":"source","required":false,"in":"query","description":"Data source of request","schema":{"type":"string"}},{"name":"excludeMetaESDT","required":false,"in":"query","description":"Exclude NFTs of type \"MetaESDT\" in the response","schema":{"type":"boolean"}},{"name":"fields","required":false,"in":"query","description":"List of fields to filter by","style":"form","explode":false,"schema":{"type":"array","items":{"type":"string"}}},{"name":"isScam","required":false,"in":"query","description":"Filter by scam status","schema":{"type":"boolean"}},{"name":"scamType","required":false,"in":"query","description":"Filter by type (scam/potentialScam)","schema":{"type":"string"}},{"name":"timestamp","required":false,"in":"query","description":"Retrieve entry from timestamp","schema":{"type":"number"}},{"name":"withReceivedAt","required":false,"in":"query","description":"Include receivedAt timestamp in the response (when the NFT was received by the address)","schema":{"type":"boolean"}},{"name":"computeScamInfo","required":false,"in":"query","description":"Compute scam info in the response","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Include scam info in the response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/NftAccount"}}}}}},"tags":["accounts"]}},"/accounts/{address}/nfts/count":{"get":{"operationId":"AccountController_getNftCount","summary":"Account NFT/SFT tokens count","description":"Returns the total number of NFT/SFT tokens from a given address, as well as the total number of a certain type of ESDT ","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"Filter by identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT/MetaESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by subType","schema":{"type":"array","items":{"type":"string"}}},{"name":"collection","required":false,"in":"query","description":"Get all tokens by token collection","schema":{"type":"string"}},{"name":"collections","required":false,"in":"query","description":"Get all tokens by token collections, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"name","required":false,"in":"query","description":"Get all nfts by name","schema":{"type":"string"}},{"name":"tags","required":false,"in":"query","description":"Filter by one or more comma-separated tags","schema":{"type":"array","items":{"type":"string"}}},{"name":"creator","required":false,"in":"query","description":"Return all NFTs associated with a given creator","schema":{"type":"string"}},{"name":"hasUris","required":false,"in":"query","description":"Return all NFTs that have one or more uris","schema":{"type":"boolean"}},{"name":"includeFlagged","required":false,"in":"query","description":"Include NFTs that are flagged or not","schema":{"type":"boolean"}},{"name":"excludeMetaESDT","required":false,"in":"query","description":"Exclude NFTs of type \"MetaESDT\" in the response","schema":{"type":"boolean"}},{"name":"isScam","required":false,"in":"query","description":"Filter by scam status","schema":{"type":"boolean"}},{"name":"scamType","required":false,"in":"query","description":"Filter by type (scam/potentialScam)","schema":{"type":"string"}},{"name":"timestamp","required":false,"in":"query","description":"Retrieve entry from timestamp","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/nfts/{nft}":{"get":{"operationId":"AccountController_getAccountNft","summary":"Account NFT/SFT token details","description":"Returns details about a specific fungible token for a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"nft","required":true,"in":"path","schema":{"type":"string"}},{"name":"fields","required":false,"in":"query","description":"List of fields to filter by","style":"form","explode":false,"schema":{"type":"array","items":{"type":"string"}}},{"name":"extract","required":false,"in":"query","description":"Extract a specific field","schema":{"type":"string"}},{"name":"timestamp","required":false,"in":"query","description":"Retrieve entry from timestamp","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftAccount"}}}}},"tags":["accounts"]}},"/accounts/{address}/stake":{"get":{"operationId":"AccountController_getAccountStake","summary":"Account stake details","description":"Summarizes total staked amount for the given provider, as well as when and how much unbond will be performed","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"timestamp","required":false,"in":"query","description":"Retrieve entry from timestamp","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProviderStake"}}}}},"tags":["accounts"]}},"/accounts/{address}/delegation":{"get":{"operationId":"AccountController_getDelegationForAddress","summary":"Account delegations with staking providers","description":"Summarizes all delegation positions with staking providers, together with unDelegation positions","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AccountDelegation"}}}}}},"tags":["accounts"]}},"/accounts/{address}/delegation-legacy":{"get":{"operationId":"AccountController_getAccountDelegationLegacy","summary":"Account legacy delegation details","description":"Returns staking information related to the legacy delegation pool","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"timestamp","required":false,"in":"query","description":"Retrieve entry from timestamp","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AccountDelegationLegacy"}}}}},"tags":["accounts"]}},"/accounts/{address}/keys":{"get":{"operationId":"AccountController_getAccountKeys","summary":"Account nodes","description":"Returns all active / queued nodes where the account is owner","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"status","required":false,"in":"query","description":"Key status","schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AccountKey"}}}}}},"tags":["accounts"]}},"/accounts/{address}/waiting-list":{"get":{"operationId":"AccountController_getAccountWaitingList","summary":"Account queued nodes","description":"Returns all nodes in the node queue where the account is owner","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WaitingList"}}}}}},"tags":["accounts"]}},"/accounts/{address}/transactions":{"get":{"operationId":"AccountController_getAccountTransactions","summary":"Account transaction list","description":"Returns details of all transactions where the account is sender or receiver","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"token","required":false,"in":"query","description":"Identifier of the token","schema":{"type":"string"}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Round number","schema":{"type":"number"}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"fields","required":false,"in":"query","description":"List of fields to filter by","style":"form","explode":false,"schema":{"type":"array","items":{"type":"string"}}},{"name":"withScResults","required":false,"in":"query","description":"Return scResults for transactions. When \"withScresults\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withOperations","required":false,"in":"query","description":"Return operations for transactions. When \"withOperations\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withLogs","required":false,"in":"query","description":"Return logs for transactions. When \"withLogs\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transactions","schema":{"type":"boolean"}},{"name":"withBlockInfo","required":false,"in":"query","description":"Returns sender / receiver block details","schema":{"type":"boolean"}},{"name":"senderOrReceiver","required":false,"in":"query","description":"One address that current address interacted with","schema":{"type":"string"}},{"name":"isRelayed","required":false,"in":"query","description":"Returns isRelayed transactions details","schema":{"type":"boolean"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withActionTransferValue","required":false,"in":"query","description":"Returns value in USD and EGLD for transferred tokens within the action attribute","schema":{"type":"boolean"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}},{"name":"computeScamInfo","required":false,"in":"query","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}}},"tags":["accounts"]}},"/accounts/{address}/transactions/count":{"get":{"operationId":"AccountController_getAccountTransactionsCount","summary":"Account transactions count","description":"Returns total number of transactions for a given address where the account is sender or receiver, as well as total transactions count that have a certain status","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"token","required":false,"in":"query","description":"Identifier of the token","schema":{"type":"string"}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Round number","schema":{"type":"number"}},{"name":"senderOrReceiver","required":false,"in":"query","description":"One address that current address interacted with","schema":{"type":"string"}},{"name":"isRelayed","required":false,"in":"query","description":"Returns isRelayed transactions details","schema":{"type":"boolean"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/transfers":{"get":{"operationId":"AccountController_getAccountTransfers","summary":"Account value transfers","description":"Returns both transfers triggerred by a user account (type = Transaction), as well as transfers triggerred by smart contracts (type = SmartContractResult), thus providing a full picture of all in/out value transfers for a given account","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Address of the transfer sender","schema":{"type":"array","items":{"type":"string"}}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"token","required":false,"in":"query","description":"Identifier of the token","schema":{"type":"string"}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transfer hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Round number","schema":{"type":"number"}},{"name":"fields","required":false,"in":"query","description":"List of fields to filter by","style":"form","explode":false,"schema":{"type":"array","items":{"type":"string"}}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"relayer","required":false,"in":"query","description":"Address of the relayer","schema":{"type":"string"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transactions","schema":{"type":"boolean"}},{"name":"withBlockInfo","required":false,"in":"query","description":"Returns sender / receiver block details","schema":{"type":"boolean"}},{"name":"senderOrReceiver","required":false,"in":"query","description":"One address that current address interacted with","schema":{"type":"string"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withLogs","required":false,"in":"query","description":"Return logs for transfers. When \"withLogs\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withOperations","required":false,"in":"query","description":"Return operations for transfers. When \"withOperations\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withActionTransferValue","required":false,"in":"query","description":"Returns value in USD and EGLD for transferred tokens within the action attribute","schema":{"type":"boolean"}},{"name":"withRefunds","required":false,"in":"query","description":"Include refund transactions","schema":{"type":"boolean"}},{"name":"withTxsRelayedByAddress","required":false,"in":"query","description":"Include transactions that were relayed by the address","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}}},"tags":["accounts"]}},"/accounts/{address}/transfers/count":{"get":{"operationId":"AccountController_getAccountTransfersCount","summary":"Account transfer count","description":"Return total count of transfers triggerred by a user account (type = Transaction), as well as transfers triggerred by smart contracts (type = SmartContractResult)","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"sender","required":false,"in":"query","description":"Address of the transfer sender","schema":{"type":"array","items":{"type":"string"}}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"token","required":false,"in":"query","description":"Identifier of the token","schema":{"type":"string"}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transfer hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transfers by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Round number","schema":{"type":"number"}},{"name":"senderOrReceiver","required":false,"in":"query","description":"One address that current address interacted with","schema":{"type":"string"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withRefunds","required":false,"in":"query","description":"Include refund transactions","schema":{"type":"boolean"}},{"name":"withTxsRelayedByAddress","required":false,"in":"query","description":"Include transactions that were relayed by the address","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/deploys":{"get":{"operationId":"AccountController_getAccountDeploys","summary":"Account deploys details","description":"Returns deploys details for a given account","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/DeployedContract"}}}}}},"tags":["accounts"]}},"/accounts/{address}/deploys/count":{"get":{"operationId":"AccountController_getAccountDeploysCount","summary":"Account deploys count","description":"Returns total number of deploys for a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/contracts":{"get":{"operationId":"AccountController_getAccountContracts","summary":"Account contracts details","description":"Returns contracts details for a given account","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/DeployedContract"}}}}}},"tags":["accounts"]}},"/accounts/{address}/contracts/count":{"get":{"operationId":"AccountController_getAccountContractsCount","summary":"Account contracts count","description":"Returns total number of contracts for a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/upgrades":{"get":{"operationId":"AccountController_getContractUpgrades","summary":"Account upgrades details","description":"Returns all upgrades details for a specific contract address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ContractUpgrades"}}}}},"tags":["accounts"]}},"/accounts/{address}/results":{"get":{"operationId":"AccountController_getAccountScResults","summary":"Account smart contract results","description":"Returns smart contract results where the account is sender or receiver","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SmartContractResult"}}}}}},"tags":["accounts"]}},"/accounts/{address}/results/count":{"get":{"operationId":"AccountController_getAccountScResultsCount","summary":"Account smart contracts results count","description":"Returns number of smart contract results where the account is sender or receiver","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/results/{scHash}":{"get":{"operationId":"AccountController_getAccountScResult","summary":"Account smart contract result","description":"Returns details of a smart contract result where the account is sender or receiver","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"scHash","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SmartContractResult"}}}}},"tags":["accounts"]}},"/accounts/{address}/history":{"get":{"operationId":"AccountController_getAccountHistory","summary":"Account history","description":"Return account EGLD balance history","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AccountHistory"}}}}}},"tags":["accounts"]}},"/accounts/{address}/history/count":{"get":{"operationId":"AccountController_getAccountHistoryCount","summary":"Account history count","description":"Return account EGLD balance history count","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/history/{tokenIdentifier}/count":{"get":{"operationId":"AccountController_getAccountTokenHistoryCount","summary":"Account token history count","description":"Return account token balance history count","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"tokenIdentifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["accounts"]}},"/accounts/{address}/esdthistory":{"get":{"operationId":"AccountController_getAccountEsdtHistory","summary":"Account esdts history","description":"Returns account esdts balance history","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"identifier","required":false,"in":"query","description":"Filter by multiple esdt identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"token","required":false,"in":"query","description":"Token identifier","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AccountEsdtHistory"}}}}}},"tags":["accounts"]}},"/accounts/{address}/esdthistory/count":{"get":{"operationId":"AccountController_getAccountEsdtHistoryCount","summary":"Account esdts history count","description":"Returns account esdts balance history count","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"identifier","required":false,"in":"query","description":"Filter by multiple esdt identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"token","required":false,"in":"query","description":"Token identifier","schema":{"type":"string"}}],"responses":{"200":{"description":""}},"tags":["accounts"]}},"/accounts/{address}/history/{tokenIdentifier}":{"get":{"operationId":"AccountController_getAccountTokenHistory","summary":"Account token history","description":"Returns account token balance history","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"tokenIdentifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AccountEsdtHistory"}}}}}},"tags":["accounts"]}},"/blocks":{"get":{"operationId":"BlockController_getBlocks","summary":"Blocks","description":"Returns a list of all blocks from all shards","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"shard","required":false,"in":"query","description":"Id of the shard the block belongs to","schema":{"type":"number"}},{"name":"proposer","required":false,"in":"query","description":"Filter by proposer","schema":{"type":"string"}},{"name":"validator","required":false,"in":"query","description":"Filter by validator","schema":{"type":"string"}},{"name":"epoch","required":false,"in":"query","description":"Filter by epoch","schema":{"type":"number"}},{"name":"nonce","required":false,"in":"query","description":"Filter by nonce","schema":{"type":"number"}},{"name":"hashes","required":false,"in":"query","description":"Search by blocks hashes, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"order","required":false,"in":"query","description":"Order blocks (asc/desc) by timestamp","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"withProposerIdentity","required":false,"in":"query","description":"Provide identity information for proposer node","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Block"}}}}}},"tags":["blocks"]}},"/blocks/count":{"get":{"operationId":"BlockController_getBlocksCount","summary":"Blocks count","description":"Returns count of all blocks from all shards","parameters":[{"name":"shard","required":false,"in":"query","description":"Id of the shard the block belongs to","schema":{"type":"number"}},{"name":"proposer","required":false,"in":"query","description":"Filter by proposer","schema":{"type":"string"}},{"name":"validator","required":false,"in":"query","description":"Filter by validator","schema":{"type":"string"}},{"name":"epoch","required":false,"in":"query","description":"Filter by epoch","schema":{"type":"number"}},{"name":"nonce","required":false,"in":"query","description":"Filter by nonce","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["blocks"]}},"/blocks/latest":{"get":{"operationId":"BlockController_getLatestBlock","summary":"Block details","description":"Returns latest block information details","parameters":[{"name":"ttl","required":false,"in":"query","description":"Compute the nonce frequency based on ttl value. If not specified the latest block may be 1h old","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BlockDetailed"}}}},"404":{"description":"Block not found"}},"tags":["blocks"]}},"/blocks/{hash}":{"get":{"operationId":"BlockController_getBlock","summary":"Block details","description":"Returns block information details for a given hash","parameters":[{"name":"hash","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BlockDetailed"}}}},"404":{"description":"Block not found"}},"tags":["blocks"]}},"/collections":{"get":{"operationId":"CollectionController_getNftCollections","summary":"Collections","description":"Returns non-fungible/semi-fungible/meta-esdt collections","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"Search by collection identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT/MetaESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by type (NonFungibleESDTv2/DynamicNonFungibleESDT/DynamicSemiFungibleESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"creator","required":false,"in":"query","description":"Filter collections where the given address has a creator role","deprecated":true,"schema":{"type":"string"}},{"name":"before","required":false,"in":"query","description":"Return all collections before given timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"Return all collections after given timestamp or timestampMs","schema":{"type":"number"}},{"name":"canCreate","required":false,"in":"query","description":"Filter by address with canCreate role","schema":{"type":"string"}},{"name":"canBurn","required":false,"in":"query","description":"Filter by address with canBurn role","schema":{"type":"string"}},{"name":"canAddQuantity","required":false,"in":"query","description":"Filter by address with canAddQuantity role","schema":{"type":"string"}},{"name":"canUpdateAttributes","required":false,"in":"query","description":"Filter by address with canUpdateAttributes role","schema":{"type":"string"}},{"name":"canAddUri","required":false,"in":"query","description":"Filter by address with canAddUri role","schema":{"type":"string"}},{"name":"canTransferRole","required":false,"in":"query","description":"Filter by address with canTransferRole role","schema":{"type":"string"}},{"name":"excludeMetaESDT","required":false,"in":"query","description":"Do not include collections of type \"MetaESDT\" in the response","schema":{"type":"boolean"}},{"name":"sort","required":false,"in":"query","description":"Sorting criteria","schema":{"enum":["timestamp","verifiedAndHolderCount"],"type":"string"}},{"name":"order","required":false,"in":"query","description":"Sorting order (asc / desc)","schema":{"enum":["asc","desc"],"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/NftCollection"}}}}}},"tags":["collections"]}},"/collections/count":{"get":{"operationId":"CollectionController_getCollectionCount","summary":"Collection count","description":"Returns non-fungible/semi-fungible/meta-esdt collection count","parameters":[{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT/MetaESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by type (NonFungibleESDTv2/DynamicNonFungibleESDT/DynamicSemiFungibleESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"creator","required":false,"in":"query","description":"Filter collections where the given address has a creator role","deprecated":true,"schema":{"type":"string"}},{"name":"before","required":false,"in":"query","description":"Return all collections before given timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"Return all collections after given timestamp or timestampMs","schema":{"type":"number"}},{"name":"canCreate","required":false,"in":"query","description":"Filter by address with canCreate role","schema":{"type":"string"}},{"name":"canBurn","required":false,"in":"query","description":"Filter by address with canBurn role","schema":{"type":"string"}},{"name":"canAddQuantity","required":false,"in":"query","description":"Filter by address with canAddQuantity role","schema":{"type":"string"}},{"name":"canUpdateAttributes","required":false,"in":"query","description":"Filter by address with canUpdateAttributes role","schema":{"type":"string"}},{"name":"canAddUri","required":false,"in":"query","description":"Filter by address with canAddUri role","schema":{"type":"string"}},{"name":"canTransferRole","required":false,"in":"query","description":"Filter by address with canTransferRole role","schema":{"type":"string"}},{"name":"excludeMetaESDT","required":false,"in":"query","description":"Do not include collections of type \"MetaESDT\" in the response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["collections"]}},"/collections/{collection}":{"get":{"operationId":"CollectionController_getNftCollection","summary":"Collection details","description":"Returns non-fungible/semi-fungible/meta-esdt collection details","parameters":[{"name":"collection","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftCollectionDetailed"}}}},"404":{"description":"Token collection not found"}},"tags":["collections"]}},"/collections/{collection}/ranks":{"get":{"operationId":"CollectionController_getNftCollectionRanks","summary":"Collection ranks","description":"Returns NFT ranks in case the custom ranking preferred algorithm was set","parameters":[{"name":"collection","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/NftRank"}}}}},"404":{"description":"Token collection not found"}},"tags":["collections"]}},"/collections/{collection}/nfts":{"get":{"operationId":"CollectionController_getNfts","summary":"Collection NFTs","description":"Returns non-fungible/semi-fungible/meta-esdt tokens that belong to a collection","parameters":[{"name":"collection","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"Search by token identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"name","required":false,"in":"query","description":"Get all nfts by name","schema":{"type":"string"}},{"name":"tags","required":false,"in":"query","description":"Filter by one or more comma-separated tags","schema":{"type":"array","items":{"type":"string"}}},{"name":"creator","required":false,"in":"query","description":"Return all NFTs associated with a given creator","schema":{"type":"string"}},{"name":"isWhitelistedStorage","required":false,"in":"query","description":"Return all NFTs that are whitelisted in storage","schema":{"type":"boolean"}},{"name":"hasUris","required":false,"in":"query","description":"Return all NFTs that have one or more uris","schema":{"type":"boolean"}},{"name":"isNsfw","required":false,"in":"query","description":"Filter by NSFW status","schema":{"type":"boolean"}},{"name":"nonceBefore","required":false,"in":"query","description":"Return all NFTs with given nonce before the given number","schema":{"type":"number"}},{"name":"nonceAfter","required":false,"in":"query","description":"Return all NFTs with given nonce after the given number","schema":{"type":"number"}},{"name":"withOwner","required":false,"in":"query","description":"Return owner where type = NonFungibleESDT","schema":{"type":"boolean"}},{"name":"withSupply","required":false,"in":"query","description":"Return supply where type = SemiFungibleESDT","schema":{"type":"boolean"}},{"name":"withAssets","required":false,"in":"query","description":"Return assets information (defaults to true)","schema":{"type":"boolean"}},{"name":"sort","required":false,"in":"query","description":"Sorting criteria","schema":{"enum":["timestamp","rank","nonce"],"type":"string"}},{"name":"order","required":false,"in":"query","description":"Sorting order (asc / desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"traits","required":false,"in":"query","description":"Filter NFTs by traits. Key-value format (<key1>:<value1>;<key2>:<value2>)","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Nft"}}}}},"404":{"description":"Token collection not found"}},"tags":["collections"]}},"/collections/{collection}/nfts/count":{"get":{"operationId":"CollectionController_getNftCount","summary":"Collection NFT count","description":"Returns non-fungible/semi-fungible/meta-esdt token count that belong to a collection","parameters":[{"name":"collection","required":true,"in":"path","schema":{"type":"string"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"Search by token identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"name","required":false,"in":"query","description":"Get all nfts by name","schema":{"type":"string"}},{"name":"tags","required":false,"in":"query","description":"Filter by one or more comma-separated tags","schema":{"type":"array","items":{"type":"string"}}},{"name":"creator","required":false,"in":"query","description":"Return all NFTs associated with a given creator","schema":{"type":"string"}},{"name":"isWhitelistedStorage","required":false,"in":"query","description":"Return all NFTs that are whitelisted in storage","schema":{"type":"boolean"}},{"name":"hasUris","required":false,"in":"query","description":"Return all NFTs that have one or more uris","schema":{"type":"boolean"}},{"name":"nonceBefore","required":false,"in":"query","description":"Return all NFTs with given nonce before the given number","schema":{"type":"number"}},{"name":"nonceAfter","required":false,"in":"query","description":"Return all NFTs with given nonce after the given number","schema":{"type":"number"}},{"name":"traits","required":false,"in":"query","description":"Filter NFTs by traits. Key-value format (<key1>:<value1>;<key2>:<value2>)","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}},"404":{"description":"Token collection not found"}},"tags":["collections"]}},"/collections/{identifier}/accounts":{"get":{"operationId":"CollectionController_getNftAccounts","summary":"Collection accounts","description":"Returns a list of addresses and balances for a specific collection","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CollectionAccount"}}}}},"404":{"description":"Collection not found"}},"tags":["collections"]}},"/collections/{collection}/transactions":{"get":{"operationId":"CollectionController_getCollectionTransactions","summary":"Collection transactions","description":"Returns a list of transactions for a specific collection.","parameters":[{"name":"collection","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Filter by round number","schema":{"type":"number"}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"withScResults","required":false,"in":"query","description":"Return scResults for transactions","schema":{"type":"boolean"}},{"name":"withOperations","required":false,"in":"query","description":"Return operations for transactions","schema":{"type":"boolean"}},{"name":"withLogs","required":false,"in":"query","description":"Return logs for transactions","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transactions","schema":{"type":"boolean"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}},"404":{"description":"Collection not found"}},"tags":["collections"]}},"/collections/{collection}/transactions/count":{"get":{"operationId":"CollectionController_getCollectionTransactionsCount","summary":"NFT transactions count","description":"Returns the total number of transactions for a specific collection","parameters":[{"name":"collection","required":true,"in":"path","schema":{"type":"string"}},{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Filter by round number","schema":{"type":"number"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}},"404":{"description":"Collection not found"}},"tags":["collections"]}},"/collections/{collection}/transfers":{"get":{"operationId":"CollectionController_getCollectionTransfers","summary":"Collection transactions","description":"Returns a list of transactions for a specific collection.","parameters":[{"name":"collection","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Address of the transfer sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Filter by round number","schema":{"type":"number"}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"withScResults","required":false,"in":"query","description":"Return scResults for transactions","schema":{"type":"boolean"}},{"name":"withOperations","required":false,"in":"query","description":"Return operations for transactions","schema":{"type":"boolean"}},{"name":"withLogs","required":false,"in":"query","description":"Return logs for transactions","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}},"404":{"description":"Collection not found"}},"tags":["collections"]}},"/collections/{collection}/transfers/count":{"get":{"operationId":"CollectionController_getCollectionTransfersCount","summary":"NFT transfers count","description":"Returns the total number of transfers for a specific collection","parameters":[{"name":"collection","required":true,"in":"path","schema":{"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transfers by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"sender","required":false,"in":"query","description":"Address of the transfer sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transfer hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transfer (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Filter by round number","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}},"404":{"description":"Collection not found"}},"tags":["collections"]}},"/collections/{identifier}/logo/png":{"get":{"operationId":"CollectionController_getCollectionLogoPng","summary":"Collection png logo","description":"Returns collection PNG logo ","deprecated":true,"parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":""}},"tags":["collections"]}},"/collections/{identifier}/logo/svg":{"get":{"operationId":"CollectionController_getTokenLogoSvg","summary":"Collection png logo","description":"Returns collection SVG logo ","deprecated":true,"parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":""}},"tags":["collections"]}},"/delegation":{"get":{"operationId":"DelegationController_getDelegationDetails","summary":"Delegation statistics","description":"Returns delegation staking contract information","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Delegation"}}}}},"tags":["delegation"]}},"/delegation-legacy":{"get":{"operationId":"DelegationLegacyController_getBlock","summary":"Legacy delegation statistics","description":"Returns legacy delegation contract global information","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DelegationLegacy"}}}}},"tags":["delegation"]}},"/identities":{"get":{"operationId":"IdentitiesController_getIdentities","summary":"Identities","description":"List of all node identities, used to group nodes by the same entity. \"Free-floating\" nodes that do not belong to any identity will also be returned","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"identities","required":false,"in":"query","description":"Filter by comma-separated list of identities","schema":{"type":"array","items":{"type":"string"}}},{"name":"sort","required":false,"in":"query","description":"Sort criteria (comma-separated list: validators,stake,locked)","schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Identity"}}}}}},"tags":["identities"]}},"/identities/{identifier}":{"get":{"operationId":"IdentitiesController_getIdentity","summary":"Identity details","description":"Returns the details of a single identity","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Identity"}}}},"404":{"description":"Identity not found"}},"tags":["identities"]}},"/identities/{identifier}/avatar":{"get":{"operationId":"IdentitiesController_getIdentityAvatar","summary":"Identity avatar","description":"Returns the avatar of a specific identity","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"404":{"description":"Identity not found"}},"tags":["identities"]}},"/keys/{key}/unbond-period":{"get":{"operationId":"KeysController_getKeyUnbondPeriod","summary":"Unbonding period","description":"Returns remaining unbonding period for a given bls key","parameters":[{"name":"key","required":true,"in":"path","description":"The BLS key of the node","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/KeyUnbondPeriod"}}}},"404":{"description":"Key not found"}},"tags":["keys"]}},"/miniblocks":{"get":{"operationId":"MiniBlockController_getMiniBlocks","summary":"Miniblocks details","description":"Returns all distinct miniblocks","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of miniblocks hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"type","required":false,"in":"query","description":"Sorting criteria by type","schema":{"enum":["SmartContractResultBlock","TxBlock","InvalidBlock"],"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MiniBlockDetailed"}}}}}},"tags":["miniblocks"]}},"/miniblocks/{miniBlockHash}":{"get":{"operationId":"MiniBlockController_getBlock","summary":"Miniblock details","description":"Returns miniblock details for a given miniBlockHash.","parameters":[{"name":"miniBlockHash","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MiniBlockDetailed"}}}},"404":{"description":"Miniblock not found"}},"tags":["miniblocks"]}},"/constants":{"get":{"operationId":"NetworkController_getConstants","summary":"Network constants","description":"Returns network-specific constants that can be used to automatically configure dapps","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NetworkConstants"}}}}},"tags":["network"]}},"/economics":{"get":{"operationId":"NetworkController_getEconomics","summary":"Network economics","description":"Returns general economics information","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Economics"}}}}},"tags":["network"]}},"/stats":{"get":{"operationId":"NetworkController_getStats","summary":"Network statistics","description":"Returns general network statistics","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Stats"}}}}},"tags":["network"]}},"/about":{"get":{"operationId":"NetworkController_getAbout","summary":"About","description":"Returns general information about API deployment","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/About"}}}}},"tags":["network"]}},"/nfts":{"get":{"operationId":"NftController_getNfts","summary":"Global NFTs","description":"Returns a list of Non-Fungible / Semi-Fungible / MetaESDT tokens available on blockchain","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"Search by token identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by subType","schema":{"type":"array","items":{"type":"string"}}},{"name":"collection","required":false,"in":"query","description":"Get all tokens by token collection","schema":{"type":"string"}},{"name":"collections","required":false,"in":"query","description":"Get all tokens by token collections, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"name","required":false,"in":"query","description":"Get all nfts by name","schema":{"type":"string"}},{"name":"tags","required":false,"in":"query","description":"Filter by one or more comma-separated tags","schema":{"type":"array","items":{"type":"string"}}},{"name":"creator","required":false,"in":"query","description":"Return all NFTs associated with a given creator","schema":{"type":"string"}},{"name":"isWhitelistedStorage","required":false,"in":"query","description":"Return all NFTs that are whitelisted in storage","schema":{"type":"boolean"}},{"name":"hasUris","required":false,"in":"query","description":"Return all NFTs that have one or more uris","schema":{"type":"boolean"}},{"name":"isNsfw","required":false,"in":"query","description":"Filter by NSFW status","schema":{"type":"boolean"}},{"name":"isScam","required":false,"in":"query","description":"Filter by scam status","schema":{"type":"boolean"}},{"name":"scamType","required":false,"in":"query","description":"Filter by type (scam/potentialScam)","schema":{"type":"string"}},{"name":"before","required":false,"in":"query","description":"Return all NFTs before given timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"Return all NFTs after given timestamp or timestampMs","schema":{"type":"number"}},{"name":"withOwner","required":false,"in":"query","description":"Return owner where type = NonFungibleESDT","schema":{"type":"boolean"}},{"name":"withSupply","required":false,"in":"query","description":"Return supply where type = SemiFungibleESDT","schema":{"type":"boolean"}},{"name":"traits","required":false,"in":"query","description":"Filter NFTs by traits. Key-value format (<key1>:<value1>;<key2>:<value2>)","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Nft"}}}}}},"tags":["nfts"]}},"/nfts/count":{"get":{"operationId":"NftController_getNftCount","summary":"Global NFT count","description":"Returns the total number of Non-Fungible / Semi-Fungible / MetaESDT tokens","parameters":[{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"Search by token identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"type","required":false,"in":"query","description":"Filter by type (NonFungibleESDT/SemiFungibleESDT/MetaESDT)","schema":{"type":"array","items":{"type":"string"}}},{"name":"subType","required":false,"in":"query","description":"Filter by subType","schema":{"type":"array","items":{"type":"string"}}},{"name":"collection","required":false,"in":"query","description":"Get all tokens by token collection","schema":{"type":"string"}},{"name":"collections","required":false,"in":"query","description":"Get all tokens by token collections, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"name","required":false,"in":"query","description":"Get all nfts by name","schema":{"type":"string"}},{"name":"tags","required":false,"in":"query","description":"Filter by one or more comma-separated tags","schema":{"type":"array","items":{"type":"string"}}},{"name":"creator","required":false,"in":"query","description":"Return all NFTs associated with a given creator","schema":{"type":"string"}},{"name":"isWhitelistedStorage","required":false,"in":"query","description":"Return all NFTs that are whitelisted in storage","schema":{"type":"boolean"}},{"name":"hasUris","required":false,"in":"query","description":"Return all NFTs that have one or more uris","schema":{"type":"boolean"}},{"name":"isNsfw","required":false,"in":"query","description":"Filter by NSFW status","schema":{"type":"boolean"}},{"name":"before","required":false,"in":"query","description":"Return all NFTs before given timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"Return all NFTs after given timestamp or timestampMs","schema":{"type":"number"}},{"name":"isScam","required":false,"in":"query","description":"Filter by scam status","schema":{"type":"boolean"}},{"name":"scamType","required":false,"in":"query","description":"Filter by type (scam/potentialScam)","schema":{"type":"string"}},{"name":"traits","required":false,"in":"query","description":"Filter NFTs by traits. Key-value format (<key1>:<value1>;<key2>:<value2>)","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["nfts"]}},"/nfts/{identifier}":{"get":{"operationId":"NftController_getNft","summary":"NFT details","description":"Returns the details of an Non-Fungible / Semi-Fungible / MetaESDT token for a given identifier","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Nft"}}}},"404":{"description":"Token not found"}},"tags":["nfts"]}},"/nfts/{identifier}/thumbnail":{"get":{"operationId":"NftController_resolveNftThumbnail","summary":"NFT thumbnail","description":"Returns nft thumbnail","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Nft"}}}},"404":{"description":"NFT thumbnail not found"}},"tags":["nfts"]}},"/nfts/{identifier}/supply":{"get":{"operationId":"NftController_getNftSupply","summary":"NFT supply","description":"Returns Non-Fungible / Semi-Fungible / MetaESDT token supply details","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NftSupply"}}}},"404":{"description":"Token not found"}},"tags":["nfts"]}},"/nfts/{identifier}/accounts":{"get":{"operationId":"NftController_getNftAccounts","summary":"NFT accounts","description":"Returns a list of addresses that hold balances for a specific Non-Fungible / Semi-Fungible / MetaESDT token","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/NftOwner"}}}}},"404":{"description":"Token not found"}},"tags":["nfts"]}},"/nfts/{identifier}/accounts/count":{"get":{"operationId":"NftController_getNftAccountsCount","summary":"NFT accounts count","description":"Returns number of addresses that hold balances for a specific Non-Fungible / Semi-Fungible / MetaESDT token","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["nfts"]}},"/nfts/{identifier}/transactions":{"get":{"operationId":"NftController_getNftTransactions","summary":"NFT transactions","description":"Returns a list of transactions for a NonFungibleESDT or SemiFungibleESDT.","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"withScResults","required":false,"in":"query","description":"Return scResults for transactions","schema":{"type":"boolean"}},{"name":"withOperations","required":false,"in":"query","description":"Return operations for transactions","schema":{"type":"boolean"}},{"name":"withLogs","required":false,"in":"query","description":"Return logs for transactions","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transactions","schema":{"type":"boolean"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}},"404":{"description":"Token not found"}},"tags":["nfts"]}},"/nfts/{identifier}/transactions/count":{"get":{"operationId":"NftController_getNftTransactionsCount","summary":"NFT transactions count","description":"Returns the total number of transactions for a specific NonFungibleESDT or SemiFungibleESDT","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}},"404":{"description":"Token not found"}},"tags":["nfts"]}},"/nfts/{identifier}/transfers":{"get":{"operationId":"NftController_getNftTransfers","summary":"NFT transfers","description":"Returns a list of transfers for a NonFungibleESDT or SemiFungibleESDT.","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Address of the transfer sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transfer hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transfer (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transfers by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"withScResults","required":false,"in":"query","description":"Return scResults for transfers","schema":{"type":"boolean"}},{"name":"withOperations","required":false,"in":"query","description":"Return operations for transfers","schema":{"type":"boolean"}},{"name":"withLogs","required":false,"in":"query","description":"Return logs for transfers","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transfers","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}},"404":{"description":"Token not found"}},"tags":["nfts"]}},"/nfts/{identifier}/transfers/count":{"get":{"operationId":"NftController_getNftTransfersCount","summary":"NFT transfers count","description":"Returns the total number of transfers for a specific NonFungibleESDT or SemiFungibleESDT","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"sender","required":false,"in":"query","description":"Address of the transfers sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transfers hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transfers (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}},"404":{"description":"Token not found"}},"tags":["nfts"]}},"/tags":{"get":{"operationId":"TagController_getTags","summary":"NFT Tags","description":"Returns all distinct NFT tags","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"search","required":false,"in":"query","description":"Search by tag name","schema":{}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Tag"}}}}}},"tags":["tags"]}},"/tags/count":{"get":{"operationId":"TagController_getTagCount","summary":"Total number of NFT Tags","description":"Returns total number of distinct NFT Tags available on blockchain","parameters":[{"name":"search","required":false,"in":"query","description":"Search by tag name","schema":{}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["tags"]}},"/tags/{tag}":{"get":{"operationId":"TagController_getTagDetails","summary":"Tag details","description":"Return NFT tag details","parameters":[{"name":"tag","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Tag"}}}},"404":{"description":"Nft tag not found"}},"tags":["tags"]}},"/nodes":{"get":{"operationId":"NodeController_getNodes","summary":"Nodes","description":"Returns a list of nodes of type observer or validator","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"search","required":false,"in":"query","description":"Search by name, bls or version","schema":{"type":"string"}},{"name":"keys","required":false,"in":"query","description":"Search by multiple keys, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"online","required":false,"in":"query","description":"Whether node is online or not","schema":{"type":"boolean"}},{"name":"type","required":false,"in":"query","description":"Type of node","schema":{"enum":["observer","validator"],"type":"string"}},{"name":"status","required":false,"in":"query","description":"Node status","schema":{"enum":["new","unknown","waiting","eligible","jailed","queued","leaving","inactive","auction"],"type":"string"}},{"name":"shard","required":false,"in":"query","description":"Node shard","schema":{"type":"number"}},{"name":"issues","required":false,"in":"query","description":"Whether node has issues or not","schema":{"type":"boolean"}},{"name":"identity","required":false,"in":"query","description":"Node identity","schema":{"type":"string"}},{"name":"provider","required":false,"in":"query","description":"Node provider","schema":{"type":"string"}},{"name":"owner","required":false,"in":"query","description":"Node owner","schema":{"type":"string"}},{"name":"auctioned","required":false,"in":"query","description":"Whether node is auctioned or not","schema":{"type":"boolean"}},{"name":"fullHistory","required":false,"in":"query","description":"Whether node is of type 'Full History' or not","schema":{"type":"boolean"}},{"name":"sort","required":false,"in":"query","description":"Sorting criteria","schema":{"enum":["name","version","tempRating","leaderSuccess","leaderFailure","validatorSuccess","validatorFailure","validatorIgnoredSignatures","position"],"type":"string"}},{"name":"order","required":false,"in":"query","description":"Sorting order (asc / desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"withIdentityInfo","required":false,"in":"query","description":"Returns identity data for nodes","schema":{"type":"boolean"}},{"name":"isQualified","required":false,"in":"query","description":"Whether node is qualified or not","schema":{"type":"boolean"}},{"name":"isAuctioned","required":false,"in":"query","description":"Whether node is auctioned or not","schema":{"type":"boolean"}},{"name":"isAuctionDangerZone","required":false,"in":"query","description":"Whether node is in danger zone or not","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Node"}}}}}},"tags":["nodes"]}},"/nodes/versions":{"get":{"operationId":"NodeController_getNodeVersions","summary":"Node versions","description":"Returns breakdown of node versions for validator nodes","parameters":[],"responses":{"200":{"description":""}},"tags":["nodes"]}},"/nodes/count":{"get":{"operationId":"NodeController_getNodeCount","summary":"Nodes count","description":"Returns number of all observer/validator nodes available on blockchain","parameters":[{"name":"search","required":false,"in":"query","description":"Search by name, bls or version","schema":{"type":"string"}},{"name":"online","required":false,"in":"query","description":"Whether node is online or not","schema":{"type":"boolean"}},{"name":"type","required":false,"in":"query","description":"Type of node","schema":{"enum":["observer","validator"],"type":"string"}},{"name":"status","required":false,"in":"query","description":"Node status","schema":{"enum":["new","unknown","waiting","eligible","jailed","queued","leaving","inactive","auction"],"type":"string"}},{"name":"shard","required":false,"in":"query","description":"Node shard","schema":{"type":"number"}},{"name":"issues","required":false,"in":"query","description":"Whether node has issues or not","schema":{"type":"boolean"}},{"name":"identity","required":false,"in":"query","description":"Node identity","schema":{"type":"string"}},{"name":"provider","required":false,"in":"query","description":"Node provider","schema":{"type":"string"}},{"name":"owner","required":false,"in":"query","description":"Node owner","schema":{"type":"string"}},{"name":"auctioned","required":false,"in":"query","description":"Whether node is auctioned or not","schema":{"type":"boolean"}},{"name":"fullHistory","required":false,"in":"query","description":"Whether node is of type 'Full History' or not","schema":{"type":"boolean"}},{"name":"sort","required":false,"in":"query","description":"Sorting criteria","schema":{"enum":["name","version","tempRating","leaderSuccess","leaderFailure","validatorSuccess","validatorFailure","validatorIgnoredSignatures","position"],"type":"string"}},{"name":"order","required":false,"in":"query","description":"Sorting order (asc / desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"isQualified","required":false,"in":"query","description":"Whether node is qualified or not","schema":{"type":"boolean"}},{"name":"isAuctioned","required":false,"in":"query","description":"Whether node is auctioned or not","schema":{"type":"boolean"}},{"name":"isAuctionDangerZone","required":false,"in":"query","description":"Whether node is in danger zone or not","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["nodes"]}},"/nodes/auctions":{"get":{"operationId":"NodeController_getNodesAuctions","summary":"Nodes Auctions","description":"Returns a list of nodes in auction","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sort","required":false,"in":"query","description":"Sorting criteria","schema":{"enum":["auctionValidators","droppedValidators","qualifiedAuctionValidators","qualifiedStake","dangerZoneValidators"],"type":"string"}},{"name":"order","required":false,"in":"query","description":"Sorting order (asc / desc)","schema":{"enum":["asc","desc"],"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/NodeAuction"}}}}}},"tags":["nodes"]}},"/nodes/{bls}":{"get":{"operationId":"NodeController_getNode","summary":"Node","description":"Returns details about a specific node for a given bls key","parameters":[{"name":"bls","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Node"}}}},"404":{"description":"Node not found"}},"tags":["nodes"]}},"/providers":{"get":{"operationId":"ProviderController_getProviders","summary":"Providers","description":"Returns a list of all providers","parameters":[{"name":"identity","required":false,"in":"query","description":"Search by identity","schema":{"type":"string"}},{"name":"owner","required":false,"in":"query","description":"Search by owner","schema":{"type":"string"}},{"name":"providers","required":false,"in":"query","description":"Search by multiple providers address","schema":{"type":"array","items":{"type":"string"}}},{"name":"withIdentityInfo","required":false,"in":"query","description":"Returns identity data for providers","schema":{"type":"boolean"}},{"name":"withLatestInfo","required":false,"in":"query","description":"Returns providers details with latest info","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Provider"}}}}}},"tags":["providers"]}},"/providers/{address}/accounts":{"get":{"operationId":"ProviderController_getProviderAccounts","summary":"Provider","description":"Returns provider delegators accounts for a given provider address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Provider"}}}},"404":{"description":"Provider not found"}},"tags":["providers"]}},"/providers/{address}/accounts/count":{"get":{"operationId":"ProviderController_getProviderAccountsCount","summary":"Provider","description":"Returns provider total number of delegators","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Provider"}}}},"404":{"description":"Provider not found"}},"tags":["providers"]}},"/providers/{address}":{"get":{"operationId":"ProviderController_getProvider","summary":"Provider","description":"Returns provider details for a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Provider"}}}},"404":{"description":"Provider not found"}},"tags":["providers"]}},"/providers/{address}/avatar":{"get":{"operationId":"ProviderController_getIdentityAvatar","summary":"Provider avatar","description":"Returns the avatar for a specific provider address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"404":{"description":"Provider avatar not found"}},"tags":["providers"]}},"/rounds":{"get":{"operationId":"RoundController_getRounds","summary":"Rounds","description":"Returns a list of all rounds available on blockchain","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"validator","required":false,"in":"query","description":"Filter by validator","schema":{"type":"string"}},{"name":"condition","required":false,"in":"query","description":"Filter by condition","schema":{"type":"string"}},{"name":"shard","required":false,"in":"query","description":"Filter by shard identifier","schema":{"type":"number"}},{"name":"epoch","required":false,"in":"query","description":"Filter by epoch number","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Round"}}}}}},"tags":["rounds"]}},"/rounds/count":{"get":{"operationId":"RoundController_getRoundCount","summary":"Rounds count","description":"Returns total number of rounds","parameters":[{"name":"validator","required":false,"in":"query","description":"Filter by validator","schema":{"type":"string"}},{"name":"condition","required":false,"in":"query","description":"Filter by condition","schema":{"type":"string"}},{"name":"shard","required":false,"in":"query","description":"Filter by shard identifier","schema":{"type":"number"}},{"name":"epoch","required":false,"in":"query","description":"Filter by epoch number","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["rounds"]}},"/rounds/{shard}/{round}":{"get":{"operationId":"RoundController_getRound","summary":"Round","description":"Returns details of a given round from a specific shard","parameters":[{"name":"shard","required":true,"in":"path","schema":{"type":"number"}},{"name":"round","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RoundDetailed"}}}},"404":{"description":"Round not found"}},"tags":["rounds"]}},"/results":{"get":{"operationId":"SmartContractResultController_getScResults","summary":"Smart contract results","description":"Returns all smart contract results available on the blockchain","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"The hash of the parent miniBlock","schema":{"type":"string"}},{"name":"originalTxHashes","required":false,"in":"query","description":"Original transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"sender","required":false,"in":"query","description":"Sender address","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Receiver address","schema":{"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter results by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"withActionTransferValue","required":false,"in":"query","description":"Returns value in USD and EGLD for transferred tokens within the action attribute","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SmartContractResult"}}}}}},"tags":["results"]}},"/results/count":{"get":{"operationId":"SmartContractResultController_getScResultsCount","summary":"Smart contracts count","description":"Returns total number of smart contracts results","parameters":[{"name":"sender","required":false,"in":"query","description":"Sender address","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Receiver address","schema":{"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter results by function name","schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["results"]}},"/results/{scHash}":{"get":{"operationId":"SmartContractResultController_getScResult","summary":"Smart contract results details","description":"Returns smart contract details for a given hash","parameters":[{"name":"scHash","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SmartContractResult"}}}},"404":{"description":"Smart contract result not found"}},"tags":["results"]}},"/shards":{"get":{"operationId":"ShardController_getShards","summary":"Shards","description":"Returns all available shards","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Shard"}}}}}},"tags":["shards"]}},"/stake":{"get":{"operationId":"StakeController_getGlobalStake","summary":"Stake","description":"Returns general staking information","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GlobalStake"}}}}},"tags":["stake"]}},"/tokens":{"get":{"operationId":"TokenController_getTokens","summary":"Tokens","description":"Returns all tokens available on the blockchain","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"type","required":false,"in":"query","description":"Token type","schema":{"enum":["FungibleESDT","NonFungibleESDT","SemiFungibleESDT","MetaESDT"],"type":"string"}},{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"name","required":false,"in":"query","description":"Search by token name","schema":{"type":"string"}},{"name":"identifier","required":false,"in":"query","description":"Search by token identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"Search by multiple token identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"sort","required":false,"in":"query","description":"Sorting criteria","schema":{"enum":["accounts","transactions","price","marketCap"],"type":"string"}},{"name":"order","required":false,"in":"query","description":"Sorting order (asc / desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"includeMetaESDT","required":false,"in":"query","description":"Include MetaESDTs in response","schema":{"type":"boolean"}},{"name":"mexPairType","required":false,"in":"query","description":"Token Mex Pair","schema":{"type":"array","items":{"type":"string"}}},{"name":"priceSource","required":false,"in":"query","description":"Token Price Source","schema":{"enum":["dataApi","customUrl"],"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TokenDetailed"}}}}}},"tags":["tokens"]}},"/tokens/count":{"get":{"operationId":"TokenController_getTokenCount","summary":"Tokens count","description":"Return total number of tokens available on blockchain","parameters":[{"name":"search","required":false,"in":"query","description":"Search by collection identifier","schema":{"type":"string"}},{"name":"name","required":false,"in":"query","description":"Search by token name","schema":{"type":"string"}},{"name":"type","required":false,"in":"query","description":"Token type","schema":{"enum":["FungibleESDT","NonFungibleESDT","SemiFungibleESDT","MetaESDT"],"type":"string"}},{"name":"identifier","required":false,"in":"query","description":"Search by token identifier","schema":{"type":"string"}},{"name":"identifiers","required":false,"in":"query","description":"Search by multiple token identifiers, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"includeMetaESDT","required":false,"in":"query","description":"Include MetaESDTs in response","schema":{"type":"boolean"}},{"name":"mexPairType","required":false,"in":"query","description":"Token Mex Pair","schema":{"type":"array","items":{"type":"string"}}},{"name":"priceSource","required":false,"in":"query","description":"Token Price Source","schema":{"enum":["dataApi","customUrl"],"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["tokens"]}},"/tokens/{identifier}":{"get":{"operationId":"TokenController_getToken","summary":"Token","description":"Returns token details based on a specific token identifier","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"denominated","required":false,"in":"query","description":"Return results denominated","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TokenDetailed"}}}},"404":{"description":"Token not found"}},"tags":["tokens"]}},"/tokens/{identifier}/supply":{"get":{"operationId":"TokenController_getTokenSupply","summary":"Token supply","description":"Returns general supply information for a specific token","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"denominated","required":false,"in":"query","description":"Return results denominated","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EsdtSupply"}}}},"404":{"description":"Token not found"}},"tags":["tokens"]}},"/tokens/{identifier}/accounts":{"get":{"operationId":"TokenController_getTokenAccounts","summary":"Token accounts","description":"Returns a list of accounts that hold a specific token","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TokenAccount"}}}}},"404":{"description":"Token not found"}},"tags":["tokens"]}},"/tokens/{identifier}/accounts/count":{"get":{"operationId":"TokenController_getTokenAccountsCount","summary":"Token accounts count","description":"Returns the total number of accounts that hold a specific token","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}},"404":{"description":"Token not found"}},"tags":["tokens"]}},"/tokens/{identifier}/transactions":{"get":{"operationId":"TokenController_getTokenTransactions","summary":"Token transactions","description":"Returns a list of transactions for a specific token.","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Filter by round number","schema":{"type":"number"}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"fields","required":true,"in":"query","schema":{"type":"array","items":{"type":"string"}}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withScResults","required":false,"in":"query","description":"Return scResults for transactions","schema":{"type":"boolean"}},{"name":"withOperations","required":false,"in":"query","description":"Return operations for transactions","schema":{"type":"boolean"}},{"name":"withLogs","required":false,"in":"query","description":"Return logs for transactions","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transactions","schema":{"type":"boolean"}},{"name":"withBlockInfo","required":false,"in":"query","description":"Returns sender / receiver block details","schema":{"type":"boolean"}},{"name":"withActionTransferValue","required":false,"in":"query","description":"Returns value in USD and EGLD for transferred tokens within the action attribute","schema":{"type":"boolean"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}},"404":{"description":"Token not found"}},"tags":["tokens"]}},"/tokens/{identifier}/transactions/count":{"get":{"operationId":"TokenController_getTokenTransactionsCount","summary":"Token transactions count","description":"Returns the total number of transactions for a specific token","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Filter by round number","schema":{"type":"number"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}},"404":{"description":"Token not found"}},"tags":["tokens"]}},"/tokens/{identifier}/roles":{"get":{"operationId":"TokenController_getTokenRoles","summary":"Token roles","description":"Returns a list of accounts that can perform various actions on a specific token","deprecated":true,"parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TokenRoles"}}}}},"404":{"description":"Token not found"}},"tags":["tokens"]}},"/tokens/{identifier}/roles/{address}":{"get":{"operationId":"TokenController_getTokenRolesForAddress","summary":"Token address roles","description":"Returns roles details for a specific address of a given token","deprecated":true,"parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TokenRoles"}}}},"404":{"description":"Token not found"}},"tags":["tokens"]}},"/tokens/{identifier}/transfers":{"get":{"operationId":"TokenController_getTokenTransfers","summary":"Token value transfers","description":"Returns both transfers triggerred by a user account (type = Transaction), as well as transfers triggerred by smart contracts (type = SmartContractResult), thus providing a full picture of all in/out value transfers for a given account","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Address of the transfer sender","schema":{"type":"array","items":{"type":"string"}}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transfer hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transfers by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Filter by round number","schema":{"type":"number"}},{"name":"fields","required":false,"in":"query","description":"List of fields to filter by","style":"form","explode":false,"schema":{"type":"array","items":{"type":"string"}}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transactions","schema":{"type":"boolean"}},{"name":"withBlockInfo","required":false,"in":"query","description":"Returns sender / receiver block details","schema":{"type":"boolean"}},{"name":"withActionTransferValue","required":false,"in":"query","description":"Returns value in USD and EGLD for transferred tokens within the action attribute","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}}},"tags":["tokens"]}},"/tokens/{identifier}/transfers/count":{"get":{"operationId":"TokenController_getTokenTransfersCount","summary":"Account transfer count","description":"Return total count of transfers triggerred by a user account (type = Transaction), as well as transfers triggerred by smart contracts (type = SmartContractResult)","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}},{"name":"sender","required":false,"in":"query","description":"Address of the transfer sender","schema":{"type":"array","items":{"type":"string"}}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transfer hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transfers by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Filter by round number","schema":{"type":"number"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["tokens"]}},"/tokens/{identifier}/logo/png":{"get":{"operationId":"TokenController_getTokenLogoPng","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":""}},"tags":["tokens"]}},"/tokens/{identifier}/logo/svg":{"get":{"operationId":"TokenController_getTokenLogoSvg","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":""}},"tags":["tokens"]}},"/transactions":{"get":{"operationId":"TransactionController_getTransactions","summary":"Transaction list","description":"Returns a list of transactions available on the blockchain.","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"relayer","required":false,"in":"query","description":"Search by a relayer address","schema":{"type":"string"}},{"name":"token","required":false,"in":"query","description":"Identifier of the token","schema":{"type":"string"}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"condition","required":false,"in":"query","description":"Condition for elastic search queries","deprecated":true,"schema":{"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Round number","schema":{"type":"number"}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"fields","required":false,"in":"query","description":"List of fields to filter by","style":"form","explode":false,"schema":{"type":"array","items":{"type":"string"}}},{"name":"withScResults","required":false,"in":"query","description":"Return results for transactions. When \"withScResults\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withOperations","required":false,"in":"query","description":"Return operations for transactions. When \"withOperations\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withLogs","required":false,"in":"query","description":"Return logs for transactions. When \"withLogs\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transactions","schema":{"type":"boolean"}},{"name":"withBlockInfo","required":false,"in":"query","description":"Returns sender / receiver block details","schema":{"type":"boolean"}},{"name":"isRelayed","required":false,"in":"query","description":"Returns relayed transactions details","schema":{"type":"boolean"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withActionTransferValue","required":false,"in":"query","description":"Returns value in USD and EGLD for transferred tokens within the action attribute","schema":{"type":"boolean"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}}},"tags":["transactions"]},"post":{"operationId":"TransactionController_createTransaction","summary":"Send transaction","description":"Posts a signed transaction on the blockchain","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TransactionCreate"}}}},"responses":{"201":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TransactionSendResult"}}}}},"tags":["transactions"]}},"/transactions/count":{"get":{"operationId":"TransactionController_getTransactionCount","summary":"Transactions count","description":"Returns the total number of transactions","parameters":[{"name":"sender","required":false,"in":"query","description":"Address of the transaction sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"token","required":false,"in":"query","description":"Identifier of the token","schema":{"type":"string"}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transaction hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"condition","required":false,"in":"query","description":"Condition for elastic search queries","deprecated":true,"schema":{"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Round number","schema":{"type":"number"}},{"name":"relayer","required":false,"in":"query","description":"Filter by a relayer address","schema":{"type":"string"}},{"name":"isRelayed","required":false,"in":"query","description":"Returns relayed transactions details","schema":{"type":"boolean"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withRelayedScresults","required":false,"in":"query","description":"If set to true, will include smart contract results that resemble relayed transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["transactions"]}},"/transactions/{txHash}":{"get":{"operationId":"TransactionController_getTransaction","summary":"Transaction details","description":"Return transaction details for a given transaction hash","parameters":[{"name":"txHash","required":true,"in":"path","schema":{"type":"string"}},{"name":"fields","required":false,"in":"query","description":"List of fields to filter by","style":"form","explode":false,"schema":{"type":"array","items":{"type":"string"}}},{"name":"withActionTransferValue","required":false,"in":"query","description":"Returns value in USD and EGLD for transferred tokens within the action attribute","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TransactionDetailed"}}}},"404":{"description":"Transaction not found"}},"tags":["transactions"]}},"/transactions/decode":{"post":{"operationId":"TransactionController_decodeTransaction","summary":"Decode transaction","description":"Decodes transaction action, given a minimum set of transaction details","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TransactionDecodeDto"}}}},"responses":{"201":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TransactionDecodeDto"}}}}},"tags":["transactions"]}},"/transactions/ppu/{shardId}":{"get":{"operationId":"TransactionController_getPpuByShardId","summary":"Price per unit by shard","description":"Returns price per unit metadata for a specific shard","parameters":[{"name":"shardId","required":true,"in":"path","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PpuMetadata"}}}},"404":{"description":"Price per unit data for shard not found"}},"tags":["transactions"]}},"/usernames/{username}":{"get":{"operationId":"UsernameController_getUsernameDetails","summary":"Account details by username","description":"Returns account details for a given username. Performs a redirect on the proper account address","parameters":[{"name":"username","required":true,"in":"path","schema":{"type":"string"}},{"name":"withGuardianInfo","required":true,"in":"query","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AccountUsername"}}}},"404":{"description":"Username not found"}},"tags":["usernames"]}},"/query":{"post":{"operationId":"VmQueryController_query","summary":"VM query","description":"Performs a vm query on a given smart contract and returns its results","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VmQueryRequest"}}}},"responses":{"201":{"description":""}},"tags":["query"]}},"/waiting-list":{"get":{"operationId":"WaitingListController_getWaitingList","summary":"Waiting list","description":"Returns node waiting list","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WaitingList"}}}}}},"tags":["waiting-list"]}},"/waiting-list/count":{"get":{"operationId":"WaitingListController_getWaitingListCount","summary":"Waiting list count","description":"Returns count of node waiting list","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["waiting-list"]}},"/hello":{"get":{"operationId":"HealthCheckController_getHello","summary":"Health check","description":"Returns 'hello', used for performing health checks","parameters":[],"responses":{"200":{"description":""}}}},"/dapp/config":{"get":{"operationId":"DappConfigController_getDappConfiguration","summary":"Dapp configuration","description":"Returns configuration used in dapps","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DappConfig"}}}},"404":{"description":"Network configuration not found"}},"tags":["dapp/config"]}},"/websocket/config":{"get":{"operationId":"WebsocketController_getConfiguration","summary":"Websocket configuration","description":"Returns config used for accessing websocket on the same cluster","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WebsocketConfig"}}}},"404":{"description":"Websocket configuration not found"}},"tags":["websocket"]}},"/transfers":{"get":{"operationId":"TransferController_getAccountTransfers","summary":"Value transfers","description":"Returns both transfers triggerred by a user account (type = Transaction), as well as transfers triggerred by smart contracts (type = SmartContractResult), thus providing a full picture of all in/out value transfers for a given account","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"sender","required":false,"in":"query","description":"Search by multiple sender addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"token","required":false,"in":"query","description":"Identifier of the token","schema":{"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transfers by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transfer hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Round number","schema":{"type":"number"}},{"name":"order","required":false,"in":"query","description":"Sort order (asc/desc)","schema":{"enum":["asc","desc"],"type":"string"}},{"name":"fields","required":false,"in":"query","description":"List of fields to filter by","style":"form","explode":false,"schema":{"type":"array","items":{"type":"string"}}},{"name":"relayer","required":false,"in":"query","description":"Filter by relayer address","schema":{"type":"string"}},{"name":"isRelayed","required":false,"in":"query","description":"Returns relayed transactions details","schema":{"type":"boolean"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withScamInfo","required":false,"in":"query","description":"Returns scam information","schema":{"type":"boolean"}},{"name":"withUsername","required":false,"in":"query","description":"Integrates username in assets for all addresses present in the transactions","schema":{"type":"boolean"}},{"name":"withBlockInfo","required":false,"in":"query","description":"Returns sender / receiver block details","schema":{"type":"boolean"}},{"name":"withLogs","required":false,"in":"query","description":"Return logs for transfers. When \"withLogs\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withOperations","required":false,"in":"query","description":"Return operations for transfers. When \"withOperations\" parameter is applied, complexity estimation is 200","schema":{"type":"boolean"}},{"name":"withActionTransferValue","required":false,"in":"query","description":"Returns value in USD and EGLD for transferred tokens within the action attribute","schema":{"type":"boolean"}},{"name":"withTxsOrder","required":false,"in":"query","description":"Sort transactions by execution order from block","schema":{"type":"boolean"}},{"name":"withRefunds","required":false,"in":"query","description":"Include refund transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Transaction"}}}}}},"tags":["transfers"]}},"/transfers/count":{"get":{"operationId":"TransferController_getAccountTransfersCount","summary":"Account transfer count","description":"Return total count of tranfers triggerred by a user account (type = Transaction), as well as transfers triggerred by smart contracts (type = SmartContractResult)","parameters":[{"name":"sender","required":false,"in":"query","description":"Search by multiple sender addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"receiver","required":false,"in":"query","description":"Search by multiple receiver addresses, comma-separated","schema":{"type":"array","items":{"type":"string"}}},{"name":"token","required":false,"in":"query","description":"Identifier of the token","schema":{"type":"string"}},{"name":"senderShard","required":false,"in":"query","description":"Id of the shard the sender address belongs to","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"Id of the shard the receiver address belongs to","schema":{"type":"number"}},{"name":"miniBlockHash","required":false,"in":"query","description":"Filter by miniblock hash","schema":{"type":"string"}},{"name":"hashes","required":false,"in":"query","description":"Filter by a comma-separated list of transfer hashes","schema":{"type":"array","items":{"type":"string"}}},{"name":"status","required":false,"in":"query","description":"Status of the transaction (success / pending / invalid / fail)","schema":{"enum":["success","pending","invalid","fail"],"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transfers by function name","schema":{"type":"array","items":{"type":"string"}}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"round","required":false,"in":"query","description":"Round number","schema":{"type":"number"}},{"name":"relayer","required":false,"in":"query","description":"Filter by the relayer address","schema":{"type":"string"}},{"name":"isRelayed","required":false,"in":"query","description":"Returns relayed transactions details","schema":{"type":"boolean"}},{"name":"isScCall","required":false,"in":"query","description":"Returns sc call transactions details","schema":{"type":"boolean"}},{"name":"withRefunds","required":false,"in":"query","description":"Include refund transactions","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["transfers"]}},"/nfts/process":{"post":{"operationId":"ProcessNftsPublicController_generateThumbnails","summary":"Trigger NFT media/metadata reprocessing","description":"Triggers NFT media/metadata reprocessing for collection owners","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProcessNftRequest"}}}},"responses":{"201":{"description":"NFT media/metadata reprocessing has been triggered"}}}},"/batch":{"post":{"operationId":"TransactionsBatchController_startTransactionBatch","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TransactionBatchSimplified"}}}},"responses":{"201":{"description":""}}}},"/batch/{address}/{id}":{"get":{"operationId":"TransactionsBatchController_getTransactionBatch","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"id","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":""}}}},"/batch/{address}":{"get":{"operationId":"TransactionsBatchController_getTransactionBatches","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":""}}}},"/applications":{"get":{"operationId":"ApplicationController_getApplications","summary":"Applications details","description":"Returns all smart contracts available on blockchain. By default it returns 25 smart contracts","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"before","required":false,"in":"query","description":"Before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp or timestampMs","schema":{"type":"number"}},{"name":"withTxCount","required":false,"in":"query","description":"Include transaction count","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Application"}}}}}},"tags":["applications"]}},"/applications/count":{"get":{"operationId":"ApplicationController_getApplicationsCount","summary":"Applications count","description":"Returns total number of smart contracts","parameters":[{"name":"before","required":false,"in":"query","description":"Before timestamp","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"After timestamp","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["applications"]}},"/applications/{address}":{"get":{"operationId":"ApplicationController_getApplication","summary":"Application details","description":"Returns details of a smart contract","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}}},"tags":["applications"]}},"/events":{"get":{"operationId":"EventsController_getEvents","summary":"Events","description":"Returns events","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"address","required":false,"in":"query","description":"Event address","schema":{"type":"string"}},{"name":"logAddress","required":false,"in":"query","description":"Event log address","schema":{"type":"string"}},{"name":"identifier","required":false,"in":"query","description":"Event identifier","schema":{"type":"string"}},{"name":"txHash","required":false,"in":"query","description":"Event transaction hash","schema":{"type":"string"}},{"name":"shard","required":false,"in":"query","description":"Event shard id","schema":{"type":"number"}},{"name":"before","required":false,"in":"query","description":"Event before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"Event after timestamp or timestampMs","schema":{"type":"number"}},{"name":"order","required":false,"in":"query","description":"Event order","schema":{"type":"number"}},{"name":"topics","required":false,"in":"query","description":"Event topics to filter by","schema":{"type":"array","items":{}}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Events"}}}}}},"tags":["events"]}},"/events/count":{"get":{"operationId":"EventsController_getEventsCount","summary":"Events count","description":"Returns events count","parameters":[{"name":"address","required":false,"in":"query","description":"Event address","schema":{"type":"string"}},{"name":"identifier","required":false,"in":"query","description":"Event identifier","schema":{"type":"string"}},{"name":"txHash","required":false,"in":"query","description":"Event transaction hash","schema":{"type":"string"}},{"name":"shard","required":false,"in":"query","description":"Event shard id","schema":{"type":"number"}},{"name":"before","required":false,"in":"query","description":"Event before timestamp or timestampMs","schema":{"type":"number"}},{"name":"after","required":false,"in":"query","description":"Event after timestamp or timestampMs","schema":{"type":"number"}},{"name":"topics","required":false,"in":"query","description":"Event topics to filter by","schema":{"type":"array","items":{}}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["events"]}},"/events/{txHash}":{"get":{"operationId":"EventsController_getEvent","summary":"Event","description":"Returns event","parameters":[{"name":"txHash","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Events"}}}}},"tags":["events"]}},"/auctions":{"get":{"operationId":"NftMarketplaceController_getAuctions","summary":"Explore auctions","description":"Returns auctions available in marketplaces ","parameters":[{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Auctions"}}}}}},"tags":["marketplace"]}},"/auctions/count":{"get":{"operationId":"NftMarketplaceController_getAuctionsCount","summary":"Auctions count","description":"Returns all auctions count available on marketplaces ","parameters":[{"name":"status","required":false,"in":"query","description":"Returns auctions count with specified status","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["marketplace"]}},"/auctions/{id}":{"get":{"operationId":"NftMarketplaceController_getAuctionId","summary":"Auction details","description":"Returns auction details for a specific auction identifier ","parameters":[{"name":"id","required":true,"in":"path","schema":{"type":"number"}},{"name":"auctionId","required":true,"in":"query","description":"Auction identifier","schema":{}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Auctions"}}}}},"tags":["marketplace"]}},"/accounts/{address}/auction/stats":{"get":{"operationId":"NftMarketplaceController_getAccountStats","summary":"Account stats","description":"Returns account status details from nft marketplace for a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AccountAuctionStats"}}}}},"tags":["marketplace"]}},"/accounts/{address}/auctions":{"get":{"operationId":"NftMarketplaceController_getAccountAuctions","summary":"Account auctions","description":"Returns account auctions for a given address","parameters":[{"name":"address","required":true,"in":"path","schema":{"type":"string"}},{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"status","required":false,"in":"query","description":"Returns auctions with specified status","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Auction"}}}}},"tags":["marketplace"]}},"/accounts/{address}/auctions/count":{"get":{"operationId":"NftMarketplaceController_getAccountAuctionsCount","summary":"Address auctions count","description":"Returns total running auctions count for a specific address ","parameters":[{"name":"address","required":true,"in":"query","description":"Account address","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["marketplace"]}},"/collections/{collection}/auction/stats":{"get":{"operationId":"NftMarketplaceController_getCollectionStats","summary":"Collection stats","description":"Returns collection status details from nft marketplace for a given collection identifier","parameters":[{"name":"collection","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CollectionAuctionStats"}}}}},"tags":["marketplace"]}},"/collections/{collection}/auctions":{"get":{"operationId":"NftMarketplaceController_getCollectionAuctions","summary":"Collection auctions","description":"Returns all auctions for a specific collection ","parameters":[{"name":"collection","required":true,"in":"query","description":"Collection identifier","schema":{"type":"string"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Auctions"}}}}}},"tags":["marketplace"]}},"/collections/{collection}/auctions/count":{"get":{"operationId":"NftMarketplaceController_getCollectionAuctionsCount","summary":"Collection auctions count","description":"Returns total running auctions count for a specific collection ","parameters":[{"name":"collection","required":true,"in":"query","description":"Collection identifier","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["marketplace"]}},"/mex/economics":{"get":{"operationId":"MexController_getMexEconomics","summary":"xExchange economics","description":"Returns economics details of xExchange","parameters":[],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MexEconomics"}}}}},"tags":["xexchange"]}},"/mex/pairs":{"get":{"operationId":"MexController_getMexPairs","summary":"xExchange pairs","description":"Returns active liquidity pools available on xExchange","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"exchange","required":false,"in":"query","description":"Filter by exchange","schema":{"enum":["xexchange","unknown"],"type":"string"}},{"name":"includeFarms","required":false,"in":"query","description":"Include farms information in response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MexPair"}}}}}},"tags":["xexchange"]}},"/mex-pairs":{"get":{"operationId":"MexController_getMexPairsTemp","summary":"xExchange pairs","description":"Returns active liquidity pools available on xExchange","deprecated":true,"parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"exchange","required":false,"in":"query","description":"Filter by exchange","schema":{"enum":["xexchange","unknown"],"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MexPair"}}}}}},"tags":["xexchange"]}},"/mex/pairs/count":{"get":{"operationId":"MexController_getMexPairsCount","summary":"Maiar Exchange pairs count","description":"Returns active liquidity pools count available on Maiar Exchange","parameters":[{"name":"exchange","required":false,"in":"query","description":"Filter by exchange","schema":{"enum":["xexchange","unknown"],"type":"string"}},{"name":"includeFarms","required":false,"in":"query","description":"Include farms information in response","schema":{"type":"boolean"}}],"responses":{"200":{"description":""}},"tags":["xexchange"]}},"/mex/tokens":{"get":{"operationId":"MexController_getMexTokens","summary":"xExchange tokens details","description":"Returns a list of tokens listed on xExchange","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MexToken"}}}}}},"tags":["xexchange"]}},"/mex/tokens/count":{"get":{"operationId":"MexController_getMexTokensCount","summary":"Maiar Exchange tokens count","description":"Returns tokens count available on Maiar Exchange","parameters":[],"responses":{"200":{"description":""}},"tags":["xexchange"]}},"/mex/tokens/{identifier}":{"get":{"operationId":"MexController_getMexTokenIdentifier","summary":"xExchange token details","description":"Returns a specific token listed on xExchange","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MexToken"}}}},"404":{"description":"Token not found"}},"tags":["xexchange"]}},"/mex/farms":{"get":{"operationId":"MexController_getMexFarms","summary":"xExchange farms details","description":"Returns a list of farms listed on xExchange","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MexFarm"}}}}}},"tags":["xexchange"]}},"/mex/farms/count":{"get":{"operationId":"MexController_getMexFarmsCount","summary":"Maiar Exchange farms count","description":"Returns farms count available on Maiar Exchange","parameters":[],"responses":{"200":{"description":""}},"tags":["xexchange"]}},"/mex/pairs/{baseId}/{quoteId}":{"get":{"operationId":"MexController_getMexPair","summary":"xExchange pairs details","description":"Returns liquidity pool details by providing a combination of two tokens","parameters":[{"name":"baseId","required":true,"in":"path","schema":{"type":"string"}},{"name":"quoteId","required":true,"in":"path","schema":{"type":"string"}},{"name":"includeFarms","required":false,"in":"query","description":"Include farms information in response","schema":{"type":"boolean"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MexPair"}}}},"404":{"description":"Pair not found"}},"tags":["xexchange"]}},"/mex/tokens/prices/hourly/{identifier}":{"get":{"operationId":"MexController_getTokenPricesHourResolution","summary":"xExchange token prices hourly","description":"Returns token prices hourly","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MexTokenChart"}}}}},"404":{"description":"Price not available for given token identifier"}},"tags":["xexchange"]}},"/mex/tokens/prices/daily/{identifier}":{"get":{"operationId":"MexController_getTokenPricesDayResolution","summary":"xExchange token prices daily","description":"Returns token prices daily, ordered by timestamp in ascending order. The entries represent the latest complete daily values for the given token series.","parameters":[{"name":"identifier","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MexTokenChart"}}}}},"404":{"description":"Price not available for given token identifier"}},"tags":["xexchange"]}},"/pool":{"get":{"operationId":"PoolController_getTransactionPool","summary":"Transactions pool","description":"Returns the transactions that are currently in the memory pool.","parameters":[{"name":"from","required":false,"in":"query","description":"Number of items to skip for the result set","schema":{"type":"number"}},{"name":"size","required":false,"in":"query","description":"Number of items to retrieve","schema":{"type":"number"}},{"name":"sender","required":false,"in":"query","description":"Search in transaction pool by a specific sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search in transaction pool by a specific receiver","schema":{"type":"string"}},{"name":"senderShard","required":false,"in":"query","description":"The shard of the sender","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"The shard of the receiver","schema":{"type":"number"}},{"name":"type","required":false,"in":"query","description":"Search in transaction pool by type","schema":{"type":"string"}},{"name":"function","required":false,"in":"query","description":"Filter transactions by function name","schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TransactionInPool"}}}}}},"tags":["pool"]}},"/pool/count":{"get":{"operationId":"PoolController_getTransactionPoolCount","summary":"Transactions pool count","description":"Returns the number of transactions that are currently in the memory pool.","parameters":[{"name":"sender","required":false,"in":"query","description":"Returns the number of transactions with a specific sender","schema":{"type":"string"}},{"name":"receiver","required":false,"in":"query","description":"Search in transaction pool by a specific receiver","schema":{"type":"string"}},{"name":"senderShard","required":false,"in":"query","description":"The shard of the sender","schema":{"type":"number"}},{"name":"receiverShard","required":false,"in":"query","description":"The shard of the receiver","schema":{"type":"number"}},{"name":"type","required":false,"in":"query","description":"Returns the number of transactions with a specific type","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"number"}}}}},"tags":["pool"]}},"/pool/{txhash}":{"get":{"operationId":"PoolController_getTransactionFromPool","summary":"Transaction from pool","description":"Returns a transaction from the memory pool.","parameters":[{"name":"txhash","required":true,"in":"path","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TransactionInPool"}}}},"404":{"description":"Transaction not found"}},"tags":["pool"]}}},"info":{"title":"Multiversx API","description":"The API is built to allow you to create apps or integrations quickly and easily.\n\nThis API is organized around REST principles, so if you've interacted with RESTful APIs before, many of the concepts will look familiar.\n\n## Request\n* Requests with a message body use JSON. Successful requests will return a `2xx` HTTP status.\n\n## Response\n\n* JSON will be returned for all responses, including errors.\n\n## Parameters\n\n* Some endpoints accept optional parameters which can be passed as query string params. \n* All parameters are documented along each endpoint.\n\n## Complexity\n\n* In order to better optimize the available resources, a complexity evaluation is performed before the execution of every request.\n\n* The maximum complexity available is currently hardcoded at `10000`\n\n* When listing entries, every element in the list adds `1` to the complexity, thus making it possible to retrieve a maximum of `10000` elements in list endpoints.\n\n* If some extra info is requested, such as `withScResults` in the `/transactions` endpoint, the complexity calculation for the list is overridden with the complexity calculation of the requested field. In this situation, `withScResults` will multiply the number of items with `200`, thus limiting the maximum requested size to `50`\n\n* Some fields use the same amount of resources whether one or more of them are requested. In this situation, the fields will be grouped together, regardless whether one or more of the same group are requested. The endpoints `/transactions?size=50&withOperations=true` will produce the same complexity as `/transactions?size=50&withOperations=true&withLogs=true&withScResults=true` since they all belong to the group `details`\n\n## Fields\n\n* In order to fetch only specific fields from the response, the `fields` parameter can be used:\n    * `/accounts?fields=address,balance for arrays`\n    * `/economics?fields=price,marketCap for object`\n\n## Extract\n* In order to extract a scalar value from an object response, the `extract` parameter can be used:\n    * `/economics?extract=price`\n\n## Cleanup\n* If the value of an attribute is `undefined`, `\"\"` (empty string), `null`, `[ ]` (empty array) the attribute will be omitted.\n\n## Pagination\n\n* Requests that return multiple items will be paginated to 25 items by default. \n* For a different number of items or for the next pages `?from=` and `size=` can be used.\n","version":"1.8.0","contact":{}},"tags":[],"servers":[],"components":{"schemas":{"ContractAssetsRequest":{"type":"object","properties":{"contract":{"type":"string","example":"erd1llllllllllllllllllllllllllllllllllllllllllllllllluqsl6e366"},"network":{"type":"string","example":"devnet"}},"required":["contract","network"]},"TokenAssetsRequest":{"type":"object","properties":{}},"Amount":{"type":"object","properties":{}},"AccountAssets":{"type":"object","properties":{}},"Account":{"type":"object","properties":{"address":{"type":"string","description":"Account bech32 address","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"balance":{"example":"\"7770000000000000000\"","title":"Amount","description":"Account current balance","allOf":[{"$ref":"#/components/schemas/Amount"}]},"nonce":{"type":"number","description":"Account current nonce","example":42},"timestampMs":{"type":"number","description":"Timestamp in milliseconds of the block where the account was first indexed","example":1676979360000},"timestamp":{"type":"number","description":"Timestamp in seconds of the block where the account was first indexed","example":1676979360},"shard":{"type":"number","description":"The shard ID allocated to the account","example":0},"ownerAddress":{"type":"string","description":"Current owner address"},"assets":{"nullable":true,"description":"Account assets","allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"deployedAt":{"type":"number","description":"Specific property flag for smart contract"},"deployTxHash":{"type":"object","description":"The contract deploy transaction hash"},"ownerAssets":{"nullable":true,"description":"Account assets","allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"isVerified":{"type":"boolean","description":"Specific property flag for smart contract"},"txCount":{"type":"number","description":"The number of transactions performed on this account"},"scrCount":{"type":"number","description":"The number of smart contract results of this account"},"transfersLast24h":{"type":"number","description":"Transfers in the last 24 hours"}},"required":["address","balance","nonce","timestampMs","timestamp","shard","txCount","scrCount"]},"ScamInfo":{"type":"object","properties":{"type":{"type":"string","nullable":true},"info":{"type":"string","nullable":true}},"required":["type","info"]},"AccountDetailed":{"type":"object","properties":{"address":{"type":"string","description":"Account bech32 address","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"balance":{"example":"\"7770000000000000000\"","title":"Amount","description":"Account current balance","allOf":[{"$ref":"#/components/schemas/Amount"}]},"nonce":{"type":"number","description":"Account current nonce","example":42},"timestampMs":{"type":"number","description":"Timestamp in milliseconds of the block where the account was first indexed","example":1676979360000},"timestamp":{"type":"number","description":"Timestamp in seconds of the block where the account was first indexed","example":1676979360},"shard":{"type":"number","description":"The shard ID allocated to the account","example":0},"ownerAddress":{"type":"string","description":"The address in bech 32 format of owner account"},"assets":{"nullable":true,"description":"Account assets","allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"deployedAt":{"type":"number","description":"Specific property flag for smart contract"},"deployTxHash":{"type":"object","description":"The contract deploy transaction hash"},"ownerAssets":{"nullable":true,"description":"Account assets","allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"isVerified":{"type":"boolean","description":"Specific property flag for smart contract"},"txCount":{"type":"number","description":"The number of transactions performed on this account"},"scrCount":{"type":"number","description":"The number of smart contract results of this account"},"transfersLast24h":{"type":"number","description":"Transfers in the last 24 hours"},"code":{"type":"string","description":"The source code in hex format"},"codeHash":{"type":"string","description":"The hash of the source code"},"rootHash":{"type":"string","description":"The hash of the root node"},"username":{"type":"object","description":"The username specific for this account","nullable":true},"developerReward":{"type":"string","description":"The developer reward"},"isUpgradeable":{"type":"boolean","description":"Specific property flag for smart contract"},"isReadable":{"type":"boolean","description":"Specific property flag for smart contract"},"isPayable":{"type":"boolean","description":"Specific property flag for smart contract"},"isPayableBySmartContract":{"type":"boolean","description":"Specific property flag for smart contract","nullable":true},"scamInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ScamInfo"}]},"nftCollections":{"type":"boolean","description":"Account nft collections","nullable":true},"nfts":{"type":"boolean","description":"Account nfts","nullable":true},"activeGuardianActivationEpoch":{"type":"number","nullable":true},"activeGuardianAddress":{"type":"string","nullable":true},"activeGuardianServiceUid":{"type":"string","nullable":true},"pendingGuardianActivationEpoch":{"type":"number","nullable":true},"pendingGuardianAddress":{"type":"string","nullable":true},"pendingGuardianServiceUid":{"type":"string","nullable":true},"isGuarded":{"type":"boolean","nullable":true}},"required":["address","balance","nonce","timestampMs","timestamp","shard","txCount","scrCount","rootHash","developerReward"]},"AccountDeferred":{"type":"object","properties":{"deferredPayment":{"example":"\"800000000000000000\"","title":"Amount","description":"Deferred payment amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"secondsLeft":{"type":"number","description":"Seconds left until unbonding time"}},"required":["deferredPayment","secondsLeft"]},"AccountVerificationSource":{"type":"object","properties":{"abi":{"type":"object","description":"Abi file source"},"contract":{"type":"object","description":"Contract source code"}},"required":["abi","contract"]},"AccountVerification":{"type":"object","properties":{"codeHash":{"type":"string","description":"Source code hash"},"source":{"description":"Source code of contract","allOf":[{"$ref":"#/components/schemas/AccountVerificationSource"}]},"status":{"type":"string","description":"Verifier process status","enum":["success","byteCodeChangedSinceLastVerification"]},"ipfsFileHash":{"type":"string","description":"File hash for IPFS"}},"required":["codeHash","status"]},"TokenAssetsPriceSource":{"type":"object","properties":{"type":{"type":"string","enum":["dataApi","customUrl"],"nullable":true},"url":{"type":"string","nullable":true},"path":{"type":"string","nullable":true}},"required":["type","url","path"]},"TokenAssets":{"type":"object","properties":{"website":{"type":"string"},"description":{"type":"string"},"status":{"type":"string","enum":["active","inactive"],"default":"inactive"},"pngUrl":{"type":"string"},"name":{"type":"string"},"svgUrl":{"type":"string"},"ledgerSignature":{"type":"string"},"lockedAccounts":{"type":"string"},"extraTokens":{"type":"array","items":{"type":"string"}},"preferredRankAlgorithm":{"type":"string","enum":["trait","statistical","openRarity","jaccardDistances","custom"],"nullable":true},"priceSource":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenAssetsPriceSource"}]}},"required":["website","description","status","pngUrl","name","svgUrl","ledgerSignature","lockedAccounts","extraTokens","preferredRankAlgorithm","priceSource"]},"TokenOwnersHistory":{"type":"object","properties":{}},"TokenWithBalance":{"type":"object","properties":{"type":{"type":"string","enum":["FungibleESDT","NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"subType":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""]},"identifier":{"type":"string"},"collection":{"type":"string","nullable":true},"nonce":{"type":"number","nullable":true},"name":{"type":"string"},"ticker":{"type":"string"},"owner":{"type":"string"},"minted":{"example":"\"5240000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"burnt":{"example":"\"2960000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"initialMinted":{"example":"\"1310000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"decimals":{"type":"number"},"isPaused":{"type":"boolean","default":false},"assets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenAssets"}]},"transactions":{"type":"number","nullable":true},"transactionsLastUpdatedAt":{"type":"number","nullable":true},"transfers":{"type":"number","nullable":true},"transfersLastUpdatedAt":{"type":"number","nullable":true},"accounts":{"type":"number","nullable":true},"accountsLastUpdatedAt":{"type":"number","nullable":true},"canUpgrade":{"type":"boolean","default":false},"canMint":{"type":"boolean","nullable":true},"canBurn":{"type":"boolean","nullable":true},"canChangeOwner":{"type":"boolean","nullable":true},"canAddSpecialRoles":{"type":"boolean","nullable":true},"canPause":{"type":"boolean","default":false},"canFreeze":{"type":"boolean","nullable":true},"canWipe":{"type":"boolean","default":false},"canTransferNftCreateRole":{"type":"boolean","nullable":true},"price":{"type":"number","nullable":true},"marketCap":{"type":"number","nullable":true},"supply":{"example":"\"5140000000000000000\"","title":"Amount","description":"Supply amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"circulatingSupply":{"example":"\"7600000000000000000\"","title":"Amount","description":"Circulating supply amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"timestamp":{"type":"number","description":"Creation timestamp"},"mexPairType":{"type":"string","enum":["core","community","ecosystem","experimental","unlisted"]},"totalLiquidity":{"type":"number","nullable":true},"totalVolume24h":{"type":"number","nullable":true},"isLowLiquidity":{"type":"boolean","nullable":true},"lowLiquidityThresholdPercent":{"type":"number","nullable":true},"tradesCount":{"type":"number","nullable":true},"ownersHistory":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenOwnersHistory"}]},"balance":{"example":"\"6150000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"valueUsd":{"type":"number","nullable":true},"attributes":{"type":"string","nullable":true}},"required":["type","subType","identifier","name","ticker","owner","minted","burnt","initialMinted","decimals","isPaused","transactions","transactionsLastUpdatedAt","transfers","transfersLastUpdatedAt","accounts","accountsLastUpdatedAt","canUpgrade","canMint","canBurn","canChangeOwner","canAddSpecialRoles","canPause","canFreeze","canWipe","canTransferNftCreateRole","supply","circulatingSupply","timestamp","mexPairType","ownersHistory","balance"]},"CollectionTraitAttribute":{"type":"object","properties":{"name":{"type":"string"},"occurrenceCount":{"type":"number"},"occurrencePercentage":{"type":"number"}},"required":["name","occurrenceCount","occurrencePercentage"]},"CollectionTrait":{"type":"object","properties":{"name":{"type":"string"},"occurrenceCount":{"type":"number"},"occurrencePercentage":{"type":"number"},"attributes":{"type":"array","items":{"$ref":"#/components/schemas/CollectionTraitAttribute"}}},"required":["name","occurrenceCount","occurrencePercentage","attributes"]},"CollectionAuctionStats":{"type":"object","properties":{"activeAuctions":{"type":"number"},"endedAuctions":{"type":"number"},"maxPrice":{"type":"string"},"minPrice":{"type":"string"},"saleAverage":{"type":"string"},"volumeTraded":{"type":"string"}},"required":["activeAuctions","endedAuctions","maxPrice","minPrice","saleAverage","volumeTraded"]},"CollectionRoles":{"type":"object","properties":{"address":{"type":"string","nullable":true},"canCreate":{"type":"boolean","default":false},"canBurn":{"type":"boolean","default":false},"canAddQuantity":{"type":"boolean","default":false},"canUpdateAttributes":{"type":"boolean","default":false},"canAddUri":{"type":"boolean","default":false},"canTransfer":{"type":"boolean","default":false},"roles":{"type":"array","items":{"type":"string"}}},"required":["address","canCreate","canBurn","canAddQuantity","canUpdateAttributes","canAddUri","canTransfer","roles"]},"NftCollectionWithRoles":{"type":"object","properties":{"collection":{"type":"string"},"type":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"subType":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""],"nullable":true},"name":{"type":"string"},"ticker":{"type":"string"},"owner":{"type":"string","nullable":true},"timestamp":{"type":"number"},"timestampMs":{"type":"number","nullable":true},"canFreeze":{"type":"boolean","default":false},"canWipe":{"type":"boolean","default":false},"canPause":{"type":"boolean","default":false},"canTransferNftCreateRole":{"type":"boolean","default":false},"canChangeOwner":{"type":"boolean","default":false},"canUpgrade":{"type":"boolean","default":false},"canAddSpecialRoles":{"type":"boolean","default":false},"decimals":{"type":"number","nullable":true},"assets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenAssets"}]},"scamInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ScamInfo"}]},"traits":{"type":"array","items":{"$ref":"#/components/schemas/CollectionTrait"}},"auctionStats":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/CollectionAuctionStats"}]},"isVerified":{"type":"boolean","nullable":true},"holderCount":{"type":"number","nullable":true},"nftCount":{"type":"number","nullable":true},"role":{"$ref":"#/components/schemas/CollectionRoles"},"canTransfer":{"type":"boolean"},"canCreate":{"type":"boolean","default":false},"canBurn":{"type":"boolean","default":false},"canAddQuantity":{"type":"boolean","default":false},"canUpdateAttributes":{"type":"boolean","default":false},"canAddUri":{"type":"boolean","default":false}},"required":["collection","type","subType","name","ticker","owner","timestamp","canFreeze","canWipe","canPause","canTransferNftCreateRole","canChangeOwner","canUpgrade","canAddSpecialRoles","decimals","role","canTransfer","canCreate","canBurn","canAddQuantity","canUpdateAttributes","canAddUri"]},"TokenRoles":{"type":"object","properties":{"address":{"type":"string","nullable":true},"canLocalMint":{"type":"boolean","nullable":true},"canLocalBurn":{"type":"boolean","nullable":true},"canCreate":{"type":"boolean","nullable":true},"canBurn":{"type":"boolean","nullable":true},"canAddQuantity":{"type":"boolean","nullable":true},"canUpdateAttributes":{"type":"boolean","nullable":true},"canAddUri":{"type":"boolean","nullable":true},"canTransfer":{"type":"boolean","nullable":true},"roles":{"type":"array","items":{"type":"string"}}},"required":["address","canLocalMint","canLocalBurn","canCreate","canBurn","canAddQuantity","canUpdateAttributes","canAddUri","canTransfer","roles"]},"TokenWithRoles":{"type":"object","properties":{"type":{"type":"string","enum":["FungibleESDT","NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"subType":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""]},"identifier":{"type":"string"},"collection":{"type":"string","nullable":true},"nonce":{"type":"number","nullable":true},"name":{"type":"string"},"ticker":{"type":"string"},"owner":{"type":"string"},"minted":{"example":"\"5240000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"burnt":{"example":"\"2960000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"initialMinted":{"example":"\"1310000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"decimals":{"type":"number"},"isPaused":{"type":"boolean","default":false},"assets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenAssets"}]},"transactions":{"type":"number","nullable":true},"transactionsLastUpdatedAt":{"type":"number","nullable":true},"transfers":{"type":"number","nullable":true},"transfersLastUpdatedAt":{"type":"number","nullable":true},"accounts":{"type":"number","nullable":true},"accountsLastUpdatedAt":{"type":"number","nullable":true},"canUpgrade":{"type":"boolean","default":false},"canMint":{"type":"boolean","nullable":true},"canBurn":{"type":"boolean","nullable":true},"canChangeOwner":{"type":"boolean","nullable":true},"canAddSpecialRoles":{"type":"boolean","nullable":true},"canPause":{"type":"boolean","default":false},"canFreeze":{"type":"boolean","nullable":true},"canWipe":{"type":"boolean","default":false},"canTransferNftCreateRole":{"type":"boolean","nullable":true},"price":{"type":"number","nullable":true},"marketCap":{"type":"number","nullable":true},"supply":{"example":"\"5140000000000000000\"","title":"Amount","description":"Supply amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"circulatingSupply":{"example":"\"7600000000000000000\"","title":"Amount","description":"Circulating supply amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"timestamp":{"type":"number","description":"Creation timestamp"},"mexPairType":{"type":"string","enum":["core","community","ecosystem","experimental","unlisted"]},"totalLiquidity":{"type":"number","nullable":true},"totalVolume24h":{"type":"number","nullable":true},"isLowLiquidity":{"type":"boolean","nullable":true},"lowLiquidityThresholdPercent":{"type":"number","nullable":true},"tradesCount":{"type":"number","nullable":true},"ownersHistory":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenOwnersHistory"}]},"role":{"$ref":"#/components/schemas/TokenRoles"},"address":{"type":"string","nullable":true},"canLocalMint":{"type":"boolean","nullable":true},"canLocalBurn":{"type":"boolean","nullable":true},"canCreate":{"type":"boolean","nullable":true},"canAddQuantity":{"type":"boolean","nullable":true},"canUpdateAttributes":{"type":"boolean","nullable":true},"canAddUri":{"type":"boolean","nullable":true},"canTransfer":{"type":"boolean","nullable":true}},"required":["type","subType","identifier","name","ticker","owner","minted","burnt","initialMinted","decimals","isPaused","transactions","transactionsLastUpdatedAt","transfers","transfersLastUpdatedAt","accounts","accountsLastUpdatedAt","canUpgrade","canMint","canBurn","canChangeOwner","canAddSpecialRoles","canPause","canFreeze","canWipe","canTransferNftCreateRole","supply","circulatingSupply","timestamp","mexPairType","ownersHistory","role","address","canLocalMint","canLocalBurn","canCreate","canAddQuantity","canUpdateAttributes","canAddUri","canTransfer"]},"NftCollectionAccount":{"type":"object","properties":{"collection":{"type":"string"},"type":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"subType":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""],"nullable":true},"name":{"type":"string"},"ticker":{"type":"string"},"owner":{"type":"string","nullable":true},"timestamp":{"type":"number"},"timestampMs":{"type":"number","nullable":true},"canFreeze":{"type":"boolean","default":false},"canWipe":{"type":"boolean","default":false},"canPause":{"type":"boolean","default":false},"canTransferNftCreateRole":{"type":"boolean","default":false},"canChangeOwner":{"type":"boolean","default":false},"canUpgrade":{"type":"boolean","default":false},"canAddSpecialRoles":{"type":"boolean","default":false},"decimals":{"type":"number","nullable":true},"assets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenAssets"}]},"scamInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ScamInfo"}]},"traits":{"type":"array","items":{"$ref":"#/components/schemas/CollectionTrait"}},"auctionStats":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/CollectionAuctionStats"}]},"isVerified":{"type":"boolean","nullable":true},"holderCount":{"type":"number","nullable":true},"nftCount":{"type":"number","nullable":true},"count":{"type":"number"}},"required":["collection","type","subType","name","ticker","owner","timestamp","canFreeze","canWipe","canPause","canTransferNftCreateRole","canChangeOwner","canUpgrade","canAddSpecialRoles","decimals","count"]},"NftMedia":{"type":"object","properties":{"url":{"type":"string"},"originalUrl":{"type":"string"},"thumbnailUrl":{"type":"string"},"fileType":{"type":"string"},"fileSize":{"type":"number"}},"required":["url","originalUrl","thumbnailUrl","fileType","fileSize"]},"NftMetadataError":{"type":"object","properties":{"code":{"type":"string","enum":["ipfs_error","not_found","timeout","unknown_error","invalid_content_type","json_parse_error","empty_metadata"]},"message":{"type":"string"},"timestamp":{"type":"number"}},"required":["code","message","timestamp"]},"NftMetadata":{"type":"object","properties":{"description":{"type":"string"},"fileType":{"type":"string"},"fileUri":{"type":"string"},"fileName":{"type":"string"},"error":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/NftMetadataError"}]}},"required":["description","fileType","fileUri","fileName","error"]},"NftRarity":{"type":"object","properties":{"rank":{"type":"number"},"score":{"type":"number"}},"required":["rank","score"]},"NftRarities":{"type":"object","properties":{"statistical":{"$ref":"#/components/schemas/NftRarity"},"trait":{"$ref":"#/components/schemas/NftRarity"},"jaccardDistances":{"$ref":"#/components/schemas/NftRarity"},"openRarity":{"$ref":"#/components/schemas/NftRarity"},"custom":{"$ref":"#/components/schemas/NftRarity"}},"required":["statistical","trait","jaccardDistances","openRarity","custom"]},"UnlockMileStoneModel":{"type":"object","properties":{"remainingEpochs":{"type":"number","description":"Remaining epochs until unlock can be performed","example":42},"percent":{"type":"number","description":"Percent of token unlockable after the epochs pass","example":42}},"required":["remainingEpochs","percent"]},"NftAccount":{"type":"object","properties":{"identifier":{"type":"string"},"collection":{"type":"string"},"hash":{"type":"string"},"timestamp":{"type":"number","nullable":true},"attributes":{"type":"string"},"nonce":{"type":"number"},"type":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"subType":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""]},"name":{"type":"string"},"creator":{"type":"string"},"royalties":{"type":"number","nullable":true},"uris":{"type":"array","items":{"type":"string"}},"url":{"type":"string"},"media":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/NftMedia"}]},"isWhitelistedStorage":{"type":"boolean","default":false},"thumbnailUrl":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}},"metadata":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/NftMetadata"}]},"owner":{"type":"string","nullable":true},"balance":{"type":"string","nullable":true,"example":10},"supply":{"example":"\"2070000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"decimals":{"type":"number","nullable":true},"assets":{"$ref":"#/components/schemas/TokenAssets"},"ticker":{"type":"string"},"scamInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ScamInfo"}]},"score":{"type":"number","nullable":true},"rank":{"type":"number","nullable":true},"rarities":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/NftRarities"}]},"isNsfw":{"type":"boolean","nullable":true},"unlockSchedule":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/UnlockMileStoneModel"}},"unlockEpoch":{"type":"number","nullable":true},"price":{"type":"number","nullable":true},"valueUsd":{"type":"number","nullable":true},"receivedAt":{"type":"number","nullable":true,"description":"Timestamp when the NFT was received by the address"}},"required":["identifier","collection","hash","timestamp","attributes","nonce","type","subType","name","creator","royalties","uris","url","metadata","owner","balance","supply","decimals","ticker","isNsfw"]},"ProviderUnstakedTokens":{"type":"object","properties":{"amount":{"example":"\"7160000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"expires":{"type":"number","nullable":true},"epochs":{"type":"number","nullable":true}},"required":["amount","expires","epochs"]},"ProviderStake":{"type":"object","properties":{"totalStaked":{"example":"\"1520000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"unstakedTokens":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/ProviderUnstakedTokens"}}},"required":["totalStaked"]},"AccountUndelegation":{"type":"object","properties":{"amount":{"example":"\"5370000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"seconds":{"type":"number"}},"required":["amount","seconds"]},"AccountDelegation":{"type":"object","properties":{"address":{"type":"string","description":"Delegation account details"},"contract":{"type":"string","description":"Account delegation contract"},"userUnBondable":{"example":"\"6390000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"userActiveStake":{"example":"\"2850000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"claimableRewards":{"example":"\"5500000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"userUndelegatedList":{"description":"User undelegated list details","type":"array","items":{"$ref":"#/components/schemas/AccountUndelegation"}}},"required":["address","contract"]},"AccountDelegationLegacy":{"type":"object","properties":{"claimableRewards":{"type":"string","default":0},"userActiveStake":{"type":"string","default":0},"userDeferredPaymentStake":{"type":"string","default":0},"userUnstakedStake":{"type":"string","default":0},"userWaitingStake":{"type":"string","default":0},"userWithdrawOnlyStake":{"type":"string","default":0}},"required":["claimableRewards","userActiveStake","userDeferredPaymentStake","userUnstakedStake","userWaitingStake","userWithdrawOnlyStake"]},"AccountKey":{"type":"object","properties":{"blsKey":{"type":"string","example":"2ef384d4d38bf3aad5cef34ce6eab047fba6d52b9735dbfdf7591289ed9c26ac7e816c9bb56ebf4f09129f045860f401275a91009befb4dc8ddc24ea4bc597290bd916b9f984c2a415ec9b2cfbc4a09de42c032314e6a21e69daf76302fcaa99"},"stake":{"example":"\"8600000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"topUp":{"example":"\"3980000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"status":{"type":"string","example":"online"},"rewardAddress":{"type":"string","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"queueIndex":{"type":"string","nullable":true,"example":"2"},"queueSize":{"type":"string","nullable":true,"example":"100"},"remainingUnBondPeriod":{"type":"number","example":10}},"required":["blsKey","stake","topUp","status","rewardAddress","queueIndex","queueSize","remainingUnBondPeriod"]},"WaitingList":{"type":"object","properties":{"address":{"type":"string","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"nonce":{"type":"number","example":46},"rank":{"type":"number","example":2},"value":{"example":"\"2350000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]}},"required":["address","nonce","rank","value"]},"TransactionAction":{"type":"object","properties":{"category":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"arguments":{"type":"object"}},"required":["category","name","description","arguments"]},"Transaction":{"type":"object","properties":{"txHash":{"type":"string"},"gasLimit":{"type":"number"},"gasPrice":{"type":"number"},"gasUsed":{"type":"number"},"miniBlockHash":{"type":"string"},"nonce":{"type":"number"},"receiver":{"type":"string"},"receiverUsername":{"type":"string","nullable":true},"receiverAssets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"receiverShard":{"type":"number"},"round":{"type":"number"},"epoch":{"type":"number"},"sender":{"type":"string"},"senderUsername":{"type":"string","nullable":true},"senderAssets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"senderShard":{"type":"number"},"signature":{"type":"string"},"status":{"type":"string"},"value":{"type":"string"},"fee":{"type":"string"},"timestamp":{"type":"number"},"timestampMs":{"type":"number"},"data":{"type":"string","nullable":true},"function":{"type":"string","nullable":true},"action":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TransactionAction"}]},"scamInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ScamInfo"}]},"type":{"type":"string","enum":["Transaction","SmartContractResult","Reward"],"nullable":true},"originalTxHash":{"type":"string","nullable":true},"pendingResults":{"type":"boolean","nullable":true},"guardianAddress":{"type":"string","nullable":true},"guardianSignature":{"type":"string","nullable":true},"isRelayed":{"type":"string","nullable":true},"relayer":{"type":"string","nullable":true},"relayerSignature":{"type":"string","nullable":true},"isScCall":{"type":"boolean","nullable":true}},"required":["txHash","gasLimit","gasPrice","gasUsed","miniBlockHash","nonce","receiver","receiverShard","round","epoch","sender","senderShard","signature","status","value","fee","timestamp","timestampMs"]},"DeployedContract":{"type":"object","properties":{"address":{"type":"string"},"deployTxHash":{"type":"string"},"timestamp":{"type":"number"},"assets":{"nullable":true,"description":"Contract assets","allOf":[{"$ref":"#/components/schemas/AccountAssets"}]}},"required":["address","deployTxHash","timestamp"]},"ContractUpgrades":{"type":"object","properties":{"address":{"type":"string","nullable":true,"example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"txHash":{"type":"string","nullable":true,"example":"1c8c6b2148f25621fa2c798a2c9a184df61fdd1991aa0af7ea01eb7b89025d2a"},"codeHash":{"type":"string","nullable":true,"example":"1c8c6b2148f25621fa2c798a2c9a184df61fdd1991aa0af7ea01eb7b89025d2a"},"timestamp":{"type":"number","nullable":true,"example":"1638577452"}},"required":["address","txHash","codeHash","timestamp"]},"TransactionLogEvent":{"type":"object","properties":{"address":{"type":"string"},"addressAssets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"identifier":{"type":"string"},"topics":{"type":"array","items":{"type":"string"}},"data":{"type":"string"},"order":{"type":"number"},"additionalData":{"type":"object"}},"required":["address","addressAssets","identifier","topics","data","order","additionalData"]},"TransactionLog":{"type":"object","properties":{"id":{"type":"string","description":"Transaction log ID"},"address":{"type":"string","description":"Transaction log address"},"addressAssets":{"description":"Transaction address assets","nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"events":{"description":"Transaction log events","type":"array","items":{"$ref":"#/components/schemas/TransactionLogEvent"}}},"required":["id","address","events"]},"SmartContractResult":{"type":"object","properties":{"hash":{"type":"string"},"timestamp":{"type":"number"},"nonce":{"type":"number"},"gasLimit":{"type":"number"},"gasPrice":{"type":"number"},"value":{"example":"\"4750000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"sender":{"type":"string"},"receiver":{"type":"string"},"senderAssets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"receiverAssets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"relayedValue":{"type":"string"},"data":{"type":"string"},"prevTxHash":{"type":"string"},"originalTxHash":{"type":"string"},"callType":{"type":"string"},"miniBlockHash":{"type":"string","nullable":true},"logs":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TransactionLog"}]},"returnMessage":{"type":"string","nullable":true},"action":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TransactionAction"}]},"function":{"type":"string","nullable":true},"status":{"type":"string","nullable":true}},"required":["hash","timestamp","nonce","gasLimit","gasPrice","value","sender","receiver","data","prevTxHash","originalTxHash","callType","status"]},"AccountHistory":{"type":"object","properties":{"address":{"type":"string","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"balance":{"example":"\"5960000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"timestamp":{"type":"number","example":10000},"isSender":{"type":"boolean","nullable":true,"example":true}},"required":["address","balance","timestamp"]},"AccountEsdtHistory":{"type":"object","properties":{"address":{"type":"string","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"balance":{"example":"\"5960000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"timestamp":{"type":"number","example":10000},"isSender":{"type":"boolean","nullable":true,"example":true},"token":{"type":"string","example":"WEGLD-bd4d79"},"identifier":{"type":"string","example":"XPACHIEVE-5a0519-01"}},"required":["address","balance","timestamp","token","identifier"]},"Identity":{"type":"object","properties":{"identity":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"avatar":{"type":"string"},"website":{"type":"string"},"twitter":{"type":"string"},"location":{"type":"string"},"score":{"type":"number"},"validators":{"type":"number"},"stake":{"example":"\"7540000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"topUp":{"example":"\"3970000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"locked":{"example":"\"7640000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"distribution":{"type":"object"},"providers":{"type":"array","items":{"type":"string"}},"stakePercent":{"type":"number"},"rank":{"type":"number"},"apr":{"type":"number"}},"required":["identity","name","description","location","validators","stake","topUp","locked","distribution"]},"BlockProofDto":{"type":"object","properties":{"pubKeysBitmap":{"type":"string","description":"Bitmap representing public keys involved in the proof","example":"7702"},"aggregatedSignature":{"type":"string","description":"Aggregated BLS signature for the proof","example":"50224d66a42a019991d16f25dba375b581f279d4394d4c254876c1484f61bed90fb20456f8af107c54e4eed1763e2a92"},"headerHash":{"type":"string","description":"Hash of the block header being proven","example":"414d526161587ae9f53453aa0392971272c48dbb3cc54a33448972d388e0deeb"},"headerEpoch":{"type":"number","description":"Epoch number of the block header","example":130},"headerNonce":{"type":"number","description":"Nonce value of the block header","example":13137},"headerRound":{"type":"number","description":"Round number of the block header","example":13163}},"required":["pubKeysBitmap","aggregatedSignature","headerHash","headerEpoch","headerNonce","headerRound"]},"Block":{"type":"object","properties":{"hash":{"type":"string"},"epoch":{"type":"number"},"nonce":{"type":"number"},"prevHash":{"type":"string"},"proposer":{"type":"string"},"proposerIdentity":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/Identity"}]},"pubKeyBitmap":{"type":"string"},"round":{"type":"number"},"shard":{"type":"number"},"size":{"type":"number"},"sizeTxs":{"type":"number"},"stateRootHash":{"type":"string"},"timestamp":{"type":"number"},"timestampMs":{"type":"number","nullable":true},"txCount":{"type":"number"},"gasConsumed":{"type":"number"},"gasRefunded":{"type":"number"},"gasPenalized":{"type":"number"},"maxGasLimit":{"type":"number"},"scheduledRootHash":{"type":"string","nullable":true},"previousHeaderProof":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/BlockProofDto"}]},"reserved":{"type":"string"},"lastExecutionResultHash":{"type":"string"},"lastExecutionResultNonce":{"type":"number"},"proof":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/BlockProofDto"}]}},"required":["hash","epoch","nonce","prevHash","proposer","pubKeyBitmap","round","shard","size","sizeTxs","stateRootHash","timestamp","txCount","gasConsumed","gasRefunded","gasPenalized","maxGasLimit","reserved","lastExecutionResultHash","lastExecutionResultNonce"]},"BlockDetailed":{"type":"object","properties":{"hash":{"type":"string"},"epoch":{"type":"number"},"nonce":{"type":"number"},"prevHash":{"type":"string"},"proposer":{"type":"string"},"proposerIdentity":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/Identity"}]},"pubKeyBitmap":{"type":"string"},"round":{"type":"number"},"shard":{"type":"number"},"size":{"type":"number"},"sizeTxs":{"type":"number"},"stateRootHash":{"type":"string"},"timestamp":{"type":"number"},"timestampMs":{"type":"number","nullable":true},"txCount":{"type":"number"},"gasConsumed":{"type":"number"},"gasRefunded":{"type":"number"},"gasPenalized":{"type":"number"},"maxGasLimit":{"type":"number"},"scheduledRootHash":{"type":"string","nullable":true},"previousHeaderProof":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/BlockProofDto"}]},"reserved":{"type":"string"},"lastExecutionResultHash":{"type":"string"},"lastExecutionResultNonce":{"type":"number"},"proof":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/BlockProofDto"}]},"miniBlocksHashes":{"type":"array","items":{"type":"string"}},"notarizedBlocksHashes":{"type":"array","items":{"type":"string"}},"validators":{"type":"array","items":{"type":"string"}}},"required":["hash","epoch","nonce","prevHash","proposer","pubKeyBitmap","round","shard","size","sizeTxs","stateRootHash","timestamp","txCount","gasConsumed","gasRefunded","gasPenalized","maxGasLimit","reserved","lastExecutionResultHash","lastExecutionResultNonce","miniBlocksHashes","notarizedBlocksHashes","validators"]},"NftCollection":{"type":"object","properties":{"collection":{"type":"string"},"type":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"subType":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""],"nullable":true},"name":{"type":"string"},"ticker":{"type":"string"},"owner":{"type":"string","nullable":true},"timestamp":{"type":"number"},"timestampMs":{"type":"number","nullable":true},"canFreeze":{"type":"boolean","default":false},"canWipe":{"type":"boolean","default":false},"canPause":{"type":"boolean","default":false},"canTransferNftCreateRole":{"type":"boolean","default":false},"canChangeOwner":{"type":"boolean","default":false},"canUpgrade":{"type":"boolean","default":false},"canAddSpecialRoles":{"type":"boolean","default":false},"decimals":{"type":"number","nullable":true},"assets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenAssets"}]},"scamInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ScamInfo"}]},"traits":{"type":"array","items":{"$ref":"#/components/schemas/CollectionTrait"}},"auctionStats":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/CollectionAuctionStats"}]},"isVerified":{"type":"boolean","nullable":true},"holderCount":{"type":"number","nullable":true},"nftCount":{"type":"number","nullable":true}},"required":["collection","type","subType","name","ticker","owner","timestamp","canFreeze","canWipe","canPause","canTransferNftCreateRole","canChangeOwner","canUpgrade","canAddSpecialRoles","decimals"]},"NftCollectionDetailed":{"type":"object","properties":{"collection":{"type":"string"},"type":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"subType":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""],"nullable":true},"name":{"type":"string"},"ticker":{"type":"string"},"owner":{"type":"string","nullable":true},"timestamp":{"type":"number"},"timestampMs":{"type":"number","nullable":true},"canFreeze":{"type":"boolean","default":false},"canWipe":{"type":"boolean","default":false},"canPause":{"type":"boolean","default":false},"canTransferNftCreateRole":{"type":"boolean","default":false},"canChangeOwner":{"type":"boolean","default":false},"canUpgrade":{"type":"boolean","default":false},"canAddSpecialRoles":{"type":"boolean","default":false},"decimals":{"type":"number","nullable":true},"assets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenAssets"}]},"scamInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ScamInfo"}]},"traits":{"type":"array","items":{"$ref":"#/components/schemas/CollectionTrait"}},"auctionStats":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/CollectionAuctionStats"}]},"isVerified":{"type":"boolean","nullable":true},"holderCount":{"type":"number","nullable":true},"nftCount":{"type":"number","nullable":true},"canTransfer":{"type":"boolean","nullable":true},"roles":{"type":"array","items":{"$ref":"#/components/schemas/CollectionRoles"}}},"required":["collection","type","subType","name","ticker","owner","timestamp","canFreeze","canWipe","canPause","canTransferNftCreateRole","canChangeOwner","canUpgrade","canAddSpecialRoles","decimals","canTransfer","roles"]},"NftRank":{"type":"object","properties":{"identifier":{"type":"string"},"rank":{"type":"number"}},"required":["identifier","rank"]},"Nft":{"type":"object","properties":{"identifier":{"type":"string"},"collection":{"type":"string"},"hash":{"type":"string"},"timestamp":{"type":"number","nullable":true},"attributes":{"type":"string"},"nonce":{"type":"number"},"type":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"subType":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""]},"name":{"type":"string"},"creator":{"type":"string"},"royalties":{"type":"number","nullable":true},"uris":{"type":"array","items":{"type":"string"}},"url":{"type":"string"},"media":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/NftMedia"}]},"isWhitelistedStorage":{"type":"boolean","default":false},"thumbnailUrl":{"type":"string"},"tags":{"type":"array","items":{"type":"string"}},"metadata":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/NftMetadata"}]},"owner":{"type":"string","nullable":true},"balance":{"type":"string","nullable":true},"supply":{"example":"\"2070000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"decimals":{"type":"number","nullable":true},"assets":{"$ref":"#/components/schemas/TokenAssets"},"ticker":{"type":"string"},"scamInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ScamInfo"}]},"score":{"type":"number","nullable":true},"rank":{"type":"number","nullable":true},"rarities":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/NftRarities"}]},"isNsfw":{"type":"boolean","nullable":true},"unlockSchedule":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/UnlockMileStoneModel"}},"unlockEpoch":{"type":"number","nullable":true}},"required":["identifier","collection","hash","timestamp","attributes","nonce","type","subType","name","creator","royalties","uris","url","metadata","owner","balance","supply","decimals","ticker","isNsfw"]},"CollectionAccount":{"type":"object","properties":{"address":{"type":"string","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"balance":{"type":"string","default":"1"}},"required":["address","balance"]},"Delegation":{"type":"object","properties":{"stake":{"example":"\"50000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"topUp":{"example":"\"6890000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"locked":{"example":"\"3030000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"minDelegation":{"example":"\"9620000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]}},"required":["stake","topUp","locked","minDelegation"]},"DelegationLegacy":{"type":"object","properties":{"totalWithdrawOnlyStake":{"example":"\"420000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"totalWaitingStake":{"example":"\"5480000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"totalActiveStake":{"example":"\"4260000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"totalUnstakedStake":{"example":"\"7820000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"totalDeferredPaymentStake":{"example":"\"5250000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"numUsers":{"type":"number"}},"required":["totalWithdrawOnlyStake","totalWaitingStake","totalActiveStake","totalUnstakedStake","totalDeferredPaymentStake","numUsers"]},"KeyUnbondPeriod":{"type":"object","properties":{"remainingUnBondPeriod":{"type":"number","example":10}},"required":["remainingUnBondPeriod"]},"MiniBlockDetailed":{"type":"object","properties":{"miniBlockHash":{"type":"string","example":"c956ecbefbba25f0bcb0b182357d41287384fb8707d5860ad5cacc66f3fe0bc8"},"receiverBlockHash":{"type":"string","example":"3d008f54446e7f3c636159e0f4934267e154541a95665477676ea7f3abbc0aa7"},"receiverShard":{"type":"number","example":0},"senderBlockHash":{"type":"string","example":"3d008f54446e7f3c636159e0f4934267e154541a95665477676ea7f3abbc0aa7"},"senderShard":{"type":"number","example":0},"timestamp":{"type":"number","example":1646579514},"type":{"type":"string","example":"TxBlock"}},"required":["miniBlockHash","receiverBlockHash","receiverShard","senderBlockHash","senderShard","timestamp","type"]},"NetworkConstants":{"type":"object","properties":{"chainId":{"type":"string","description":"The chain identifier"},"gasPerDataByte":{"type":"number","description":"Gas per data byte"},"minGasLimit":{"type":"number","description":"Minimum gas limit"},"minGasPrice":{"type":"number","description":"Minimum gas price"},"minTransactionVersion":{"type":"number","description":"Minimum transaction version"},"gasPriceModifier":{"type":"string","description":"Gas price modifier"}},"required":["chainId","gasPerDataByte","minGasLimit","minGasPrice","minTransactionVersion","gasPriceModifier"]},"Economics":{"type":"object","properties":{"totalSupply":{"type":"number"},"circulatingSupply":{"type":"number"},"staked":{"type":"number"},"price":{"type":"number"},"marketCap":{"type":"number"},"apr":{"type":"number"},"topUpApr":{"type":"number"},"baseApr":{"type":"number"},"tokenMarketCap":{"type":"number","nullable":true}},"required":["totalSupply","circulatingSupply","staked","price","marketCap","apr","topUpApr","baseApr","tokenMarketCap"]},"Stats":{"type":"object","properties":{"accounts":{"type":"number"},"blocks":{"type":"number"},"epoch":{"type":"number"},"refreshRate":{"type":"number"},"roundsPassed":{"type":"number"},"roundsPerEpoch":{"type":"number"},"shards":{"type":"number"},"transactions":{"type":"number"},"scResults":{"type":"number"}},"required":["accounts","blocks","epoch","refreshRate","roundsPassed","roundsPerEpoch","shards","transactions","scResults"]},"FeatureConfigs":{"type":"object","properties":{"eventsNotifier":{"type":"boolean","description":"Events notifier flag activation value"},"guestCaching":{"type":"boolean","description":"Guest caching flag activation value"},"transactionPool":{"type":"boolean","description":"Transaction pool flag activation value"},"transactionPoolWarmer":{"type":"boolean","description":"Transaction pool warmer flag activation value"},"updateCollectionExtraDetails":{"type":"boolean","description":"Update Collection extra details flag activation value"},"updateAccountsExtraDetails":{"type":"boolean","description":"Accounts extra details update flag activation value"},"marketplace":{"type":"boolean","description":"Marketplace flag activation value"},"exchange":{"type":"boolean","description":"Exchange flag activation value"},"dataApi":{"type":"boolean","description":"Data API flag activation value"},"auth":{"type":"boolean","description":"Authentication flag activation value"},"stakingV4":{"type":"boolean","description":"Staking V4 flag activation value"},"chainAndromeda":{"type":"boolean","description":"Chain Andromeda flag activation value"},"stakingV5":{"type":"boolean","description":"Staking v5 flag activation value"},"stakingV5ActivationEpoch":{"type":"number","description":"Staking v5 activation epoch"},"nodeEpochsLeft":{"type":"boolean","description":"Node epochs left flag activation value"},"transactionProcessor":{"type":"boolean","description":"Transaction processor flag activation value"},"transactionCompleted":{"type":"boolean","description":"Transaction completed flag activation value"},"transactionBatch":{"type":"boolean","description":"Transaction batch flag activation value"},"deepHistory":{"type":"boolean","description":"Deep history flag activation value"},"elasticCircuitBreaker":{"type":"boolean","description":"Elastic circuit breaker flag activation value"},"statusChecker":{"type":"boolean","description":"Status checker flag activation value"},"nftScamInfo":{"type":"boolean","description":"NFT scam info flag activation value"},"processNfts":{"type":"boolean","description":"NFT processing flag activation value"},"tps":{"type":"boolean","description":"TPS flag activation value"},"nodesFetch":{"type":"boolean","description":"Nodes fetch flag activation value"},"tokensFetch":{"type":"boolean","description":"Tokens fetch flag activation value"},"providersFetch":{"type":"boolean","description":"Providers fetch flag activation value"},"assetsFetch":{"type":"boolean","description":"Assets fetch flag activation value"}},"required":["eventsNotifier","guestCaching","transactionPool","transactionPoolWarmer","updateCollectionExtraDetails","updateAccountsExtraDetails","marketplace","exchange","dataApi","auth","stakingV4","chainAndromeda","stakingV5","stakingV5ActivationEpoch","nodeEpochsLeft","transactionProcessor","transactionCompleted","transactionBatch","deepHistory","elasticCircuitBreaker","statusChecker","nftScamInfo","processNfts","tps","nodesFetch","tokensFetch","providersFetch","assetsFetch"]},"About":{"type":"object","properties":{"appVersion":{"type":"string","nullable":true},"pluginsVersion":{"type":"string","nullable":true},"network":{"type":"string"},"cluster":{"type":"string"},"version":{"type":"string"},"indexerVersion":{"type":"string"},"gatewayVersion":{"type":"string"},"scamEngineVersion":{"type":"string","nullable":true},"features":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FeatureConfigs"}]}},"required":["appVersion","network","version","indexerVersion","gatewayVersion","features"]},"NftSupply":{"type":"object","properties":{"supply":{"type":"string","default":"1"}},"required":["supply"]},"NftOwner":{"type":"object","properties":{"address":{"type":"string","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"balance":{"type":"string","default":"1"}},"required":["address","balance"]},"Tag":{"type":"object","properties":{"tag":{"type":"string","nullable":true,"example":"sunny"},"count":{"type":"number","nullable":true,"example":46135}},"required":["tag","count"]},"Node":{"type":"object","properties":{"bls":{"type":"string"},"name":{"type":"string"},"version":{"type":"string","default":0},"rating":{"type":"number"},"tempRating":{"type":"number"},"ratingModifier":{"type":"number"},"shard":{"type":"number","nullable":true},"type":{"type":"string","enum":["observer","validator"],"nullable":true},"status":{"type":"string","enum":["new","unknown","waiting","eligible","jailed","queued","leaving","inactive","auction"],"nullable":true},"online":{"type":"boolean","default":false},"nonce":{"type":"number"},"instances":{"type":"number"},"owner":{"type":"string"},"identity":{"type":"string","nullable":true},"provider":{"type":"string"},"issues":{"type":"array","items":{"type":"string"}},"stake":{"example":"\"2400000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"topUp":{"example":"\"6100000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"locked":{"example":"\"5050000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"leaderFailure":{"type":"number","default":0},"leaderSuccess":{"type":"number","default":15},"validatorFailure":{"type":"number","default":0},"validatorIgnoredSignatures":{"type":"number","default":0},"validatorSuccess":{"type":"number","default":10000},"position":{"type":"number","default":0},"auctioned":{"type":"boolean","nullable":true},"auctionPosition":{"type":"number","nullable":true},"auctionTopUp":{"type":"string","nullable":true},"auctionQualified":{"type":"boolean","nullable":true},"fullHistory":{"type":"boolean","nullable":true},"syncProgress":{"type":"number","nullable":true},"remainingUnBondPeriod":{"type":"number","example":10},"isInDangerZone":{"type":"boolean","example":false},"epochsLeft":{"type":"number","example":15},"identityInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/Identity"}]},"qualifiedStake":{"type":"string","default":0}},"required":["bls","name","version","rating","tempRating","ratingModifier","shard","type","status","online","nonce","instances","owner","identity","provider","issues","stake","topUp","locked","leaderFailure","leaderSuccess","validatorFailure","validatorIgnoredSignatures","validatorSuccess","position","auctioned","auctionPosition","auctionTopUp","auctionQualified","fullHistory","syncProgress","remainingUnBondPeriod","isInDangerZone","epochsLeft","qualifiedStake"]},"NodeAuction":{"type":"object","properties":{"identity":{"type":"string"},"name":{"type":"string"},"description":{"type":"string","default":0},"avatar":{"type":"string"},"provider":{"type":"string"},"bls":{"type":"string"},"stake":{"type":"string"},"owner":{"type":"string"},"distribution":{"type":"object"},"auctionTopUp":{"type":"string"},"qualifiedStake":{"type":"string"},"auctionValidators":{"type":"number"},"qualifiedAuctionValidators":{"type":"number"},"droppedValidators":{"type":"number"},"dangerZoneValidators":{"type":"number"}},"required":["identity","name","bls","stake","owner","auctionTopUp","qualifiedStake","auctionValidators","qualifiedAuctionValidators","droppedValidators","dangerZoneValidators"]},"Provider":{"type":"object","properties":{"numNodes":{"type":"number","description":"Number of nodes","example":10},"stake":{"type":"number","description":"Number of stake","example":100},"topUp":{"type":"number","description":"Number of topUp","example":100},"locked":{"type":"number","description":"Locked number","example":100},"provider":{"type":"string"},"owner":{"type":"string","nullable":true},"featured":{"type":"boolean","default":false},"serviceFee":{"example":"\"2570000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"delegationCap":{"example":"\"8360000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"apr":{"example":"\"4700000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"numUsers":{"example":"\"4620000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"cumulatedRewards":{"type":"string","nullable":true},"identity":{"type":"string","nullable":true},"initialOwnerFunds":{"type":"string"},"automaticActivation":{"type":"boolean","default":false},"checkCapOnRedelegate":{"type":"boolean","default":false},"ownerBelowRequiredBalanceThreshold":{"type":"boolean","default":false},"totalUnStaked":{"type":"string"},"createdNonce":{"type":"number"},"githubProfileValidated":{"type":"boolean","nullable":true},"githubProfileValidatedAt":{"type":"string","nullable":true},"githubKeysValidated":{"type":"boolean","nullable":true},"githubKeysValidatedAt":{"type":"string","nullable":true},"identityInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/Identity"}]}},"required":["numNodes","stake","topUp","locked","provider","owner","featured","serviceFee","delegationCap","apr","numUsers","cumulatedRewards","initialOwnerFunds","automaticActivation","checkCapOnRedelegate","ownerBelowRequiredBalanceThreshold","totalUnStaked","createdNonce"]},"Round":{"type":"object","properties":{"blockWasProposed":{"type":"boolean","default":false},"round":{"type":"number","example":9171722},"shard":{"type":"number","example":1},"epoch":{"type":"number","example":636},"timestamp":{"type":"number","example":1651148112},"timestampMs":{"type":"number","example":1651148112000}},"required":["blockWasProposed","round","shard","epoch","timestamp"]},"RoundDetailed":{"type":"object","properties":{"blockWasProposed":{"type":"boolean","default":false},"round":{"type":"number","example":9171722},"shard":{"type":"number","example":1},"epoch":{"type":"number","example":636},"timestamp":{"type":"number","example":1651148112},"timestampMs":{"type":"number","example":1651148112000},"signers":{"description":"Signers","type":"array","items":{"type":"string"}}},"required":["blockWasProposed","round","shard","epoch","timestamp","signers"]},"Shard":{"type":"object","properties":{"shard":{"type":"number","description":"Shard details","example":1},"validators":{"type":"number","description":"Validators details","example":800},"activeValidators":{"type":"number","description":"Active validators details","example":800}},"required":["shard","validators","activeValidators"]},"GlobalStake":{"type":"object","properties":{"totalValidators":{"type":"number","default":3200},"activeValidators":{"type":"number","default":3199},"totalObservers":{"type":"number","default":3199},"queueSize":{"type":"number","default":2},"totalStaked":{"example":"\"4550000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"minimumAuctionQualifiedTopUp":{"type":"string","nullable":true},"minimumAuctionQualifiedStake":{"type":"string","nullable":true},"auctionValidators":{"type":"number","nullable":true},"nakamotoCoefficient":{"type":"number","nullable":true},"dangerZoneValidators":{"type":"number","nullable":true},"eligibleValidators":{"type":"number","nullable":true},"waitingValidators":{"type":"number","nullable":true},"qualifiedAuctionValidators":{"type":"number","nullable":true},"allStakedNodes":{"type":"number","nullable":true}},"required":["totalValidators","activeValidators","totalObservers","queueSize","totalStaked","minimumAuctionQualifiedTopUp","minimumAuctionQualifiedStake","auctionValidators","nakamotoCoefficient","dangerZoneValidators","eligibleValidators","waitingValidators","qualifiedAuctionValidators","allStakedNodes"]},"TokenDetailed":{"type":"object","properties":{"type":{"type":"string","enum":["FungibleESDT","NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"subType":{"type":"string","enum":["NonFungibleESDT","SemiFungibleESDT","MetaESDT","NonFungibleESDTv2","DynamicNonFungibleESDT","DynamicSemiFungibleESDT","DynamicMetaESDT",""]},"identifier":{"type":"string"},"collection":{"type":"string","nullable":true},"nonce":{"type":"number","nullable":true},"name":{"type":"string"},"ticker":{"type":"string"},"owner":{"type":"string"},"minted":{"example":"\"5760000000000000000\"","title":"Amount","description":"Minted amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"burnt":{"example":"\"8250000000000000000\"","title":"Amount","description":"Burnt amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"initialMinted":{"example":"\"2120000000000000000\"","title":"Amount","description":"Initial minted amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"decimals":{"type":"number"},"isPaused":{"type":"boolean","default":false},"assets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenAssets"}]},"transactions":{"type":"number","nullable":true},"transactionsLastUpdatedAt":{"type":"number","nullable":true},"transfers":{"type":"number","nullable":true},"transfersLastUpdatedAt":{"type":"number","nullable":true},"accounts":{"type":"number","nullable":true},"accountsLastUpdatedAt":{"type":"number","nullable":true},"canUpgrade":{"type":"boolean","default":false},"canMint":{"type":"boolean","nullable":true},"canBurn":{"type":"boolean","nullable":true},"canChangeOwner":{"type":"boolean","nullable":true},"canAddSpecialRoles":{"type":"boolean","nullable":true},"canPause":{"type":"boolean","default":false},"canFreeze":{"type":"boolean","nullable":true},"canWipe":{"type":"boolean","default":false},"canTransferNftCreateRole":{"type":"boolean","nullable":true},"price":{"type":"number","nullable":true},"marketCap":{"type":"number","nullable":true},"supply":{"example":"\"3080000000000000000\"","title":"Amount","description":"Supply amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"circulatingSupply":{"example":"\"9400000000000000000\"","title":"Amount","description":"Circulating supply amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"timestamp":{"type":"number","description":"Creation timestamp"},"mexPairType":{"type":"string","enum":["core","community","ecosystem","experimental","unlisted"]},"totalLiquidity":{"type":"number","nullable":true},"totalVolume24h":{"type":"number","nullable":true},"isLowLiquidity":{"type":"boolean","nullable":true},"lowLiquidityThresholdPercent":{"type":"number","nullable":true},"tradesCount":{"type":"number","nullable":true},"ownersHistory":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TokenOwnersHistory"}]},"roles":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/TokenRoles"}},"canTransfer":{"type":"boolean","nullable":true}},"required":["type","subType","identifier","name","ticker","owner","minted","burnt","initialMinted","decimals","isPaused","transactions","transactionsLastUpdatedAt","transfers","transfersLastUpdatedAt","accounts","accountsLastUpdatedAt","canUpgrade","canMint","canBurn","canChangeOwner","canAddSpecialRoles","canPause","canFreeze","canWipe","canTransferNftCreateRole","supply","circulatingSupply","timestamp","mexPairType","ownersHistory","roles","canTransfer"]},"EsdtSupply":{"type":"object","properties":{"totalSupply":{"example":"\"3790000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"circulatingSupply":{"example":"\"2260000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"minted":{"example":"\"1590000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"burned":{"example":"\"2950000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"initialMinted":{"example":"\"4250000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"lockedAccounts":{"type":"object"}},"required":["totalSupply","circulatingSupply","minted","burned","initialMinted","lockedAccounts"]},"TokenAccount":{"type":"object","properties":{"address":{"type":"string","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"balance":{"example":"\"740000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"identifier":{"type":"string","nullable":true},"attributes":{"type":"string","nullable":true},"assets":{"nullable":true,"description":"Account assets","allOf":[{"$ref":"#/components/schemas/AccountAssets"}]}},"required":["address","balance","identifier","attributes","assets"]},"TransactionReceipt":{"type":"object","properties":{"value":{"type":"string"},"sender":{"type":"string"},"data":{"type":"string"}},"required":["value","sender","data"]},"TransactionOperation":{"type":"object","properties":{"id":{"type":"string"},"action":{"type":"string","enum":["none","transfer","transferValueOnly","burn","addQuantity","create","localMint","localBurn","wipe","freeze","writeLog","signalError"],"default":"none"},"type":{"type":"string","enum":["none","nft","esdt","log","error","egld"],"default":"none"},"esdtType":{"type":"string","enum":["FungibleESDT","NonFungibleESDT","SemiFungibleESDT","MetaESDT"]},"identifier":{"type":"string"},"ticker":{"type":"string"},"collection":{"type":"string"},"name":{"type":"string"},"value":{"type":"string"},"valueUSD":{"type":"number"},"sender":{"type":"string"},"receiver":{"type":"string"},"senderAssets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"receiverAssets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"decimals":{"type":"number","nullable":true},"data":{"type":"string","nullable":true},"additionalData":{"type":"array","items":{"type":"string"}},"message":{"type":"string","nullable":true},"svgUrl":{"type":"string","nullable":true}},"required":["id","action","type","sender","receiver"]},"TransactionDetailed":{"type":"object","properties":{"txHash":{"type":"string"},"gasLimit":{"type":"number"},"gasPrice":{"type":"number"},"gasUsed":{"type":"number"},"miniBlockHash":{"type":"string"},"nonce":{"type":"number"},"receiver":{"type":"string"},"receiverUsername":{"type":"string","nullable":true},"receiverAssets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"receiverShard":{"type":"number"},"round":{"type":"number"},"epoch":{"type":"number"},"sender":{"type":"string"},"senderUsername":{"type":"string","nullable":true},"senderAssets":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"senderShard":{"type":"number"},"signature":{"type":"string"},"status":{"type":"string"},"value":{"type":"string"},"fee":{"type":"string"},"timestamp":{"type":"number"},"timestampMs":{"type":"number"},"data":{"type":"string","nullable":true},"function":{"type":"string","nullable":true},"action":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TransactionAction"}]},"scamInfo":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ScamInfo"}]},"type":{"type":"string","enum":["Transaction","SmartContractResult","Reward"],"nullable":true},"originalTxHash":{"type":"string","nullable":true},"pendingResults":{"type":"boolean","nullable":true},"guardianAddress":{"type":"string","nullable":true},"guardianSignature":{"type":"string","nullable":true},"isRelayed":{"type":"string","nullable":true},"relayer":{"type":"string","nullable":true},"relayerSignature":{"type":"string","nullable":true},"isScCall":{"type":"boolean","nullable":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/SmartContractResult"}},"receipt":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TransactionReceipt"}]},"price":{"type":"number","nullable":true},"logs":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TransactionLog"}]},"operations":{"type":"array","items":{"$ref":"#/components/schemas/TransactionOperation"}},"senderBlockHash":{"type":"string","nullable":true},"senderBlockNonce":{"type":"number","nullable":true},"receiverBlockHash":{"type":"string","nullable":true},"receiverBlockNonce":{"type":"number","nullable":true},"inTransit":{"type":"boolean","nullable":true},"relayedVersion":{"type":"string","nullable":true}},"required":["txHash","gasLimit","gasPrice","gasUsed","miniBlockHash","nonce","receiver","receiverShard","round","epoch","sender","senderShard","signature","status","value","fee","timestamp","timestampMs","results","receipt","price","logs","operations","senderBlockHash","senderBlockNonce","receiverBlockHash","receiverBlockNonce","inTransit","relayedVersion"]},"TransactionCreate":{"type":"object","properties":{"chainId":{"type":"string"},"data":{"type":"string"},"gasLimit":{"type":"number"},"gasPrice":{"type":"number"},"nonce":{"type":"number"},"receiver":{"type":"string"},"receiverUsername":{"type":"object"},"sender":{"type":"string"},"senderUsername":{"type":"object"},"signature":{"type":"string"},"value":{"type":"string"},"version":{"type":"number"},"options":{"type":"number"},"guardian":{"type":"string"},"guardianSignature":{"type":"string"},"relayer":{"type":"string"},"relayerSignature":{"type":"string"}},"required":["chainId","data","gasLimit","gasPrice","nonce","receiver","receiverUsername","sender","senderUsername","signature","value","version","options","guardian","guardianSignature","relayer","relayerSignature"]},"TransactionSendResult":{"type":"object","properties":{"receiver":{"type":"string"},"receiverShard":{"type":"number"},"sender":{"type":"string"},"senderShard":{"type":"number"},"status":{"type":"string"},"txHash":{"type":"string"}},"required":["receiver","receiverShard","sender","senderShard","status","txHash"]},"TransactionDecodeDto":{"type":"object","properties":{"action":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TransactionAction"}]},"data":{"type":"string"},"receiver":{"type":"string"},"sender":{"type":"string"},"value":{"type":"string"}},"required":["action","data","receiver","sender","value"]},"PpuMetadata":{"type":"object","properties":{"lastBlock":{"type":"number","description":"Last processed block number","example":47428477},"fast":{"type":"number","description":"Price per unit for standard (medium priority) transactions","example":20000000},"faster":{"type":"number","description":"Price per unit for fast (high priority) transactions","example":40000000}},"required":["lastBlock","fast","faster"]},"AccountUsername":{"type":"object","properties":{"address":{"type":"string","example":"erd1qga7ze0l03chfgru0a32wxqf2226nzrxnyhzer9lmudqhjgy7ycqjjyknz"},"nonce":{"type":"number","example":12,"nullable":true},"balance":{"example":"\"20000000000000000\"","title":"Amount","allOf":[{"$ref":"#/components/schemas/Amount"}]},"rootHash":{"type":"string","example":"829LsRk/pB5HCJZTvZzkBJ8g4ca1RiBpYjLzzK61pwM="},"txCount":{"type":"number","example":47,"nullable":true},"scrCount":{"type":"number","example":49,"nullable":true},"username":{"type":"string","example":"alice.elrond"},"shard":{"type":"number","example":0,"nullable":true},"developerReward":{"type":"string","default":0}},"required":["address","nonce","balance","rootHash","txCount","scrCount","username","shard","developerReward"]},"VmQueryRequest":{"type":"object","properties":{}},"DappConfig":{"type":"object","properties":{"id":{"type":"string","example":"mainnet"},"name":{"type":"string","example":"Mainnet"},"egldLabel":{"type":"string","example":"EGLD"},"decimals":{"type":"string","example":"4"},"egldDenomination":{"type":"string","example":"18"},"gasPerDataByte":{"type":"string","example":"1500"},"apiTimeout":{"type":"string","example":"4000"},"walletConnectDeepLink":{"type":"string","example":"https://maiar.page.link/?apn=com.multiversx.maiar.wallet&isi=1519405832&ibi=com.multiversx.maiar.wallet&link=https://maiar.com/"},"walletConnectBridgeAddresses":{"example":"https://bridge.walletconnect.org","type":"array","items":{"type":"string"}},"walletAddress":{"type":"string","example":"https://wallet.multiversx.com"},"apiAddress":{"type":"string","example":"https://api.multiversx.com"},"explorerAddress":{"type":"string","example":"https://explorer.multiversx.com"},"chainId":{"type":"string","example":"1"},"refreshRate":{"type":"number","example":6000}},"required":["id","name","egldLabel","decimals","egldDenomination","gasPerDataByte","apiTimeout","walletConnectDeepLink","walletConnectBridgeAddresses","walletAddress","apiAddress","explorerAddress","chainId","refreshRate"]},"WebsocketConfig":{"type":"object","properties":{"url":{"type":"string"}},"required":["url"]},"ProcessNftRequest":{"type":"object","properties":{"collection":{"type":"string","nullable":true},"identifier":{"type":"string","nullable":true},"forceRefreshMedia":{"type":"boolean","nullable":true},"forceRefreshMetadata":{"type":"boolean","nullable":true},"forceRefreshThumbnail":{"type":"boolean","nullable":true},"skipRefreshThumbnail":{"type":"boolean","nullable":true},"uploadAsset":{"type":"boolean","nullable":true}},"required":["collection","identifier","forceRefreshMedia","forceRefreshMetadata","forceRefreshThumbnail","skipRefreshThumbnail","uploadAsset"]},"TransactionBatchSimplified":{"type":"object","properties":{}},"Application":{"type":"object","properties":{"contract":{"type":"string"},"deployer":{"type":"string"},"owner":{"type":"string"},"codeHash":{"type":"string"},"timestamp":{"type":"number"},"assets":{"nullable":true,"description":"Contract assets","allOf":[{"$ref":"#/components/schemas/AccountAssets"}]},"balance":{"type":"string"},"txCount":{"type":"number"}},"required":["contract","deployer","owner","codeHash","timestamp","assets","balance"]},"Events":{"type":"object","properties":{"txHash":{"type":"string","description":"Transaction hash."},"logAddress":{"type":"string","description":"Log address."},"identifier":{"type":"string","description":"Event identifier."},"address":{"type":"string","description":"Event address."},"data":{"type":"string","description":"Event data."},"topics":{"description":"Event topics.","type":"array","items":{"type":"string"}},"shardID":{"type":"number","description":"Event shard ID."},"additionalData":{"description":"Event additional data.","type":"array","items":{"type":"string"}},"txOrder":{"type":"number","description":"Event tx order."},"order":{"type":"number","description":"Event block order."},"timestamp":{"type":"number","description":"Event timestamp."},"timestampMs":{"type":"number","description":"Event timestamp in milliseconds.","nullable":true}},"required":["txHash","logAddress","identifier","address","data","topics","shardID","additionalData","txOrder","order","timestamp"]},"Bids":{"type":"object","properties":{"amount":{"type":"string"},"token":{"type":"string"}},"required":["amount","token"]},"Auctions":{"type":"object","properties":{"owner":{"type":"string"},"auctionId":{"type":"number"},"identifier":{"type":"string"},"collection":{"type":"string"},"status":{"type":"string","enum":["running","claimable","ended","closed","unknown"]},"auctionType":{"type":"string"},"createdAt":{"type":"number"},"endsAt":{"type":"number"},"marketplaceAuctionId":{"type":"number"},"marketplace":{"type":"string"},"minBid":{"$ref":"#/components/schemas/Bids"},"maxBid":{"$ref":"#/components/schemas/Bids"}},"required":["owner","auctionId","identifier","collection","status","auctionType","createdAt","endsAt","marketplaceAuctionId","marketplace","minBid","maxBid"]},"AccountAuctionStats":{"type":"object","properties":{"auctions":{"type":"number"},"claimable":{"type":"number"},"collected":{"type":"number"},"collections":{"type":"number"},"creations":{"type":"number"},"likes":{"type":"number"},"orders":{"type":"number"}},"required":["auctions","claimable","collected","collections","creations","likes","orders"]},"Auction":{"type":"object","properties":{"owner":{"type":"string"},"auctionId":{"type":"number"},"identifier":{"type":"string"},"collection":{"type":"string"},"status":{"type":"string","enum":["running","claimable","ended","closed","unknown"]},"auctionType":{"type":"string"},"createdAt":{"type":"number"},"endsAt":{"type":"number"},"marketplaceAuctionId":{"type":"string"},"marketplace":{"type":"string"},"minBid":{"$ref":"#/components/schemas/Bids"},"maxBid":{"$ref":"#/components/schemas/Bids"}},"required":["owner","auctionId","identifier","collection","status","auctionType","createdAt","endsAt","marketplaceAuctionId","marketplace","minBid","maxBid"]},"MexEconomics":{"type":"object","properties":{"totalSupply":{"type":"number","example":8045920000000},"circulatingSupply":{"type":"number","example":4913924072690},"price":{"type":"number","example":0.00020552146843751037},"marketCap":{"type":"number","example":1009916891},"volume24h":{"type":"number","example":13680479},"marketPairs":{"type":"number","example":15}},"required":["totalSupply","circulatingSupply","price","marketCap","volume24h","marketPairs"]},"MexPair":{"type":"object","properties":{"address":{"type":"string"},"id":{"type":"string"},"symbol":{"type":"string"},"name":{"type":"string"},"price":{"type":"number"},"basePrevious24hPrice":{"type":"number"},"quotePrevious24hPrice":{"type":"number"},"baseId":{"type":"string","example":"MEX-455c57"},"baseSymbol":{"type":"string","example":"MEX"},"baseName":{"type":"string","example":"MEX"},"basePrice":{"type":"number","example":0.00020596180499578328},"quoteId":{"type":"string","example":"WEGLD-bd4d79"},"quoteSymbol":{"type":"string","example":"WEGLD"},"quoteName":{"type":"string","example":"WrappedEGLD"},"quotePrice":{"type":"number","example":145.26032},"totalValue":{"type":"number","example":"347667206.84174806"},"volume24h":{"type":"number","example":"2109423.4531209776"},"state":{"type":"string","enum":["active","inactive","paused","partial"]},"type":{"type":"string","enum":["core","community","ecosystem","experimental","unlisted"]},"exchange":{"type":"string","example":"jungledex"},"tradesCount":{"type":"number","nullable":true},"tradesCount24h":{"type":"number","nullable":true},"deployedAt":{"type":"number","nullable":true},"hasFarms":{"type":"boolean","nullable":true},"hasDualFarms":{"type":"boolean","nullable":true}},"required":["address","id","symbol","name","price","basePrevious24hPrice","quotePrevious24hPrice","baseId","baseSymbol","baseName","basePrice","quoteId","quoteSymbol","quoteName","quotePrice","totalValue","volume24h","state","type","exchange","tradesCount","tradesCount24h","deployedAt","hasFarms","hasDualFarms"]},"MexToken":{"type":"object","properties":{"id":{"type":"string","example":"MEX-455c57"},"symbol":{"type":"string","example":"MEX"},"name":{"type":"string","example":"MEX"},"price":{"type":"number","example":0.00020673875825058},"previous24hPrice":{"type":"number","example":0.00020673875825058},"previous24hVolume":{"type":"number","example":0.00020673875825058},"tradesCount":{"type":"number","nullable":true}},"required":["id","symbol","name","price","previous24hPrice","previous24hVolume","tradesCount"]},"MexFarm":{"type":"object","properties":{"type":{"type":"string","enum":["standard","metastaking"]},"version":{"type":"string","nullable":true},"address":{"type":"string","example":"erd1qqqqqqqqqqqqqpgqzps75vsk97w9nsx2cenv2r2tyxl4fl402jpsx78m9j"},"id":{"type":"string"},"symbol":{"type":"string"},"name":{"type":"string"},"price":{"type":"number"},"farmingId":{"type":"string"},"farmingSymbol":{"type":"string"},"farmingName":{"type":"string"},"farmingPrice":{"type":"number"},"farmedId":{"type":"string"},"farmedSymbol":{"type":"string"},"farmedName":{"type":"string"},"farmedPrice":{"type":"number"}},"required":["type","address","id","symbol","name","price","farmingId","farmingSymbol","farmingName","farmingPrice","farmedId","farmedSymbol","farmedName","farmedPrice"]},"MexTokenChart":{"type":"object","properties":{"timestamp":{"type":"number"},"value":{"type":"number"}},"required":["timestamp","value"]},"TransactionInPool":{"type":"object","properties":{"txHash":{"type":"string","example":"6dc737fcb21e6f599c557f6001f78ae1f073241d1bd9b488b02f86c5131d477c"},"sender":{"type":"string","example":"erd17rc0pu8s7rc0pu8s7rc0pu8s7rc0pu8s7rc0pu8s7rc0pu8s7rcqqkhty3"},"receiver":{"type":"string","example":"erd1an4xpn58j7ymd58m2jznr32t0vmas75egrdfa8mta6fzvqn9tkxq4jvghn"},"receiverUsername":{"type":"string","example":"alice.elrond"},"guardian":{"type":"string","example":"erd17rc0pu8s7rc0pu8s7rc0pu8s7rc0pu8s7rc0pu8s7rc0pu8s7rcqqkhty3"},"guardianSignature":{"type":"string","example":"0228618b6339c5eaf71ed1a8cd71df010ccd0369a29d957c37d53b0409408161726dd97e10ac7836996f666ffd636a797b9b9abecbd276971376fb3479b48203"},"nonce":{"type":"number","example":37},"value":{"type":"string","example":"83499410000000000000000"},"data":{"type":"string","example":"dGV4dA=="},"gasPrice":{"type":"number","example":1000000000},"gasLimit":{"type":"number","example":50000},"senderShard":{"type":"number","example":0},"receiverShard":{"type":"number","example":1},"signature":{"type":"string","example":"0228618b6339c5eaf71ed1a8cd71df010ccd0369a29d957c37d53b0409408161726dd97e10ac7836996f666ffd636a797b9b9abecbd276971376fb3479b48203"},"function":{"type":"string","nullable":true,"example":"composeTasks"},"type":{"type":"string","example":"SmartContractResult"}},"required":["txHash","sender","receiver","receiverUsername","guardian","guardianSignature","nonce","value","data","gasPrice","gasLimit","senderShard","receiverShard","signature","type"]}}},"externalDocs":{"description":"Find out more about Multiversx API","url":"https://docs.multiversx.com/sdk-and-tools/rest-api/rest-api/"}}