diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d092e71..621c4f65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ - Added `TransactNamespace.sendGasOptimizedTransaction()`. Instead of sending a single transaction that might not get mined, this method allows you to send the same transaction multiple times, with different gas prices and gas limits. This should result in lower fees paid. +## 2.2.2 + +### Major Changes + ### Minor Changes - Added support for ENS resolution to the `NotifyNamespace` and `WebsocketNamespace` methods. diff --git a/docs-md/README.md b/docs-md/README.md index eecd90d6..d93ba78b 100644 --- a/docs-md/README.md +++ b/docs-md/README.md @@ -8,7 +8,9 @@ It supports the exact same syntax and functionality of the Ethers.js `AlchemyPro The SDK leverages Alchemy's hardened node infrastructure, guaranteeing best-in-class node reliability, scalability, and data correctness, and is undergoing active development by Alchemy's engineers. -> 🙋‍♀️ **FEATURE REQUESTS:** We'd love your thoughts on what would improve your web3 dev process the most! If you have 5 minutes, tell us what you want on our [Feature Request feedback form](https://alchemyapi.typeform.com/sdk-feedback), and we'd love to build it for you: +> 🙋‍♀️ **FEATURE REQUESTS:** +> +> We'd love your thoughts on what would improve your web3 dev process the most! If you have 5 minutes, tell us what you want on our [Feature Request feedback form](https://alchemyapi.typeform.com/sdk-feedback), and we'd love to build it for you. The SDK currently supports the following chains: @@ -40,6 +42,10 @@ const settings = { const alchemy = new Alchemy(settings); ``` +> **ℹ️ Creating a unique Alchemy API Key** +> +> The public "demo" API key may be rate limited based on traffic. To create your own API key, **[sign up for an Alchemy account here](https://alchemy.com/?a=SDKquickstart)** and use the key created on your dashboard for the first app. + The `Alchemy` object returned by `new Alchemy()` provides access to the Alchemy API. An optional config object can be passed in when initializing to set your API key, change the network, or specify the max number of retries. ## Using the Alchemy SDK @@ -54,6 +60,10 @@ The Alchemy SDK currently supports five different namespaces, including: If you are already using Ethers.js, you should be simply able to replace the Ethers.js Provider object with `alchemy.core` and it should work properly. +> **ℹ️ ENS Name Resolution** +> +> The Alchemy SDK now supports ENS names (e.g. `vitalik.eth`) for every parameter where you can pass in a Externally Owned Address, or user address (e.g. `0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045`). + ```ts import { Alchemy, AlchemySubscription } from 'alchemy-sdk'; @@ -80,6 +90,13 @@ alchemy.ws.on( ); ``` +The Alchemy SDK also supports a number of Ethers.js objects that streamline the development process: + +- [`Utils`](https://docs.ethers.io/v5/api/utils/): Equivalent to `ethers.utils`, this provides a number of common Ethers.js utility methods for developers. +- [`Contract`](https://docs.ethers.io/v5/api/contract/contract/): An abstraction for smart contract code deployed to the blockchain. +- [`ContractFactory`](https://docs.ethers.io/v5/api/contract/contract-factory/): Allows developers to build a `Contract` object. +- [`Wallet`](https://docs.ethers.io/v5/api/signer/#Wallet): An implementation of `Signer` that can sign transactions and messages using a private key as a standard Externally Owned Account. + ## Alchemy Core The core namespace contains all commonly-used [Ethers.js Provider](https://docs.ethers.io/v5/api/providers/api-providers/#AlchemyProvider) methods. If you are already using Ethers.js, you should be simply able to replace the Ethers.js Provider object with `alchemy.core` when accessing provider methods and it should just work. @@ -130,7 +147,7 @@ alchemy.ws.on('block', res => console.log(res)); alchemy.ws.once( { method: AlchemySubscription.PENDING_TRANSACTIONS, - toAddress: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48' + toAddress: 'vitalik.eth' }, res => console.log(res) ); @@ -171,7 +188,8 @@ The `transact` namespace also aliases over several commonly used methods from th The SDK currently supports the following [NFT API](https://docs.alchemy.com/alchemy/enhanced-apis/nft-api) endpoints under the `alchemy.nft` namespace: -- `getNftMetadata()`: Get the NFT metadata for a contract address and tokenId. +- `getNftMetadata()`: Get the NFT metadata for an NFT contract address and tokenId. +- `getNftMetadataBatch()`: Get the NFT metadata for multiple NFT contract addresses/token id pairs. - `getContractMetadata()`: Get the metadata associated with an NFT contract - `getNftsForOwner()`: Get NFTs for an owner address. - `getNftsForOwnerIterator()`: Get NFTs for an owner address as an async iterator (handles paging automatically). @@ -187,7 +205,9 @@ under the `alchemy.nft` namespace: - `refreshContract()`: Enqueues the specified contract address to have all token ids' metadata refreshed. - `getFloorPrice()`: Return the floor prices of a NFT contract by marketplace. - `computeRarity()`: Get the rarity of each attribute of an NFT. +- `getNftSales()`: Returns NFT sales that have happened through on-chain marketplaces. - `summarizeNftAttributes()`: Get the summary of attribute prevalence for all NFTs in a contract. +- `searchContractMetadata()`: Search for a keyword across metadata of all ERC-721 and ERC-1155 smart contracts. ### Using `BaseNft` and `Nft` @@ -264,7 +284,11 @@ or as a webpage by opening `docs/index.html` in your browser. ## Usage Examples -Below are a few usage examples. You can also find examples at the following page: [Examples Using the Alchemy SDK](https://docs.alchemy.com/reference/using-the-alchemy-sdk). +Below are a few usage examples. + +> **ℹ️ More Examples ** +> +> You can also go here: [Examples Using the Alchemy SDK](https://docs.alchemy.com/reference/using-the-alchemy-sdk). ### Getting the NFTs owned by an address @@ -328,9 +352,7 @@ import { Alchemy } from 'alchemy-sdk'; const alchemy = new Alchemy(); -alchemy.core - .getTokenBalances('0x994b342dd87fc825f66e51ffa3ef71ad818b6893') - .then(console.log); +alchemy.core.getTokenBalances('vitalik.eth').then(console.log); ``` ## Questions and Feedback diff --git a/docs-md/classes/Alchemy.md b/docs-md/classes/Alchemy.md index 3db2c8d0..b58299a7 100644 --- a/docs-md/classes/Alchemy.md +++ b/docs-md/classes/Alchemy.md @@ -37,7 +37,7 @@ different network or API key, create a new instance of [Alchemy](Alchemy.md). #### Defined in -[src/api/alchemy.ts:55](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy.ts#L55) +[src/api/alchemy.ts:55](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L55) ## Properties @@ -50,7 +50,7 @@ and allows access to the underlying providers. #### Defined in -[src/api/alchemy.ts:41](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy.ts#L41) +[src/api/alchemy.ts:41](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L41) ___ @@ -63,7 +63,7 @@ Enhanced APIs. #### Defined in -[src/api/alchemy.ts:23](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy.ts#L23) +[src/api/alchemy.ts:23](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L23) ___ @@ -75,7 +75,7 @@ The `nft` namespace contains methods for Alchemy's NFT API. #### Defined in -[src/api/alchemy.ts:26](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy.ts#L26) +[src/api/alchemy.ts:26](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L26) ___ @@ -88,7 +88,7 @@ as part of the Notify API. #### Defined in -[src/api/alchemy.ts:47](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy.ts#L47) +[src/api/alchemy.ts:47](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L47) ___ @@ -101,7 +101,7 @@ checking on the state of submitted transasctions. #### Defined in -[src/api/alchemy.ts:35](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy.ts#L35) +[src/api/alchemy.ts:35](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L35) ___ @@ -113,4 +113,4 @@ The `ws` namespace contains methods for using WebSockets and creating subscripti #### Defined in -[src/api/alchemy.ts:29](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy.ts#L29) +[src/api/alchemy.ts:29](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L29) diff --git a/docs-md/classes/AlchemyConfig.md b/docs-md/classes/AlchemyConfig.md index 5fadfabc..c9385a0a 100644 --- a/docs-md/classes/AlchemyConfig.md +++ b/docs-md/classes/AlchemyConfig.md @@ -15,6 +15,7 @@ exposes the underlying providers for more advanced use cases. - [apiKey](AlchemyConfig.md#apikey) - [authToken](AlchemyConfig.md#authtoken) +- [batchRequests](AlchemyConfig.md#batchrequests) - [maxRetries](AlchemyConfig.md#maxretries) - [network](AlchemyConfig.md#network) - [url](AlchemyConfig.md#url) @@ -38,7 +39,7 @@ exposes the underlying providers for more advanced use cases. #### Defined in -[src/api/alchemy-config.ts:55](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-config.ts#L55) +[src/api/alchemy-config.ts:58](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L58) ## Properties @@ -50,7 +51,7 @@ The Alchemy API key. #### Defined in -[src/api/alchemy-config.ts:22](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-config.ts#L22) +[src/api/alchemy-config.ts:22](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L22) ___ @@ -62,7 +63,19 @@ The optional Alchemy auth token to use when sending requests with the Notify API #### Defined in -[src/api/alchemy-config.ts:37](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-config.ts#L37) +[src/api/alchemy-config.ts:40](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L40) + +___ + +### batchRequests + +• `Readonly` **batchRequests**: `boolean` + +Setting to enable automatic batching on json-rpc requests. Defaults to false. + +#### Defined in + +[src/api/alchemy-config.ts:31](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L31) ___ @@ -74,7 +87,7 @@ The maximum number of retries to perform. #### Defined in -[src/api/alchemy-config.ts:28](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-config.ts#L28) +[src/api/alchemy-config.ts:28](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L28) ___ @@ -86,7 +99,7 @@ The Network that this SDK is associated with. #### Defined in -[src/api/alchemy-config.ts:25](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-config.ts#L25) +[src/api/alchemy-config.ts:25](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L25) ___ @@ -99,7 +112,7 @@ and apiKey. #### Defined in -[src/api/alchemy-config.ts:34](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-config.ts#L34) +[src/api/alchemy-config.ts:37](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L37) ## Methods @@ -123,7 +136,7 @@ other less-common methods. #### Defined in -[src/api/alchemy-config.ts:96](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-config.ts#L96) +[src/api/alchemy-config.ts:100](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L100) ___ @@ -148,4 +161,4 @@ other less-common methods. #### Defined in -[src/api/alchemy-config.ts:118](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-config.ts#L118) +[src/api/alchemy-config.ts:122](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L122) diff --git a/docs-md/classes/AlchemyProvider.md b/docs-md/classes/AlchemyProvider.md index 627b0886..b5e0ab45 100644 --- a/docs-md/classes/AlchemyProvider.md +++ b/docs-md/classes/AlchemyProvider.md @@ -41,6 +41,7 @@ Do not call this constructor directly. Instead, instantiate an instance of - [\_pollingInterval](AlchemyProvider.md#_pollinginterval) - [anyNetwork](AlchemyProvider.md#anynetwork) - [apiKey](AlchemyProvider.md#apikey) +- [batchRequests](AlchemyProvider.md#batchrequests) - [connection](AlchemyProvider.md#connection) - [disableCcipRead](AlchemyProvider.md#disableccipread) - [formatter](AlchemyProvider.md#formatter) @@ -400,7 +401,17 @@ ___ #### Defined in -[src/api/alchemy-provider.ts:39](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-provider.ts#L39) +[src/api/alchemy-provider.ts:41](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L41) + +___ + +### batchRequests + +• `Readonly` **batchRequests**: `boolean` + +#### Defined in + +[src/api/alchemy-provider.ts:43](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L43) ___ @@ -452,7 +463,7 @@ ___ #### Defined in -[src/api/alchemy-provider.ts:40](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-provider.ts#L40) +[src/api/alchemy-provider.ts:42](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L42) ## Accessors @@ -924,7 +935,7 @@ JsonRpcProvider.\_startPending #### Defined in -[src/api/alchemy-provider.ts:184](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-provider.ts#L184) +[src/api/alchemy-provider.ts:204](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L204) ___ @@ -1124,7 +1135,7 @@ JsonRpcProvider.detectNetwork #### Defined in -[src/api/alchemy-provider.ts:172](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-provider.ts#L172) +[src/api/alchemy-provider.ts:192](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L192) ___ @@ -1603,7 +1614,7 @@ CommunityResourcable.isCommunityResource #### Defined in -[src/api/alchemy-provider.ts:194](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-provider.ts#L194) +[src/api/alchemy-provider.ts:214](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L214) ___ @@ -1963,7 +1974,7 @@ JsonRpcProvider.send #### Defined in -[src/api/alchemy-provider.ts:208](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-provider.ts#L208) +[src/api/alchemy-provider.ts:228](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L228) ___ diff --git a/docs-md/classes/AlchemyWebSocketProvider.md b/docs-md/classes/AlchemyWebSocketProvider.md index a8cea2cd..38a37547 100644 --- a/docs-md/classes/AlchemyWebSocketProvider.md +++ b/docs-md/classes/AlchemyWebSocketProvider.md @@ -201,7 +201,7 @@ WebSocketProvider.\_events #### Defined in -[src/api/alchemy-websocket-provider.ts:84](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L84) +[src/api/alchemy-websocket-provider.ts:81](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L81) ___ @@ -503,7 +503,7 @@ ___ #### Defined in -[src/api/alchemy-websocket-provider.ts:85](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L85) +[src/api/alchemy-websocket-provider.ts:82](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L82) ___ @@ -940,7 +940,7 @@ order to parse the Alchemy subscription event. #### Defined in -[src/api/alchemy-websocket-provider.ts:950](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L950) +[src/api/alchemy-websocket-provider.ts:947](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L947) ___ @@ -969,7 +969,7 @@ order to parse the Alchemy subscription event. #### Defined in -[src/api/alchemy-websocket-provider.ts:973](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L973) +[src/api/alchemy-websocket-provider.ts:970](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L970) ___ @@ -999,7 +999,7 @@ order to parse the Alchemy subscription event. #### Defined in -[src/api/alchemy-websocket-provider.ts:874](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L874) +[src/api/alchemy-websocket-provider.ts:871](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L871) ___ @@ -1046,7 +1046,7 @@ order to parse the Alchemy subscription event. #### Defined in -[src/api/alchemy-websocket-provider.ts:914](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L914) +[src/api/alchemy-websocket-provider.ts:911](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L911) ___ @@ -1261,7 +1261,7 @@ WebSocketProvider.destroy #### Defined in -[src/api/alchemy-websocket-provider.ts:418](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L418) +[src/api/alchemy-websocket-provider.ts:415](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L415) ___ @@ -1733,7 +1733,7 @@ CommunityResourcable.isCommunityResource #### Defined in -[src/api/alchemy-websocket-provider.ts:430](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L430) +[src/api/alchemy-websocket-provider.ts:427](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L427) ___ @@ -1780,7 +1780,7 @@ WebSocketProvider.listenerCount #### Defined in -[src/api/alchemy-websocket-provider.ts:226](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L226) +[src/api/alchemy-websocket-provider.ts:223](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L223) ___ @@ -1809,7 +1809,7 @@ WebSocketProvider.listeners #### Defined in -[src/api/alchemy-websocket-provider.ts:242](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L242) +[src/api/alchemy-websocket-provider.ts:239](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L239) ___ @@ -1863,7 +1863,7 @@ WebSocketProvider.off #### Defined in -[src/api/alchemy-websocket-provider.ts:194](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L194) +[src/api/alchemy-websocket-provider.ts:191](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L191) ___ @@ -1892,7 +1892,7 @@ WebSocketProvider.on #### Defined in -[src/api/alchemy-websocket-provider.ts:166](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L166) +[src/api/alchemy-websocket-provider.ts:163](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L163) ___ @@ -1923,7 +1923,7 @@ WebSocketProvider.once #### Defined in -[src/api/alchemy-websocket-provider.ts:181](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L181) +[src/api/alchemy-websocket-provider.ts:178](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L178) ___ @@ -2020,7 +2020,7 @@ WebSocketProvider.removeAllListeners #### Defined in -[src/api/alchemy-websocket-provider.ts:210](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-websocket-provider.ts#L210) +[src/api/alchemy-websocket-provider.ts:207](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L207) ___ diff --git a/docs-md/classes/Contract.md b/docs-md/classes/Contract.md index 98f0f01e..0cd17d06 100644 --- a/docs-md/classes/Contract.md +++ b/docs-md/classes/Contract.md @@ -232,7 +232,7 @@ ___ ### interface -• `Readonly` **interface**: `Interface` +• `Readonly` **interface**: [`Interface`](Utils.Interface.md) #### Inherited from @@ -719,7 +719,7 @@ ___ ### getInterface -▸ `Static` **getInterface**(`contractInterface`): `Interface` +▸ `Static` **getInterface**(`contractInterface`): [`Interface`](Utils.Interface.md) #### Parameters @@ -729,7 +729,7 @@ ___ #### Returns -`Interface` +[`Interface`](Utils.Interface.md) #### Inherited from diff --git a/docs-md/classes/ContractFactory.md b/docs-md/classes/ContractFactory.md index a3843fcc..8ff085f7 100644 --- a/docs-md/classes/ContractFactory.md +++ b/docs-md/classes/ContractFactory.md @@ -74,7 +74,7 @@ ___ ### interface -• `Readonly` **interface**: `Interface` +• `Readonly` **interface**: [`Interface`](Utils.Interface.md) #### Inherited from @@ -275,7 +275,7 @@ ___ ### getInterface -▸ `Static` **getInterface**(`contractInterface`): `Interface` +▸ `Static` **getInterface**(`contractInterface`): [`Interface`](Utils.Interface.md) #### Parameters @@ -285,7 +285,7 @@ ___ #### Returns -`Interface` +[`Interface`](Utils.Interface.md) #### Inherited from diff --git a/docs-md/classes/CoreNamespace.md b/docs-md/classes/CoreNamespace.md index 0dafe0b8..9a8cbb10 100644 --- a/docs-md/classes/CoreNamespace.md +++ b/docs-md/classes/CoreNamespace.md @@ -66,7 +66,7 @@ calling getters on Contracts. #### Defined in -[src/api/core-namespace.ts:221](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L221) +[src/api/core-namespace.ts:221](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L221) ___ @@ -95,7 +95,7 @@ This is an alias for [TransactNamespace.estimateGas](TransactNamespace.md#estima #### Defined in -[src/api/core-namespace.ts:242](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L242) +[src/api/core-namespace.ts:242](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L242) ___ @@ -125,7 +125,7 @@ with this information cached. #### Defined in -[src/api/core-namespace.ts:364](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L364) +[src/api/core-namespace.ts:364](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L364) ___ @@ -153,7 +153,7 @@ response object. #### Defined in -[src/api/core-namespace.ts:519](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L519) +[src/api/core-namespace.ts:519](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L519) ▸ **getAssetTransfers**(`params`): `Promise`<[`AssetTransfersResponse`](../interfaces/AssetTransfersResponse.md)\> @@ -173,7 +173,7 @@ https://docs.alchemy.com/alchemy/enhanced-apis/transfers-api#alchemy_getassettra #### Defined in -[src/api/core-namespace.ts:531](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L531) +[src/api/core-namespace.ts:531](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L531) ___ @@ -196,7 +196,7 @@ Returns the balance of a given address as of the provided block. #### Defined in -[src/api/core-namespace.ts:60](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L60) +[src/api/core-namespace.ts:60](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L60) ___ @@ -221,7 +221,7 @@ hashes. To get the full transaction details on the block, use #### Defined in -[src/api/core-namespace.ts:130](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L130) +[src/api/core-namespace.ts:130](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L130) ___ @@ -237,7 +237,7 @@ Returns the block number of the most recently mined block. #### Defined in -[src/api/core-namespace.ts:167](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L167) +[src/api/core-namespace.ts:167](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L167) ___ @@ -261,7 +261,7 @@ hash. Transactions on the block are represented as an array of #### Defined in -[src/api/core-namespace.ts:145](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L145) +[src/api/core-namespace.ts:145](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L145) ___ @@ -285,7 +285,7 @@ no contract deployed, the result is `0x`. #### Defined in -[src/api/core-namespace.ts:77](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L77) +[src/api/core-namespace.ts:77](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L77) ___ @@ -307,7 +307,7 @@ gasPrice should be used. #### Defined in -[src/api/core-namespace.ts:193](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L193) +[src/api/core-namespace.ts:193](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L193) ___ @@ -323,7 +323,7 @@ Returns the best guess of the current gas price to use in a transaction. #### Defined in -[src/api/core-namespace.ts:177](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L177) +[src/api/core-namespace.ts:177](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L177) ___ @@ -345,7 +345,7 @@ Returns an array of logs that match the provided filter. #### Defined in -[src/api/core-namespace.ts:333](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L333) +[src/api/core-namespace.ts:333](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L333) ___ @@ -361,7 +361,7 @@ Returns the {@link EthersNetworkAlias} Alchemy is connected to. #### Defined in -[src/api/core-namespace.ts:157](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L157) +[src/api/core-namespace.ts:157](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L157) ___ @@ -386,7 +386,7 @@ provided block in `Bytes32` format. #### Defined in -[src/api/core-namespace.ts:95](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L95) +[src/api/core-namespace.ts:95](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L95) ___ @@ -408,7 +408,7 @@ Returns the ERC-20 token balances for a specific owner address. #### Defined in -[src/api/core-namespace.ts:401](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L401) +[src/api/core-namespace.ts:401](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L401) ▸ **getTokenBalances**(`addressOrName`, `contractAddresses?`): `Promise`<[`TokenBalancesResponse`](../interfaces/TokenBalancesResponse.md)\> @@ -427,7 +427,7 @@ Returns the token balances for a specific owner address given a list of contract #### Defined in -[src/api/core-namespace.ts:413](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L413) +[src/api/core-namespace.ts:413](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L413) ▸ **getTokenBalances**(`addressOrName`, `options`): `Promise`<[`TokenBalancesResponseErc20`](../interfaces/TokenBalancesResponseErc20.md)\> @@ -448,7 +448,7 @@ This overload covers the erc-20 token type which includes a page key in the resp #### Defined in -[src/api/core-namespace.ts:427](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L427) +[src/api/core-namespace.ts:427](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L427) ▸ **getTokenBalances**(`addressOrName`, `options`): `Promise`<[`TokenBalancesResponse`](../interfaces/TokenBalancesResponse.md)\> @@ -471,7 +471,7 @@ the response. #### Defined in -[src/api/core-namespace.ts:443](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L443) +[src/api/core-namespace.ts:443](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L443) ___ @@ -493,7 +493,7 @@ Returns metadata for a given token contract address. #### Defined in -[src/api/core-namespace.ts:498](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L498) +[src/api/core-namespace.ts:498](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L498) ___ @@ -522,7 +522,7 @@ NOTE: This is an alias for [TransactNamespace.getTransaction](TransactNamespace. #### Defined in -[src/api/core-namespace.ts:262](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L262) +[src/api/core-namespace.ts:262](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L262) ___ @@ -547,7 +547,7 @@ transaction from the address sent to the network. #### Defined in -[src/api/core-namespace.ts:113](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L113) +[src/api/core-namespace.ts:113](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L113) ___ @@ -573,7 +573,7 @@ waitForTransaction method below. #### Defined in -[src/api/core-namespace.ts:279](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L279) +[src/api/core-namespace.ts:279](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L279) ___ @@ -595,7 +595,7 @@ Gets all transaction receipts for a given block by number or block hash. #### Defined in -[src/api/core-namespace.ts:568](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L568) +[src/api/core-namespace.ts:568](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L568) ___ @@ -619,7 +619,7 @@ An ENS name requires additional configuration to setup a reverse record, so not #### Defined in -[src/api/core-namespace.ts:597](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L597) +[src/api/core-namespace.ts:597](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L597) ___ @@ -639,7 +639,7 @@ up and running smoothly. #### Defined in -[src/api/core-namespace.ts:207](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L207) +[src/api/core-namespace.ts:207](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L207) ___ @@ -662,7 +662,7 @@ if the ENS name does not have an underlying address. #### Defined in -[src/api/core-namespace.ts:585](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L585) +[src/api/core-namespace.ts:585](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L585) ___ @@ -685,7 +685,7 @@ Allows sending a raw message to the Alchemy backend. #### Defined in -[src/api/core-namespace.ts:347](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L347) +[src/api/core-namespace.ts:347](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L347) ___ @@ -711,7 +711,7 @@ NOTE: This is an alias for [TransactNamespace.getTransaction](TransactNamespace. #### Defined in -[src/api/core-namespace.ts:296](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L296) +[src/api/core-namespace.ts:296](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L296) ___ @@ -742,4 +742,4 @@ NOTE: This is an alias for [TransactNamespace.getTransaction](TransactNamespace. #### Defined in -[src/api/core-namespace.ts:318](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/core-namespace.ts#L318) +[src/api/core-namespace.ts:318](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/core-namespace.ts#L318) diff --git a/docs-md/classes/NftNamespace.md b/docs-md/classes/NftNamespace.md index 56bded40..76774a0c 100644 --- a/docs-md/classes/NftNamespace.md +++ b/docs-md/classes/NftNamespace.md @@ -17,6 +17,8 @@ via `alchemy.nft`. - [getContractMetadata](NftNamespace.md#getcontractmetadata) - [getFloorPrice](NftNamespace.md#getfloorprice) - [getNftMetadata](NftNamespace.md#getnftmetadata) +- [getNftMetadataBatch](NftNamespace.md#getnftmetadatabatch) +- [getNftSales](NftNamespace.md#getnftsales) - [getNftsForContract](NftNamespace.md#getnftsforcontract) - [getNftsForContractIterator](NftNamespace.md#getnftsforcontractiterator) - [getNftsForOwner](NftNamespace.md#getnftsforowner) @@ -56,7 +58,7 @@ provided NFTs. #### Defined in -[src/api/nft-namespace.ts:301](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L301) +[src/api/nft-namespace.ts:321](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L321) ___ @@ -79,7 +81,7 @@ Get the rarity of each attribute of an NFT. #### Defined in -[src/api/nft-namespace.ts:374](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L374) +[src/api/nft-namespace.ts:410](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L410) ___ @@ -101,7 +103,7 @@ Get the NFT collection metadata associated with the provided parameters. #### Defined in -[src/api/nft-namespace.ts:92](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L92) +[src/api/nft-namespace.ts:112](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L112) ___ @@ -125,7 +127,7 @@ Returns the floor prices of a NFT contract by marketplace. #### Defined in -[src/api/nft-namespace.ts:364](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L364) +[src/api/nft-namespace.ts:384](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L384) ___ @@ -150,7 +152,70 @@ Get the NFT metadata associated with the provided parameters. #### Defined in -[src/api/nft-namespace.ts:71](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L71) +[src/api/nft-namespace.ts:78](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L78) + +___ + +### getNftMetadataBatch + +▸ **getNftMetadataBatch**(`tokens`, `options?`): `Promise`<[`Nft`](../interfaces/Nft.md)[]\> + +Gets the NFT metadata for multiple NFT tokens. + +#### Parameters + +| Name | Type | Description | +| :------ | :------ | :------ | +| `tokens` | [`NftMetadataBatchToken`](../interfaces/NftMetadataBatchToken.md)[] | An array of NFT tokens to fetch metadata for. | +| `options?` | [`NftMetadataBatchOptions`](../interfaces/NftMetadataBatchOptions.md) | Configuration options for making the request. | + +#### Returns + +`Promise`<[`Nft`](../interfaces/Nft.md)[]\> + +#### Defined in + +[src/api/nft-namespace.ts:99](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L99) + +___ + +### getNftSales + +▸ **getNftSales**(`options?`): `Promise`<[`GetNftSalesResponse`](../interfaces/GetNftSalesResponse.md)\> + +Returns NFT sales that have happened through on-chain marketplaces. + +**`beta`** + +#### Parameters + +| Name | Type | Description | +| :------ | :------ | :------ | +| `options?` | [`GetNftSalesOptions`](../interfaces/GetNftSalesOptions.md) | The optional parameters to use for the request. | + +#### Returns + +`Promise`<[`GetNftSalesResponse`](../interfaces/GetNftSalesResponse.md)\> + +#### Defined in + +[src/api/nft-namespace.ts:394](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L394) + +▸ **getNftSales**(`options?`): `Promise`<[`GetNftSalesResponse`](../interfaces/GetNftSalesResponse.md)\> + +#### Parameters + +| Name | Type | +| :------ | :------ | +| `options?` | [`GetNftSalesOptionsByContractAddress`](../interfaces/GetNftSalesOptionsByContractAddress.md) | + +#### Returns + +`Promise`<[`GetNftSalesResponse`](../interfaces/GetNftSalesResponse.md)\> + +#### Defined in + +[src/api/nft-namespace.ts:395](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L395) ___ @@ -178,7 +243,7 @@ their associated metadata, use [GetBaseNftsForContractOptions](../interfaces/Get #### Defined in -[src/api/nft-namespace.ts:177](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L177) +[src/api/nft-namespace.ts:197](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L197) ▸ **getNftsForContract**(`contractAddress`, `options?`): `Promise`<[`NftContractBaseNftsResponse`](../interfaces/NftContractBaseNftsResponse.md)\> @@ -202,7 +267,7 @@ all NFTs with their associated metadata, use [GetNftsForContractOptions](../inte #### Defined in -[src/api/nft-namespace.ts:191](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L191) +[src/api/nft-namespace.ts:211](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L211) ___ @@ -231,7 +296,7 @@ associated metadata, use [GetBaseNftsForContractOptions](../interfaces/GetBaseNf #### Defined in -[src/api/nft-namespace.ts:213](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L213) +[src/api/nft-namespace.ts:233](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L233) ▸ **getNftsForContractIterator**(`contractAddress`, `options?`): `AsyncIterable`<[`BaseNft`](../interfaces/BaseNft.md)\> @@ -257,7 +322,7 @@ NFTs with their associated metadata, use [GetNftsForContractOptions](../interfac #### Defined in -[src/api/nft-namespace.ts:229](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L229) +[src/api/nft-namespace.ts:249](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L249) ___ @@ -283,7 +348,7 @@ their associated metadata, use [GetBaseNftsForOwnerOptions](../interfaces/GetBas #### Defined in -[src/api/nft-namespace.ts:141](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L141) +[src/api/nft-namespace.ts:161](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L161) ▸ **getNftsForOwner**(`owner`, `options?`): `Promise`<[`OwnedBaseNftsResponse`](../interfaces/OwnedBaseNftsResponse.md)\> @@ -305,7 +370,7 @@ all NFTs with their associated metadata, use [GetNftsForOwnerOptions](../interfa #### Defined in -[src/api/nft-namespace.ts:155](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L155) +[src/api/nft-namespace.ts:175](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L175) ___ @@ -331,7 +396,7 @@ keys until all NFTs have been fetched. #### Defined in -[src/api/nft-namespace.ts:106](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L106) +[src/api/nft-namespace.ts:126](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L126) ▸ **getNftsForOwnerIterator**(`owner`, `options?`): `AsyncIterable`<[`OwnedBaseNft`](../interfaces/OwnedBaseNft.md)\> @@ -353,7 +418,7 @@ pages through all page keys until all NFTs have been fetched. #### Defined in -[src/api/nft-namespace.ts:120](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L120) +[src/api/nft-namespace.ts:140](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L140) ___ @@ -376,7 +441,7 @@ Gets all the owners for a given NFT contract along with the token balance. #### Defined in -[src/api/nft-namespace.ts:247](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L247) +[src/api/nft-namespace.ts:267](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L267) ▸ **getOwnersForContract**(`contractAddress`, `options?`): `Promise`<[`GetOwnersForContractResponse`](../interfaces/GetOwnersForContractResponse.md)\> @@ -399,7 +464,7 @@ which has the `withTokenBalances` field set to `true`. #### Defined in -[src/api/nft-namespace.ts:263](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L263) +[src/api/nft-namespace.ts:283](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L283) ___ @@ -424,7 +489,7 @@ Gets all the owners for a given NFT contract address and token ID. #### Defined in -[src/api/nft-namespace.ts:285](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L285) +[src/api/nft-namespace.ts:305](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L305) ___ @@ -444,7 +509,7 @@ https://docs.alchemy.com/alchemy/enhanced-apis/nft-api/nft-api-faq#nft-spam-clas #### Defined in -[src/api/nft-namespace.ts:354](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L354) +[src/api/nft-namespace.ts:374](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L374) ___ @@ -470,7 +535,7 @@ https://docs.alchemy.com/alchemy/enhanced-apis/nft-api/nft-api-faq#nft-spam-clas #### Defined in -[src/api/nft-namespace.ts:343](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L343) +[src/api/nft-namespace.ts:363](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L363) ___ @@ -499,7 +564,7 @@ process. To refresh the metadata for a specific token, use the #### Defined in -[src/api/nft-namespace.ts:434](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L434) +[src/api/nft-namespace.ts:470](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L470) ___ @@ -531,7 +596,7 @@ To trigger a refresh for all NFTs in a contract, use [refreshContract](NftNamesp #### Defined in -[src/api/nft-namespace.ts:416](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L416) +[src/api/nft-namespace.ts:452](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L452) ___ @@ -553,7 +618,7 @@ Search for a keyword across metadata of all ERC-721 and ERC-1155 smart contracts #### Defined in -[src/api/nft-namespace.ts:386](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L386) +[src/api/nft-namespace.ts:422](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L422) ___ @@ -575,7 +640,7 @@ Get a summary of attribute prevalence for an NFT collection. #### Defined in -[src/api/nft-namespace.ts:395](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L395) +[src/api/nft-namespace.ts:431](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L431) ___ @@ -599,7 +664,7 @@ NFT. Returns a boolean indicating whether the owner address owns the provided NF #### Defined in -[src/api/nft-namespace.ts:315](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L315) +[src/api/nft-namespace.ts:335](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L335) ▸ **verifyNftOwnership**(`owner`, `contractAddresses`): `Promise`<{ `[contractAddress: string]`: `boolean`; }\> @@ -619,4 +684,4 @@ contract address to a boolean indicating whether the owner address owns the NFT. #### Defined in -[src/api/nft-namespace.ts:324](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft-namespace.ts#L324) +[src/api/nft-namespace.ts:344](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft-namespace.ts#L344) diff --git a/docs-md/classes/NotifyNamespace.md b/docs-md/classes/NotifyNamespace.md index 3d551dea..b2868050 100644 --- a/docs-md/classes/NotifyNamespace.md +++ b/docs-md/classes/NotifyNamespace.md @@ -55,7 +55,7 @@ Note that the webhook will be created in the app network of the provided app id. #### Defined in -[src/api/notify-namespace.ts:276](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L276) +[src/api/notify-namespace.ts:276](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L276) ▸ **createWebhook**(`url`, `type`, `params`): `Promise`<[`DroppedTransactionWebhook`](../interfaces/DroppedTransactionWebhook.md)\> @@ -78,7 +78,7 @@ Note that the webhook will be created in the app network of the provided app id. #### Defined in -[src/api/notify-namespace.ts:293](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L293) +[src/api/notify-namespace.ts:293](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L293) ▸ **createWebhook**(`url`, `type`, `params`): `Promise`<[`NftActivityWebhook`](../interfaces/NftActivityWebhook.md)\> @@ -98,7 +98,7 @@ Create a new [NftActivityWebhook](../interfaces/NftActivityWebhook.md) to track #### Defined in -[src/api/notify-namespace.ts:307](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L307) +[src/api/notify-namespace.ts:307](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L307) ▸ **createWebhook**(`url`, `type`, `params`): `Promise`<[`AddressActivityWebhook`](../interfaces/AddressActivityWebhook.md)\> @@ -118,7 +118,7 @@ Create a new [AddressActivityWebhook](../interfaces/AddressActivityWebhook.md) t #### Defined in -[src/api/notify-namespace.ts:321](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L321) +[src/api/notify-namespace.ts:321](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L321) ___ @@ -140,7 +140,7 @@ Delete the provided webhook. #### Defined in -[src/api/notify-namespace.ts:408](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L408) +[src/api/notify-namespace.ts:408](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L408) ▸ **deleteWebhook**(`webhookId`): `Promise`<`void`\> @@ -158,7 +158,7 @@ Delete the provided webhook. #### Defined in -[src/api/notify-namespace.ts:415](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L415) +[src/api/notify-namespace.ts:415](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L415) ___ @@ -181,7 +181,7 @@ Get all addresses tracked for the provided [AddressActivityWebhook](../interface #### Defined in -[src/api/notify-namespace.ts:84](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L84) +[src/api/notify-namespace.ts:84](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L84) ▸ **getAddresses**(`webhookId`, `options?`): `Promise`<[`AddressActivityResponse`](../interfaces/AddressActivityResponse.md)\> @@ -200,7 +200,7 @@ Get all addresses tracked for the provided [AddressActivityWebhook](../interface #### Defined in -[src/api/notify-namespace.ts:97](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L97) +[src/api/notify-namespace.ts:97](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L97) ___ @@ -221,7 +221,7 @@ This method returns a response object containing all the webhooks #### Defined in -[src/api/notify-namespace.ts:65](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L65) +[src/api/notify-namespace.ts:65](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L65) ___ @@ -244,7 +244,7 @@ Get all NFTs tracked for the provided [NftActivityWebhook](../interfaces/NftActi #### Defined in -[src/api/notify-namespace.ts:126](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L126) +[src/api/notify-namespace.ts:126](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L126) ▸ **getNftFilters**(`webhookId`, `options?`): `Promise`<[`NftFiltersResponse`](../interfaces/NftFiltersResponse.md)\> @@ -263,7 +263,7 @@ Get all NFT filters tracked for the provided [NftActivityWebhook](../interfaces/ #### Defined in -[src/api/notify-namespace.ts:139](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L139) +[src/api/notify-namespace.ts:139](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L139) ___ @@ -292,7 +292,7 @@ ___ #### Defined in -[src/api/notify-namespace.ts:447](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L447) +[src/api/notify-namespace.ts:447](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L447) ___ @@ -315,7 +315,7 @@ Update a [NftActivityWebhook](../interfaces/NftActivityWebhook.md)'s active stat #### Defined in -[src/api/notify-namespace.ts:168](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L168) +[src/api/notify-namespace.ts:168](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L168) ▸ **updateWebhook**(`nftWebhookId`, `update`): `Promise`<`void`\> @@ -334,7 +334,7 @@ Update a [NftActivityWebhook](../interfaces/NftActivityWebhook.md)'s active stat #### Defined in -[src/api/notify-namespace.ts:179](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L179) +[src/api/notify-namespace.ts:179](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L179) ▸ **updateWebhook**(`addressWebhook`, `update`): `Promise`<`void`\> @@ -353,7 +353,7 @@ Update a [AddressActivityWebhook](../interfaces/AddressActivityWebhook.md)'s act #### Defined in -[src/api/notify-namespace.ts:187](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L187) +[src/api/notify-namespace.ts:187](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L187) ▸ **updateWebhook**(`addressWebhookId`, `update`): `Promise`<`void`\> @@ -372,7 +372,7 @@ Update a [AddressActivityWebhook](../interfaces/AddressActivityWebhook.md)'s act #### Defined in -[src/api/notify-namespace.ts:198](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L198) +[src/api/notify-namespace.ts:198](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L198) ___ @@ -386,4 +386,4 @@ ___ #### Defined in -[src/api/notify-namespace.ts:438](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/notify-namespace.ts#L438) +[src/api/notify-namespace.ts:438](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/notify-namespace.ts#L438) diff --git a/docs-md/classes/TransactNamespace.md b/docs-md/classes/TransactNamespace.md index f0ac5b7a..5eb0b655 100644 --- a/docs-md/classes/TransactNamespace.md +++ b/docs-md/classes/TransactNamespace.md @@ -48,7 +48,7 @@ Returns a boolean indicating whether the cancellation was successful. #### Defined in -[src/api/transact-namespace.ts:81](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/transact-namespace.ts#L81) +[src/api/transact-namespace.ts:81](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/transact-namespace.ts#L81) ___ @@ -77,7 +77,7 @@ This is an alias for [CoreNamespace.estimateGas](CoreNamespace.md#estimategas). #### Defined in -[src/api/transact-namespace.ts:144](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/transact-namespace.ts#L144) +[src/api/transact-namespace.ts:144](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/transact-namespace.ts#L144) ___ @@ -97,7 +97,7 @@ transaction request. #### Defined in -[src/api/transact-namespace.ts:160](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/transact-namespace.ts#L160) +[src/api/transact-namespace.ts:160](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/transact-namespace.ts#L160) ___ @@ -126,7 +126,7 @@ NOTE: This is an alias for [CoreNamespace.getTransaction](CoreNamespace.md#gettr #### Defined in -[src/api/transact-namespace.ts:107](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/transact-namespace.ts#L107) +[src/api/transact-namespace.ts:107](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/transact-namespace.ts#L107) ___ @@ -153,7 +153,7 @@ Returns the transaction hash of the submitted transaction. #### Defined in -[src/api/transact-namespace.ts:49](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/transact-namespace.ts#L49) +[src/api/transact-namespace.ts:49](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/transact-namespace.ts#L49) ___ @@ -179,7 +179,7 @@ NOTE: This is an alias for [CoreNamespace.sendTransaction](CoreNamespace.md#send #### Defined in -[src/api/transact-namespace.ts:124](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/transact-namespace.ts#L124) +[src/api/transact-namespace.ts:124](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/transact-namespace.ts#L124) ___ @@ -210,4 +210,4 @@ NOTE: This is an alias for [CoreNamespace.waitForTransaction](CoreNamespace.md#w #### Defined in -[src/api/transact-namespace.ts:185](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/transact-namespace.ts#L185) +[src/api/transact-namespace.ts:185](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/transact-namespace.ts#L185) diff --git a/docs-md/classes/Wallet.md b/docs-md/classes/Wallet.md index 775e5ab8..947bddbc 100644 --- a/docs-md/classes/Wallet.md +++ b/docs-md/classes/Wallet.md @@ -91,7 +91,7 @@ EthersWallet.constructor #### Defined in -[src/api/alchemy-wallet.ts:39](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L39) +[src/api/alchemy-wallet.ts:39](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L39) ## Properties @@ -173,7 +173,7 @@ ___ #### Defined in -[src/api/alchemy-wallet.ts:31](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L31) +[src/api/alchemy-wallet.ts:31](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L31) ___ @@ -321,7 +321,7 @@ EthersWallet.call #### Defined in -[src/api/alchemy-wallet.ts:102](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L102) +[src/api/alchemy-wallet.ts:102](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L102) ___ @@ -424,7 +424,7 @@ EthersWallet.estimateGas #### Defined in -[src/api/alchemy-wallet.ts:90](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L90) +[src/api/alchemy-wallet.ts:90](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L90) ___ @@ -470,7 +470,7 @@ EthersWallet.getBalance #### Defined in -[src/api/alchemy-wallet.ts:66](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L66) +[src/api/alchemy-wallet.ts:66](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L66) ___ @@ -492,7 +492,7 @@ EthersWallet.getChainId #### Defined in -[src/api/alchemy-wallet.ts:125](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L125) +[src/api/alchemy-wallet.ts:125](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L125) ___ @@ -520,7 +520,7 @@ EthersWallet.getFeeData #### Defined in -[src/api/alchemy-wallet.ts:149](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L149) +[src/api/alchemy-wallet.ts:149](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L149) ___ @@ -542,7 +542,7 @@ EthersWallet.getGasPrice #### Defined in -[src/api/alchemy-wallet.ts:134](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L134) +[src/api/alchemy-wallet.ts:134](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L134) ___ @@ -571,7 +571,7 @@ EthersWallet.getTransactionCount #### Defined in -[src/api/alchemy-wallet.ts:77](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L77) +[src/api/alchemy-wallet.ts:77](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L77) ___ @@ -585,7 +585,7 @@ ___ #### Defined in -[src/api/alchemy-wallet.ts:165](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L165) +[src/api/alchemy-wallet.ts:165](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L165) ___ @@ -639,7 +639,7 @@ EthersWallet.resolveName #### Defined in -[src/api/alchemy-wallet.ts:161](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L161) +[src/api/alchemy-wallet.ts:161](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L161) ___ @@ -667,7 +667,7 @@ EthersWallet.sendTransaction #### Defined in -[src/api/alchemy-wallet.ts:114](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/alchemy-wallet.ts#L114) +[src/api/alchemy-wallet.ts:114](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-wallet.ts#L114) ___ diff --git a/docs-md/classes/WebSocketNamespace.md b/docs-md/classes/WebSocketNamespace.md index 0b68a43a..28d0d47b 100644 --- a/docs-md/classes/WebSocketNamespace.md +++ b/docs-md/classes/WebSocketNamespace.md @@ -43,7 +43,7 @@ no event is provided, the total number of listeners for all events is returned. #### Defined in -[src/api/websocket-namespace.ts:92](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/websocket-namespace.ts#L92) +[src/api/websocket-namespace.ts:104](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/websocket-namespace.ts#L104) ___ @@ -66,7 +66,7 @@ no event is provided, all listeners will be included. #### Defined in -[src/api/websocket-namespace.ts:103](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/websocket-namespace.ts#L103) +[src/api/websocket-namespace.ts:118](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/websocket-namespace.ts#L118) ___ @@ -90,7 +90,7 @@ listener is provided, all listeners for the event will be removed. #### Defined in -[src/api/websocket-namespace.ts:62](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/websocket-namespace.ts#L62) +[src/api/websocket-namespace.ts:70](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/websocket-namespace.ts#L70) ___ @@ -115,7 +115,7 @@ how to use them. #### Defined in -[src/api/websocket-namespace.ts:29](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/websocket-namespace.ts#L29) +[src/api/websocket-namespace.ts:35](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/websocket-namespace.ts#L35) ___ @@ -140,7 +140,7 @@ events. See [AlchemyEventType](../modules.md#alchemyeventtype) for how to use th #### Defined in -[src/api/websocket-namespace.ts:46](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/websocket-namespace.ts#L46) +[src/api/websocket-namespace.ts:53](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/websocket-namespace.ts#L53) ___ @@ -163,4 +163,4 @@ is provided, all events and their listeners are removed. #### Defined in -[src/api/websocket-namespace.ts:77](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/websocket-namespace.ts#L77) +[src/api/websocket-namespace.ts:86](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/websocket-namespace.ts#L86) diff --git a/docs-md/enums/AlchemySubscription.md b/docs-md/enums/AlchemySubscription.md index 259a07d5..1413b436 100644 --- a/docs-md/enums/AlchemySubscription.md +++ b/docs-md/enums/AlchemySubscription.md @@ -22,7 +22,7 @@ the Websocket Namespace. #### Defined in -[src/types/types.ts:1110](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1110) +[src/types/types.ts:1312](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1312) ___ @@ -32,4 +32,4 @@ ___ #### Defined in -[src/types/types.ts:1109](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1109) +[src/types/types.ts:1311](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1311) diff --git a/docs-md/enums/AssetTransfersCategory.md b/docs-md/enums/AssetTransfersCategory.md index 472cc7fe..80e8405d 100644 --- a/docs-md/enums/AssetTransfersCategory.md +++ b/docs-md/enums/AssetTransfersCategory.md @@ -26,7 +26,7 @@ ERC1155 transfers. #### Defined in -[src/types/types.ts:280](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L280) +[src/types/types.ts:288](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L288) ___ @@ -38,7 +38,7 @@ ERC20 transfers. #### Defined in -[src/types/types.ts:274](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L274) +[src/types/types.ts:282](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L282) ___ @@ -50,7 +50,7 @@ ERC721 transfers. #### Defined in -[src/types/types.ts:277](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L277) +[src/types/types.ts:285](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L285) ___ @@ -64,7 +64,7 @@ accessed by users. #### Defined in -[src/types/types.ts:264](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L264) +[src/types/types.ts:272](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L272) ___ @@ -78,7 +78,7 @@ another smart contract or sending #### Defined in -[src/types/types.ts:271](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L271) +[src/types/types.ts:279](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L279) ___ @@ -90,4 +90,4 @@ Special contracts that don't follow ERC 721/1155, (ex: CryptoKitties). #### Defined in -[src/types/types.ts:283](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L283) +[src/types/types.ts:291](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L291) diff --git a/docs-md/enums/AssetTransfersOrder.md b/docs-md/enums/AssetTransfersOrder.md index 86c38162..e62ec0b4 100644 --- a/docs-md/enums/AssetTransfersOrder.md +++ b/docs-md/enums/AssetTransfersOrder.md @@ -5,6 +5,9 @@ Enum for the order of the [AssetTransfersParams](../interfaces/AssetTransfersParams.md) request object when using [CoreNamespace.getAssetTransfers](../classes/CoreNamespace.md#getassettransfers). +**`deprecated`** Use [SortingOrder](SortingOrder.md) instead. This enum will be removed in a +future version. + ## Table of contents ### Enumeration members @@ -20,7 +23,7 @@ using [CoreNamespace.getAssetTransfers](../classes/CoreNamespace.md#getassettran #### Defined in -[src/types/types.ts:293](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L293) +[src/types/types.ts:303](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L303) ___ @@ -30,4 +33,4 @@ ___ #### Defined in -[src/types/types.ts:294](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L294) +[src/types/types.ts:304](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L304) diff --git a/docs-md/enums/Network.md b/docs-md/enums/Network.md index 591d5623..bc505102 100644 --- a/docs-md/enums/Network.md +++ b/docs-md/enums/Network.md @@ -34,7 +34,7 @@ available on which networks #### Defined in -[src/types/types.ts:69](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L69) +[src/types/types.ts:77](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L77) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/types/types.ts:66](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L66) +[src/types/types.ts:74](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L74) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[src/types/types.ts:68](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L68) +[src/types/types.ts:76](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L76) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[src/types/types.ts:72](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L72) +[src/types/types.ts:80](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L80) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[src/types/types.ts:57](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L57) +[src/types/types.ts:65](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L65) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[src/types/types.ts:59](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L59) +[src/types/types.ts:67](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L67) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[src/types/types.ts:54](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L54) +[src/types/types.ts:62](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L62) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[src/types/types.ts:61](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L61) +[src/types/types.ts:69](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L69) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[src/types/types.ts:56](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L56) +[src/types/types.ts:64](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L64) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[src/types/types.ts:70](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L70) +[src/types/types.ts:78](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L78) ___ @@ -142,7 +142,7 @@ ___ #### Defined in -[src/types/types.ts:71](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L71) +[src/types/types.ts:79](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L79) ___ @@ -152,7 +152,7 @@ ___ #### Defined in -[src/types/types.ts:65](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L65) +[src/types/types.ts:73](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L73) ___ @@ -164,7 +164,7 @@ ___ #### Defined in -[src/types/types.ts:64](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L64) +[src/types/types.ts:72](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L72) ___ @@ -174,4 +174,4 @@ ___ #### Defined in -[src/types/types.ts:62](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L62) +[src/types/types.ts:70](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L70) diff --git a/docs-md/enums/NftExcludeFilters.md b/docs-md/enums/NftExcludeFilters.md index b50bf897..647b8169 100644 --- a/docs-md/enums/NftExcludeFilters.md +++ b/docs-md/enums/NftExcludeFilters.md @@ -24,7 +24,7 @@ Exclude NFTs that have been airdropped to a user. #### Defined in -[src/types/types.ts:602](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L602) +[src/types/types.ts:612](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L612) ___ @@ -36,4 +36,4 @@ Exclude NFTs that have been classified as spam. #### Defined in -[src/types/types.ts:599](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L599) +[src/types/types.ts:609](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L609) diff --git a/docs-md/enums/NftSpamClassification.md b/docs-md/enums/NftSpamClassification.md index c362cc70..9fdce10a 100644 --- a/docs-md/enums/NftSpamClassification.md +++ b/docs-md/enums/NftSpamClassification.md @@ -22,7 +22,7 @@ Potential reasons why an NFT contract was classified as spam. #### Defined in -[src/types/types.ts:492](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L492) +[src/types/types.ts:502](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L502) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/types/types.ts:490](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L490) +[src/types/types.ts:500](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L500) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/types/types.ts:491](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L491) +[src/types/types.ts:501](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L501) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/types/types.ts:493](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L493) +[src/types/types.ts:503](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L503) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/types/types.ts:494](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L494) +[src/types/types.ts:504](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L504) diff --git a/docs-md/enums/NftTokenType.md b/docs-md/enums/NftTokenType.md index b4f464f1..3f826df2 100644 --- a/docs-md/enums/NftTokenType.md +++ b/docs-md/enums/NftTokenType.md @@ -20,7 +20,7 @@ An enum for specifying the token type on NFTs. #### Defined in -[src/types/types.ts:304](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L304) +[src/types/types.ts:314](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L314) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/types/types.ts:303](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L303) +[src/types/types.ts:313](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L313) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/types/types.ts:305](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L305) +[src/types/types.ts:315](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L315) diff --git a/docs-md/enums/OpenSeaSafelistRequestStatus.md b/docs-md/enums/OpenSeaSafelistRequestStatus.md index 3845ebe2..a88fcac0 100644 --- a/docs-md/enums/OpenSeaSafelistRequestStatus.md +++ b/docs-md/enums/OpenSeaSafelistRequestStatus.md @@ -23,7 +23,7 @@ Collections that are approved on open sea and can be found in search results. #### Defined in -[src/types/types.ts:1082](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1082) +[src/types/types.ts:1284](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1284) ___ @@ -35,7 +35,7 @@ Brand new collections. #### Defined in -[src/types/types.ts:1086](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1086) +[src/types/types.ts:1288](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1288) ___ @@ -47,7 +47,7 @@ Collections that requested safelisting on OpenSea. #### Defined in -[src/types/types.ts:1084](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1084) +[src/types/types.ts:1286](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1286) ___ @@ -59,4 +59,4 @@ Verified collection. #### Defined in -[src/types/types.ts:1080](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1080) +[src/types/types.ts:1282](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1282) diff --git a/docs-md/enums/RefreshState.md b/docs-md/enums/RefreshState.md index f70997b8..85c5795d 100644 --- a/docs-md/enums/RefreshState.md +++ b/docs-md/enums/RefreshState.md @@ -25,7 +25,7 @@ The contract has already been queued for refresh. #### Defined in -[src/types/types.ts:827](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L827) +[src/types/types.ts:1031](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1031) ___ @@ -37,7 +37,7 @@ The provided contract is not an NFT or does not contain metadata. #### Defined in -[src/types/types.ts:824](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L824) +[src/types/types.ts:1028](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1028) ___ @@ -49,7 +49,7 @@ The contract refresh is complete. #### Defined in -[src/types/types.ts:833](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L833) +[src/types/types.ts:1037](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1037) ___ @@ -61,7 +61,7 @@ The contract is currently being refreshed. #### Defined in -[src/types/types.ts:830](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L830) +[src/types/types.ts:1034](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1034) ___ @@ -73,7 +73,7 @@ The contract refresh has been queued and await execution. #### Defined in -[src/types/types.ts:836](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L836) +[src/types/types.ts:1040](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1040) ___ @@ -85,4 +85,4 @@ The contract was unable to be queued due to an internal error. #### Defined in -[src/types/types.ts:839](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L839) +[src/types/types.ts:1043](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1043) diff --git a/docs-md/enums/TokenBalanceType.md b/docs-md/enums/TokenBalanceType.md index bdd1ff9e..8e028481 100644 --- a/docs-md/enums/TokenBalanceType.md +++ b/docs-md/enums/TokenBalanceType.md @@ -22,7 +22,7 @@ available on Mainnet in Ethereum, Polygon, and Arbitrum. #### Defined in -[src/types/types.ts:81](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L81) +[src/types/types.ts:89](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L89) ___ @@ -36,4 +36,4 @@ all tokens that the address has ever received. #### Defined in -[src/types/types.ts:88](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L88) +[src/types/types.ts:96](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L96) diff --git a/docs-md/enums/WebhookType.md b/docs-md/enums/WebhookType.md index 32eb5352..711ae000 100644 --- a/docs-md/enums/WebhookType.md +++ b/docs-md/enums/WebhookType.md @@ -21,7 +21,7 @@ The type of [Webhook](../interfaces/Webhook.md). #### Defined in -[src/types/types.ts:1305](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1305) +[src/types/types.ts:1507](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1507) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/types/types.ts:1304](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1304) +[src/types/types.ts:1506](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1506) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/types/types.ts:1303](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1303) +[src/types/types.ts:1505](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1505) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/types/types.ts:1306](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1306) +[src/types/types.ts:1508](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1508) diff --git a/docs-md/enums/WebhookVersion.md b/docs-md/enums/WebhookVersion.md index 5302643a..7e2ad319 100644 --- a/docs-md/enums/WebhookVersion.md +++ b/docs-md/enums/WebhookVersion.md @@ -19,7 +19,7 @@ The version of the webhook. All newly created webhooks default to V2. #### Defined in -[src/types/types.ts:1297](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1297) +[src/types/types.ts:1499](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1499) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/types/types.ts:1298](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1298) +[src/types/types.ts:1500](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1500) diff --git a/docs-md/interfaces/AddressActivityResponse.md b/docs-md/interfaces/AddressActivityResponse.md index cd07b9b8..08ffa5b0 100644 --- a/docs-md/interfaces/AddressActivityResponse.md +++ b/docs-md/interfaces/AddressActivityResponse.md @@ -22,7 +22,7 @@ The addresses for the webhook. #### Defined in -[src/types/types.ts:1365](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1365) +[src/types/types.ts:1567](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1567) ___ @@ -34,7 +34,7 @@ Optional page key used to fetch the remaining addresses. #### Defined in -[src/types/types.ts:1369](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1369) +[src/types/types.ts:1571](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1571) ___ @@ -46,4 +46,4 @@ The total number of addresses. #### Defined in -[src/types/types.ts:1367](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1367) +[src/types/types.ts:1569](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1569) diff --git a/docs-md/interfaces/AddressActivityWebhook.md b/docs-md/interfaces/AddressActivityWebhook.md index 52ad743a..aa4dfde6 100644 --- a/docs-md/interfaces/AddressActivityWebhook.md +++ b/docs-md/interfaces/AddressActivityWebhook.md @@ -41,7 +41,7 @@ The app id of the app used for the webhook. This field is only present on #### Defined in -[src/types/types.ts:1292](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1292) +[src/types/types.ts:1494](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1494) ___ @@ -57,7 +57,7 @@ The webhook's unique id. #### Defined in -[src/types/types.ts:1273](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1273) +[src/types/types.ts:1475](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1475) ___ @@ -73,7 +73,7 @@ Whether the webhook is currently active #### Defined in -[src/types/types.ts:1281](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1281) +[src/types/types.ts:1483](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1483) ___ @@ -89,7 +89,7 @@ The network the webhook is on. #### Defined in -[src/types/types.ts:1275](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1275) +[src/types/types.ts:1477](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1477) ___ @@ -105,7 +105,7 @@ The signing key used to verify payloads for the webhook. #### Defined in -[src/types/types.ts:1285](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1285) +[src/types/types.ts:1487](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1487) ___ @@ -121,7 +121,7 @@ The creation time of the webhook as an ISO string. #### Defined in -[src/types/types.ts:1283](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1283) +[src/types/types.ts:1485](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1485) ___ @@ -137,7 +137,7 @@ The type of webhook. #### Defined in -[src/types/types.ts:1333](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1333) +[src/types/types.ts:1535](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1535) ___ @@ -153,7 +153,7 @@ The url that the webhook sends its payload to. #### Defined in -[src/types/types.ts:1279](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1279) +[src/types/types.ts:1481](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1481) ___ @@ -169,4 +169,4 @@ The webhook version. All newly created webhooks default to V2. #### Defined in -[src/types/types.ts:1287](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1287) +[src/types/types.ts:1489](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1489) diff --git a/docs-md/interfaces/AddressWebhookParams.md b/docs-md/interfaces/AddressWebhookParams.md index 7bc03fe6..4f958fac 100644 --- a/docs-md/interfaces/AddressWebhookParams.md +++ b/docs-md/interfaces/AddressWebhookParams.md @@ -22,7 +22,7 @@ Array of addresses the webhook should activity for. #### Defined in -[src/types/types.ts:1408](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1408) +[src/types/types.ts:1610](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1610) ___ @@ -35,4 +35,4 @@ created on network of the app provided in the api key config. #### Defined in -[src/types/types.ts:1413](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1413) +[src/types/types.ts:1615](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1615) diff --git a/docs-md/interfaces/AlchemyMinedTransactionsEventFilter.md b/docs-md/interfaces/AlchemyMinedTransactionsEventFilter.md index 2a3dec76..82cf8165 100644 --- a/docs-md/interfaces/AlchemyMinedTransactionsEventFilter.md +++ b/docs-md/interfaces/AlchemyMinedTransactionsEventFilter.md @@ -33,7 +33,7 @@ Limit 100 address filters. Requires a non-empty array. #### Defined in -[src/types/types.ts:1168](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1168) +[src/types/types.ts:1370](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1370) ___ @@ -47,7 +47,7 @@ the entire transaction response is included). #### Defined in -[src/types/types.ts:1181](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1181) +[src/types/types.ts:1383](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1383) ___ @@ -60,7 +60,7 @@ Defaults to false. #### Defined in -[src/types/types.ts:1174](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1174) +[src/types/types.ts:1376](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1376) ___ @@ -70,4 +70,4 @@ ___ #### Defined in -[src/types/types.ts:1162](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1162) +[src/types/types.ts:1364](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1364) diff --git a/docs-md/interfaces/AlchemyPendingTransactionsEventFilter.md b/docs-md/interfaces/AlchemyPendingTransactionsEventFilter.md index a11b94d2..6ff93104 100644 --- a/docs-md/interfaces/AlchemyPendingTransactionsEventFilter.md +++ b/docs-md/interfaces/AlchemyPendingTransactionsEventFilter.md @@ -32,7 +32,7 @@ Filter pending transactions sent FROM the provided address or array of addresses #### Defined in -[src/types/types.ts:1131](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1131) +[src/types/types.ts:1333](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1333) ___ @@ -49,7 +49,7 @@ response as subscribing to `newPendingTransactions`. #### Defined in -[src/types/types.ts:1144](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1144) +[src/types/types.ts:1346](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1346) ___ @@ -59,7 +59,7 @@ ___ #### Defined in -[src/types/types.ts:1128](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1128) +[src/types/types.ts:1330](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1330) ___ @@ -71,4 +71,4 @@ Filter pending transactions sent TO the provided address or array of addresses. #### Defined in -[src/types/types.ts:1134](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1134) +[src/types/types.ts:1336](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1336) diff --git a/docs-md/interfaces/AlchemySettings.md b/docs-md/interfaces/AlchemySettings.md index 138c319e..2ac517ac 100644 --- a/docs-md/interfaces/AlchemySettings.md +++ b/docs-md/interfaces/AlchemySettings.md @@ -10,6 +10,7 @@ Options object used to configure the Alchemy SDK. - [apiKey](AlchemySettings.md#apikey) - [authToken](AlchemySettings.md#authtoken) +- [batchRequsets](AlchemySettings.md#batchrequsets) - [maxRetries](AlchemySettings.md#maxretries) - [network](AlchemySettings.md#network) - [url](AlchemySettings.md#url) @@ -24,7 +25,7 @@ The Alchemy API key that can be found in the Alchemy dashboard. #### Defined in -[src/types/types.ts:18](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L18) +[src/types/types.ts:18](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L18) ___ @@ -37,7 +38,22 @@ in the Alchemy Dashboard on the Notify tab. #### Defined in -[src/types/types.ts:42](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L42) +[src/types/types.ts:42](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L42) + +___ + +### batchRequsets + +• `Optional` **batchRequsets**: `boolean` + +Optional setting that automatically batches and sends json-rpc requests for +higher throughput and reduced network IO. Defaults to false. + +This implementation is based on the `JsonRpcBatchProvider` in ethers. + +#### Defined in + +[src/types/types.ts:50](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L50) ___ @@ -49,7 +65,7 @@ The maximum number of retries to attempt if a request fails. Defaults to 5. #### Defined in -[src/types/types.ts:27](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L27) +[src/types/types.ts:27](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L27) ___ @@ -62,7 +78,7 @@ use a different network, instantiate a new `Alchemy` instance #### Defined in -[src/types/types.ts:24](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L24) +[src/types/types.ts:24](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L24) ___ @@ -78,4 +94,4 @@ that not all methods will work with custom URLs. #### Defined in -[src/types/types.ts:36](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L36) +[src/types/types.ts:36](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L36) diff --git a/docs-md/interfaces/AssetTransfersMetadata.md b/docs-md/interfaces/AssetTransfersMetadata.md index 4fbc5a0a..a8b0ffbd 100644 --- a/docs-md/interfaces/AssetTransfersMetadata.md +++ b/docs-md/interfaces/AssetTransfersMetadata.md @@ -21,4 +21,4 @@ Timestamp of the block from which the transaction event originated. #### Defined in -[src/types/types.ts:404](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L404) +[src/types/types.ts:414](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L414) diff --git a/docs-md/interfaces/AssetTransfersParams.md b/docs-md/interfaces/AssetTransfersParams.md index a457160b..fff4e1ac 100644 --- a/docs-md/interfaces/AssetTransfersParams.md +++ b/docs-md/interfaces/AssetTransfersParams.md @@ -36,7 +36,7 @@ REQUIRED field. An array of categories to get transfers for. #### Defined in -[src/types/types.ts:224](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L224) +[src/types/types.ts:232](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L232) ___ @@ -49,7 +49,7 @@ List of contract addresses to filter for - only applies to "erc20", #### Defined in -[src/types/types.ts:215](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L215) +[src/types/types.ts:223](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L223) ___ @@ -62,7 +62,7 @@ different than null value. Defaults to `false` if omitted. #### Defined in -[src/types/types.ts:221](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L221) +[src/types/types.ts:229](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L229) ___ @@ -75,7 +75,7 @@ for all addresses if omitted. #### Defined in -[src/types/types.ts:203](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L203) +[src/types/types.ts:211](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L211) ___ @@ -88,7 +88,7 @@ defaults to `0x0` if omitted. #### Defined in -[src/types/types.ts:185](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L185) +[src/types/types.ts:193](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L193) ___ @@ -100,20 +100,20 @@ The maximum number of results to return per page. Defaults to 1000 if omitted. #### Defined in -[src/types/types.ts:227](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L227) +[src/types/types.ts:235](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L235) ___ ### order -• `Optional` **order**: [`AssetTransfersOrder`](../enums/AssetTransfersOrder.md) +• `Optional` **order**: [`SortingOrder`](../enums/SortingOrder.md) Whether to return results in ascending or descending order by block number. Defaults to ascending if omitted. #### Defined in -[src/types/types.ts:197](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L197) +[src/types/types.ts:205](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L205) ___ @@ -126,7 +126,7 @@ Optional page key from an existing [OwnedBaseNftsResponse](OwnedBaseNftsResponse #### Defined in -[src/types/types.ts:233](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L233) +[src/types/types.ts:241](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L241) ___ @@ -139,7 +139,7 @@ for all address if omitted. #### Defined in -[src/types/types.ts:209](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L209) +[src/types/types.ts:217](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L217) ___ @@ -152,7 +152,7 @@ defaults to the latest block if omitted. #### Defined in -[src/types/types.ts:191](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L191) +[src/types/types.ts:199](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L199) ___ @@ -165,4 +165,4 @@ to `false` if omitted. #### Defined in -[src/types/types.ts:239](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L239) +[src/types/types.ts:247](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L247) diff --git a/docs-md/interfaces/AssetTransfersResponse.md b/docs-md/interfaces/AssetTransfersResponse.md index bc9c2339..94c8b3b5 100644 --- a/docs-md/interfaces/AssetTransfersResponse.md +++ b/docs-md/interfaces/AssetTransfersResponse.md @@ -21,7 +21,7 @@ Page key for the next page of results, if one exists. #### Defined in -[src/types/types.ts:316](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L316) +[src/types/types.ts:326](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L326) ___ @@ -31,4 +31,4 @@ ___ #### Defined in -[src/types/types.ts:314](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L314) +[src/types/types.ts:324](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L324) diff --git a/docs-md/interfaces/AssetTransfersResult.md b/docs-md/interfaces/AssetTransfersResult.md index 2e3d7ab5..b09a2d32 100644 --- a/docs-md/interfaces/AssetTransfersResult.md +++ b/docs-md/interfaces/AssetTransfersResult.md @@ -38,7 +38,7 @@ information was not available. #### Defined in -[src/types/types.ts:376](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L376) +[src/types/types.ts:386](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L386) ___ @@ -50,7 +50,7 @@ The block number where the transfer occurred. #### Defined in -[src/types/types.ts:343](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L343) +[src/types/types.ts:353](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L353) ___ @@ -62,7 +62,7 @@ The category of the transfer. #### Defined in -[src/types/types.ts:340](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L340) +[src/types/types.ts:350](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L350) ___ @@ -75,7 +75,7 @@ token. `null` if not an ERC1155 transfer. #### Defined in -[src/types/types.ts:367](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L367) +[src/types/types.ts:377](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L377) ___ @@ -88,7 +88,7 @@ ERC721 transfer. #### Defined in -[src/types/types.ts:361](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L361) +[src/types/types.ts:371](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L371) ___ @@ -100,7 +100,7 @@ The from address of the transfer. #### Defined in -[src/types/types.ts:346](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L346) +[src/types/types.ts:356](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L356) ___ @@ -112,7 +112,7 @@ The transaction hash of the transfer transaction. #### Defined in -[src/types/types.ts:379](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L379) +[src/types/types.ts:389](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L389) ___ @@ -124,7 +124,7 @@ Information about the raw contract of the asset transferred. #### Defined in -[src/types/types.ts:382](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L382) +[src/types/types.ts:392](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L392) ___ @@ -136,7 +136,7 @@ The to address of the transfer. #### Defined in -[src/types/types.ts:349](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L349) +[src/types/types.ts:359](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L359) ___ @@ -148,7 +148,7 @@ The token id of the token transferred. #### Defined in -[src/types/types.ts:370](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L370) +[src/types/types.ts:380](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L380) ___ @@ -160,7 +160,7 @@ The unique ID of the transfer. #### Defined in -[src/types/types.ts:337](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L337) +[src/types/types.ts:347](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L347) ___ @@ -173,4 +173,4 @@ decimal). `null` if ERC721 transfer or contract decimal not available. #### Defined in -[src/types/types.ts:355](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L355) +[src/types/types.ts:365](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L365) diff --git a/docs-md/interfaces/AssetTransfersWithMetadataParams.md b/docs-md/interfaces/AssetTransfersWithMetadataParams.md index 7a36ee98..9075c22f 100644 --- a/docs-md/interfaces/AssetTransfersWithMetadataParams.md +++ b/docs-md/interfaces/AssetTransfersWithMetadataParams.md @@ -41,7 +41,7 @@ REQUIRED field. An array of categories to get transfers for. #### Defined in -[src/types/types.ts:224](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L224) +[src/types/types.ts:232](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L232) ___ @@ -58,7 +58,7 @@ List of contract addresses to filter for - only applies to "erc20", #### Defined in -[src/types/types.ts:215](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L215) +[src/types/types.ts:223](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L223) ___ @@ -75,7 +75,7 @@ different than null value. Defaults to `false` if omitted. #### Defined in -[src/types/types.ts:221](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L221) +[src/types/types.ts:229](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L229) ___ @@ -92,7 +92,7 @@ for all addresses if omitted. #### Defined in -[src/types/types.ts:203](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L203) +[src/types/types.ts:211](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L211) ___ @@ -109,7 +109,7 @@ defaults to `0x0` if omitted. #### Defined in -[src/types/types.ts:185](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L185) +[src/types/types.ts:193](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L193) ___ @@ -125,13 +125,13 @@ The maximum number of results to return per page. Defaults to 1000 if omitted. #### Defined in -[src/types/types.ts:227](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L227) +[src/types/types.ts:235](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L235) ___ ### order -• `Optional` **order**: [`AssetTransfersOrder`](../enums/AssetTransfersOrder.md) +• `Optional` **order**: [`SortingOrder`](../enums/SortingOrder.md) Whether to return results in ascending or descending order by block number. Defaults to ascending if omitted. @@ -142,7 +142,7 @@ Defaults to ascending if omitted. #### Defined in -[src/types/types.ts:197](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L197) +[src/types/types.ts:205](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L205) ___ @@ -159,7 +159,7 @@ Optional page key from an existing [OwnedBaseNftsResponse](OwnedBaseNftsResponse #### Defined in -[src/types/types.ts:233](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L233) +[src/types/types.ts:241](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L241) ___ @@ -176,7 +176,7 @@ for all address if omitted. #### Defined in -[src/types/types.ts:209](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L209) +[src/types/types.ts:217](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L217) ___ @@ -193,7 +193,7 @@ defaults to the latest block if omitted. #### Defined in -[src/types/types.ts:191](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L191) +[src/types/types.ts:199](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L199) ___ @@ -210,4 +210,4 @@ to `false` if omitted. #### Defined in -[src/types/types.ts:249](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L249) +[src/types/types.ts:257](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L257) diff --git a/docs-md/interfaces/AssetTransfersWithMetadataResponse.md b/docs-md/interfaces/AssetTransfersWithMetadataResponse.md index 07db7c92..f91beab2 100644 --- a/docs-md/interfaces/AssetTransfersWithMetadataResponse.md +++ b/docs-md/interfaces/AssetTransfersWithMetadataResponse.md @@ -20,7 +20,7 @@ the [AssetTransfersWithMetadataParams](AssetTransfersWithMetadataParams.md) are #### Defined in -[src/types/types.ts:327](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L327) +[src/types/types.ts:337](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L337) ___ @@ -30,4 +30,4 @@ ___ #### Defined in -[src/types/types.ts:326](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L326) +[src/types/types.ts:336](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L336) diff --git a/docs-md/interfaces/AssetTransfersWithMetadataResult.md b/docs-md/interfaces/AssetTransfersWithMetadataResult.md index 58972f32..89724f37 100644 --- a/docs-md/interfaces/AssetTransfersWithMetadataResult.md +++ b/docs-md/interfaces/AssetTransfersWithMetadataResult.md @@ -44,7 +44,7 @@ information was not available. #### Defined in -[src/types/types.ts:376](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L376) +[src/types/types.ts:386](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L386) ___ @@ -60,7 +60,7 @@ The block number where the transfer occurred. #### Defined in -[src/types/types.ts:343](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L343) +[src/types/types.ts:353](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L353) ___ @@ -76,7 +76,7 @@ The category of the transfer. #### Defined in -[src/types/types.ts:340](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L340) +[src/types/types.ts:350](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L350) ___ @@ -93,7 +93,7 @@ token. `null` if not an ERC1155 transfer. #### Defined in -[src/types/types.ts:367](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L367) +[src/types/types.ts:377](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L377) ___ @@ -110,7 +110,7 @@ ERC721 transfer. #### Defined in -[src/types/types.ts:361](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L361) +[src/types/types.ts:371](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L371) ___ @@ -126,7 +126,7 @@ The from address of the transfer. #### Defined in -[src/types/types.ts:346](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L346) +[src/types/types.ts:356](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L356) ___ @@ -142,7 +142,7 @@ The transaction hash of the transfer transaction. #### Defined in -[src/types/types.ts:379](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L379) +[src/types/types.ts:389](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L389) ___ @@ -154,7 +154,7 @@ Additional metadata about the transfer event. #### Defined in -[src/types/types.ts:393](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L393) +[src/types/types.ts:403](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L403) ___ @@ -170,7 +170,7 @@ Information about the raw contract of the asset transferred. #### Defined in -[src/types/types.ts:382](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L382) +[src/types/types.ts:392](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L392) ___ @@ -186,7 +186,7 @@ The to address of the transfer. #### Defined in -[src/types/types.ts:349](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L349) +[src/types/types.ts:359](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L359) ___ @@ -202,7 +202,7 @@ The token id of the token transferred. #### Defined in -[src/types/types.ts:370](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L370) +[src/types/types.ts:380](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L380) ___ @@ -218,7 +218,7 @@ The unique ID of the transfer. #### Defined in -[src/types/types.ts:337](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L337) +[src/types/types.ts:347](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L347) ___ @@ -235,4 +235,4 @@ decimal). `null` if ERC721 transfer or contract decimal not available. #### Defined in -[src/types/types.ts:355](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L355) +[src/types/types.ts:365](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L365) diff --git a/docs-md/interfaces/BaseNft.md b/docs-md/interfaces/BaseNft.md index 12a74ea2..158aa50a 100644 --- a/docs-md/interfaces/BaseNft.md +++ b/docs-md/interfaces/BaseNft.md @@ -28,7 +28,7 @@ Alchemy representation of a base NFT that doesn't contain metadata. #### Defined in -[src/api/nft.ts:44](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L44) +[src/api/nft.ts:44](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L44) ___ @@ -40,7 +40,7 @@ The NFT token ID as an integer string. #### Defined in -[src/api/nft.ts:46](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L46) +[src/api/nft.ts:46](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L46) ___ @@ -52,4 +52,4 @@ The type of ERC token, if known. #### Defined in -[src/api/nft.ts:48](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L48) +[src/api/nft.ts:48](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L48) diff --git a/docs-md/interfaces/BaseNftContract.md b/docs-md/interfaces/BaseNftContract.md index 09b7fdb7..20171c94 100644 --- a/docs-md/interfaces/BaseNftContract.md +++ b/docs-md/interfaces/BaseNftContract.md @@ -26,4 +26,4 @@ The address of the contract. #### Defined in -[src/api/nft.ts:17](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L17) +[src/api/nft.ts:17](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L17) diff --git a/docs-md/interfaces/DeployResult.md b/docs-md/interfaces/DeployResult.md index a2e2dbef..588be95e 100644 --- a/docs-md/interfaces/DeployResult.md +++ b/docs-md/interfaces/DeployResult.md @@ -21,7 +21,7 @@ The block number the contract was deployed in. #### Defined in -[src/types/types.ts:1099](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1099) +[src/types/types.ts:1301](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1301) ___ @@ -33,4 +33,4 @@ The address of the contract deployer, if it is available. #### Defined in -[src/types/types.ts:1096](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1096) +[src/types/types.ts:1298](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1298) diff --git a/docs-md/interfaces/DroppedTransactionWebhook.md b/docs-md/interfaces/DroppedTransactionWebhook.md index 01462e18..a396b444 100644 --- a/docs-md/interfaces/DroppedTransactionWebhook.md +++ b/docs-md/interfaces/DroppedTransactionWebhook.md @@ -41,7 +41,7 @@ The app id of the app used for the webhook. This field is only present on #### Defined in -[src/types/types.ts:1292](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1292) +[src/types/types.ts:1494](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1494) ___ @@ -57,7 +57,7 @@ The webhook's unique id. #### Defined in -[src/types/types.ts:1273](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1273) +[src/types/types.ts:1475](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1475) ___ @@ -73,7 +73,7 @@ Whether the webhook is currently active #### Defined in -[src/types/types.ts:1281](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1281) +[src/types/types.ts:1483](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1483) ___ @@ -89,7 +89,7 @@ The network the webhook is on. #### Defined in -[src/types/types.ts:1275](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1275) +[src/types/types.ts:1477](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1477) ___ @@ -105,7 +105,7 @@ The signing key used to verify payloads for the webhook. #### Defined in -[src/types/types.ts:1285](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1285) +[src/types/types.ts:1487](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1487) ___ @@ -121,7 +121,7 @@ The creation time of the webhook as an ISO string. #### Defined in -[src/types/types.ts:1283](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1283) +[src/types/types.ts:1485](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1485) ___ @@ -137,7 +137,7 @@ The type of webhook. #### Defined in -[src/types/types.ts:1324](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1324) +[src/types/types.ts:1526](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1526) ___ @@ -153,7 +153,7 @@ The url that the webhook sends its payload to. #### Defined in -[src/types/types.ts:1279](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1279) +[src/types/types.ts:1481](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1481) ___ @@ -169,4 +169,4 @@ The webhook version. All newly created webhooks default to V2. #### Defined in -[src/types/types.ts:1287](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1287) +[src/types/types.ts:1489](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1489) diff --git a/docs-md/interfaces/ERC1155Metadata.md b/docs-md/interfaces/ERC1155Metadata.md index a77cb940..14e6e8e7 100644 --- a/docs-md/interfaces/ERC1155Metadata.md +++ b/docs-md/interfaces/ERC1155Metadata.md @@ -20,7 +20,7 @@ transferred is an ERC1155. #### Defined in -[src/types/types.ts:888](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L888) +[src/types/types.ts:1092](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1092) ___ @@ -30,4 +30,4 @@ ___ #### Defined in -[src/types/types.ts:889](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L889) +[src/types/types.ts:1093](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1093) diff --git a/docs-md/interfaces/FloorPriceError.md b/docs-md/interfaces/FloorPriceError.md index e15b5ac5..ba5da66c 100644 --- a/docs-md/interfaces/FloorPriceError.md +++ b/docs-md/interfaces/FloorPriceError.md @@ -21,4 +21,4 @@ Error fetching floor prices from the given marketplace #### Defined in -[src/types/types.ts:751](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L751) +[src/types/types.ts:793](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L793) diff --git a/docs-md/interfaces/FloorPriceMarketplace.md b/docs-md/interfaces/FloorPriceMarketplace.md index 6b4abce7..d8b7a43b 100644 --- a/docs-md/interfaces/FloorPriceMarketplace.md +++ b/docs-md/interfaces/FloorPriceMarketplace.md @@ -24,7 +24,7 @@ The link to the collection on the given marketplace #### Defined in -[src/types/types.ts:738](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L738) +[src/types/types.ts:780](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L780) ___ @@ -36,7 +36,7 @@ The floor price of the collection on the given marketplace #### Defined in -[src/types/types.ts:734](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L734) +[src/types/types.ts:776](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L776) ___ @@ -48,7 +48,7 @@ The currency in which the floor price is denominated #### Defined in -[src/types/types.ts:736](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L736) +[src/types/types.ts:778](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L778) ___ @@ -60,4 +60,4 @@ UTC timestamp of when the floor price was retrieved from the marketplace #### Defined in -[src/types/types.ts:740](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L740) +[src/types/types.ts:782](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L782) diff --git a/docs-md/interfaces/GetAddressesOptions.md b/docs-md/interfaces/GetAddressesOptions.md index 04f4fcc8..5a677892 100644 --- a/docs-md/interfaces/GetAddressesOptions.md +++ b/docs-md/interfaces/GetAddressesOptions.md @@ -21,7 +21,7 @@ Number of addresses to fetch. #### Defined in -[src/types/types.ts:1356](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1356) +[src/types/types.ts:1558](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1558) ___ @@ -33,4 +33,4 @@ Page #### Defined in -[src/types/types.ts:1359](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1359) +[src/types/types.ts:1561](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1561) diff --git a/docs-md/interfaces/GetAllWebhooksResponse.md b/docs-md/interfaces/GetAllWebhooksResponse.md index f66ea4e3..c1b04c05 100644 --- a/docs-md/interfaces/GetAllWebhooksResponse.md +++ b/docs-md/interfaces/GetAllWebhooksResponse.md @@ -21,7 +21,7 @@ The total number of webhooks. #### Defined in -[src/types/types.ts:1350](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1350) +[src/types/types.ts:1552](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1552) ___ @@ -33,4 +33,4 @@ All webhooks attached to the provided auth token. #### Defined in -[src/types/types.ts:1348](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1348) +[src/types/types.ts:1550](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1550) diff --git a/docs-md/interfaces/GetBaseNftsForContractOptions.md b/docs-md/interfaces/GetBaseNftsForContractOptions.md index fe2d8a50..3b9a8357 100644 --- a/docs-md/interfaces/GetBaseNftsForContractOptions.md +++ b/docs-md/interfaces/GetBaseNftsForContractOptions.md @@ -26,7 +26,7 @@ Optional boolean flag to omit NFT metadata. Defaults to `false`. #### Defined in -[src/types/types.ts:966](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L966) +[src/types/types.ts:1170](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1170) ___ @@ -39,7 +39,7 @@ Optional page key from an existing [NftContractBaseNftsResponse](NftContractBase #### Defined in -[src/types/types.ts:963](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L963) +[src/types/types.ts:1167](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1167) ___ @@ -52,4 +52,4 @@ Maximum page size is 100. #### Defined in -[src/types/types.ts:972](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L972) +[src/types/types.ts:1176](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1176) diff --git a/docs-md/interfaces/GetBaseNftsForOwnerOptions.md b/docs-md/interfaces/GetBaseNftsForOwnerOptions.md index 89204ee7..abd9ddb8 100644 --- a/docs-md/interfaces/GetBaseNftsForOwnerOptions.md +++ b/docs-md/interfaces/GetBaseNftsForOwnerOptions.md @@ -29,7 +29,7 @@ Optional list of contract addresses to filter the results by. Limit is 20. #### Defined in -[src/types/types.ts:565](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L565) +[src/types/types.ts:575](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L575) ___ @@ -42,7 +42,7 @@ of these filters are excluded from the response. #### Defined in -[src/types/types.ts:571](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L571) +[src/types/types.ts:581](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L581) ___ @@ -54,7 +54,7 @@ Optional boolean flag to include NFT metadata. Defaults to `false`. #### Defined in -[src/types/types.ts:580](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L580) +[src/types/types.ts:590](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L590) ___ @@ -67,7 +67,7 @@ Optional page key from an existing [OwnedBaseNftsResponse](OwnedBaseNftsResponse #### Defined in -[src/types/types.ts:562](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L562) +[src/types/types.ts:572](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L572) ___ @@ -80,7 +80,7 @@ Maximum page size is 100. #### Defined in -[src/types/types.ts:577](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L577) +[src/types/types.ts:587](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L587) ___ @@ -95,4 +95,4 @@ metadata for cache misses then set this value to 0. #### Defined in -[src/types/types.ts:588](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L588) +[src/types/types.ts:598](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L598) diff --git a/docs-md/interfaces/GetFloorPriceResponse.md b/docs-md/interfaces/GetFloorPriceResponse.md index 1548032b..5f9419bb 100644 --- a/docs-md/interfaces/GetFloorPriceResponse.md +++ b/docs-md/interfaces/GetFloorPriceResponse.md @@ -19,7 +19,7 @@ The response object for the [getFloorPrice](../classes/NftNamespace.md#getfloorp #### Defined in -[src/types/types.ts:765](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L765) +[src/types/types.ts:807](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L807) ___ @@ -32,4 +32,4 @@ marketplaces supported: OpenSea, LooksRare #### Defined in -[src/types/types.ts:764](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L764) +[src/types/types.ts:806](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L806) diff --git a/docs-md/interfaces/GetNftsForContractOptions.md b/docs-md/interfaces/GetNftsForContractOptions.md index d8ee2af3..8d8fbedf 100644 --- a/docs-md/interfaces/GetNftsForContractOptions.md +++ b/docs-md/interfaces/GetNftsForContractOptions.md @@ -27,7 +27,7 @@ Optional boolean flag to omit NFT metadata. Defaults to `false`. #### Defined in -[src/types/types.ts:932](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L932) +[src/types/types.ts:1136](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1136) ___ @@ -40,7 +40,7 @@ Optional page key from an existing [NftContractBaseNftsResponse](NftContractBase #### Defined in -[src/types/types.ts:929](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L929) +[src/types/types.ts:1133](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1133) ___ @@ -53,7 +53,7 @@ Maximum page size is 100. #### Defined in -[src/types/types.ts:938](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L938) +[src/types/types.ts:1142](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1142) ___ @@ -68,4 +68,4 @@ metadata for cache misses then set this value to 0. #### Defined in -[src/types/types.ts:946](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L946) +[src/types/types.ts:1150](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1150) diff --git a/docs-md/interfaces/GetNftsForOwnerOptions.md b/docs-md/interfaces/GetNftsForOwnerOptions.md index fb854799..d79ef61b 100644 --- a/docs-md/interfaces/GetNftsForOwnerOptions.md +++ b/docs-md/interfaces/GetNftsForOwnerOptions.md @@ -29,7 +29,7 @@ Optional list of contract addresses to filter the results by. Limit is 20. #### Defined in -[src/types/types.ts:522](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L522) +[src/types/types.ts:532](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L532) ___ @@ -42,7 +42,7 @@ of these filters are excluded from the response. #### Defined in -[src/types/types.ts:528](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L528) +[src/types/types.ts:538](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L538) ___ @@ -54,7 +54,7 @@ Optional boolean flag to omit NFT metadata. Defaults to `false`. #### Defined in -[src/types/types.ts:537](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L537) +[src/types/types.ts:547](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L547) ___ @@ -67,7 +67,7 @@ Optional page key from an existing [OwnedBaseNftsResponse](OwnedBaseNftsResponse #### Defined in -[src/types/types.ts:519](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L519) +[src/types/types.ts:529](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L529) ___ @@ -80,7 +80,7 @@ Maximum page size is 100. #### Defined in -[src/types/types.ts:534](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L534) +[src/types/types.ts:544](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L544) ___ @@ -95,4 +95,4 @@ metadata for cache misses then set this value to 0. #### Defined in -[src/types/types.ts:545](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L545) +[src/types/types.ts:555](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L555) diff --git a/docs-md/interfaces/GetOwnersForContractOptions.md b/docs-md/interfaces/GetOwnersForContractOptions.md index c8ed9e25..ffcd438e 100644 --- a/docs-md/interfaces/GetOwnersForContractOptions.md +++ b/docs-md/interfaces/GetOwnersForContractOptions.md @@ -25,7 +25,7 @@ The block number in hex or decimal to fetch owners for. #### Defined in -[src/types/types.ts:991](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L991) +[src/types/types.ts:1195](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1195) ___ @@ -37,7 +37,7 @@ Optional page key to paginate the next page for large requests. #### Defined in -[src/types/types.ts:994](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L994) +[src/types/types.ts:1198](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1198) ___ @@ -50,4 +50,4 @@ to false when omitted. #### Defined in -[src/types/types.ts:988](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L988) +[src/types/types.ts:1192](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1192) diff --git a/docs-md/interfaces/GetOwnersForContractResponse.md b/docs-md/interfaces/GetOwnersForContractResponse.md index 5276c8da..f7d70719 100644 --- a/docs-md/interfaces/GetOwnersForContractResponse.md +++ b/docs-md/interfaces/GetOwnersForContractResponse.md @@ -20,4 +20,4 @@ An array of owner addresses for the provided contract address #### Defined in -[src/types/types.ts:686](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L686) +[src/types/types.ts:696](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L696) diff --git a/docs-md/interfaces/GetOwnersForContractWithTokenBalancesOptions.md b/docs-md/interfaces/GetOwnersForContractWithTokenBalancesOptions.md index e58db4d0..4904c51c 100644 --- a/docs-md/interfaces/GetOwnersForContractWithTokenBalancesOptions.md +++ b/docs-md/interfaces/GetOwnersForContractWithTokenBalancesOptions.md @@ -25,7 +25,7 @@ The block number in hex or decimal to fetch owners for. #### Defined in -[src/types/types.ts:1013](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1013) +[src/types/types.ts:1217](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1217) ___ @@ -37,7 +37,7 @@ Optional page key to paginate the next page for large requests. #### Defined in -[src/types/types.ts:1016](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1016) +[src/types/types.ts:1220](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1220) ___ @@ -50,4 +50,4 @@ to false when omitted. #### Defined in -[src/types/types.ts:1010](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1010) +[src/types/types.ts:1214](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1214) diff --git a/docs-md/interfaces/GetOwnersForContractWithTokenBalancesResponse.md b/docs-md/interfaces/GetOwnersForContractWithTokenBalancesResponse.md index 7a892a94..dfecf1e4 100644 --- a/docs-md/interfaces/GetOwnersForContractWithTokenBalancesResponse.md +++ b/docs-md/interfaces/GetOwnersForContractWithTokenBalancesResponse.md @@ -21,7 +21,7 @@ An array of owner addresses for the provided contract address #### Defined in -[src/types/types.ts:696](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L696) +[src/types/types.ts:706](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L706) ___ @@ -33,4 +33,4 @@ Optional page key that is returned when a collection has more than 50,000 owners #### Defined in -[src/types/types.ts:699](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L699) +[src/types/types.ts:709](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L709) diff --git a/docs-md/interfaces/GetOwnersForNftResponse.md b/docs-md/interfaces/GetOwnersForNftResponse.md index 4de0d7ee..bf46ada8 100644 --- a/docs-md/interfaces/GetOwnersForNftResponse.md +++ b/docs-md/interfaces/GetOwnersForNftResponse.md @@ -20,4 +20,4 @@ An array of owner addresses for the provided token. #### Defined in -[src/types/types.ts:676](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L676) +[src/types/types.ts:686](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L686) diff --git a/docs-md/interfaces/Media.md b/docs-md/interfaces/Media.md index 1b60d6b2..f9c37010 100644 --- a/docs-md/interfaces/Media.md +++ b/docs-md/interfaces/Media.md @@ -25,7 +25,7 @@ The size of the media asset in bytes. #### Defined in -[src/types/types.ts:485](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L485) +[src/types/types.ts:495](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L495) ___ @@ -38,7 +38,7 @@ The media format (ex: jpg, gif, png) of the [gateway](Media.md#gateway) and #### Defined in -[src/types/types.ts:474](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L474) +[src/types/types.ts:484](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L484) ___ @@ -50,7 +50,7 @@ Public gateway URI for the raw URI. Generally offers better performance. #### Defined in -[src/types/types.ts:465](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L465) +[src/types/types.ts:475](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L475) ___ @@ -63,7 +63,7 @@ original IPFS link). #### Defined in -[src/types/types.ts:462](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L462) +[src/types/types.ts:472](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L472) ___ @@ -78,7 +78,7 @@ DEPRECATED - The size of the media asset in bytes #### Defined in -[src/types/types.ts:482](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L482) +[src/types/types.ts:492](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L492) ___ @@ -90,4 +90,4 @@ URL for a resized thumbnail of the NFT media asset. #### Defined in -[src/types/types.ts:468](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L468) +[src/types/types.ts:478](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L478) diff --git a/docs-md/interfaces/MinedTransactionWebhook.md b/docs-md/interfaces/MinedTransactionWebhook.md index e8740dc0..f4ef66f5 100644 --- a/docs-md/interfaces/MinedTransactionWebhook.md +++ b/docs-md/interfaces/MinedTransactionWebhook.md @@ -41,7 +41,7 @@ The app id of the app used for the webhook. This field is only present on #### Defined in -[src/types/types.ts:1292](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1292) +[src/types/types.ts:1494](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1494) ___ @@ -57,7 +57,7 @@ The webhook's unique id. #### Defined in -[src/types/types.ts:1273](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1273) +[src/types/types.ts:1475](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1475) ___ @@ -73,7 +73,7 @@ Whether the webhook is currently active #### Defined in -[src/types/types.ts:1281](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1281) +[src/types/types.ts:1483](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1483) ___ @@ -89,7 +89,7 @@ The network the webhook is on. #### Defined in -[src/types/types.ts:1275](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1275) +[src/types/types.ts:1477](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1477) ___ @@ -105,7 +105,7 @@ The signing key used to verify payloads for the webhook. #### Defined in -[src/types/types.ts:1285](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1285) +[src/types/types.ts:1487](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1487) ___ @@ -121,7 +121,7 @@ The creation time of the webhook as an ISO string. #### Defined in -[src/types/types.ts:1283](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1283) +[src/types/types.ts:1485](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1485) ___ @@ -137,7 +137,7 @@ The type of webhook. #### Defined in -[src/types/types.ts:1315](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1315) +[src/types/types.ts:1517](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1517) ___ @@ -153,7 +153,7 @@ The url that the webhook sends its payload to. #### Defined in -[src/types/types.ts:1279](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1279) +[src/types/types.ts:1481](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1481) ___ @@ -169,4 +169,4 @@ The webhook version. All newly created webhooks default to V2. #### Defined in -[src/types/types.ts:1287](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1287) +[src/types/types.ts:1489](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1489) diff --git a/docs-md/interfaces/Nft.md b/docs-md/interfaces/Nft.md index c6d1c139..2bc3048e 100644 --- a/docs-md/interfaces/Nft.md +++ b/docs-md/interfaces/Nft.md @@ -42,7 +42,7 @@ The NFT's underlying contract and relevant contract metadata. #### Defined in -[src/api/nft.ts:58](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L58) +[src/api/nft.ts:58](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L58) ___ @@ -54,7 +54,7 @@ The NFT description. #### Defined in -[src/api/nft.ts:64](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L64) +[src/api/nft.ts:64](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L64) ___ @@ -66,7 +66,7 @@ URIs for accessing the NFT's media assets. #### Defined in -[src/api/nft.ts:82](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L82) +[src/api/nft.ts:82](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L82) ___ @@ -78,7 +78,7 @@ Holds an error message if there was an issue fetching metadata. #### Defined in -[src/api/nft.ts:70](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L70) +[src/api/nft.ts:70](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L70) ___ @@ -91,7 +91,7 @@ field is undefined if Alchemy was unable to fetch metadata. #### Defined in -[src/api/nft.ts:76](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L76) +[src/api/nft.ts:76](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L76) ___ @@ -103,7 +103,7 @@ Detailed information on why an NFT was classified as spam. #### Defined in -[src/api/nft.ts:85](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L85) +[src/api/nft.ts:85](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L85) ___ @@ -115,7 +115,7 @@ When the NFT was last updated in the blockchain. Represented in ISO-8601 format. #### Defined in -[src/api/nft.ts:67](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L67) +[src/api/nft.ts:67](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L67) ___ @@ -127,7 +127,7 @@ The NFT title. #### Defined in -[src/api/nft.ts:61](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L61) +[src/api/nft.ts:61](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L61) ___ @@ -143,7 +143,7 @@ The NFT token ID as an integer string. #### Defined in -[src/api/nft.ts:46](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L46) +[src/api/nft.ts:46](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L46) ___ @@ -159,7 +159,7 @@ The type of ERC token, if known. #### Defined in -[src/api/nft.ts:48](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L48) +[src/api/nft.ts:48](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L48) ___ @@ -171,4 +171,4 @@ URIs for accessing the NFT's metadata blob. #### Defined in -[src/api/nft.ts:79](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L79) +[src/api/nft.ts:79](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L79) diff --git a/docs-md/interfaces/NftActivityWebhook.md b/docs-md/interfaces/NftActivityWebhook.md index 42aa7c00..148ec1db 100644 --- a/docs-md/interfaces/NftActivityWebhook.md +++ b/docs-md/interfaces/NftActivityWebhook.md @@ -41,7 +41,7 @@ The app id of the app used for the webhook. This field is only present on #### Defined in -[src/types/types.ts:1292](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1292) +[src/types/types.ts:1494](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1494) ___ @@ -57,7 +57,7 @@ The webhook's unique id. #### Defined in -[src/types/types.ts:1273](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1273) +[src/types/types.ts:1475](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1475) ___ @@ -73,7 +73,7 @@ Whether the webhook is currently active #### Defined in -[src/types/types.ts:1281](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1281) +[src/types/types.ts:1483](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1483) ___ @@ -89,7 +89,7 @@ The network the webhook is on. #### Defined in -[src/types/types.ts:1275](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1275) +[src/types/types.ts:1477](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1477) ___ @@ -105,7 +105,7 @@ The signing key used to verify payloads for the webhook. #### Defined in -[src/types/types.ts:1285](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1285) +[src/types/types.ts:1487](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1487) ___ @@ -121,7 +121,7 @@ The creation time of the webhook as an ISO string. #### Defined in -[src/types/types.ts:1283](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1283) +[src/types/types.ts:1485](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1485) ___ @@ -137,7 +137,7 @@ The type of webhook. #### Defined in -[src/types/types.ts:1342](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1342) +[src/types/types.ts:1544](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1544) ___ @@ -153,7 +153,7 @@ The url that the webhook sends its payload to. #### Defined in -[src/types/types.ts:1279](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1279) +[src/types/types.ts:1481](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1481) ___ @@ -169,4 +169,4 @@ The webhook version. All newly created webhooks default to V2. #### Defined in -[src/types/types.ts:1287](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1287) +[src/types/types.ts:1489](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1489) diff --git a/docs-md/interfaces/NftAttributeRarity.md b/docs-md/interfaces/NftAttributeRarity.md index 965efcd7..032958f9 100644 --- a/docs-md/interfaces/NftAttributeRarity.md +++ b/docs-md/interfaces/NftAttributeRarity.md @@ -23,7 +23,7 @@ trait type in the current collection. #### Defined in -[src/types/types.ts:784](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L784) +[src/types/types.ts:988](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L988) ___ @@ -35,7 +35,7 @@ The type of NFT attribute. #### Defined in -[src/types/types.ts:778](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L778) +[src/types/types.ts:982](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L982) ___ @@ -47,4 +47,4 @@ Name of the NFT's attribute. #### Defined in -[src/types/types.ts:775](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L775) +[src/types/types.ts:979](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L979) diff --git a/docs-md/interfaces/NftAttributesResponse.md b/docs-md/interfaces/NftAttributesResponse.md index 4430fbb6..b593052f 100644 --- a/docs-md/interfaces/NftAttributesResponse.md +++ b/docs-md/interfaces/NftAttributesResponse.md @@ -22,7 +22,7 @@ The specified NFT contract's address. #### Defined in -[src/types/types.ts:794](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L794) +[src/types/types.ts:998](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L998) ___ @@ -35,7 +35,7 @@ provided NFT. #### Defined in -[src/types/types.ts:803](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L803) +[src/types/types.ts:1007](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1007) ___ @@ -47,4 +47,4 @@ The specified NFT contract's total supply. #### Defined in -[src/types/types.ts:797](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L797) +[src/types/types.ts:1001](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1001) diff --git a/docs-md/interfaces/NftContract.md b/docs-md/interfaces/NftContract.md index 0e7fa78e..0ad24d48 100644 --- a/docs-md/interfaces/NftContract.md +++ b/docs-md/interfaces/NftContract.md @@ -35,7 +35,7 @@ The address of the contract. #### Defined in -[src/api/nft.ts:17](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L17) +[src/api/nft.ts:17](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L17) ___ @@ -47,7 +47,7 @@ The name of the contract. #### Defined in -[src/api/nft.ts:29](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L29) +[src/api/nft.ts:29](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L29) ___ @@ -59,7 +59,7 @@ OpenSea's metadata for the contract. #### Defined in -[src/api/nft.ts:35](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L35) +[src/api/nft.ts:35](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L35) ___ @@ -71,7 +71,7 @@ The symbol of the contract. #### Defined in -[src/api/nft.ts:31](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L31) +[src/api/nft.ts:31](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L31) ___ @@ -83,7 +83,7 @@ The type of the token in the contract. #### Defined in -[src/api/nft.ts:27](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L27) +[src/api/nft.ts:27](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L27) ___ @@ -95,4 +95,4 @@ The number of NFTs in the contract as an integer string. #### Defined in -[src/api/nft.ts:33](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L33) +[src/api/nft.ts:33](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L33) diff --git a/docs-md/interfaces/NftContractBaseNftsResponse.md b/docs-md/interfaces/NftContractBaseNftsResponse.md index 7d7750b1..6d6f4fa3 100644 --- a/docs-md/interfaces/NftContractBaseNftsResponse.md +++ b/docs-md/interfaces/NftContractBaseNftsResponse.md @@ -22,7 +22,7 @@ An array of NFTs without metadata. #### Defined in -[src/types/types.ts:1027](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1027) +[src/types/types.ts:1231](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1231) ___ @@ -35,4 +35,4 @@ NFTs. If there is no page key, then there are no more NFTs to fetch. #### Defined in -[src/types/types.ts:1033](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1033) +[src/types/types.ts:1237](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1237) diff --git a/docs-md/interfaces/NftContractNftsResponse.md b/docs-md/interfaces/NftContractNftsResponse.md index fbf6a9c1..3cc4b1cf 100644 --- a/docs-md/interfaces/NftContractNftsResponse.md +++ b/docs-md/interfaces/NftContractNftsResponse.md @@ -22,7 +22,7 @@ An array of NFTs with metadata. #### Defined in -[src/types/types.ts:1044](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1044) +[src/types/types.ts:1248](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1248) ___ @@ -35,4 +35,4 @@ NFTs. If there is no page key, then there are no more NFTs to fetch. #### Defined in -[src/types/types.ts:1050](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1050) +[src/types/types.ts:1254](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1254) diff --git a/docs-md/interfaces/NftContractOwner.md b/docs-md/interfaces/NftContractOwner.md index 1371d23b..d6731ddf 100644 --- a/docs-md/interfaces/NftContractOwner.md +++ b/docs-md/interfaces/NftContractOwner.md @@ -22,7 +22,7 @@ The NFT's owner address. #### Defined in -[src/types/types.ts:708](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L708) +[src/types/types.ts:718](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L718) ___ @@ -34,4 +34,4 @@ A list of objects containing token balances for the provided NFT contract. #### Defined in -[src/types/types.ts:711](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L711) +[src/types/types.ts:721](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L721) diff --git a/docs-md/interfaces/NftContractTokenBalance.md b/docs-md/interfaces/NftContractTokenBalance.md index 068f05af..1edfaa07 100644 --- a/docs-md/interfaces/NftContractTokenBalance.md +++ b/docs-md/interfaces/NftContractTokenBalance.md @@ -22,7 +22,7 @@ The token Id balance for the provided owner. #### Defined in -[src/types/types.ts:723](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L723) +[src/types/types.ts:733](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L733) ___ @@ -34,4 +34,4 @@ The token id owned in the NFT contract. #### Defined in -[src/types/types.ts:720](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L720) +[src/types/types.ts:730](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L730) diff --git a/docs-md/interfaces/NftFilter.md b/docs-md/interfaces/NftFilter.md index bbeeff6c..015f8826 100644 --- a/docs-md/interfaces/NftFilter.md +++ b/docs-md/interfaces/NftFilter.md @@ -21,7 +21,7 @@ The contract address of the NFT. #### Defined in -[src/types/types.ts:1419](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1419) +[src/types/types.ts:1621](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1621) ___ @@ -33,4 +33,4 @@ The token id of the NFT. #### Defined in -[src/types/types.ts:1421](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1421) +[src/types/types.ts:1623](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1623) diff --git a/docs-md/interfaces/NftFiltersResponse.md b/docs-md/interfaces/NftFiltersResponse.md index 53e7b046..bd92f5ea 100644 --- a/docs-md/interfaces/NftFiltersResponse.md +++ b/docs-md/interfaces/NftFiltersResponse.md @@ -22,7 +22,7 @@ The NFT filters on the provided webhook. #### Defined in -[src/types/types.ts:1427](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1427) +[src/types/types.ts:1629](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1629) ___ @@ -34,7 +34,7 @@ Optional page key used to fetch the remaining filters. #### Defined in -[src/types/types.ts:1431](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1431) +[src/types/types.ts:1633](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1633) ___ @@ -46,4 +46,4 @@ The total number of NFT filters on the webhook. #### Defined in -[src/types/types.ts:1429](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1429) +[src/types/types.ts:1631](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1631) diff --git a/docs-md/interfaces/NftMetadata.md b/docs-md/interfaces/NftMetadata.md index 83887194..2fc61d26 100644 --- a/docs-md/interfaces/NftMetadata.md +++ b/docs-md/interfaces/NftMetadata.md @@ -32,7 +32,7 @@ The traits, attributes, and characteristics for the NFT asset. #### Defined in -[src/types/types.ts:433](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L433) +[src/types/types.ts:443](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L443) ___ @@ -44,7 +44,7 @@ Background color of the NFT item. Usually defined as a 6 character hex string. #### Defined in -[src/types/types.ts:430](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L430) +[src/types/types.ts:440](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L440) ___ @@ -56,7 +56,7 @@ A human-readable description of the NFT asset. #### Defined in -[src/types/types.ts:418](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L418) +[src/types/types.ts:428](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L428) ___ @@ -69,7 +69,7 @@ to be the highest resolution image. #### Defined in -[src/types/types.ts:427](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L427) +[src/types/types.ts:437](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L437) ___ @@ -81,7 +81,7 @@ URL to the NFT asset image. #### Defined in -[src/types/types.ts:421](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L421) +[src/types/types.ts:431](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L431) ___ @@ -93,4 +93,4 @@ Name of the NFT asset. #### Defined in -[src/types/types.ts:415](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L415) +[src/types/types.ts:425](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L425) diff --git a/docs-md/interfaces/NftWebhookParams.md b/docs-md/interfaces/NftWebhookParams.md index 92e6c8c1..a50345d1 100644 --- a/docs-md/interfaces/NftWebhookParams.md +++ b/docs-md/interfaces/NftWebhookParams.md @@ -22,7 +22,7 @@ Array of NFT filters the webhook should track. #### Defined in -[src/types/types.ts:1394](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1394) +[src/types/types.ts:1596](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1596) ___ @@ -35,4 +35,4 @@ created on network of the app provided in the api key config. #### Defined in -[src/types/types.ts:1399](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1399) +[src/types/types.ts:1601](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1601) diff --git a/docs-md/interfaces/OpenSeaCollectionMetadata.md b/docs-md/interfaces/OpenSeaCollectionMetadata.md index 2f3ad1c2..2d3df9b6 100644 --- a/docs-md/interfaces/OpenSeaCollectionMetadata.md +++ b/docs-md/interfaces/OpenSeaCollectionMetadata.md @@ -28,7 +28,7 @@ The name of the collection on OpenSea. #### Defined in -[src/types/types.ts:1060](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1060) +[src/types/types.ts:1262](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1262) ___ @@ -40,7 +40,7 @@ The description of the collection on OpenSea. #### Defined in -[src/types/types.ts:1066](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1066) +[src/types/types.ts:1268](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1268) ___ @@ -52,7 +52,7 @@ The Discord URL of the collection. #### Defined in -[src/types/types.ts:1072](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1072) +[src/types/types.ts:1274](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1274) ___ @@ -64,7 +64,7 @@ The homepage of the collection as determined by OpenSea. #### Defined in -[src/types/types.ts:1068](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1068) +[src/types/types.ts:1270](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1270) ___ @@ -76,7 +76,7 @@ The floor price of the NFT. #### Defined in -[src/types/types.ts:1058](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1058) +[src/types/types.ts:1260](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1260) ___ @@ -88,7 +88,7 @@ The image URL determined by OpenSea. #### Defined in -[src/types/types.ts:1064](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1064) +[src/types/types.ts:1266](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1266) ___ @@ -100,7 +100,7 @@ Timestamp of when the OpenSea metadata was last ingested by Alchemy. #### Defined in -[src/types/types.ts:1074](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1074) +[src/types/types.ts:1276](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1276) ___ @@ -112,7 +112,7 @@ The approval status of the collection on OpenSea. #### Defined in -[src/types/types.ts:1062](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1062) +[src/types/types.ts:1264](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1264) ___ @@ -124,4 +124,4 @@ The Twitter handle of the collection. #### Defined in -[src/types/types.ts:1070](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1070) +[src/types/types.ts:1272](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1272) diff --git a/docs-md/interfaces/OwnedBaseNft.md b/docs-md/interfaces/OwnedBaseNft.md index 0a8de71d..4e7c1bf0 100644 --- a/docs-md/interfaces/OwnedBaseNft.md +++ b/docs-md/interfaces/OwnedBaseNft.md @@ -29,7 +29,7 @@ The token balance of the NFT. #### Defined in -[src/types/types.ts:666](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L666) +[src/types/types.ts:676](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L676) ___ @@ -43,7 +43,7 @@ ___ #### Defined in -[src/api/nft.ts:44](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L44) +[src/api/nft.ts:44](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L44) ___ @@ -59,7 +59,7 @@ The NFT token ID as an integer string. #### Defined in -[src/api/nft.ts:46](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L46) +[src/api/nft.ts:46](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L46) ___ @@ -75,4 +75,4 @@ The type of ERC token, if known. #### Defined in -[src/api/nft.ts:48](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L48) +[src/api/nft.ts:48](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L48) diff --git a/docs-md/interfaces/OwnedBaseNftsResponse.md b/docs-md/interfaces/OwnedBaseNftsResponse.md index bff21e0b..4496dde5 100644 --- a/docs-md/interfaces/OwnedBaseNftsResponse.md +++ b/docs-md/interfaces/OwnedBaseNftsResponse.md @@ -25,7 +25,7 @@ The NFTs owned by the provided address. #### Defined in -[src/types/types.ts:637](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L637) +[src/types/types.ts:647](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L647) ___ @@ -38,7 +38,7 @@ NFTs. If there is no page key, then there are no more NFTs to fetch. #### Defined in -[src/types/types.ts:643](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L643) +[src/types/types.ts:653](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L653) ___ @@ -50,4 +50,4 @@ The total count of NFTs owned by the provided address. #### Defined in -[src/types/types.ts:646](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L646) +[src/types/types.ts:656](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L656) diff --git a/docs-md/interfaces/OwnedNft.md b/docs-md/interfaces/OwnedNft.md index 43b15460..03508a9e 100644 --- a/docs-md/interfaces/OwnedNft.md +++ b/docs-md/interfaces/OwnedNft.md @@ -37,7 +37,7 @@ The token balance of the NFT. #### Defined in -[src/types/types.ts:656](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L656) +[src/types/types.ts:666](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L666) ___ @@ -53,7 +53,7 @@ The NFT's underlying contract and relevant contract metadata. #### Defined in -[src/api/nft.ts:58](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L58) +[src/api/nft.ts:58](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L58) ___ @@ -69,7 +69,7 @@ The NFT description. #### Defined in -[src/api/nft.ts:64](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L64) +[src/api/nft.ts:64](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L64) ___ @@ -85,7 +85,7 @@ URIs for accessing the NFT's media assets. #### Defined in -[src/api/nft.ts:82](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L82) +[src/api/nft.ts:82](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L82) ___ @@ -101,7 +101,7 @@ Holds an error message if there was an issue fetching metadata. #### Defined in -[src/api/nft.ts:70](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L70) +[src/api/nft.ts:70](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L70) ___ @@ -118,7 +118,7 @@ field is undefined if Alchemy was unable to fetch metadata. #### Defined in -[src/api/nft.ts:76](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L76) +[src/api/nft.ts:76](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L76) ___ @@ -134,7 +134,7 @@ Detailed information on why an NFT was classified as spam. #### Defined in -[src/api/nft.ts:85](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L85) +[src/api/nft.ts:85](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L85) ___ @@ -150,7 +150,7 @@ When the NFT was last updated in the blockchain. Represented in ISO-8601 format. #### Defined in -[src/api/nft.ts:67](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L67) +[src/api/nft.ts:67](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L67) ___ @@ -166,7 +166,7 @@ The NFT title. #### Defined in -[src/api/nft.ts:61](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L61) +[src/api/nft.ts:61](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L61) ___ @@ -182,7 +182,7 @@ The NFT token ID as an integer string. #### Defined in -[src/api/nft.ts:46](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L46) +[src/api/nft.ts:46](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L46) ___ @@ -198,7 +198,7 @@ The type of ERC token, if known. #### Defined in -[src/api/nft.ts:48](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L48) +[src/api/nft.ts:48](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L48) ___ @@ -214,4 +214,4 @@ URIs for accessing the NFT's metadata blob. #### Defined in -[src/api/nft.ts:79](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/nft.ts#L79) +[src/api/nft.ts:79](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/nft.ts#L79) diff --git a/docs-md/interfaces/OwnedNftsResponse.md b/docs-md/interfaces/OwnedNftsResponse.md index 78037939..3be2cff5 100644 --- a/docs-md/interfaces/OwnedNftsResponse.md +++ b/docs-md/interfaces/OwnedNftsResponse.md @@ -25,7 +25,7 @@ The NFTs owned by the provided address. #### Defined in -[src/types/types.ts:615](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L615) +[src/types/types.ts:625](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L625) ___ @@ -38,7 +38,7 @@ NFTs. If there is no page key, then there are no more NFTs to fetch. #### Defined in -[src/types/types.ts:621](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L621) +[src/types/types.ts:631](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L631) ___ @@ -50,4 +50,4 @@ The total count of NFTs owned by the provided address. #### Defined in -[src/types/types.ts:624](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L624) +[src/types/types.ts:634](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L634) diff --git a/docs-md/interfaces/RawContract.md b/docs-md/interfaces/RawContract.md index 0e8229e3..07ea2b30 100644 --- a/docs-md/interfaces/RawContract.md +++ b/docs-md/interfaces/RawContract.md @@ -23,7 +23,7 @@ The contract address. `null` if it was an internal or external transfer. #### Defined in -[src/types/types.ts:906](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L906) +[src/types/types.ts:1110](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1110) ___ @@ -36,7 +36,7 @@ is not in the contract and not available from other sources. #### Defined in -[src/types/types.ts:912](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L912) +[src/types/types.ts:1116](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1116) ___ @@ -49,4 +49,4 @@ ERC721 or ERC1155 token. #### Defined in -[src/types/types.ts:903](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L903) +[src/types/types.ts:1107](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1107) diff --git a/docs-md/interfaces/RefreshContractResult.md b/docs-md/interfaces/RefreshContractResult.md index b184bc57..6d763604 100644 --- a/docs-md/interfaces/RefreshContractResult.md +++ b/docs-md/interfaces/RefreshContractResult.md @@ -22,7 +22,7 @@ The NFT contract address that was passed in to be refreshed. #### Defined in -[src/types/types.ts:809](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L809) +[src/types/types.ts:1013](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1013) ___ @@ -35,7 +35,7 @@ Field can be null if the refresh has not occurred. #### Defined in -[src/types/types.ts:818](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L818) +[src/types/types.ts:1022](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1022) ___ @@ -47,4 +47,4 @@ The current state of the refresh request. #### Defined in -[src/types/types.ts:812](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L812) +[src/types/types.ts:1016](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1016) diff --git a/docs-md/interfaces/SendPrivateTransactionOptions.md b/docs-md/interfaces/SendPrivateTransactionOptions.md index 6010befc..a9682c3b 100644 --- a/docs-md/interfaces/SendPrivateTransactionOptions.md +++ b/docs-md/interfaces/SendPrivateTransactionOptions.md @@ -25,4 +25,4 @@ more details. #### Defined in -[src/types/types.ts:1219](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1219) +[src/types/types.ts:1421](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1421) diff --git a/docs-md/interfaces/SpamInfo.md b/docs-md/interfaces/SpamInfo.md index f5b8c65b..871dd8bc 100644 --- a/docs-md/interfaces/SpamInfo.md +++ b/docs-md/interfaces/SpamInfo.md @@ -21,7 +21,7 @@ A list of reasons why an NFT contract was marked as spam. #### Defined in -[src/types/types.ts:502](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L502) +[src/types/types.ts:512](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L512) ___ @@ -31,4 +31,4 @@ ___ #### Defined in -[src/types/types.ts:499](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L499) +[src/types/types.ts:509](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L509) diff --git a/docs-md/interfaces/TokenBalanceFailure.md b/docs-md/interfaces/TokenBalanceFailure.md index 2832a677..cb98ca5f 100644 --- a/docs-md/interfaces/TokenBalanceFailure.md +++ b/docs-md/interfaces/TokenBalanceFailure.md @@ -18,7 +18,7 @@ #### Defined in -[src/types/types.ts:142](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L142) +[src/types/types.ts:150](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L150) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/types/types.ts:144](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L144) +[src/types/types.ts:152](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L152) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/types/types.ts:143](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L143) +[src/types/types.ts:151](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L151) diff --git a/docs-md/interfaces/TokenBalanceSuccess.md b/docs-md/interfaces/TokenBalanceSuccess.md index 2e8c9665..d2e6ea00 100644 --- a/docs-md/interfaces/TokenBalanceSuccess.md +++ b/docs-md/interfaces/TokenBalanceSuccess.md @@ -18,7 +18,7 @@ #### Defined in -[src/types/types.ts:135](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L135) +[src/types/types.ts:143](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L143) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/types/types.ts:137](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L137) +[src/types/types.ts:145](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L145) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/types/types.ts:136](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L136) +[src/types/types.ts:144](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L144) diff --git a/docs-md/interfaces/TokenBalancesOptionsDefaultTokens.md b/docs-md/interfaces/TokenBalancesOptionsDefaultTokens.md index b7b58a21..0454bbc9 100644 --- a/docs-md/interfaces/TokenBalancesOptionsDefaultTokens.md +++ b/docs-md/interfaces/TokenBalancesOptionsDefaultTokens.md @@ -21,4 +21,4 @@ The top 100 token type. #### Defined in -[src/types/types.ts:109](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L109) +[src/types/types.ts:117](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L117) diff --git a/docs-md/interfaces/TokenBalancesOptionsErc20.md b/docs-md/interfaces/TokenBalancesOptionsErc20.md index cb205117..e412f514 100644 --- a/docs-md/interfaces/TokenBalancesOptionsErc20.md +++ b/docs-md/interfaces/TokenBalancesOptionsErc20.md @@ -22,7 +22,7 @@ Optional page key for pagination (only applicable to TokenBalanceType.ERC20) #### Defined in -[src/types/types.ts:100](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L100) +[src/types/types.ts:108](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L108) ___ @@ -34,4 +34,4 @@ The ERC-20 token type. #### Defined in -[src/types/types.ts:97](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L97) +[src/types/types.ts:105](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L105) diff --git a/docs-md/interfaces/TokenBalancesResponse.md b/docs-md/interfaces/TokenBalancesResponse.md index 0a99c38e..45ec0f01 100644 --- a/docs-md/interfaces/TokenBalancesResponse.md +++ b/docs-md/interfaces/TokenBalancesResponse.md @@ -23,7 +23,7 @@ #### Defined in -[src/types/types.ts:126](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L126) +[src/types/types.ts:134](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L134) ___ @@ -33,4 +33,4 @@ ___ #### Defined in -[src/types/types.ts:127](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L127) +[src/types/types.ts:135](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L135) diff --git a/docs-md/interfaces/TokenBalancesResponseErc20.md b/docs-md/interfaces/TokenBalancesResponseErc20.md index f3d93308..ebaa8f6e 100644 --- a/docs-md/interfaces/TokenBalancesResponseErc20.md +++ b/docs-md/interfaces/TokenBalancesResponseErc20.md @@ -31,7 +31,7 @@ used. A page key may be returned if the provided address has many transfers. #### Defined in -[src/types/types.ts:126](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L126) +[src/types/types.ts:134](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L134) ___ @@ -44,7 +44,7 @@ of token balances. #### Defined in -[src/types/types.ts:121](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L121) +[src/types/types.ts:129](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L129) ___ @@ -58,4 +58,4 @@ ___ #### Defined in -[src/types/types.ts:127](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L127) +[src/types/types.ts:135](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L135) diff --git a/docs-md/interfaces/TokenMetadataResponse.md b/docs-md/interfaces/TokenMetadataResponse.md index 3b7a8c0a..28c35b4b 100644 --- a/docs-md/interfaces/TokenMetadataResponse.md +++ b/docs-md/interfaces/TokenMetadataResponse.md @@ -24,7 +24,7 @@ contract and not available from other sources. #### Defined in -[src/types/types.ts:169](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L169) +[src/types/types.ts:177](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L177) ___ @@ -36,7 +36,7 @@ URL link to the token's logo. Is `null` if the logo is not available. #### Defined in -[src/types/types.ts:172](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L172) +[src/types/types.ts:180](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L180) ___ @@ -49,7 +49,7 @@ not available from other sources. #### Defined in -[src/types/types.ts:157](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L157) +[src/types/types.ts:165](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L165) ___ @@ -62,4 +62,4 @@ and not available from other sources. #### Defined in -[src/types/types.ts:163](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L163) +[src/types/types.ts:171](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L171) diff --git a/docs-md/interfaces/TokenUri.md b/docs-md/interfaces/TokenUri.md index 2d4abee9..e8de239a 100644 --- a/docs-md/interfaces/TokenUri.md +++ b/docs-md/interfaces/TokenUri.md @@ -21,7 +21,7 @@ Public gateway URI for the raw URI. Generally offers better performance. #### Defined in -[src/types/types.ts:449](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L449) +[src/types/types.ts:459](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L459) ___ @@ -34,4 +34,4 @@ IPFS link). #### Defined in -[src/types/types.ts:446](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L446) +[src/types/types.ts:456](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L456) diff --git a/docs-md/interfaces/TransactionReceiptsBlockHash.md b/docs-md/interfaces/TransactionReceiptsBlockHash.md index 3c85b597..8a3df627 100644 --- a/docs-md/interfaces/TransactionReceiptsBlockHash.md +++ b/docs-md/interfaces/TransactionReceiptsBlockHash.md @@ -20,4 +20,4 @@ The block hash to get transaction receipts for. #### Defined in -[src/types/types.ts:859](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L859) +[src/types/types.ts:1063](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1063) diff --git a/docs-md/interfaces/TransactionReceiptsBlockNumber.md b/docs-md/interfaces/TransactionReceiptsBlockNumber.md index fbe4e18c..90235894 100644 --- a/docs-md/interfaces/TransactionReceiptsBlockNumber.md +++ b/docs-md/interfaces/TransactionReceiptsBlockNumber.md @@ -20,4 +20,4 @@ The block number to get transaction receipts for. #### Defined in -[src/types/types.ts:849](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L849) +[src/types/types.ts:1053](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1053) diff --git a/docs-md/interfaces/TransactionReceiptsResponse.md b/docs-md/interfaces/TransactionReceiptsResponse.md index d42581f3..3a93df4b 100644 --- a/docs-md/interfaces/TransactionReceiptsResponse.md +++ b/docs-md/interfaces/TransactionReceiptsResponse.md @@ -20,4 +20,4 @@ A list of transaction receipts for the queried block. #### Defined in -[src/types/types.ts:878](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L878) +[src/types/types.ts:1082](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1082) diff --git a/docs-md/interfaces/TransactionWebhookParams.md b/docs-md/interfaces/TransactionWebhookParams.md index 1d658fa9..a6661d32 100644 --- a/docs-md/interfaces/TransactionWebhookParams.md +++ b/docs-md/interfaces/TransactionWebhookParams.md @@ -28,4 +28,4 @@ The app id of the project to create the webhook on. #### Defined in -[src/types/types.ts:1385](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1385) +[src/types/types.ts:1587](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1587) diff --git a/docs-md/interfaces/Webhook.md b/docs-md/interfaces/Webhook.md index 90164ec7..8136edbe 100644 --- a/docs-md/interfaces/Webhook.md +++ b/docs-md/interfaces/Webhook.md @@ -41,7 +41,7 @@ The app id of the app used for the webhook. This field is only present on #### Defined in -[src/types/types.ts:1292](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1292) +[src/types/types.ts:1494](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1494) ___ @@ -53,7 +53,7 @@ The webhook's unique id. #### Defined in -[src/types/types.ts:1273](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1273) +[src/types/types.ts:1475](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1475) ___ @@ -65,7 +65,7 @@ Whether the webhook is currently active #### Defined in -[src/types/types.ts:1281](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1281) +[src/types/types.ts:1483](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1483) ___ @@ -77,7 +77,7 @@ The network the webhook is on. #### Defined in -[src/types/types.ts:1275](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1275) +[src/types/types.ts:1477](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1477) ___ @@ -89,7 +89,7 @@ The signing key used to verify payloads for the webhook. #### Defined in -[src/types/types.ts:1285](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1285) +[src/types/types.ts:1487](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1487) ___ @@ -101,7 +101,7 @@ The creation time of the webhook as an ISO string. #### Defined in -[src/types/types.ts:1283](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1283) +[src/types/types.ts:1485](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1485) ___ @@ -113,7 +113,7 @@ The type of webhook. #### Defined in -[src/types/types.ts:1277](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1277) +[src/types/types.ts:1479](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1479) ___ @@ -125,7 +125,7 @@ The url that the webhook sends its payload to. #### Defined in -[src/types/types.ts:1279](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1279) +[src/types/types.ts:1481](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1481) ___ @@ -137,4 +137,4 @@ The webhook version. All newly created webhooks default to V2. #### Defined in -[src/types/types.ts:1287](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1287) +[src/types/types.ts:1489](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1489) diff --git a/docs-md/interfaces/WebhookAddressOverride.md b/docs-md/interfaces/WebhookAddressOverride.md index 3d116072..de3ca674 100644 --- a/docs-md/interfaces/WebhookAddressOverride.md +++ b/docs-md/interfaces/WebhookAddressOverride.md @@ -21,4 +21,4 @@ The new addresses to track. Existing addresses will be removed. #### Defined in -[src/types/types.ts:1471](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1471) +[src/types/types.ts:1673](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1673) diff --git a/docs-md/interfaces/WebhookAddressUpdate.md b/docs-md/interfaces/WebhookAddressUpdate.md index 5cfe0439..ad1bb05c 100644 --- a/docs-md/interfaces/WebhookAddressUpdate.md +++ b/docs-md/interfaces/WebhookAddressUpdate.md @@ -22,7 +22,7 @@ The addresses to additionally track. #### Defined in -[src/types/types.ts:1460](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1460) +[src/types/types.ts:1662](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1662) ___ @@ -34,4 +34,4 @@ Existing addresses to remove. #### Defined in -[src/types/types.ts:1462](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1462) +[src/types/types.ts:1664](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1664) diff --git a/docs-md/interfaces/WebhookNftFilterUpdate.md b/docs-md/interfaces/WebhookNftFilterUpdate.md index bc4ac551..0954757a 100644 --- a/docs-md/interfaces/WebhookNftFilterUpdate.md +++ b/docs-md/interfaces/WebhookNftFilterUpdate.md @@ -22,7 +22,7 @@ The filters to additionally track. #### Defined in -[src/types/types.ts:1449](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1449) +[src/types/types.ts:1651](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1651) ___ @@ -34,4 +34,4 @@ Existing filters to remove. #### Defined in -[src/types/types.ts:1451](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1451) +[src/types/types.ts:1653](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1653) diff --git a/docs-md/interfaces/WebhookStatusUpdate.md b/docs-md/interfaces/WebhookStatusUpdate.md index 79676630..581b5b88 100644 --- a/docs-md/interfaces/WebhookStatusUpdate.md +++ b/docs-md/interfaces/WebhookStatusUpdate.md @@ -21,4 +21,4 @@ Whether the webhook is active. #### Defined in -[src/types/types.ts:1440](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1440) +[src/types/types.ts:1642](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1642) diff --git a/docs-md/modules.md b/docs-md/modules.md index 62cbbcf7..21779174 100644 --- a/docs-md/modules.md +++ b/docs-md/modules.md @@ -15,10 +15,13 @@ - [AssetTransfersOrder](enums/AssetTransfersOrder.md) - [Network](enums/Network.md) - [NftExcludeFilters](enums/NftExcludeFilters.md) +- [NftSaleMarketplace](enums/NftSaleMarketplace.md) +- [NftSaleTakerType](enums/NftSaleTakerType.md) - [NftSpamClassification](enums/NftSpamClassification.md) - [NftTokenType](enums/NftTokenType.md) - [OpenSeaSafelistRequestStatus](enums/OpenSeaSafelistRequestStatus.md) - [RefreshState](enums/RefreshState.md) +- [SortingOrder](enums/SortingOrder.md) - [TokenBalanceType](enums/TokenBalanceType.md) - [WebhookType](enums/WebhookType.md) - [WebhookVersion](enums/WebhookVersion.md) @@ -65,6 +68,9 @@ - [GetBaseNftsForContractOptions](interfaces/GetBaseNftsForContractOptions.md) - [GetBaseNftsForOwnerOptions](interfaces/GetBaseNftsForOwnerOptions.md) - [GetFloorPriceResponse](interfaces/GetFloorPriceResponse.md) +- [GetNftSalesOptions](interfaces/GetNftSalesOptions.md) +- [GetNftSalesOptionsByContractAddress](interfaces/GetNftSalesOptionsByContractAddress.md) +- [GetNftSalesResponse](interfaces/GetNftSalesResponse.md) - [GetNftsForContractOptions](interfaces/GetNftsForContractOptions.md) - [GetNftsForOwnerOptions](interfaces/GetNftsForOwnerOptions.md) - [GetOwnersForContractOptions](interfaces/GetOwnersForContractOptions.md) @@ -86,6 +92,10 @@ - [NftFilter](interfaces/NftFilter.md) - [NftFiltersResponse](interfaces/NftFiltersResponse.md) - [NftMetadata](interfaces/NftMetadata.md) +- [NftMetadataBatchOptions](interfaces/NftMetadataBatchOptions.md) +- [NftMetadataBatchToken](interfaces/NftMetadataBatchToken.md) +- [NftSale](interfaces/NftSale.md) +- [NftSaleFeeData](interfaces/NftSaleFeeData.md) - [NftWebhookParams](interfaces/NftWebhookParams.md) - [OpenSeaCollectionMetadata](interfaces/OpenSeaCollectionMetadata.md) - [OwnedBaseNft](interfaces/OwnedBaseNft.md) @@ -145,7 +155,7 @@ Params object when calling [NotifyNamespace.updateWebhook](classes/NotifyNamespa #### Defined in -[src/types/types.ts:1487](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1487) +[src/types/types.ts:1689](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1689) ___ @@ -158,7 +168,7 @@ filters compatible with other ethers events. #### Defined in -[src/types/types.ts:1205](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1205) +[src/types/types.ts:1407](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1407) ___ @@ -171,7 +181,7 @@ also include Alchemy's Subscription API. #### Defined in -[src/types/types.ts:1199](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1199) +[src/types/types.ts:1401](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1401) ___ @@ -184,7 +194,7 @@ least one of the fields to be set. #### Defined in -[src/types/types.ts:1188](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1188) +[src/types/types.ts:1390](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1390) ___ @@ -196,7 +206,7 @@ The level of verbosity for the logger. #### Defined in -[src/util/logger.ts:22](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/util/logger.ts#L22) +[src/util/logger.ts:22](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/util/logger.ts#L22) ___ @@ -209,7 +219,7 @@ Params object when calling [NotifyNamespace.updateWebhook](classes/NotifyNamespa #### Defined in -[src/types/types.ts:1479](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1479) +[src/types/types.ts:1681](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1681) ___ @@ -227,7 +237,7 @@ Requires an array with at least one value. #### Defined in -[src/types/types.ts:1504](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1504) +[src/types/types.ts:1706](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1706) ___ @@ -248,7 +258,7 @@ Implementation copied over from #### Defined in -[src/types/types.ts:1498](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L1498) +[src/types/types.ts:1700](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1700) ___ @@ -258,7 +268,7 @@ ___ #### Defined in -[src/types/types.ts:131](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L131) +[src/types/types.ts:139](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L139) ___ @@ -270,7 +280,7 @@ The parameters to use with the [CoreNamespace.getTransactionReceipts](classes/Co #### Defined in -[src/types/types.ts:867](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/types/types.ts#L867) +[src/types/types.ts:1071](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/types/types.ts#L1071) ## Functions @@ -292,7 +302,7 @@ Converts a hex string to a decimal number. #### Defined in -[src/api/util.ts:9](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/util.ts#L9) +[src/api/util.ts:9](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/util.ts#L9) ___ @@ -314,7 +324,7 @@ Checks if a value is a hex string. #### Defined in -[src/api/util.ts:29](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/util.ts#L29) +[src/api/util.ts:29](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/util.ts#L29) ___ @@ -336,7 +346,7 @@ Configures the verbosity of logging. The default log level is `info`. #### Defined in -[src/util/logger.ts:56](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/util/logger.ts#L56) +[src/util/logger.ts:56](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/util/logger.ts#L56) ___ @@ -358,4 +368,4 @@ Converts a number to a hex string. #### Defined in -[src/api/util.ts:19](https://github.com/alchemyplatform/alchemy-sdk-js/blob/c3fdebb/src/api/util.ts#L19) +[src/api/util.ts:19](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/util.ts#L19) diff --git a/docs-md/modules/Utils.md b/docs-md/modules/Utils.md index 081bd57f..c354c564 100644 --- a/docs-md/modules/Utils.md +++ b/docs-md/modules/Utils.md @@ -4,6 +4,10 @@ ## Table of contents +### Classes + +- [Interface](../classes/Utils.Interface.md) + ### Functions - [arrayify](Utils.md#arrayify) diff --git a/docs/assets/search.js b/docs/assets/search.js index 5aaac967..44326b51 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"4\":\"Namespace\",\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":4,\"name\":\"Utils\",\"url\":\"modules/Utils.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":1,\"kind\":128,\"name\":\"Alchemy\",\"url\":\"classes/Alchemy.html\",\"classes\":\"tsd-kind-class\"},{\"id\":2,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Alchemy.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":3,\"kind\":1024,\"name\":\"core\",\"url\":\"classes/Alchemy.html#core\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":4,\"kind\":1024,\"name\":\"nft\",\"url\":\"classes/Alchemy.html#nft\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":5,\"kind\":1024,\"name\":\"ws\",\"url\":\"classes/Alchemy.html#ws\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":6,\"kind\":1024,\"name\":\"transact\",\"url\":\"classes/Alchemy.html#transact\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":7,\"kind\":1024,\"name\":\"config\",\"url\":\"classes/Alchemy.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":8,\"kind\":1024,\"name\":\"notify\",\"url\":\"classes/Alchemy.html#notify\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":9,\"kind\":128,\"name\":\"Wallet\",\"url\":\"classes/Wallet.html\",\"classes\":\"tsd-kind-class\"},{\"id\":10,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Wallet.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":11,\"kind\":1024,\"name\":\"alchemyProviderPromise\",\"url\":\"classes/Wallet.html#alchemyProviderPromise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Wallet\"},{\"id\":12,\"kind\":2048,\"name\":\"getBalance\",\"url\":\"classes/Wallet.html#getBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":13,\"kind\":2048,\"name\":\"getTransactionCount\",\"url\":\"classes/Wallet.html#getTransactionCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":14,\"kind\":2048,\"name\":\"estimateGas\",\"url\":\"classes/Wallet.html#estimateGas\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":15,\"kind\":2048,\"name\":\"call\",\"url\":\"classes/Wallet.html#call\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":16,\"kind\":2048,\"name\":\"sendTransaction\",\"url\":\"classes/Wallet.html#sendTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":17,\"kind\":2048,\"name\":\"getChainId\",\"url\":\"classes/Wallet.html#getChainId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":18,\"kind\":2048,\"name\":\"getGasPrice\",\"url\":\"classes/Wallet.html#getGasPrice\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":19,\"kind\":2048,\"name\":\"getFeeData\",\"url\":\"classes/Wallet.html#getFeeData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":20,\"kind\":2048,\"name\":\"resolveName\",\"url\":\"classes/Wallet.html#resolveName\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":21,\"kind\":2048,\"name\":\"getWallet\",\"url\":\"classes/Wallet.html#getWallet\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"Wallet\"},{\"id\":22,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Wallet.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Wallet\"},{\"id\":23,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Wallet.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Wallet\"},{\"id\":24,\"kind\":128,\"name\":\"Contract\",\"url\":\"classes/Contract.html\",\"classes\":\"tsd-kind-class\"},{\"id\":25,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Contract.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Contract\"},{\"id\":26,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":27,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":28,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":29,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":30,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":31,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":32,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":33,\"kind\":128,\"name\":\"ContractFactory\",\"url\":\"classes/ContractFactory.html\",\"classes\":\"tsd-kind-class\"},{\"id\":34,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ContractFactory.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ContractFactory\"},{\"id\":35,\"kind\":128,\"name\":\"AlchemyConfig\",\"url\":\"classes/AlchemyConfig.html\",\"classes\":\"tsd-kind-class\"},{\"id\":36,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/AlchemyConfig.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":37,\"kind\":1024,\"name\":\"apiKey\",\"url\":\"classes/AlchemyConfig.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":38,\"kind\":1024,\"name\":\"network\",\"url\":\"classes/AlchemyConfig.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":39,\"kind\":1024,\"name\":\"maxRetries\",\"url\":\"classes/AlchemyConfig.html#maxRetries\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":40,\"kind\":1024,\"name\":\"url\",\"url\":\"classes/AlchemyConfig.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":41,\"kind\":1024,\"name\":\"authToken\",\"url\":\"classes/AlchemyConfig.html#authToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":42,\"kind\":2048,\"name\":\"getProvider\",\"url\":\"classes/AlchemyConfig.html#getProvider\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":43,\"kind\":2048,\"name\":\"getWebSocketProvider\",\"url\":\"classes/AlchemyConfig.html#getWebSocketProvider\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":44,\"kind\":128,\"name\":\"AlchemyProvider\",\"url\":\"classes/AlchemyProvider.html\",\"classes\":\"tsd-kind-class\"},{\"id\":45,\"kind\":1024,\"name\":\"apiKey\",\"url\":\"classes/AlchemyProvider.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyProvider\"},{\"id\":46,\"kind\":1024,\"name\":\"maxRetries\",\"url\":\"classes/AlchemyProvider.html#maxRetries\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyProvider\"},{\"id\":47,\"kind\":2048,\"name\":\"detectNetwork\",\"url\":\"classes/AlchemyProvider.html#detectNetwork\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyProvider\"},{\"id\":48,\"kind\":2048,\"name\":\"_startPending\",\"url\":\"classes/AlchemyProvider.html#_startPending\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyProvider\"},{\"id\":49,\"kind\":2048,\"name\":\"isCommunityResource\",\"url\":\"classes/AlchemyProvider.html#isCommunityResource\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AlchemyProvider\"},{\"id\":50,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/AlchemyProvider.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyProvider\"},{\"id\":51,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyProvider.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyProvider\"},{\"id\":52,\"kind\":128,\"name\":\"AlchemyWebSocketProvider\",\"url\":\"classes/AlchemyWebSocketProvider.html\",\"classes\":\"tsd-kind-class\"},{\"id\":53,\"kind\":1024,\"name\":\"_events\",\"url\":\"classes/AlchemyWebSocketProvider.html#_events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":54,\"kind\":1024,\"name\":\"apiKey\",\"url\":\"classes/AlchemyWebSocketProvider.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":55,\"kind\":2048,\"name\":\"on\",\"url\":\"classes/AlchemyWebSocketProvider.html#on\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":56,\"kind\":2048,\"name\":\"once\",\"url\":\"classes/AlchemyWebSocketProvider.html#once\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":57,\"kind\":2048,\"name\":\"off\",\"url\":\"classes/AlchemyWebSocketProvider.html#off\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":58,\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/AlchemyWebSocketProvider.html#removeAllListeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":59,\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/AlchemyWebSocketProvider.html#listenerCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":60,\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/AlchemyWebSocketProvider.html#listeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":61,\"kind\":2048,\"name\":\"destroy\",\"url\":\"classes/AlchemyWebSocketProvider.html#destroy\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":62,\"kind\":2048,\"name\":\"isCommunityResource\",\"url\":\"classes/AlchemyWebSocketProvider.html#isCommunityResource\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":63,\"kind\":2048,\"name\":\"_off\",\"url\":\"classes/AlchemyWebSocketProvider.html#_off\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":64,\"kind\":2048,\"name\":\"_removeAllListeners\",\"url\":\"classes/AlchemyWebSocketProvider.html#_removeAllListeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":65,\"kind\":2048,\"name\":\"_listenerCount\",\"url\":\"classes/AlchemyWebSocketProvider.html#_listenerCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":66,\"kind\":2048,\"name\":\"_listeners\",\"url\":\"classes/AlchemyWebSocketProvider.html#_listeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":67,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyWebSocketProvider.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":68,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyWebSocketProvider.html#__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":69,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyWebSocketProvider.html#__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":70,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyWebSocketProvider.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":71,\"kind\":128,\"name\":\"NftNamespace\",\"url\":\"classes/NftNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":72,\"kind\":2048,\"name\":\"getNftMetadata\",\"url\":\"classes/NftNamespace.html#getNftMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":73,\"kind\":2048,\"name\":\"getContractMetadata\",\"url\":\"classes/NftNamespace.html#getContractMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":74,\"kind\":2048,\"name\":\"getNftsForOwnerIterator\",\"url\":\"classes/NftNamespace.html#getNftsForOwnerIterator\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":75,\"kind\":2048,\"name\":\"getNftsForOwner\",\"url\":\"classes/NftNamespace.html#getNftsForOwner\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":76,\"kind\":2048,\"name\":\"getNftsForContract\",\"url\":\"classes/NftNamespace.html#getNftsForContract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":77,\"kind\":2048,\"name\":\"getNftsForContractIterator\",\"url\":\"classes/NftNamespace.html#getNftsForContractIterator\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":78,\"kind\":2048,\"name\":\"getOwnersForContract\",\"url\":\"classes/NftNamespace.html#getOwnersForContract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":79,\"kind\":2048,\"name\":\"getOwnersForNft\",\"url\":\"classes/NftNamespace.html#getOwnersForNft\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":80,\"kind\":2048,\"name\":\"checkNftOwnership\",\"url\":\"classes/NftNamespace.html#checkNftOwnership\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":81,\"kind\":2048,\"name\":\"verifyNftOwnership\",\"url\":\"classes/NftNamespace.html#verifyNftOwnership\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":82,\"kind\":2048,\"name\":\"isSpamContract\",\"url\":\"classes/NftNamespace.html#isSpamContract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":83,\"kind\":2048,\"name\":\"getSpamContracts\",\"url\":\"classes/NftNamespace.html#getSpamContracts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":84,\"kind\":2048,\"name\":\"getFloorPrice\",\"url\":\"classes/NftNamespace.html#getFloorPrice\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":85,\"kind\":2048,\"name\":\"computeRarity\",\"url\":\"classes/NftNamespace.html#computeRarity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":86,\"kind\":2048,\"name\":\"searchContractMetadata\",\"url\":\"classes/NftNamespace.html#searchContractMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":87,\"kind\":2048,\"name\":\"summarizeNftAttributes\",\"url\":\"classes/NftNamespace.html#summarizeNftAttributes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":88,\"kind\":2048,\"name\":\"refreshNftMetadata\",\"url\":\"classes/NftNamespace.html#refreshNftMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":89,\"kind\":2048,\"name\":\"refreshContract\",\"url\":\"classes/NftNamespace.html#refreshContract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":90,\"kind\":128,\"name\":\"WebSocketNamespace\",\"url\":\"classes/WebSocketNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":91,\"kind\":2048,\"name\":\"on\",\"url\":\"classes/WebSocketNamespace.html#on\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":92,\"kind\":2048,\"name\":\"once\",\"url\":\"classes/WebSocketNamespace.html#once\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":93,\"kind\":2048,\"name\":\"off\",\"url\":\"classes/WebSocketNamespace.html#off\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":94,\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/WebSocketNamespace.html#removeAllListeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":95,\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/WebSocketNamespace.html#listenerCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":96,\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/WebSocketNamespace.html#listeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":97,\"kind\":128,\"name\":\"CoreNamespace\",\"url\":\"classes/CoreNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":98,\"kind\":2048,\"name\":\"getBalance\",\"url\":\"classes/CoreNamespace.html#getBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":99,\"kind\":2048,\"name\":\"getCode\",\"url\":\"classes/CoreNamespace.html#getCode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":100,\"kind\":2048,\"name\":\"getStorageAt\",\"url\":\"classes/CoreNamespace.html#getStorageAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":101,\"kind\":2048,\"name\":\"getTransactionCount\",\"url\":\"classes/CoreNamespace.html#getTransactionCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":102,\"kind\":2048,\"name\":\"getBlock\",\"url\":\"classes/CoreNamespace.html#getBlock\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":103,\"kind\":2048,\"name\":\"getBlockWithTransactions\",\"url\":\"classes/CoreNamespace.html#getBlockWithTransactions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":104,\"kind\":2048,\"name\":\"getNetwork\",\"url\":\"classes/CoreNamespace.html#getNetwork\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":105,\"kind\":2048,\"name\":\"getBlockNumber\",\"url\":\"classes/CoreNamespace.html#getBlockNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":106,\"kind\":2048,\"name\":\"getGasPrice\",\"url\":\"classes/CoreNamespace.html#getGasPrice\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":107,\"kind\":2048,\"name\":\"getFeeData\",\"url\":\"classes/CoreNamespace.html#getFeeData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":108,\"kind\":2048,\"name\":\"ready\",\"url\":\"classes/CoreNamespace.html#ready\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":109,\"kind\":2048,\"name\":\"call\",\"url\":\"classes/CoreNamespace.html#call\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":110,\"kind\":2048,\"name\":\"estimateGas\",\"url\":\"classes/CoreNamespace.html#estimateGas\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":111,\"kind\":2048,\"name\":\"getTransaction\",\"url\":\"classes/CoreNamespace.html#getTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":112,\"kind\":2048,\"name\":\"getTransactionReceipt\",\"url\":\"classes/CoreNamespace.html#getTransactionReceipt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":113,\"kind\":2048,\"name\":\"sendTransaction\",\"url\":\"classes/CoreNamespace.html#sendTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":114,\"kind\":2048,\"name\":\"waitForTransaction\",\"url\":\"classes/CoreNamespace.html#waitForTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":115,\"kind\":2048,\"name\":\"getLogs\",\"url\":\"classes/CoreNamespace.html#getLogs\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":116,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/CoreNamespace.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":117,\"kind\":2048,\"name\":\"findContractDeployer\",\"url\":\"classes/CoreNamespace.html#findContractDeployer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":118,\"kind\":2048,\"name\":\"getTokenBalances\",\"url\":\"classes/CoreNamespace.html#getTokenBalances\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":119,\"kind\":2048,\"name\":\"getTokenMetadata\",\"url\":\"classes/CoreNamespace.html#getTokenMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":120,\"kind\":2048,\"name\":\"getAssetTransfers\",\"url\":\"classes/CoreNamespace.html#getAssetTransfers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":121,\"kind\":2048,\"name\":\"getTransactionReceipts\",\"url\":\"classes/CoreNamespace.html#getTransactionReceipts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":122,\"kind\":2048,\"name\":\"resolveName\",\"url\":\"classes/CoreNamespace.html#resolveName\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":123,\"kind\":2048,\"name\":\"lookupAddress\",\"url\":\"classes/CoreNamespace.html#lookupAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":124,\"kind\":128,\"name\":\"TransactNamespace\",\"url\":\"classes/TransactNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":125,\"kind\":2048,\"name\":\"sendPrivateTransaction\",\"url\":\"classes/TransactNamespace.html#sendPrivateTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":126,\"kind\":2048,\"name\":\"cancelPrivateTransaction\",\"url\":\"classes/TransactNamespace.html#cancelPrivateTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":127,\"kind\":2048,\"name\":\"getTransaction\",\"url\":\"classes/TransactNamespace.html#getTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":128,\"kind\":2048,\"name\":\"sendTransaction\",\"url\":\"classes/TransactNamespace.html#sendTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":129,\"kind\":2048,\"name\":\"estimateGas\",\"url\":\"classes/TransactNamespace.html#estimateGas\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":130,\"kind\":2048,\"name\":\"getMaxPriorityFeePerGas\",\"url\":\"classes/TransactNamespace.html#getMaxPriorityFeePerGas\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":131,\"kind\":2048,\"name\":\"waitForTransaction\",\"url\":\"classes/TransactNamespace.html#waitForTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":132,\"kind\":128,\"name\":\"NotifyNamespace\",\"url\":\"classes/NotifyNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":133,\"kind\":2048,\"name\":\"getAllWebhooks\",\"url\":\"classes/NotifyNamespace.html#getAllWebhooks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":134,\"kind\":2048,\"name\":\"getAddresses\",\"url\":\"classes/NotifyNamespace.html#getAddresses\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":135,\"kind\":2048,\"name\":\"getNftFilters\",\"url\":\"classes/NotifyNamespace.html#getNftFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":136,\"kind\":2048,\"name\":\"updateWebhook\",\"url\":\"classes/NotifyNamespace.html#updateWebhook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":137,\"kind\":2048,\"name\":\"createWebhook\",\"url\":\"classes/NotifyNamespace.html#createWebhook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":138,\"kind\":2048,\"name\":\"deleteWebhook\",\"url\":\"classes/NotifyNamespace.html#deleteWebhook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":139,\"kind\":2048,\"name\":\"verifyConfig\",\"url\":\"classes/NotifyNamespace.html#verifyConfig\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"NotifyNamespace\"},{\"id\":140,\"kind\":2048,\"name\":\"sendWebhookRequest\",\"url\":\"classes/NotifyNamespace.html#sendWebhookRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-private\",\"parent\":\"NotifyNamespace\"},{\"id\":141,\"kind\":256,\"name\":\"BaseNftContract\",\"url\":\"interfaces/BaseNftContract.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":142,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/BaseNftContract.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BaseNftContract\"},{\"id\":143,\"kind\":256,\"name\":\"NftContract\",\"url\":\"interfaces/NftContract.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":144,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/NftContract.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":145,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/NftContract.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":146,\"kind\":1024,\"name\":\"symbol\",\"url\":\"interfaces/NftContract.html#symbol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":147,\"kind\":1024,\"name\":\"totalSupply\",\"url\":\"interfaces/NftContract.html#totalSupply\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":148,\"kind\":1024,\"name\":\"openSea\",\"url\":\"interfaces/NftContract.html#openSea\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":149,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/NftContract.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftContract\"},{\"id\":150,\"kind\":256,\"name\":\"Nft\",\"url\":\"interfaces/Nft.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":151,\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/Nft.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"Nft\"},{\"id\":152,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/Nft.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":153,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/Nft.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":154,\"kind\":1024,\"name\":\"timeLastUpdated\",\"url\":\"interfaces/Nft.html#timeLastUpdated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":155,\"kind\":1024,\"name\":\"metadataError\",\"url\":\"interfaces/Nft.html#metadataError\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":156,\"kind\":1024,\"name\":\"rawMetadata\",\"url\":\"interfaces/Nft.html#rawMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":157,\"kind\":1024,\"name\":\"tokenUri\",\"url\":\"interfaces/Nft.html#tokenUri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":158,\"kind\":1024,\"name\":\"media\",\"url\":\"interfaces/Nft.html#media\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":159,\"kind\":1024,\"name\":\"spamInfo\",\"url\":\"interfaces/Nft.html#spamInfo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":160,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/Nft.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Nft\"},{\"id\":161,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/Nft.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Nft\"},{\"id\":162,\"kind\":256,\"name\":\"BaseNft\",\"url\":\"interfaces/BaseNft.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":163,\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/BaseNft.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BaseNft\"},{\"id\":164,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/BaseNft.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BaseNft\"},{\"id\":165,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/BaseNft.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BaseNft\"},{\"id\":166,\"kind\":64,\"name\":\"fromHex\",\"url\":\"modules.html#fromHex\",\"classes\":\"tsd-kind-function\"},{\"id\":167,\"kind\":64,\"name\":\"toHex\",\"url\":\"modules.html#toHex\",\"classes\":\"tsd-kind-function\"},{\"id\":168,\"kind\":64,\"name\":\"isHex\",\"url\":\"modules.html#isHex\",\"classes\":\"tsd-kind-function\"},{\"id\":169,\"kind\":64,\"name\":\"setLogLevel\",\"url\":\"modules.html#setLogLevel\",\"classes\":\"tsd-kind-function\"},{\"id\":170,\"kind\":4194304,\"name\":\"LogLevel\",\"url\":\"modules.html#LogLevel\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":171,\"kind\":256,\"name\":\"AlchemySettings\",\"url\":\"interfaces/AlchemySettings.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":172,\"kind\":1024,\"name\":\"apiKey\",\"url\":\"interfaces/AlchemySettings.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":173,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/AlchemySettings.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":174,\"kind\":1024,\"name\":\"maxRetries\",\"url\":\"interfaces/AlchemySettings.html#maxRetries\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":175,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/AlchemySettings.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":176,\"kind\":1024,\"name\":\"authToken\",\"url\":\"interfaces/AlchemySettings.html#authToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":177,\"kind\":8,\"name\":\"Network\",\"url\":\"enums/Network.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":178,\"kind\":16,\"name\":\"ETH_MAINNET\",\"url\":\"enums/Network.html#ETH_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":179,\"kind\":16,\"name\":\"ETH_ROPSTEN\",\"url\":\"enums/Network.html#ETH_ROPSTEN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":180,\"kind\":16,\"name\":\"ETH_GOERLI\",\"url\":\"enums/Network.html#ETH_GOERLI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":181,\"kind\":16,\"name\":\"ETH_KOVAN\",\"url\":\"enums/Network.html#ETH_KOVAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":182,\"kind\":16,\"name\":\"ETH_RINKEBY\",\"url\":\"enums/Network.html#ETH_RINKEBY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":183,\"kind\":16,\"name\":\"OPT_MAINNET\",\"url\":\"enums/Network.html#OPT_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":184,\"kind\":16,\"name\":\"OPT_KOVAN\",\"url\":\"enums/Network.html#OPT_KOVAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":185,\"kind\":16,\"name\":\"OPT_GOERLI\",\"url\":\"enums/Network.html#OPT_GOERLI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":186,\"kind\":16,\"name\":\"ARB_MAINNET\",\"url\":\"enums/Network.html#ARB_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":187,\"kind\":16,\"name\":\"ARB_RINKEBY\",\"url\":\"enums/Network.html#ARB_RINKEBY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":188,\"kind\":16,\"name\":\"ARB_GOERLI\",\"url\":\"enums/Network.html#ARB_GOERLI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":189,\"kind\":16,\"name\":\"MATIC_MAINNET\",\"url\":\"enums/Network.html#MATIC_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":190,\"kind\":16,\"name\":\"MATIC_MUMBAI\",\"url\":\"enums/Network.html#MATIC_MUMBAI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":191,\"kind\":16,\"name\":\"ASTAR_MAINNET\",\"url\":\"enums/Network.html#ASTAR_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":192,\"kind\":8,\"name\":\"TokenBalanceType\",\"url\":\"enums/TokenBalanceType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":193,\"kind\":16,\"name\":\"DEFAULT_TOKENS\",\"url\":\"enums/TokenBalanceType.html#DEFAULT_TOKENS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"TokenBalanceType\"},{\"id\":194,\"kind\":16,\"name\":\"ERC20\",\"url\":\"enums/TokenBalanceType.html#ERC20\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"TokenBalanceType\"},{\"id\":195,\"kind\":256,\"name\":\"TokenBalancesOptionsErc20\",\"url\":\"interfaces/TokenBalancesOptionsErc20.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":196,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TokenBalancesOptionsErc20.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesOptionsErc20\"},{\"id\":197,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/TokenBalancesOptionsErc20.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesOptionsErc20\"},{\"id\":198,\"kind\":256,\"name\":\"TokenBalancesOptionsDefaultTokens\",\"url\":\"interfaces/TokenBalancesOptionsDefaultTokens.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":199,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TokenBalancesOptionsDefaultTokens.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesOptionsDefaultTokens\"},{\"id\":200,\"kind\":256,\"name\":\"TokenBalancesResponseErc20\",\"url\":\"interfaces/TokenBalancesResponseErc20.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":201,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/TokenBalancesResponseErc20.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesResponseErc20\"},{\"id\":202,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/TokenBalancesResponseErc20.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"TokenBalancesResponseErc20\"},{\"id\":203,\"kind\":1024,\"name\":\"tokenBalances\",\"url\":\"interfaces/TokenBalancesResponseErc20.html#tokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"TokenBalancesResponseErc20\"},{\"id\":204,\"kind\":256,\"name\":\"TokenBalancesResponse\",\"url\":\"interfaces/TokenBalancesResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":205,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/TokenBalancesResponse.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesResponse\"},{\"id\":206,\"kind\":1024,\"name\":\"tokenBalances\",\"url\":\"interfaces/TokenBalancesResponse.html#tokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesResponse\"},{\"id\":207,\"kind\":4194304,\"name\":\"TokenBalance\",\"url\":\"modules.html#TokenBalance\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":208,\"kind\":256,\"name\":\"TokenBalanceSuccess\",\"url\":\"interfaces/TokenBalanceSuccess.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":209,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/TokenBalanceSuccess.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceSuccess\"},{\"id\":210,\"kind\":1024,\"name\":\"tokenBalance\",\"url\":\"interfaces/TokenBalanceSuccess.html#tokenBalance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceSuccess\"},{\"id\":211,\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/TokenBalanceSuccess.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceSuccess\"},{\"id\":212,\"kind\":256,\"name\":\"TokenBalanceFailure\",\"url\":\"interfaces/TokenBalanceFailure.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":213,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/TokenBalanceFailure.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceFailure\"},{\"id\":214,\"kind\":1024,\"name\":\"tokenBalance\",\"url\":\"interfaces/TokenBalanceFailure.html#tokenBalance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceFailure\"},{\"id\":215,\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/TokenBalanceFailure.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceFailure\"},{\"id\":216,\"kind\":256,\"name\":\"TokenMetadataResponse\",\"url\":\"interfaces/TokenMetadataResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":217,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/TokenMetadataResponse.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenMetadataResponse\"},{\"id\":218,\"kind\":1024,\"name\":\"symbol\",\"url\":\"interfaces/TokenMetadataResponse.html#symbol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenMetadataResponse\"},{\"id\":219,\"kind\":1024,\"name\":\"decimals\",\"url\":\"interfaces/TokenMetadataResponse.html#decimals\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenMetadataResponse\"},{\"id\":220,\"kind\":1024,\"name\":\"logo\",\"url\":\"interfaces/TokenMetadataResponse.html#logo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenMetadataResponse\"},{\"id\":221,\"kind\":256,\"name\":\"AssetTransfersParams\",\"url\":\"interfaces/AssetTransfersParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":222,\"kind\":1024,\"name\":\"fromBlock\",\"url\":\"interfaces/AssetTransfersParams.html#fromBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":223,\"kind\":1024,\"name\":\"toBlock\",\"url\":\"interfaces/AssetTransfersParams.html#toBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":224,\"kind\":1024,\"name\":\"order\",\"url\":\"interfaces/AssetTransfersParams.html#order\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":225,\"kind\":1024,\"name\":\"fromAddress\",\"url\":\"interfaces/AssetTransfersParams.html#fromAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":226,\"kind\":1024,\"name\":\"toAddress\",\"url\":\"interfaces/AssetTransfersParams.html#toAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":227,\"kind\":1024,\"name\":\"contractAddresses\",\"url\":\"interfaces/AssetTransfersParams.html#contractAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":228,\"kind\":1024,\"name\":\"excludeZeroValue\",\"url\":\"interfaces/AssetTransfersParams.html#excludeZeroValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":229,\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/AssetTransfersParams.html#category\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":230,\"kind\":1024,\"name\":\"maxCount\",\"url\":\"interfaces/AssetTransfersParams.html#maxCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":231,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AssetTransfersParams.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":232,\"kind\":1024,\"name\":\"withMetadata\",\"url\":\"interfaces/AssetTransfersParams.html#withMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":233,\"kind\":256,\"name\":\"AssetTransfersWithMetadataParams\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":234,\"kind\":1024,\"name\":\"withMetadata\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#withMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":235,\"kind\":1024,\"name\":\"fromBlock\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#fromBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":236,\"kind\":1024,\"name\":\"toBlock\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#toBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":237,\"kind\":1024,\"name\":\"order\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#order\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":238,\"kind\":1024,\"name\":\"fromAddress\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#fromAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":239,\"kind\":1024,\"name\":\"toAddress\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#toAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":240,\"kind\":1024,\"name\":\"contractAddresses\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#contractAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":241,\"kind\":1024,\"name\":\"excludeZeroValue\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#excludeZeroValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":242,\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#category\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":243,\"kind\":1024,\"name\":\"maxCount\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#maxCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":244,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":245,\"kind\":8,\"name\":\"AssetTransfersCategory\",\"url\":\"enums/AssetTransfersCategory.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":246,\"kind\":16,\"name\":\"EXTERNAL\",\"url\":\"enums/AssetTransfersCategory.html#EXTERNAL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":247,\"kind\":16,\"name\":\"INTERNAL\",\"url\":\"enums/AssetTransfersCategory.html#INTERNAL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":248,\"kind\":16,\"name\":\"ERC20\",\"url\":\"enums/AssetTransfersCategory.html#ERC20\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":249,\"kind\":16,\"name\":\"ERC721\",\"url\":\"enums/AssetTransfersCategory.html#ERC721\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":250,\"kind\":16,\"name\":\"ERC1155\",\"url\":\"enums/AssetTransfersCategory.html#ERC1155\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":251,\"kind\":16,\"name\":\"SPECIALNFT\",\"url\":\"enums/AssetTransfersCategory.html#SPECIALNFT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":252,\"kind\":8,\"name\":\"AssetTransfersOrder\",\"url\":\"enums/AssetTransfersOrder.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":253,\"kind\":16,\"name\":\"ASCENDING\",\"url\":\"enums/AssetTransfersOrder.html#ASCENDING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersOrder\"},{\"id\":254,\"kind\":16,\"name\":\"DESCENDING\",\"url\":\"enums/AssetTransfersOrder.html#DESCENDING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersOrder\"},{\"id\":255,\"kind\":8,\"name\":\"NftTokenType\",\"url\":\"enums/NftTokenType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":256,\"kind\":16,\"name\":\"ERC721\",\"url\":\"enums/NftTokenType.html#ERC721\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftTokenType\"},{\"id\":257,\"kind\":16,\"name\":\"ERC1155\",\"url\":\"enums/NftTokenType.html#ERC1155\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftTokenType\"},{\"id\":258,\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/NftTokenType.html#UNKNOWN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftTokenType\"},{\"id\":259,\"kind\":256,\"name\":\"AssetTransfersResponse\",\"url\":\"interfaces/AssetTransfersResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":260,\"kind\":1024,\"name\":\"transfers\",\"url\":\"interfaces/AssetTransfersResponse.html#transfers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResponse\"},{\"id\":261,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AssetTransfersResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResponse\"},{\"id\":262,\"kind\":256,\"name\":\"AssetTransfersWithMetadataResponse\",\"url\":\"interfaces/AssetTransfersWithMetadataResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":263,\"kind\":1024,\"name\":\"transfers\",\"url\":\"interfaces/AssetTransfersWithMetadataResponse.html#transfers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersWithMetadataResponse\"},{\"id\":264,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AssetTransfersWithMetadataResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersWithMetadataResponse\"},{\"id\":265,\"kind\":256,\"name\":\"AssetTransfersResult\",\"url\":\"interfaces/AssetTransfersResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":266,\"kind\":1024,\"name\":\"uniqueId\",\"url\":\"interfaces/AssetTransfersResult.html#uniqueId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":267,\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/AssetTransfersResult.html#category\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":268,\"kind\":1024,\"name\":\"blockNum\",\"url\":\"interfaces/AssetTransfersResult.html#blockNum\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":269,\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/AssetTransfersResult.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":270,\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/AssetTransfersResult.html#to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":271,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/AssetTransfersResult.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":272,\"kind\":1024,\"name\":\"erc721TokenId\",\"url\":\"interfaces/AssetTransfersResult.html#erc721TokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":273,\"kind\":1024,\"name\":\"erc1155Metadata\",\"url\":\"interfaces/AssetTransfersResult.html#erc1155Metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":274,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/AssetTransfersResult.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":275,\"kind\":1024,\"name\":\"asset\",\"url\":\"interfaces/AssetTransfersResult.html#asset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":276,\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/AssetTransfersResult.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":277,\"kind\":1024,\"name\":\"rawContract\",\"url\":\"interfaces/AssetTransfersResult.html#rawContract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":278,\"kind\":256,\"name\":\"AssetTransfersWithMetadataResult\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":279,\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":280,\"kind\":1024,\"name\":\"uniqueId\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#uniqueId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":281,\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#category\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":282,\"kind\":1024,\"name\":\"blockNum\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#blockNum\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":283,\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":284,\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":285,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":286,\"kind\":1024,\"name\":\"erc721TokenId\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#erc721TokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":287,\"kind\":1024,\"name\":\"erc1155Metadata\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#erc1155Metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":288,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":289,\"kind\":1024,\"name\":\"asset\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#asset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":290,\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":291,\"kind\":1024,\"name\":\"rawContract\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#rawContract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":292,\"kind\":256,\"name\":\"AssetTransfersMetadata\",\"url\":\"interfaces/AssetTransfersMetadata.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":293,\"kind\":1024,\"name\":\"blockTimestamp\",\"url\":\"interfaces/AssetTransfersMetadata.html#blockTimestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersMetadata\"},{\"id\":294,\"kind\":256,\"name\":\"NftMetadata\",\"url\":\"interfaces/NftMetadata.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":295,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/NftMetadata.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":296,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/NftMetadata.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":297,\"kind\":1024,\"name\":\"image\",\"url\":\"interfaces/NftMetadata.html#image\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":298,\"kind\":1024,\"name\":\"external_url\",\"url\":\"interfaces/NftMetadata.html#external_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":299,\"kind\":1024,\"name\":\"background_color\",\"url\":\"interfaces/NftMetadata.html#background_color\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":300,\"kind\":1024,\"name\":\"attributes\",\"url\":\"interfaces/NftMetadata.html#attributes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":301,\"kind\":256,\"name\":\"TokenUri\",\"url\":\"interfaces/TokenUri.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":302,\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/TokenUri.html#raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenUri\"},{\"id\":303,\"kind\":1024,\"name\":\"gateway\",\"url\":\"interfaces/TokenUri.html#gateway\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenUri\"},{\"id\":304,\"kind\":256,\"name\":\"Media\",\"url\":\"interfaces/Media.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":305,\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/Media.html#raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":306,\"kind\":1024,\"name\":\"gateway\",\"url\":\"interfaces/Media.html#gateway\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":307,\"kind\":1024,\"name\":\"thumbnail\",\"url\":\"interfaces/Media.html#thumbnail\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":308,\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/Media.html#format\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":309,\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/Media.html#size\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":310,\"kind\":1024,\"name\":\"bytes\",\"url\":\"interfaces/Media.html#bytes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":311,\"kind\":8,\"name\":\"NftSpamClassification\",\"url\":\"enums/NftSpamClassification.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":312,\"kind\":16,\"name\":\"Erc721TooManyOwners\",\"url\":\"enums/NftSpamClassification.html#Erc721TooManyOwners\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":313,\"kind\":16,\"name\":\"Erc721TooManyTokens\",\"url\":\"enums/NftSpamClassification.html#Erc721TooManyTokens\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":314,\"kind\":16,\"name\":\"Erc721DishonestTotalSupply\",\"url\":\"enums/NftSpamClassification.html#Erc721DishonestTotalSupply\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":315,\"kind\":16,\"name\":\"MostlyHoneyPotOwners\",\"url\":\"enums/NftSpamClassification.html#MostlyHoneyPotOwners\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":316,\"kind\":16,\"name\":\"OwnedByMostHoneyPots\",\"url\":\"enums/NftSpamClassification.html#OwnedByMostHoneyPots\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":317,\"kind\":256,\"name\":\"SpamInfo\",\"url\":\"interfaces/SpamInfo.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":318,\"kind\":1024,\"name\":\"isSpam\",\"url\":\"interfaces/SpamInfo.html#isSpam\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SpamInfo\"},{\"id\":319,\"kind\":1024,\"name\":\"classifications\",\"url\":\"interfaces/SpamInfo.html#classifications\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SpamInfo\"},{\"id\":320,\"kind\":256,\"name\":\"GetNftsForOwnerOptions\",\"url\":\"interfaces/GetNftsForOwnerOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":321,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":322,\"kind\":1024,\"name\":\"contractAddresses\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#contractAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":323,\"kind\":1024,\"name\":\"excludeFilters\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#excludeFilters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":324,\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#pageSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":325,\"kind\":1024,\"name\":\"omitMetadata\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#omitMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":326,\"kind\":1024,\"name\":\"tokenUriTimeoutInMs\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#tokenUriTimeoutInMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":327,\"kind\":256,\"name\":\"GetBaseNftsForOwnerOptions\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":328,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":329,\"kind\":1024,\"name\":\"contractAddresses\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#contractAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":330,\"kind\":1024,\"name\":\"excludeFilters\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#excludeFilters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":331,\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#pageSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":332,\"kind\":1024,\"name\":\"omitMetadata\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#omitMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":333,\"kind\":1024,\"name\":\"tokenUriTimeoutInMs\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#tokenUriTimeoutInMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":334,\"kind\":8,\"name\":\"NftExcludeFilters\",\"url\":\"enums/NftExcludeFilters.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":335,\"kind\":16,\"name\":\"SPAM\",\"url\":\"enums/NftExcludeFilters.html#SPAM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftExcludeFilters\"},{\"id\":336,\"kind\":16,\"name\":\"AIRDROPS\",\"url\":\"enums/NftExcludeFilters.html#AIRDROPS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftExcludeFilters\"},{\"id\":337,\"kind\":256,\"name\":\"OwnedNftsResponse\",\"url\":\"interfaces/OwnedNftsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":338,\"kind\":1024,\"name\":\"ownedNfts\",\"url\":\"interfaces/OwnedNftsResponse.html#ownedNfts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedNftsResponse\"},{\"id\":339,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/OwnedNftsResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedNftsResponse\"},{\"id\":340,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/OwnedNftsResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedNftsResponse\"},{\"id\":341,\"kind\":256,\"name\":\"OwnedBaseNftsResponse\",\"url\":\"interfaces/OwnedBaseNftsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":342,\"kind\":1024,\"name\":\"ownedNfts\",\"url\":\"interfaces/OwnedBaseNftsResponse.html#ownedNfts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedBaseNftsResponse\"},{\"id\":343,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/OwnedBaseNftsResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedBaseNftsResponse\"},{\"id\":344,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/OwnedBaseNftsResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedBaseNftsResponse\"},{\"id\":345,\"kind\":256,\"name\":\"OwnedNft\",\"url\":\"interfaces/OwnedNft.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":346,\"kind\":1024,\"name\":\"balance\",\"url\":\"interfaces/OwnedNft.html#balance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedNft\"},{\"id\":347,\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/OwnedNft.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":348,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/OwnedNft.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":349,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/OwnedNft.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":350,\"kind\":1024,\"name\":\"timeLastUpdated\",\"url\":\"interfaces/OwnedNft.html#timeLastUpdated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":351,\"kind\":1024,\"name\":\"metadataError\",\"url\":\"interfaces/OwnedNft.html#metadataError\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":352,\"kind\":1024,\"name\":\"rawMetadata\",\"url\":\"interfaces/OwnedNft.html#rawMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":353,\"kind\":1024,\"name\":\"tokenUri\",\"url\":\"interfaces/OwnedNft.html#tokenUri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":354,\"kind\":1024,\"name\":\"media\",\"url\":\"interfaces/OwnedNft.html#media\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":355,\"kind\":1024,\"name\":\"spamInfo\",\"url\":\"interfaces/OwnedNft.html#spamInfo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":356,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/OwnedNft.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":357,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/OwnedNft.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":358,\"kind\":256,\"name\":\"OwnedBaseNft\",\"url\":\"interfaces/OwnedBaseNft.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":359,\"kind\":1024,\"name\":\"balance\",\"url\":\"interfaces/OwnedBaseNft.html#balance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedBaseNft\"},{\"id\":360,\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/OwnedBaseNft.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedBaseNft\"},{\"id\":361,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/OwnedBaseNft.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedBaseNft\"},{\"id\":362,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/OwnedBaseNft.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedBaseNft\"},{\"id\":363,\"kind\":256,\"name\":\"GetOwnersForNftResponse\",\"url\":\"interfaces/GetOwnersForNftResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":364,\"kind\":1024,\"name\":\"owners\",\"url\":\"interfaces/GetOwnersForNftResponse.html#owners\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForNftResponse\"},{\"id\":365,\"kind\":256,\"name\":\"GetOwnersForContractResponse\",\"url\":\"interfaces/GetOwnersForContractResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":366,\"kind\":1024,\"name\":\"owners\",\"url\":\"interfaces/GetOwnersForContractResponse.html#owners\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractResponse\"},{\"id\":367,\"kind\":256,\"name\":\"GetOwnersForContractWithTokenBalancesResponse\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":368,\"kind\":1024,\"name\":\"owners\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesResponse.html#owners\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesResponse\"},{\"id\":369,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesResponse\"},{\"id\":370,\"kind\":256,\"name\":\"NftContractOwner\",\"url\":\"interfaces/NftContractOwner.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":371,\"kind\":1024,\"name\":\"ownerAddress\",\"url\":\"interfaces/NftContractOwner.html#ownerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractOwner\"},{\"id\":372,\"kind\":1024,\"name\":\"tokenBalances\",\"url\":\"interfaces/NftContractOwner.html#tokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractOwner\"},{\"id\":373,\"kind\":256,\"name\":\"NftContractTokenBalance\",\"url\":\"interfaces/NftContractTokenBalance.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":374,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/NftContractTokenBalance.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractTokenBalance\"},{\"id\":375,\"kind\":1024,\"name\":\"balance\",\"url\":\"interfaces/NftContractTokenBalance.html#balance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractTokenBalance\"},{\"id\":376,\"kind\":256,\"name\":\"FloorPriceMarketplace\",\"url\":\"interfaces/FloorPriceMarketplace.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":377,\"kind\":1024,\"name\":\"floorPrice\",\"url\":\"interfaces/FloorPriceMarketplace.html#floorPrice\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceMarketplace\"},{\"id\":378,\"kind\":1024,\"name\":\"priceCurrency\",\"url\":\"interfaces/FloorPriceMarketplace.html#priceCurrency\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceMarketplace\"},{\"id\":379,\"kind\":1024,\"name\":\"collectionUrl\",\"url\":\"interfaces/FloorPriceMarketplace.html#collectionUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceMarketplace\"},{\"id\":380,\"kind\":1024,\"name\":\"retrievedAt\",\"url\":\"interfaces/FloorPriceMarketplace.html#retrievedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceMarketplace\"},{\"id\":381,\"kind\":256,\"name\":\"FloorPriceError\",\"url\":\"interfaces/FloorPriceError.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":382,\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/FloorPriceError.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceError\"},{\"id\":383,\"kind\":256,\"name\":\"GetFloorPriceResponse\",\"url\":\"interfaces/GetFloorPriceResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":384,\"kind\":1024,\"name\":\"openSea\",\"url\":\"interfaces/GetFloorPriceResponse.html#openSea\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetFloorPriceResponse\"},{\"id\":385,\"kind\":1024,\"name\":\"looksRare\",\"url\":\"interfaces/GetFloorPriceResponse.html#looksRare\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetFloorPriceResponse\"},{\"id\":386,\"kind\":256,\"name\":\"NftAttributeRarity\",\"url\":\"interfaces/NftAttributeRarity.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":387,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/NftAttributeRarity.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributeRarity\"},{\"id\":388,\"kind\":1024,\"name\":\"traitType\",\"url\":\"interfaces/NftAttributeRarity.html#traitType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributeRarity\"},{\"id\":389,\"kind\":1024,\"name\":\"prevalence\",\"url\":\"interfaces/NftAttributeRarity.html#prevalence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributeRarity\"},{\"id\":390,\"kind\":256,\"name\":\"NftAttributesResponse\",\"url\":\"interfaces/NftAttributesResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":391,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/NftAttributesResponse.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributesResponse\"},{\"id\":392,\"kind\":1024,\"name\":\"totalSupply\",\"url\":\"interfaces/NftAttributesResponse.html#totalSupply\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributesResponse\"},{\"id\":393,\"kind\":1024,\"name\":\"summary\",\"url\":\"interfaces/NftAttributesResponse.html#summary\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributesResponse\"},{\"id\":394,\"kind\":256,\"name\":\"RefreshContractResult\",\"url\":\"interfaces/RefreshContractResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":395,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/RefreshContractResult.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RefreshContractResult\"},{\"id\":396,\"kind\":1024,\"name\":\"refreshState\",\"url\":\"interfaces/RefreshContractResult.html#refreshState\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RefreshContractResult\"},{\"id\":397,\"kind\":1024,\"name\":\"progress\",\"url\":\"interfaces/RefreshContractResult.html#progress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RefreshContractResult\"},{\"id\":398,\"kind\":8,\"name\":\"RefreshState\",\"url\":\"enums/RefreshState.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":399,\"kind\":16,\"name\":\"DOES_NOT_EXIST\",\"url\":\"enums/RefreshState.html#DOES_NOT_EXIST\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":400,\"kind\":16,\"name\":\"ALREADY_QUEUED\",\"url\":\"enums/RefreshState.html#ALREADY_QUEUED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":401,\"kind\":16,\"name\":\"IN_PROGRESS\",\"url\":\"enums/RefreshState.html#IN_PROGRESS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":402,\"kind\":16,\"name\":\"FINISHED\",\"url\":\"enums/RefreshState.html#FINISHED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":403,\"kind\":16,\"name\":\"QUEUED\",\"url\":\"enums/RefreshState.html#QUEUED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":404,\"kind\":16,\"name\":\"QUEUE_FAILED\",\"url\":\"enums/RefreshState.html#QUEUE_FAILED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":405,\"kind\":256,\"name\":\"TransactionReceiptsBlockNumber\",\"url\":\"interfaces/TransactionReceiptsBlockNumber.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":406,\"kind\":1024,\"name\":\"blockNumber\",\"url\":\"interfaces/TransactionReceiptsBlockNumber.html#blockNumber\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TransactionReceiptsBlockNumber\"},{\"id\":407,\"kind\":256,\"name\":\"TransactionReceiptsBlockHash\",\"url\":\"interfaces/TransactionReceiptsBlockHash.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":408,\"kind\":1024,\"name\":\"blockHash\",\"url\":\"interfaces/TransactionReceiptsBlockHash.html#blockHash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TransactionReceiptsBlockHash\"},{\"id\":409,\"kind\":4194304,\"name\":\"TransactionReceiptsParams\",\"url\":\"modules.html#TransactionReceiptsParams\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":410,\"kind\":256,\"name\":\"TransactionReceiptsResponse\",\"url\":\"interfaces/TransactionReceiptsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":411,\"kind\":1024,\"name\":\"receipts\",\"url\":\"interfaces/TransactionReceiptsResponse.html#receipts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TransactionReceiptsResponse\"},{\"id\":412,\"kind\":256,\"name\":\"ERC1155Metadata\",\"url\":\"interfaces/ERC1155Metadata.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":413,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/ERC1155Metadata.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ERC1155Metadata\"},{\"id\":414,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ERC1155Metadata.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ERC1155Metadata\"},{\"id\":415,\"kind\":256,\"name\":\"RawContract\",\"url\":\"interfaces/RawContract.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":416,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/RawContract.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RawContract\"},{\"id\":417,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/RawContract.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RawContract\"},{\"id\":418,\"kind\":1024,\"name\":\"decimal\",\"url\":\"interfaces/RawContract.html#decimal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RawContract\"},{\"id\":419,\"kind\":256,\"name\":\"GetNftsForContractOptions\",\"url\":\"interfaces/GetNftsForContractOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":420,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetNftsForContractOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForContractOptions\"},{\"id\":421,\"kind\":1024,\"name\":\"omitMetadata\",\"url\":\"interfaces/GetNftsForContractOptions.html#omitMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForContractOptions\"},{\"id\":422,\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/GetNftsForContractOptions.html#pageSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForContractOptions\"},{\"id\":423,\"kind\":1024,\"name\":\"tokenUriTimeoutInMs\",\"url\":\"interfaces/GetNftsForContractOptions.html#tokenUriTimeoutInMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForContractOptions\"},{\"id\":424,\"kind\":256,\"name\":\"GetBaseNftsForContractOptions\",\"url\":\"interfaces/GetBaseNftsForContractOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":425,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetBaseNftsForContractOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForContractOptions\"},{\"id\":426,\"kind\":1024,\"name\":\"omitMetadata\",\"url\":\"interfaces/GetBaseNftsForContractOptions.html#omitMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForContractOptions\"},{\"id\":427,\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/GetBaseNftsForContractOptions.html#pageSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForContractOptions\"},{\"id\":428,\"kind\":256,\"name\":\"GetOwnersForContractOptions\",\"url\":\"interfaces/GetOwnersForContractOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":429,\"kind\":1024,\"name\":\"withTokenBalances\",\"url\":\"interfaces/GetOwnersForContractOptions.html#withTokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractOptions\"},{\"id\":430,\"kind\":1024,\"name\":\"block\",\"url\":\"interfaces/GetOwnersForContractOptions.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractOptions\"},{\"id\":431,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetOwnersForContractOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractOptions\"},{\"id\":432,\"kind\":256,\"name\":\"GetOwnersForContractWithTokenBalancesOptions\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":433,\"kind\":1024,\"name\":\"withTokenBalances\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesOptions.html#withTokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesOptions\"},{\"id\":434,\"kind\":1024,\"name\":\"block\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesOptions.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesOptions\"},{\"id\":435,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesOptions\"},{\"id\":436,\"kind\":256,\"name\":\"NftContractBaseNftsResponse\",\"url\":\"interfaces/NftContractBaseNftsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":437,\"kind\":1024,\"name\":\"nfts\",\"url\":\"interfaces/NftContractBaseNftsResponse.html#nfts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractBaseNftsResponse\"},{\"id\":438,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/NftContractBaseNftsResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractBaseNftsResponse\"},{\"id\":439,\"kind\":256,\"name\":\"NftContractNftsResponse\",\"url\":\"interfaces/NftContractNftsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":440,\"kind\":1024,\"name\":\"nfts\",\"url\":\"interfaces/NftContractNftsResponse.html#nfts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractNftsResponse\"},{\"id\":441,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/NftContractNftsResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractNftsResponse\"},{\"id\":442,\"kind\":256,\"name\":\"OpenSeaCollectionMetadata\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":443,\"kind\":1024,\"name\":\"floorPrice\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#floorPrice\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":444,\"kind\":1024,\"name\":\"collectionName\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#collectionName\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":445,\"kind\":1024,\"name\":\"safelistRequestStatus\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#safelistRequestStatus\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":446,\"kind\":1024,\"name\":\"imageUrl\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#imageUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":447,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":448,\"kind\":1024,\"name\":\"externalUrl\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#externalUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":449,\"kind\":1024,\"name\":\"twitterUsername\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#twitterUsername\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":450,\"kind\":1024,\"name\":\"discordUrl\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#discordUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":451,\"kind\":1024,\"name\":\"lastIngestedAt\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#lastIngestedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":452,\"kind\":8,\"name\":\"OpenSeaSafelistRequestStatus\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":453,\"kind\":16,\"name\":\"VERIFIED\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html#VERIFIED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"OpenSeaSafelistRequestStatus\"},{\"id\":454,\"kind\":16,\"name\":\"APPROVED\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html#APPROVED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"OpenSeaSafelistRequestStatus\"},{\"id\":455,\"kind\":16,\"name\":\"REQUESTED\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html#REQUESTED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"OpenSeaSafelistRequestStatus\"},{\"id\":456,\"kind\":16,\"name\":\"NOT_REQUESTED\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html#NOT_REQUESTED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"OpenSeaSafelistRequestStatus\"},{\"id\":457,\"kind\":256,\"name\":\"DeployResult\",\"url\":\"interfaces/DeployResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":458,\"kind\":1024,\"name\":\"deployerAddress\",\"url\":\"interfaces/DeployResult.html#deployerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DeployResult\"},{\"id\":459,\"kind\":1024,\"name\":\"blockNumber\",\"url\":\"interfaces/DeployResult.html#blockNumber\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DeployResult\"},{\"id\":460,\"kind\":8,\"name\":\"AlchemySubscription\",\"url\":\"enums/AlchemySubscription.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":461,\"kind\":16,\"name\":\"PENDING_TRANSACTIONS\",\"url\":\"enums/AlchemySubscription.html#PENDING_TRANSACTIONS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AlchemySubscription\"},{\"id\":462,\"kind\":16,\"name\":\"MINED_TRANSACTIONS\",\"url\":\"enums/AlchemySubscription.html#MINED_TRANSACTIONS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AlchemySubscription\"},{\"id\":463,\"kind\":256,\"name\":\"AlchemyPendingTransactionsEventFilter\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":464,\"kind\":1024,\"name\":\"method\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html#method\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyPendingTransactionsEventFilter\"},{\"id\":465,\"kind\":1024,\"name\":\"fromAddress\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html#fromAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyPendingTransactionsEventFilter\"},{\"id\":466,\"kind\":1024,\"name\":\"toAddress\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html#toAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyPendingTransactionsEventFilter\"},{\"id\":467,\"kind\":1024,\"name\":\"hashesOnly\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html#hashesOnly\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyPendingTransactionsEventFilter\"},{\"id\":468,\"kind\":256,\"name\":\"AlchemyMinedTransactionsEventFilter\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":469,\"kind\":1024,\"name\":\"method\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html#method\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyMinedTransactionsEventFilter\"},{\"id\":470,\"kind\":1024,\"name\":\"addresses\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html#addresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyMinedTransactionsEventFilter\"},{\"id\":471,\"kind\":1024,\"name\":\"includeRemoved\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html#includeRemoved\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyMinedTransactionsEventFilter\"},{\"id\":472,\"kind\":1024,\"name\":\"hashesOnly\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html#hashesOnly\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyMinedTransactionsEventFilter\"},{\"id\":473,\"kind\":4194304,\"name\":\"AlchemyMinedTransactionsAddress\",\"url\":\"modules.html#AlchemyMinedTransactionsAddress\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":474,\"kind\":4194304,\"name\":\"AlchemyEventType\",\"url\":\"modules.html#AlchemyEventType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":475,\"kind\":4194304,\"name\":\"AlchemyEventFilter\",\"url\":\"modules.html#AlchemyEventFilter\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":476,\"kind\":256,\"name\":\"SendPrivateTransactionOptions\",\"url\":\"interfaces/SendPrivateTransactionOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":477,\"kind\":1024,\"name\":\"fast\",\"url\":\"interfaces/SendPrivateTransactionOptions.html#fast\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SendPrivateTransactionOptions\"},{\"id\":478,\"kind\":256,\"name\":\"Webhook\",\"url\":\"interfaces/Webhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":479,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/Webhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":480,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/Webhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":481,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Webhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":482,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/Webhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":483,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/Webhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":484,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/Webhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":485,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/Webhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":486,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/Webhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":487,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/Webhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":488,\"kind\":8,\"name\":\"WebhookVersion\",\"url\":\"enums/WebhookVersion.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":489,\"kind\":16,\"name\":\"V1\",\"url\":\"enums/WebhookVersion.html#V1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookVersion\"},{\"id\":490,\"kind\":16,\"name\":\"V2\",\"url\":\"enums/WebhookVersion.html#V2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookVersion\"},{\"id\":491,\"kind\":8,\"name\":\"WebhookType\",\"url\":\"enums/WebhookType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":492,\"kind\":16,\"name\":\"MINED_TRANSACTION\",\"url\":\"enums/WebhookType.html#MINED_TRANSACTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookType\"},{\"id\":493,\"kind\":16,\"name\":\"DROPPED_TRANSACTION\",\"url\":\"enums/WebhookType.html#DROPPED_TRANSACTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookType\"},{\"id\":494,\"kind\":16,\"name\":\"ADDRESS_ACTIVITY\",\"url\":\"enums/WebhookType.html#ADDRESS_ACTIVITY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookType\"},{\"id\":495,\"kind\":16,\"name\":\"NFT_ACTIVITY\",\"url\":\"enums/WebhookType.html#NFT_ACTIVITY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookType\"},{\"id\":496,\"kind\":256,\"name\":\"MinedTransactionWebhook\",\"url\":\"interfaces/MinedTransactionWebhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":497,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/MinedTransactionWebhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":498,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/MinedTransactionWebhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":499,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/MinedTransactionWebhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":500,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/MinedTransactionWebhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":501,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/MinedTransactionWebhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":502,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/MinedTransactionWebhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":503,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/MinedTransactionWebhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":504,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/MinedTransactionWebhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":505,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/MinedTransactionWebhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":506,\"kind\":256,\"name\":\"DroppedTransactionWebhook\",\"url\":\"interfaces/DroppedTransactionWebhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":507,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DroppedTransactionWebhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":508,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DroppedTransactionWebhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":509,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/DroppedTransactionWebhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":510,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DroppedTransactionWebhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":511,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/DroppedTransactionWebhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":512,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/DroppedTransactionWebhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":513,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/DroppedTransactionWebhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":514,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/DroppedTransactionWebhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":515,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/DroppedTransactionWebhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":516,\"kind\":256,\"name\":\"AddressActivityWebhook\",\"url\":\"interfaces/AddressActivityWebhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":517,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/AddressActivityWebhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"AddressActivityWebhook\"},{\"id\":518,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/AddressActivityWebhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":519,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/AddressActivityWebhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":520,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/AddressActivityWebhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":521,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/AddressActivityWebhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":522,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/AddressActivityWebhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":523,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/AddressActivityWebhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":524,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/AddressActivityWebhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":525,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/AddressActivityWebhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":526,\"kind\":256,\"name\":\"NftActivityWebhook\",\"url\":\"interfaces/NftActivityWebhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":527,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/NftActivityWebhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"NftActivityWebhook\"},{\"id\":528,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/NftActivityWebhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":529,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/NftActivityWebhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":530,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/NftActivityWebhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":531,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/NftActivityWebhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":532,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/NftActivityWebhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":533,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/NftActivityWebhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":534,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/NftActivityWebhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":535,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/NftActivityWebhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":536,\"kind\":256,\"name\":\"GetAllWebhooksResponse\",\"url\":\"interfaces/GetAllWebhooksResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":537,\"kind\":1024,\"name\":\"webhooks\",\"url\":\"interfaces/GetAllWebhooksResponse.html#webhooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetAllWebhooksResponse\"},{\"id\":538,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/GetAllWebhooksResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetAllWebhooksResponse\"},{\"id\":539,\"kind\":256,\"name\":\"GetAddressesOptions\",\"url\":\"interfaces/GetAddressesOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":540,\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/GetAddressesOptions.html#limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetAddressesOptions\"},{\"id\":541,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetAddressesOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetAddressesOptions\"},{\"id\":542,\"kind\":256,\"name\":\"AddressActivityResponse\",\"url\":\"interfaces/AddressActivityResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":543,\"kind\":1024,\"name\":\"addresses\",\"url\":\"interfaces/AddressActivityResponse.html#addresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressActivityResponse\"},{\"id\":544,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/AddressActivityResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressActivityResponse\"},{\"id\":545,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AddressActivityResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressActivityResponse\"},{\"id\":546,\"kind\":256,\"name\":\"TransactionWebhookParams\",\"url\":\"interfaces/TransactionWebhookParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":547,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/TransactionWebhookParams.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TransactionWebhookParams\"},{\"id\":548,\"kind\":256,\"name\":\"NftWebhookParams\",\"url\":\"interfaces/NftWebhookParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":549,\"kind\":1024,\"name\":\"filters\",\"url\":\"interfaces/NftWebhookParams.html#filters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftWebhookParams\"},{\"id\":550,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/NftWebhookParams.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftWebhookParams\"},{\"id\":551,\"kind\":256,\"name\":\"AddressWebhookParams\",\"url\":\"interfaces/AddressWebhookParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":552,\"kind\":1024,\"name\":\"addresses\",\"url\":\"interfaces/AddressWebhookParams.html#addresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressWebhookParams\"},{\"id\":553,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/AddressWebhookParams.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressWebhookParams\"},{\"id\":554,\"kind\":256,\"name\":\"NftFilter\",\"url\":\"interfaces/NftFilter.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":555,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/NftFilter.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFilter\"},{\"id\":556,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/NftFilter.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFilter\"},{\"id\":557,\"kind\":256,\"name\":\"NftFiltersResponse\",\"url\":\"interfaces/NftFiltersResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":558,\"kind\":1024,\"name\":\"filters\",\"url\":\"interfaces/NftFiltersResponse.html#filters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFiltersResponse\"},{\"id\":559,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/NftFiltersResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFiltersResponse\"},{\"id\":560,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/NftFiltersResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFiltersResponse\"},{\"id\":561,\"kind\":256,\"name\":\"WebhookStatusUpdate\",\"url\":\"interfaces/WebhookStatusUpdate.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":562,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/WebhookStatusUpdate.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookStatusUpdate\"},{\"id\":563,\"kind\":256,\"name\":\"WebhookNftFilterUpdate\",\"url\":\"interfaces/WebhookNftFilterUpdate.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":564,\"kind\":1024,\"name\":\"addFilters\",\"url\":\"interfaces/WebhookNftFilterUpdate.html#addFilters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookNftFilterUpdate\"},{\"id\":565,\"kind\":1024,\"name\":\"removeFilters\",\"url\":\"interfaces/WebhookNftFilterUpdate.html#removeFilters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookNftFilterUpdate\"},{\"id\":566,\"kind\":256,\"name\":\"WebhookAddressUpdate\",\"url\":\"interfaces/WebhookAddressUpdate.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":567,\"kind\":1024,\"name\":\"addAddresses\",\"url\":\"interfaces/WebhookAddressUpdate.html#addAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookAddressUpdate\"},{\"id\":568,\"kind\":1024,\"name\":\"removeAddresses\",\"url\":\"interfaces/WebhookAddressUpdate.html#removeAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookAddressUpdate\"},{\"id\":569,\"kind\":256,\"name\":\"WebhookAddressOverride\",\"url\":\"interfaces/WebhookAddressOverride.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":570,\"kind\":1024,\"name\":\"newAddresses\",\"url\":\"interfaces/WebhookAddressOverride.html#newAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookAddressOverride\"},{\"id\":571,\"kind\":4194304,\"name\":\"NftWebhookUpdate\",\"url\":\"modules.html#NftWebhookUpdate\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":572,\"kind\":4194304,\"name\":\"AddressWebhookUpdate\",\"url\":\"modules.html#AddressWebhookUpdate\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":573,\"kind\":4194304,\"name\":\"RequireAtLeastOne\",\"url\":\"modules.html#RequireAtLeastOne\",\"classes\":\"tsd-kind-type-alias tsd-has-type-parameter\"},{\"id\":574,\"kind\":4194304,\"name\":\"NonEmptyArray\",\"url\":\"modules.html#NonEmptyArray\",\"classes\":\"tsd-kind-type-alias tsd-has-type-parameter\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,59.506]],[\"parent/0\",[]],[\"name/1\",[1,42.16]],[\"parent/1\",[]],[\"name/2\",[2,46.514]],[\"parent/2\",[1,3.836]],[\"name/3\",[3,59.506]],[\"parent/3\",[1,3.836]],[\"name/4\",[4,37.534]],[\"parent/4\",[1,3.836]],[\"name/5\",[5,59.506]],[\"parent/5\",[1,3.836]],[\"name/6\",[6,59.506]],[\"parent/6\",[1,3.836]],[\"name/7\",[7,59.506]],[\"parent/7\",[1,3.836]],[\"name/8\",[8,59.506]],[\"parent/8\",[1,3.836]],[\"name/9\",[9,36.153]],[\"parent/9\",[]],[\"name/10\",[2,46.514]],[\"parent/10\",[9,3.29]],[\"name/11\",[10,59.506]],[\"parent/11\",[9,3.29]],[\"name/12\",[11,54.398]],[\"parent/12\",[9,3.29]],[\"name/13\",[12,54.398]],[\"parent/13\",[9,3.29]],[\"name/14\",[13,51.033]],[\"parent/14\",[9,3.29]],[\"name/15\",[14,54.398]],[\"parent/15\",[9,3.29]],[\"name/16\",[15,51.033]],[\"parent/16\",[9,3.29]],[\"name/17\",[16,59.506]],[\"parent/17\",[9,3.29]],[\"name/18\",[17,54.398]],[\"parent/18\",[9,3.29]],[\"name/19\",[18,54.398]],[\"parent/19\",[9,3.29]],[\"name/20\",[19,54.398]],[\"parent/20\",[9,3.29]],[\"name/21\",[20,59.506]],[\"parent/21\",[9,3.29]],[\"name/22\",[21,36.82]],[\"parent/22\",[9,3.29]],[\"name/23\",[21,36.82]],[\"parent/23\",[9,3.29]],[\"name/24\",[22,37.534]],[\"parent/24\",[]],[\"name/25\",[2,46.514]],[\"parent/25\",[22,3.415]],[\"name/26\",[21,36.82]],[\"parent/26\",[22,3.415]],[\"name/27\",[21,36.82]],[\"parent/27\",[22,3.415]],[\"name/28\",[21,36.82]],[\"parent/28\",[22,3.415]],[\"name/29\",[21,36.82]],[\"parent/29\",[22,3.415]],[\"name/30\",[21,36.82]],[\"parent/30\",[22,3.415]],[\"name/31\",[21,36.82]],[\"parent/31\",[22,3.415]],[\"name/32\",[21,36.82]],[\"parent/32\",[22,3.415]],[\"name/33\",[23,54.398]],[\"parent/33\",[]],[\"name/34\",[2,46.514]],[\"parent/34\",[23,4.95]],[\"name/35\",[24,41.048]],[\"parent/35\",[]],[\"name/36\",[2,46.514]],[\"parent/36\",[24,3.735]],[\"name/37\",[25,48.52]],[\"parent/37\",[24,3.735]],[\"name/38\",[26,31.574]],[\"parent/38\",[24,3.735]],[\"name/39\",[27,51.033]],[\"parent/39\",[24,3.735]],[\"name/40\",[28,43.412]],[\"parent/40\",[24,3.735]],[\"name/41\",[29,54.398]],[\"parent/41\",[24,3.735]],[\"name/42\",[30,59.506]],[\"parent/42\",[24,3.735]],[\"name/43\",[31,59.506]],[\"parent/43\",[24,3.735]],[\"name/44\",[32,42.16]],[\"parent/44\",[]],[\"name/45\",[25,48.52]],[\"parent/45\",[32,3.836]],[\"name/46\",[27,51.033]],[\"parent/46\",[32,3.836]],[\"name/47\",[33,59.506]],[\"parent/47\",[32,3.836]],[\"name/48\",[34,59.506]],[\"parent/48\",[32,3.836]],[\"name/49\",[35,54.398]],[\"parent/49\",[32,3.836]],[\"name/50\",[36,54.398]],[\"parent/50\",[32,3.836]],[\"name/51\",[21,36.82]],[\"parent/51\",[32,3.836]],[\"name/52\",[37,33.857]],[\"parent/52\",[]],[\"name/53\",[38,59.506]],[\"parent/53\",[37,3.081]],[\"name/54\",[25,48.52]],[\"parent/54\",[37,3.081]],[\"name/55\",[39,54.398]],[\"parent/55\",[37,3.081]],[\"name/56\",[40,54.398]],[\"parent/56\",[37,3.081]],[\"name/57\",[41,54.398]],[\"parent/57\",[37,3.081]],[\"name/58\",[42,54.398]],[\"parent/58\",[37,3.081]],[\"name/59\",[43,54.398]],[\"parent/59\",[37,3.081]],[\"name/60\",[44,54.398]],[\"parent/60\",[37,3.081]],[\"name/61\",[45,59.506]],[\"parent/61\",[37,3.081]],[\"name/62\",[35,54.398]],[\"parent/62\",[37,3.081]],[\"name/63\",[46,59.506]],[\"parent/63\",[37,3.081]],[\"name/64\",[47,59.506]],[\"parent/64\",[37,3.081]],[\"name/65\",[48,59.506]],[\"parent/65\",[37,3.081]],[\"name/66\",[49,59.506]],[\"parent/66\",[37,3.081]],[\"name/67\",[21,36.82]],[\"parent/67\",[37,3.081]],[\"name/68\",[21,36.82]],[\"parent/68\",[37,3.081]],[\"name/69\",[21,36.82]],[\"parent/69\",[37,3.081]],[\"name/70\",[21,36.82]],[\"parent/70\",[37,3.081]],[\"name/71\",[50,33.857]],[\"parent/71\",[]],[\"name/72\",[51,59.506]],[\"parent/72\",[50,3.081]],[\"name/73\",[52,59.506]],[\"parent/73\",[50,3.081]],[\"name/74\",[53,59.506]],[\"parent/74\",[50,3.081]],[\"name/75\",[54,59.506]],[\"parent/75\",[50,3.081]],[\"name/76\",[55,59.506]],[\"parent/76\",[50,3.081]],[\"name/77\",[56,59.506]],[\"parent/77\",[50,3.081]],[\"name/78\",[57,59.506]],[\"parent/78\",[50,3.081]],[\"name/79\",[58,59.506]],[\"parent/79\",[50,3.081]],[\"name/80\",[59,59.506]],[\"parent/80\",[50,3.081]],[\"name/81\",[60,59.506]],[\"parent/81\",[50,3.081]],[\"name/82\",[61,59.506]],[\"parent/82\",[50,3.081]],[\"name/83\",[62,59.506]],[\"parent/83\",[50,3.081]],[\"name/84\",[63,59.506]],[\"parent/84\",[50,3.081]],[\"name/85\",[64,59.506]],[\"parent/85\",[50,3.081]],[\"name/86\",[65,59.506]],[\"parent/86\",[50,3.081]],[\"name/87\",[66,59.506]],[\"parent/87\",[50,3.081]],[\"name/88\",[67,59.506]],[\"parent/88\",[50,3.081]],[\"name/89\",[68,59.506]],[\"parent/89\",[50,3.081]],[\"name/90\",[69,43.412]],[\"parent/90\",[]],[\"name/91\",[39,54.398]],[\"parent/91\",[69,3.95]],[\"name/92\",[40,54.398]],[\"parent/92\",[69,3.95]],[\"name/93\",[41,54.398]],[\"parent/93\",[69,3.95]],[\"name/94\",[42,54.398]],[\"parent/94\",[69,3.95]],[\"name/95\",[43,54.398]],[\"parent/95\",[69,3.95]],[\"name/96\",[44,54.398]],[\"parent/96\",[69,3.95]],[\"name/97\",[70,30.419]],[\"parent/97\",[]],[\"name/98\",[11,54.398]],[\"parent/98\",[70,2.768]],[\"name/99\",[71,59.506]],[\"parent/99\",[70,2.768]],[\"name/100\",[72,59.506]],[\"parent/100\",[70,2.768]],[\"name/101\",[12,54.398]],[\"parent/101\",[70,2.768]],[\"name/102\",[73,59.506]],[\"parent/102\",[70,2.768]],[\"name/103\",[74,59.506]],[\"parent/103\",[70,2.768]],[\"name/104\",[75,59.506]],[\"parent/104\",[70,2.768]],[\"name/105\",[76,59.506]],[\"parent/105\",[70,2.768]],[\"name/106\",[17,54.398]],[\"parent/106\",[70,2.768]],[\"name/107\",[18,54.398]],[\"parent/107\",[70,2.768]],[\"name/108\",[77,59.506]],[\"parent/108\",[70,2.768]],[\"name/109\",[14,54.398]],[\"parent/109\",[70,2.768]],[\"name/110\",[13,51.033]],[\"parent/110\",[70,2.768]],[\"name/111\",[78,54.398]],[\"parent/111\",[70,2.768]],[\"name/112\",[79,59.506]],[\"parent/112\",[70,2.768]],[\"name/113\",[15,51.033]],[\"parent/113\",[70,2.768]],[\"name/114\",[80,54.398]],[\"parent/114\",[70,2.768]],[\"name/115\",[81,59.506]],[\"parent/115\",[70,2.768]],[\"name/116\",[36,54.398]],[\"parent/116\",[70,2.768]],[\"name/117\",[82,59.506]],[\"parent/117\",[70,2.768]],[\"name/118\",[83,59.506]],[\"parent/118\",[70,2.768]],[\"name/119\",[84,59.506]],[\"parent/119\",[70,2.768]],[\"name/120\",[85,59.506]],[\"parent/120\",[70,2.768]],[\"name/121\",[86,59.506]],[\"parent/121\",[70,2.768]],[\"name/122\",[19,54.398]],[\"parent/122\",[70,2.768]],[\"name/123\",[87,59.506]],[\"parent/123\",[70,2.768]],[\"name/124\",[88,42.16]],[\"parent/124\",[]],[\"name/125\",[89,59.506]],[\"parent/125\",[88,3.836]],[\"name/126\",[90,59.506]],[\"parent/126\",[88,3.836]],[\"name/127\",[78,54.398]],[\"parent/127\",[88,3.836]],[\"name/128\",[15,51.033]],[\"parent/128\",[88,3.836]],[\"name/129\",[13,51.033]],[\"parent/129\",[88,3.836]],[\"name/130\",[91,59.506]],[\"parent/130\",[88,3.836]],[\"name/131\",[80,54.398]],[\"parent/131\",[88,3.836]],[\"name/132\",[92,41.048]],[\"parent/132\",[]],[\"name/133\",[93,59.506]],[\"parent/133\",[92,3.735]],[\"name/134\",[94,59.506]],[\"parent/134\",[92,3.735]],[\"name/135\",[95,59.506]],[\"parent/135\",[92,3.735]],[\"name/136\",[96,59.506]],[\"parent/136\",[92,3.735]],[\"name/137\",[97,59.506]],[\"parent/137\",[92,3.735]],[\"name/138\",[98,59.506]],[\"parent/138\",[92,3.735]],[\"name/139\",[99,59.506]],[\"parent/139\",[92,3.735]],[\"name/140\",[100,59.506]],[\"parent/140\",[92,3.735]],[\"name/141\",[101,54.398]],[\"parent/141\",[]],[\"name/142\",[102,46.514]],[\"parent/142\",[101,4.95]],[\"name/143\",[103,43.412]],[\"parent/143\",[]],[\"name/144\",[104,46.514]],[\"parent/144\",[103,3.95]],[\"name/145\",[105,51.033]],[\"parent/145\",[103,3.95]],[\"name/146\",[106,54.398]],[\"parent/146\",[103,3.95]],[\"name/147\",[107,54.398]],[\"parent/147\",[103,3.95]],[\"name/148\",[108,54.398]],[\"parent/148\",[103,3.95]],[\"name/149\",[102,46.514]],[\"parent/149\",[103,3.95]],[\"name/150\",[4,37.534]],[\"parent/150\",[]],[\"name/151\",[22,37.534]],[\"parent/151\",[4,3.415]],[\"name/152\",[109,54.398]],[\"parent/152\",[4,3.415]],[\"name/153\",[110,48.52]],[\"parent/153\",[4,3.415]],[\"name/154\",[111,54.398]],[\"parent/154\",[4,3.415]],[\"name/155\",[112,54.398]],[\"parent/155\",[4,3.415]],[\"name/156\",[113,54.398]],[\"parent/156\",[4,3.415]],[\"name/157\",[114,46.514]],[\"parent/157\",[4,3.415]],[\"name/158\",[115,41.048]],[\"parent/158\",[4,3.415]],[\"name/159\",[116,46.514]],[\"parent/159\",[4,3.415]],[\"name/160\",[117,41.048]],[\"parent/160\",[4,3.415]],[\"name/161\",[104,46.514]],[\"parent/161\",[4,3.415]],[\"name/162\",[118,48.52]],[\"parent/162\",[]],[\"name/163\",[22,37.534]],[\"parent/163\",[118,4.415]],[\"name/164\",[117,41.048]],[\"parent/164\",[118,4.415]],[\"name/165\",[104,46.514]],[\"parent/165\",[118,4.415]],[\"name/166\",[119,59.506]],[\"parent/166\",[]],[\"name/167\",[120,59.506]],[\"parent/167\",[]],[\"name/168\",[121,59.506]],[\"parent/168\",[]],[\"name/169\",[122,59.506]],[\"parent/169\",[]],[\"name/170\",[123,59.506]],[\"parent/170\",[]],[\"name/171\",[124,44.843]],[\"parent/171\",[]],[\"name/172\",[25,48.52]],[\"parent/172\",[124,4.081]],[\"name/173\",[26,31.574]],[\"parent/173\",[124,4.081]],[\"name/174\",[27,51.033]],[\"parent/174\",[124,4.081]],[\"name/175\",[28,43.412]],[\"parent/175\",[124,4.081]],[\"name/176\",[29,54.398]],[\"parent/176\",[124,4.081]],[\"name/177\",[26,31.574]],[\"parent/177\",[]],[\"name/178\",[125,59.506]],[\"parent/178\",[26,2.873]],[\"name/179\",[126,59.506]],[\"parent/179\",[26,2.873]],[\"name/180\",[127,59.506]],[\"parent/180\",[26,2.873]],[\"name/181\",[128,59.506]],[\"parent/181\",[26,2.873]],[\"name/182\",[129,59.506]],[\"parent/182\",[26,2.873]],[\"name/183\",[130,59.506]],[\"parent/183\",[26,2.873]],[\"name/184\",[131,59.506]],[\"parent/184\",[26,2.873]],[\"name/185\",[132,59.506]],[\"parent/185\",[26,2.873]],[\"name/186\",[133,59.506]],[\"parent/186\",[26,2.873]],[\"name/187\",[134,59.506]],[\"parent/187\",[26,2.873]],[\"name/188\",[135,59.506]],[\"parent/188\",[26,2.873]],[\"name/189\",[136,59.506]],[\"parent/189\",[26,2.873]],[\"name/190\",[137,59.506]],[\"parent/190\",[26,2.873]],[\"name/191\",[138,59.506]],[\"parent/191\",[26,2.873]],[\"name/192\",[139,51.033]],[\"parent/192\",[]],[\"name/193\",[140,59.506]],[\"parent/193\",[139,4.644]],[\"name/194\",[141,54.398]],[\"parent/194\",[139,4.644]],[\"name/195\",[142,51.033]],[\"parent/195\",[]],[\"name/196\",[143,43.412]],[\"parent/196\",[142,4.644]],[\"name/197\",[144,33.357]],[\"parent/197\",[142,4.644]],[\"name/198\",[145,54.398]],[\"parent/198\",[]],[\"name/199\",[143,43.412]],[\"parent/199\",[145,4.95]],[\"name/200\",[146,48.52]],[\"parent/200\",[]],[\"name/201\",[144,33.357]],[\"parent/201\",[146,4.415]],[\"name/202\",[102,46.514]],[\"parent/202\",[146,4.415]],[\"name/203\",[147,51.033]],[\"parent/203\",[146,4.415]],[\"name/204\",[148,51.033]],[\"parent/204\",[]],[\"name/205\",[102,46.514]],[\"parent/205\",[148,4.644]],[\"name/206\",[147,51.033]],[\"parent/206\",[148,4.644]],[\"name/207\",[149,51.033]],[\"parent/207\",[]],[\"name/208\",[150,48.52]],[\"parent/208\",[]],[\"name/209\",[151,46.514]],[\"parent/209\",[150,4.415]],[\"name/210\",[149,51.033]],[\"parent/210\",[150,4.415]],[\"name/211\",[152,51.033]],[\"parent/211\",[150,4.415]],[\"name/212\",[153,48.52]],[\"parent/212\",[]],[\"name/213\",[151,46.514]],[\"parent/213\",[153,4.415]],[\"name/214\",[149,51.033]],[\"parent/214\",[153,4.415]],[\"name/215\",[152,51.033]],[\"parent/215\",[153,4.415]],[\"name/216\",[154,46.514]],[\"parent/216\",[]],[\"name/217\",[105,51.033]],[\"parent/217\",[154,4.233]],[\"name/218\",[106,54.398]],[\"parent/218\",[154,4.233]],[\"name/219\",[155,59.506]],[\"parent/219\",[154,4.233]],[\"name/220\",[156,59.506]],[\"parent/220\",[154,4.233]],[\"name/221\",[157,38.304]],[\"parent/221\",[]],[\"name/222\",[158,54.398]],[\"parent/222\",[157,3.485]],[\"name/223\",[159,54.398]],[\"parent/223\",[157,3.485]],[\"name/224\",[160,54.398]],[\"parent/224\",[157,3.485]],[\"name/225\",[161,51.033]],[\"parent/225\",[157,3.485]],[\"name/226\",[162,51.033]],[\"parent/226\",[157,3.485]],[\"name/227\",[163,48.52]],[\"parent/227\",[157,3.485]],[\"name/228\",[164,54.398]],[\"parent/228\",[157,3.485]],[\"name/229\",[165,48.52]],[\"parent/229\",[157,3.485]],[\"name/230\",[166,54.398]],[\"parent/230\",[157,3.485]],[\"name/231\",[144,33.357]],[\"parent/231\",[157,3.485]],[\"name/232\",[167,54.398]],[\"parent/232\",[157,3.485]],[\"name/233\",[168,38.304]],[\"parent/233\",[]],[\"name/234\",[167,54.398]],[\"parent/234\",[168,3.485]],[\"name/235\",[158,54.398]],[\"parent/235\",[168,3.485]],[\"name/236\",[159,54.398]],[\"parent/236\",[168,3.485]],[\"name/237\",[160,54.398]],[\"parent/237\",[168,3.485]],[\"name/238\",[161,51.033]],[\"parent/238\",[168,3.485]],[\"name/239\",[162,51.033]],[\"parent/239\",[168,3.485]],[\"name/240\",[163,48.52]],[\"parent/240\",[168,3.485]],[\"name/241\",[164,54.398]],[\"parent/241\",[168,3.485]],[\"name/242\",[165,48.52]],[\"parent/242\",[168,3.485]],[\"name/243\",[166,54.398]],[\"parent/243\",[168,3.485]],[\"name/244\",[144,33.357]],[\"parent/244\",[168,3.485]],[\"name/245\",[169,43.412]],[\"parent/245\",[]],[\"name/246\",[170,59.506]],[\"parent/246\",[169,3.95]],[\"name/247\",[171,59.506]],[\"parent/247\",[169,3.95]],[\"name/248\",[141,54.398]],[\"parent/248\",[169,3.95]],[\"name/249\",[172,54.398]],[\"parent/249\",[169,3.95]],[\"name/250\",[173,54.398]],[\"parent/250\",[169,3.95]],[\"name/251\",[174,59.506]],[\"parent/251\",[169,3.95]],[\"name/252\",[175,51.033]],[\"parent/252\",[]],[\"name/253\",[176,59.506]],[\"parent/253\",[175,4.644]],[\"name/254\",[177,59.506]],[\"parent/254\",[175,4.644]],[\"name/255\",[178,48.52]],[\"parent/255\",[]],[\"name/256\",[172,54.398]],[\"parent/256\",[178,4.415]],[\"name/257\",[173,54.398]],[\"parent/257\",[178,4.415]],[\"name/258\",[179,59.506]],[\"parent/258\",[178,4.415]],[\"name/259\",[180,51.033]],[\"parent/259\",[]],[\"name/260\",[181,54.398]],[\"parent/260\",[180,4.644]],[\"name/261\",[144,33.357]],[\"parent/261\",[180,4.644]],[\"name/262\",[182,51.033]],[\"parent/262\",[]],[\"name/263\",[181,54.398]],[\"parent/263\",[182,4.644]],[\"name/264\",[144,33.357]],[\"parent/264\",[182,4.644]],[\"name/265\",[183,37.534]],[\"parent/265\",[]],[\"name/266\",[184,54.398]],[\"parent/266\",[183,3.415]],[\"name/267\",[165,48.52]],[\"parent/267\",[183,3.415]],[\"name/268\",[185,54.398]],[\"parent/268\",[183,3.415]],[\"name/269\",[186,54.398]],[\"parent/269\",[183,3.415]],[\"name/270\",[187,54.398]],[\"parent/270\",[183,3.415]],[\"name/271\",[188,46.514]],[\"parent/271\",[183,3.415]],[\"name/272\",[189,54.398]],[\"parent/272\",[183,3.415]],[\"name/273\",[190,46.514]],[\"parent/273\",[183,3.415]],[\"name/274\",[117,41.048]],[\"parent/274\",[183,3.415]],[\"name/275\",[191,54.398]],[\"parent/275\",[183,3.415]],[\"name/276\",[192,54.398]],[\"parent/276\",[183,3.415]],[\"name/277\",[193,44.843]],[\"parent/277\",[183,3.415]],[\"name/278\",[194,36.82]],[\"parent/278\",[]],[\"name/279\",[195,59.506]],[\"parent/279\",[194,3.35]],[\"name/280\",[184,54.398]],[\"parent/280\",[194,3.35]],[\"name/281\",[165,48.52]],[\"parent/281\",[194,3.35]],[\"name/282\",[185,54.398]],[\"parent/282\",[194,3.35]],[\"name/283\",[186,54.398]],[\"parent/283\",[194,3.35]],[\"name/284\",[187,54.398]],[\"parent/284\",[194,3.35]],[\"name/285\",[188,46.514]],[\"parent/285\",[194,3.35]],[\"name/286\",[189,54.398]],[\"parent/286\",[194,3.35]],[\"name/287\",[190,46.514]],[\"parent/287\",[194,3.35]],[\"name/288\",[117,41.048]],[\"parent/288\",[194,3.35]],[\"name/289\",[191,54.398]],[\"parent/289\",[194,3.35]],[\"name/290\",[192,54.398]],[\"parent/290\",[194,3.35]],[\"name/291\",[193,44.843]],[\"parent/291\",[194,3.35]],[\"name/292\",[196,54.398]],[\"parent/292\",[]],[\"name/293\",[197,59.506]],[\"parent/293\",[196,4.95]],[\"name/294\",[198,43.412]],[\"parent/294\",[]],[\"name/295\",[105,51.033]],[\"parent/295\",[198,3.95]],[\"name/296\",[110,48.52]],[\"parent/296\",[198,3.95]],[\"name/297\",[199,59.506]],[\"parent/297\",[198,3.95]],[\"name/298\",[200,59.506]],[\"parent/298\",[198,3.95]],[\"name/299\",[201,59.506]],[\"parent/299\",[198,3.95]],[\"name/300\",[202,59.506]],[\"parent/300\",[198,3.95]],[\"name/301\",[114,46.514]],[\"parent/301\",[]],[\"name/302\",[203,54.398]],[\"parent/302\",[114,4.233]],[\"name/303\",[204,54.398]],[\"parent/303\",[114,4.233]],[\"name/304\",[115,41.048]],[\"parent/304\",[]],[\"name/305\",[203,54.398]],[\"parent/305\",[115,3.735]],[\"name/306\",[204,54.398]],[\"parent/306\",[115,3.735]],[\"name/307\",[205,59.506]],[\"parent/307\",[115,3.735]],[\"name/308\",[206,59.506]],[\"parent/308\",[115,3.735]],[\"name/309\",[207,59.506]],[\"parent/309\",[115,3.735]],[\"name/310\",[208,59.506]],[\"parent/310\",[115,3.735]],[\"name/311\",[209,44.843]],[\"parent/311\",[]],[\"name/312\",[210,59.506]],[\"parent/312\",[209,4.081]],[\"name/313\",[211,59.506]],[\"parent/313\",[209,4.081]],[\"name/314\",[212,59.506]],[\"parent/314\",[209,4.081]],[\"name/315\",[213,59.506]],[\"parent/315\",[209,4.081]],[\"name/316\",[214,59.506]],[\"parent/316\",[209,4.081]],[\"name/317\",[116,46.514]],[\"parent/317\",[]],[\"name/318\",[215,59.506]],[\"parent/318\",[116,4.233]],[\"name/319\",[216,59.506]],[\"parent/319\",[116,4.233]],[\"name/320\",[217,43.412]],[\"parent/320\",[]],[\"name/321\",[144,33.357]],[\"parent/321\",[217,3.95]],[\"name/322\",[163,48.52]],[\"parent/322\",[217,3.95]],[\"name/323\",[218,54.398]],[\"parent/323\",[217,3.95]],[\"name/324\",[219,48.52]],[\"parent/324\",[217,3.95]],[\"name/325\",[220,48.52]],[\"parent/325\",[217,3.95]],[\"name/326\",[221,51.033]],[\"parent/326\",[217,3.95]],[\"name/327\",[222,43.412]],[\"parent/327\",[]],[\"name/328\",[144,33.357]],[\"parent/328\",[222,3.95]],[\"name/329\",[163,48.52]],[\"parent/329\",[222,3.95]],[\"name/330\",[218,54.398]],[\"parent/330\",[222,3.95]],[\"name/331\",[219,48.52]],[\"parent/331\",[222,3.95]],[\"name/332\",[220,48.52]],[\"parent/332\",[222,3.95]],[\"name/333\",[221,51.033]],[\"parent/333\",[222,3.95]],[\"name/334\",[223,51.033]],[\"parent/334\",[]],[\"name/335\",[224,59.506]],[\"parent/335\",[223,4.644]],[\"name/336\",[225,59.506]],[\"parent/336\",[223,4.644]],[\"name/337\",[226,48.52]],[\"parent/337\",[]],[\"name/338\",[227,54.398]],[\"parent/338\",[226,4.415]],[\"name/339\",[144,33.357]],[\"parent/339\",[226,4.415]],[\"name/340\",[228,46.514]],[\"parent/340\",[226,4.415]],[\"name/341\",[229,48.52]],[\"parent/341\",[]],[\"name/342\",[227,54.398]],[\"parent/342\",[229,4.415]],[\"name/343\",[144,33.357]],[\"parent/343\",[229,4.415]],[\"name/344\",[228,46.514]],[\"parent/344\",[229,4.415]],[\"name/345\",[230,37.534]],[\"parent/345\",[]],[\"name/346\",[231,51.033]],[\"parent/346\",[230,3.415]],[\"name/347\",[22,37.534]],[\"parent/347\",[230,3.415]],[\"name/348\",[109,54.398]],[\"parent/348\",[230,3.415]],[\"name/349\",[110,48.52]],[\"parent/349\",[230,3.415]],[\"name/350\",[111,54.398]],[\"parent/350\",[230,3.415]],[\"name/351\",[112,54.398]],[\"parent/351\",[230,3.415]],[\"name/352\",[113,54.398]],[\"parent/352\",[230,3.415]],[\"name/353\",[114,46.514]],[\"parent/353\",[230,3.415]],[\"name/354\",[115,41.048]],[\"parent/354\",[230,3.415]],[\"name/355\",[116,46.514]],[\"parent/355\",[230,3.415]],[\"name/356\",[117,41.048]],[\"parent/356\",[230,3.415]],[\"name/357\",[104,46.514]],[\"parent/357\",[230,3.415]],[\"name/358\",[232,46.514]],[\"parent/358\",[]],[\"name/359\",[231,51.033]],[\"parent/359\",[232,4.233]],[\"name/360\",[22,37.534]],[\"parent/360\",[232,4.233]],[\"name/361\",[117,41.048]],[\"parent/361\",[232,4.233]],[\"name/362\",[104,46.514]],[\"parent/362\",[232,4.233]],[\"name/363\",[233,54.398]],[\"parent/363\",[]],[\"name/364\",[234,51.033]],[\"parent/364\",[233,4.95]],[\"name/365\",[235,54.398]],[\"parent/365\",[]],[\"name/366\",[234,51.033]],[\"parent/366\",[235,4.95]],[\"name/367\",[236,51.033]],[\"parent/367\",[]],[\"name/368\",[234,51.033]],[\"parent/368\",[236,4.644]],[\"name/369\",[144,33.357]],[\"parent/369\",[236,4.644]],[\"name/370\",[237,51.033]],[\"parent/370\",[]],[\"name/371\",[238,59.506]],[\"parent/371\",[237,4.644]],[\"name/372\",[147,51.033]],[\"parent/372\",[237,4.644]],[\"name/373\",[239,51.033]],[\"parent/373\",[]],[\"name/374\",[117,41.048]],[\"parent/374\",[239,4.644]],[\"name/375\",[231,51.033]],[\"parent/375\",[239,4.644]],[\"name/376\",[240,46.514]],[\"parent/376\",[]],[\"name/377\",[241,54.398]],[\"parent/377\",[240,4.233]],[\"name/378\",[242,59.506]],[\"parent/378\",[240,4.233]],[\"name/379\",[243,59.506]],[\"parent/379\",[240,4.233]],[\"name/380\",[244,59.506]],[\"parent/380\",[240,4.233]],[\"name/381\",[245,54.398]],[\"parent/381\",[]],[\"name/382\",[152,51.033]],[\"parent/382\",[245,4.95]],[\"name/383\",[246,51.033]],[\"parent/383\",[]],[\"name/384\",[108,54.398]],[\"parent/384\",[246,4.644]],[\"name/385\",[247,59.506]],[\"parent/385\",[246,4.644]],[\"name/386\",[248,48.52]],[\"parent/386\",[]],[\"name/387\",[188,46.514]],[\"parent/387\",[248,4.415]],[\"name/388\",[249,59.506]],[\"parent/388\",[248,4.415]],[\"name/389\",[250,59.506]],[\"parent/389\",[248,4.415]],[\"name/390\",[251,48.52]],[\"parent/390\",[]],[\"name/391\",[151,46.514]],[\"parent/391\",[251,4.415]],[\"name/392\",[107,54.398]],[\"parent/392\",[251,4.415]],[\"name/393\",[252,59.506]],[\"parent/393\",[251,4.415]],[\"name/394\",[253,48.52]],[\"parent/394\",[]],[\"name/395\",[151,46.514]],[\"parent/395\",[253,4.415]],[\"name/396\",[254,42.16]],[\"parent/396\",[253,4.415]],[\"name/397\",[255,59.506]],[\"parent/397\",[253,4.415]],[\"name/398\",[254,42.16]],[\"parent/398\",[]],[\"name/399\",[256,59.506]],[\"parent/399\",[254,3.836]],[\"name/400\",[257,59.506]],[\"parent/400\",[254,3.836]],[\"name/401\",[258,59.506]],[\"parent/401\",[254,3.836]],[\"name/402\",[259,59.506]],[\"parent/402\",[254,3.836]],[\"name/403\",[260,59.506]],[\"parent/403\",[254,3.836]],[\"name/404\",[261,59.506]],[\"parent/404\",[254,3.836]],[\"name/405\",[262,54.398]],[\"parent/405\",[]],[\"name/406\",[263,54.398]],[\"parent/406\",[262,4.95]],[\"name/407\",[264,54.398]],[\"parent/407\",[]],[\"name/408\",[265,59.506]],[\"parent/408\",[264,4.95]],[\"name/409\",[266,59.506]],[\"parent/409\",[]],[\"name/410\",[267,54.398]],[\"parent/410\",[]],[\"name/411\",[268,59.506]],[\"parent/411\",[267,4.95]],[\"name/412\",[190,46.514]],[\"parent/412\",[]],[\"name/413\",[117,41.048]],[\"parent/413\",[190,4.233]],[\"name/414\",[188,46.514]],[\"parent/414\",[190,4.233]],[\"name/415\",[193,44.843]],[\"parent/415\",[]],[\"name/416\",[188,46.514]],[\"parent/416\",[193,4.081]],[\"name/417\",[102,46.514]],[\"parent/417\",[193,4.081]],[\"name/418\",[269,59.506]],[\"parent/418\",[193,4.081]],[\"name/419\",[270,46.514]],[\"parent/419\",[]],[\"name/420\",[144,33.357]],[\"parent/420\",[270,4.233]],[\"name/421\",[220,48.52]],[\"parent/421\",[270,4.233]],[\"name/422\",[219,48.52]],[\"parent/422\",[270,4.233]],[\"name/423\",[221,51.033]],[\"parent/423\",[270,4.233]],[\"name/424\",[271,48.52]],[\"parent/424\",[]],[\"name/425\",[144,33.357]],[\"parent/425\",[271,4.415]],[\"name/426\",[220,48.52]],[\"parent/426\",[271,4.415]],[\"name/427\",[219,48.52]],[\"parent/427\",[271,4.415]],[\"name/428\",[272,48.52]],[\"parent/428\",[]],[\"name/429\",[273,54.398]],[\"parent/429\",[272,4.415]],[\"name/430\",[274,54.398]],[\"parent/430\",[272,4.415]],[\"name/431\",[144,33.357]],[\"parent/431\",[272,4.415]],[\"name/432\",[275,48.52]],[\"parent/432\",[]],[\"name/433\",[273,54.398]],[\"parent/433\",[275,4.415]],[\"name/434\",[274,54.398]],[\"parent/434\",[275,4.415]],[\"name/435\",[144,33.357]],[\"parent/435\",[275,4.415]],[\"name/436\",[276,51.033]],[\"parent/436\",[]],[\"name/437\",[277,54.398]],[\"parent/437\",[276,4.644]],[\"name/438\",[144,33.357]],[\"parent/438\",[276,4.644]],[\"name/439\",[278,51.033]],[\"parent/439\",[]],[\"name/440\",[277,54.398]],[\"parent/440\",[278,4.644]],[\"name/441\",[144,33.357]],[\"parent/441\",[278,4.644]],[\"name/442\",[279,40.047]],[\"parent/442\",[]],[\"name/443\",[241,54.398]],[\"parent/443\",[279,3.644]],[\"name/444\",[280,59.506]],[\"parent/444\",[279,3.644]],[\"name/445\",[281,59.506]],[\"parent/445\",[279,3.644]],[\"name/446\",[282,59.506]],[\"parent/446\",[279,3.644]],[\"name/447\",[110,48.52]],[\"parent/447\",[279,3.644]],[\"name/448\",[283,59.506]],[\"parent/448\",[279,3.644]],[\"name/449\",[284,59.506]],[\"parent/449\",[279,3.644]],[\"name/450\",[285,59.506]],[\"parent/450\",[279,3.644]],[\"name/451\",[286,59.506]],[\"parent/451\",[279,3.644]],[\"name/452\",[287,46.514]],[\"parent/452\",[]],[\"name/453\",[288,59.506]],[\"parent/453\",[287,4.233]],[\"name/454\",[289,59.506]],[\"parent/454\",[287,4.233]],[\"name/455\",[290,59.506]],[\"parent/455\",[287,4.233]],[\"name/456\",[291,59.506]],[\"parent/456\",[287,4.233]],[\"name/457\",[292,51.033]],[\"parent/457\",[]],[\"name/458\",[293,59.506]],[\"parent/458\",[292,4.644]],[\"name/459\",[263,54.398]],[\"parent/459\",[292,4.644]],[\"name/460\",[294,51.033]],[\"parent/460\",[]],[\"name/461\",[295,59.506]],[\"parent/461\",[294,4.644]],[\"name/462\",[296,59.506]],[\"parent/462\",[294,4.644]],[\"name/463\",[297,46.514]],[\"parent/463\",[]],[\"name/464\",[298,54.398]],[\"parent/464\",[297,4.233]],[\"name/465\",[161,51.033]],[\"parent/465\",[297,4.233]],[\"name/466\",[162,51.033]],[\"parent/466\",[297,4.233]],[\"name/467\",[299,54.398]],[\"parent/467\",[297,4.233]],[\"name/468\",[300,46.514]],[\"parent/468\",[]],[\"name/469\",[298,54.398]],[\"parent/469\",[300,4.233]],[\"name/470\",[301,51.033]],[\"parent/470\",[300,4.233]],[\"name/471\",[302,59.506]],[\"parent/471\",[300,4.233]],[\"name/472\",[299,54.398]],[\"parent/472\",[300,4.233]],[\"name/473\",[303,59.506]],[\"parent/473\",[]],[\"name/474\",[304,59.506]],[\"parent/474\",[]],[\"name/475\",[305,59.506]],[\"parent/475\",[]],[\"name/476\",[306,54.398]],[\"parent/476\",[]],[\"name/477\",[307,59.506]],[\"parent/477\",[306,4.95]],[\"name/478\",[308,40.047]],[\"parent/478\",[]],[\"name/479\",[309,46.514]],[\"parent/479\",[308,3.644]],[\"name/480\",[26,31.574]],[\"parent/480\",[308,3.644]],[\"name/481\",[143,43.412]],[\"parent/481\",[308,3.644]],[\"name/482\",[28,43.412]],[\"parent/482\",[308,3.644]],[\"name/483\",[310,44.843]],[\"parent/483\",[308,3.644]],[\"name/484\",[311,46.514]],[\"parent/484\",[308,3.644]],[\"name/485\",[312,46.514]],[\"parent/485\",[308,3.644]],[\"name/486\",[313,46.514]],[\"parent/486\",[308,3.644]],[\"name/487\",[314,44.843]],[\"parent/487\",[308,3.644]],[\"name/488\",[315,51.033]],[\"parent/488\",[]],[\"name/489\",[316,59.506]],[\"parent/489\",[315,4.644]],[\"name/490\",[317,59.506]],[\"parent/490\",[315,4.644]],[\"name/491\",[318,46.514]],[\"parent/491\",[]],[\"name/492\",[319,59.506]],[\"parent/492\",[318,4.233]],[\"name/493\",[320,59.506]],[\"parent/493\",[318,4.233]],[\"name/494\",[321,59.506]],[\"parent/494\",[318,4.233]],[\"name/495\",[322,59.506]],[\"parent/495\",[318,4.233]],[\"name/496\",[323,40.047]],[\"parent/496\",[]],[\"name/497\",[143,43.412]],[\"parent/497\",[323,3.644]],[\"name/498\",[309,46.514]],[\"parent/498\",[323,3.644]],[\"name/499\",[26,31.574]],[\"parent/499\",[323,3.644]],[\"name/500\",[28,43.412]],[\"parent/500\",[323,3.644]],[\"name/501\",[310,44.843]],[\"parent/501\",[323,3.644]],[\"name/502\",[311,46.514]],[\"parent/502\",[323,3.644]],[\"name/503\",[312,46.514]],[\"parent/503\",[323,3.644]],[\"name/504\",[313,46.514]],[\"parent/504\",[323,3.644]],[\"name/505\",[314,44.843]],[\"parent/505\",[323,3.644]],[\"name/506\",[324,40.047]],[\"parent/506\",[]],[\"name/507\",[143,43.412]],[\"parent/507\",[324,3.644]],[\"name/508\",[309,46.514]],[\"parent/508\",[324,3.644]],[\"name/509\",[26,31.574]],[\"parent/509\",[324,3.644]],[\"name/510\",[28,43.412]],[\"parent/510\",[324,3.644]],[\"name/511\",[310,44.843]],[\"parent/511\",[324,3.644]],[\"name/512\",[311,46.514]],[\"parent/512\",[324,3.644]],[\"name/513\",[312,46.514]],[\"parent/513\",[324,3.644]],[\"name/514\",[313,46.514]],[\"parent/514\",[324,3.644]],[\"name/515\",[314,44.843]],[\"parent/515\",[324,3.644]],[\"name/516\",[325,40.047]],[\"parent/516\",[]],[\"name/517\",[143,43.412]],[\"parent/517\",[325,3.644]],[\"name/518\",[309,46.514]],[\"parent/518\",[325,3.644]],[\"name/519\",[26,31.574]],[\"parent/519\",[325,3.644]],[\"name/520\",[28,43.412]],[\"parent/520\",[325,3.644]],[\"name/521\",[310,44.843]],[\"parent/521\",[325,3.644]],[\"name/522\",[311,46.514]],[\"parent/522\",[325,3.644]],[\"name/523\",[312,46.514]],[\"parent/523\",[325,3.644]],[\"name/524\",[313,46.514]],[\"parent/524\",[325,3.644]],[\"name/525\",[314,44.843]],[\"parent/525\",[325,3.644]],[\"name/526\",[326,40.047]],[\"parent/526\",[]],[\"name/527\",[143,43.412]],[\"parent/527\",[326,3.644]],[\"name/528\",[309,46.514]],[\"parent/528\",[326,3.644]],[\"name/529\",[26,31.574]],[\"parent/529\",[326,3.644]],[\"name/530\",[28,43.412]],[\"parent/530\",[326,3.644]],[\"name/531\",[310,44.843]],[\"parent/531\",[326,3.644]],[\"name/532\",[311,46.514]],[\"parent/532\",[326,3.644]],[\"name/533\",[312,46.514]],[\"parent/533\",[326,3.644]],[\"name/534\",[313,46.514]],[\"parent/534\",[326,3.644]],[\"name/535\",[314,44.843]],[\"parent/535\",[326,3.644]],[\"name/536\",[327,51.033]],[\"parent/536\",[]],[\"name/537\",[328,59.506]],[\"parent/537\",[327,4.644]],[\"name/538\",[228,46.514]],[\"parent/538\",[327,4.644]],[\"name/539\",[329,51.033]],[\"parent/539\",[]],[\"name/540\",[330,59.506]],[\"parent/540\",[329,4.644]],[\"name/541\",[144,33.357]],[\"parent/541\",[329,4.644]],[\"name/542\",[331,48.52]],[\"parent/542\",[]],[\"name/543\",[301,51.033]],[\"parent/543\",[331,4.415]],[\"name/544\",[228,46.514]],[\"parent/544\",[331,4.415]],[\"name/545\",[144,33.357]],[\"parent/545\",[331,4.415]],[\"name/546\",[332,54.398]],[\"parent/546\",[]],[\"name/547\",[314,44.843]],[\"parent/547\",[332,4.95]],[\"name/548\",[333,51.033]],[\"parent/548\",[]],[\"name/549\",[334,54.398]],[\"parent/549\",[333,4.644]],[\"name/550\",[26,31.574]],[\"parent/550\",[333,4.644]],[\"name/551\",[335,51.033]],[\"parent/551\",[]],[\"name/552\",[301,51.033]],[\"parent/552\",[335,4.644]],[\"name/553\",[26,31.574]],[\"parent/553\",[335,4.644]],[\"name/554\",[336,51.033]],[\"parent/554\",[]],[\"name/555\",[151,46.514]],[\"parent/555\",[336,4.644]],[\"name/556\",[117,41.048]],[\"parent/556\",[336,4.644]],[\"name/557\",[337,48.52]],[\"parent/557\",[]],[\"name/558\",[334,54.398]],[\"parent/558\",[337,4.415]],[\"name/559\",[228,46.514]],[\"parent/559\",[337,4.415]],[\"name/560\",[144,33.357]],[\"parent/560\",[337,4.415]],[\"name/561\",[338,54.398]],[\"parent/561\",[]],[\"name/562\",[310,44.843]],[\"parent/562\",[338,4.95]],[\"name/563\",[339,51.033]],[\"parent/563\",[]],[\"name/564\",[340,59.506]],[\"parent/564\",[339,4.644]],[\"name/565\",[341,59.506]],[\"parent/565\",[339,4.644]],[\"name/566\",[342,51.033]],[\"parent/566\",[]],[\"name/567\",[343,59.506]],[\"parent/567\",[342,4.644]],[\"name/568\",[344,59.506]],[\"parent/568\",[342,4.644]],[\"name/569\",[345,54.398]],[\"parent/569\",[]],[\"name/570\",[346,59.506]],[\"parent/570\",[345,4.95]],[\"name/571\",[347,59.506]],[\"parent/571\",[]],[\"name/572\",[348,59.506]],[\"parent/572\",[]],[\"name/573\",[349,59.506]],[\"parent/573\",[]],[\"name/574\",[350,59.506]],[\"parent/574\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":21,\"name\":{\"22\":{},\"23\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"51\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{}},\"parent\":{}}],[\"_events\",{\"_index\":38,\"name\":{\"53\":{}},\"parent\":{}}],[\"_listenercount\",{\"_index\":48,\"name\":{\"65\":{}},\"parent\":{}}],[\"_listeners\",{\"_index\":49,\"name\":{\"66\":{}},\"parent\":{}}],[\"_off\",{\"_index\":46,\"name\":{\"63\":{}},\"parent\":{}}],[\"_removealllisteners\",{\"_index\":47,\"name\":{\"64\":{}},\"parent\":{}}],[\"_startpending\",{\"_index\":34,\"name\":{\"48\":{}},\"parent\":{}}],[\"addaddresses\",{\"_index\":343,\"name\":{\"567\":{}},\"parent\":{}}],[\"addfilters\",{\"_index\":340,\"name\":{\"564\":{}},\"parent\":{}}],[\"address\",{\"_index\":102,\"name\":{\"142\":{},\"149\":{},\"202\":{},\"205\":{},\"417\":{}},\"parent\":{}}],[\"address_activity\",{\"_index\":321,\"name\":{\"494\":{}},\"parent\":{}}],[\"addressactivityresponse\",{\"_index\":331,\"name\":{\"542\":{}},\"parent\":{\"543\":{},\"544\":{},\"545\":{}}}],[\"addressactivitywebhook\",{\"_index\":325,\"name\":{\"516\":{}},\"parent\":{\"517\":{},\"518\":{},\"519\":{},\"520\":{},\"521\":{},\"522\":{},\"523\":{},\"524\":{},\"525\":{}}}],[\"addresses\",{\"_index\":301,\"name\":{\"470\":{},\"543\":{},\"552\":{}},\"parent\":{}}],[\"addresswebhookparams\",{\"_index\":335,\"name\":{\"551\":{}},\"parent\":{\"552\":{},\"553\":{}}}],[\"addresswebhookupdate\",{\"_index\":348,\"name\":{\"572\":{}},\"parent\":{}}],[\"airdrops\",{\"_index\":225,\"name\":{\"336\":{}},\"parent\":{}}],[\"alchemy\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{}}}],[\"alchemyconfig\",{\"_index\":24,\"name\":{\"35\":{}},\"parent\":{\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{}}}],[\"alchemyeventfilter\",{\"_index\":305,\"name\":{\"475\":{}},\"parent\":{}}],[\"alchemyeventtype\",{\"_index\":304,\"name\":{\"474\":{}},\"parent\":{}}],[\"alchemyminedtransactionsaddress\",{\"_index\":303,\"name\":{\"473\":{}},\"parent\":{}}],[\"alchemyminedtransactionseventfilter\",{\"_index\":300,\"name\":{\"468\":{}},\"parent\":{\"469\":{},\"470\":{},\"471\":{},\"472\":{}}}],[\"alchemypendingtransactionseventfilter\",{\"_index\":297,\"name\":{\"463\":{}},\"parent\":{\"464\":{},\"465\":{},\"466\":{},\"467\":{}}}],[\"alchemyprovider\",{\"_index\":32,\"name\":{\"44\":{}},\"parent\":{\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{}}}],[\"alchemyproviderpromise\",{\"_index\":10,\"name\":{\"11\":{}},\"parent\":{}}],[\"alchemysettings\",{\"_index\":124,\"name\":{\"171\":{}},\"parent\":{\"172\":{},\"173\":{},\"174\":{},\"175\":{},\"176\":{}}}],[\"alchemysubscription\",{\"_index\":294,\"name\":{\"460\":{}},\"parent\":{\"461\":{},\"462\":{}}}],[\"alchemywebsocketprovider\",{\"_index\":37,\"name\":{\"52\":{}},\"parent\":{\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{}}}],[\"already_queued\",{\"_index\":257,\"name\":{\"400\":{}},\"parent\":{}}],[\"apikey\",{\"_index\":25,\"name\":{\"37\":{},\"45\":{},\"54\":{},\"172\":{}},\"parent\":{}}],[\"appid\",{\"_index\":314,\"name\":{\"487\":{},\"505\":{},\"515\":{},\"525\":{},\"535\":{},\"547\":{}},\"parent\":{}}],[\"approved\",{\"_index\":289,\"name\":{\"454\":{}},\"parent\":{}}],[\"arb_goerli\",{\"_index\":135,\"name\":{\"188\":{}},\"parent\":{}}],[\"arb_mainnet\",{\"_index\":133,\"name\":{\"186\":{}},\"parent\":{}}],[\"arb_rinkeby\",{\"_index\":134,\"name\":{\"187\":{}},\"parent\":{}}],[\"ascending\",{\"_index\":176,\"name\":{\"253\":{}},\"parent\":{}}],[\"asset\",{\"_index\":191,\"name\":{\"275\":{},\"289\":{}},\"parent\":{}}],[\"assettransferscategory\",{\"_index\":169,\"name\":{\"245\":{}},\"parent\":{\"246\":{},\"247\":{},\"248\":{},\"249\":{},\"250\":{},\"251\":{}}}],[\"assettransfersmetadata\",{\"_index\":196,\"name\":{\"292\":{}},\"parent\":{\"293\":{}}}],[\"assettransfersorder\",{\"_index\":175,\"name\":{\"252\":{}},\"parent\":{\"253\":{},\"254\":{}}}],[\"assettransfersparams\",{\"_index\":157,\"name\":{\"221\":{}},\"parent\":{\"222\":{},\"223\":{},\"224\":{},\"225\":{},\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{},\"231\":{},\"232\":{}}}],[\"assettransfersresponse\",{\"_index\":180,\"name\":{\"259\":{}},\"parent\":{\"260\":{},\"261\":{}}}],[\"assettransfersresult\",{\"_index\":183,\"name\":{\"265\":{}},\"parent\":{\"266\":{},\"267\":{},\"268\":{},\"269\":{},\"270\":{},\"271\":{},\"272\":{},\"273\":{},\"274\":{},\"275\":{},\"276\":{},\"277\":{}}}],[\"assettransferswithmetadataparams\",{\"_index\":168,\"name\":{\"233\":{}},\"parent\":{\"234\":{},\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"242\":{},\"243\":{},\"244\":{}}}],[\"assettransferswithmetadataresponse\",{\"_index\":182,\"name\":{\"262\":{}},\"parent\":{\"263\":{},\"264\":{}}}],[\"assettransferswithmetadataresult\",{\"_index\":194,\"name\":{\"278\":{}},\"parent\":{\"279\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"284\":{},\"285\":{},\"286\":{},\"287\":{},\"288\":{},\"289\":{},\"290\":{},\"291\":{}}}],[\"astar_mainnet\",{\"_index\":138,\"name\":{\"191\":{}},\"parent\":{}}],[\"attributes\",{\"_index\":202,\"name\":{\"300\":{}},\"parent\":{}}],[\"authtoken\",{\"_index\":29,\"name\":{\"41\":{},\"176\":{}},\"parent\":{}}],[\"background_color\",{\"_index\":201,\"name\":{\"299\":{}},\"parent\":{}}],[\"balance\",{\"_index\":231,\"name\":{\"346\":{},\"359\":{},\"375\":{}},\"parent\":{}}],[\"basenft\",{\"_index\":118,\"name\":{\"162\":{}},\"parent\":{\"163\":{},\"164\":{},\"165\":{}}}],[\"basenftcontract\",{\"_index\":101,\"name\":{\"141\":{}},\"parent\":{\"142\":{}}}],[\"block\",{\"_index\":274,\"name\":{\"430\":{},\"434\":{}},\"parent\":{}}],[\"blockhash\",{\"_index\":265,\"name\":{\"408\":{}},\"parent\":{}}],[\"blocknum\",{\"_index\":185,\"name\":{\"268\":{},\"282\":{}},\"parent\":{}}],[\"blocknumber\",{\"_index\":263,\"name\":{\"406\":{},\"459\":{}},\"parent\":{}}],[\"blocktimestamp\",{\"_index\":197,\"name\":{\"293\":{}},\"parent\":{}}],[\"bytes\",{\"_index\":208,\"name\":{\"310\":{}},\"parent\":{}}],[\"call\",{\"_index\":14,\"name\":{\"15\":{},\"109\":{}},\"parent\":{}}],[\"cancelprivatetransaction\",{\"_index\":90,\"name\":{\"126\":{}},\"parent\":{}}],[\"category\",{\"_index\":165,\"name\":{\"229\":{},\"242\":{},\"267\":{},\"281\":{}},\"parent\":{}}],[\"checknftownership\",{\"_index\":59,\"name\":{\"80\":{}},\"parent\":{}}],[\"classifications\",{\"_index\":216,\"name\":{\"319\":{}},\"parent\":{}}],[\"collectionname\",{\"_index\":280,\"name\":{\"444\":{}},\"parent\":{}}],[\"collectionurl\",{\"_index\":243,\"name\":{\"379\":{}},\"parent\":{}}],[\"computerarity\",{\"_index\":64,\"name\":{\"85\":{}},\"parent\":{}}],[\"config\",{\"_index\":7,\"name\":{\"7\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":2,\"name\":{\"2\":{},\"10\":{},\"25\":{},\"34\":{},\"36\":{}},\"parent\":{}}],[\"contract\",{\"_index\":22,\"name\":{\"24\":{},\"151\":{},\"163\":{},\"347\":{},\"360\":{}},\"parent\":{\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{}}}],[\"contractaddress\",{\"_index\":151,\"name\":{\"209\":{},\"213\":{},\"391\":{},\"395\":{},\"555\":{}},\"parent\":{}}],[\"contractaddresses\",{\"_index\":163,\"name\":{\"227\":{},\"240\":{},\"322\":{},\"329\":{}},\"parent\":{}}],[\"contractfactory\",{\"_index\":23,\"name\":{\"33\":{}},\"parent\":{\"34\":{}}}],[\"core\",{\"_index\":3,\"name\":{\"3\":{}},\"parent\":{}}],[\"corenamespace\",{\"_index\":70,\"name\":{\"97\":{}},\"parent\":{\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{},\"123\":{}}}],[\"createwebhook\",{\"_index\":97,\"name\":{\"137\":{}},\"parent\":{}}],[\"decimal\",{\"_index\":269,\"name\":{\"418\":{}},\"parent\":{}}],[\"decimals\",{\"_index\":155,\"name\":{\"219\":{}},\"parent\":{}}],[\"default_tokens\",{\"_index\":140,\"name\":{\"193\":{}},\"parent\":{}}],[\"deletewebhook\",{\"_index\":98,\"name\":{\"138\":{}},\"parent\":{}}],[\"deployeraddress\",{\"_index\":293,\"name\":{\"458\":{}},\"parent\":{}}],[\"deployresult\",{\"_index\":292,\"name\":{\"457\":{}},\"parent\":{\"458\":{},\"459\":{}}}],[\"descending\",{\"_index\":177,\"name\":{\"254\":{}},\"parent\":{}}],[\"description\",{\"_index\":110,\"name\":{\"153\":{},\"296\":{},\"349\":{},\"447\":{}},\"parent\":{}}],[\"destroy\",{\"_index\":45,\"name\":{\"61\":{}},\"parent\":{}}],[\"detectnetwork\",{\"_index\":33,\"name\":{\"47\":{}},\"parent\":{}}],[\"discordurl\",{\"_index\":285,\"name\":{\"450\":{}},\"parent\":{}}],[\"does_not_exist\",{\"_index\":256,\"name\":{\"399\":{}},\"parent\":{}}],[\"dropped_transaction\",{\"_index\":320,\"name\":{\"493\":{}},\"parent\":{}}],[\"droppedtransactionwebhook\",{\"_index\":324,\"name\":{\"506\":{}},\"parent\":{\"507\":{},\"508\":{},\"509\":{},\"510\":{},\"511\":{},\"512\":{},\"513\":{},\"514\":{},\"515\":{}}}],[\"erc1155\",{\"_index\":173,\"name\":{\"250\":{},\"257\":{}},\"parent\":{}}],[\"erc1155metadata\",{\"_index\":190,\"name\":{\"273\":{},\"287\":{},\"412\":{}},\"parent\":{\"413\":{},\"414\":{}}}],[\"erc20\",{\"_index\":141,\"name\":{\"194\":{},\"248\":{}},\"parent\":{}}],[\"erc721\",{\"_index\":172,\"name\":{\"249\":{},\"256\":{}},\"parent\":{}}],[\"erc721dishonesttotalsupply\",{\"_index\":212,\"name\":{\"314\":{}},\"parent\":{}}],[\"erc721tokenid\",{\"_index\":189,\"name\":{\"272\":{},\"286\":{}},\"parent\":{}}],[\"erc721toomanyowners\",{\"_index\":210,\"name\":{\"312\":{}},\"parent\":{}}],[\"erc721toomanytokens\",{\"_index\":211,\"name\":{\"313\":{}},\"parent\":{}}],[\"error\",{\"_index\":152,\"name\":{\"211\":{},\"215\":{},\"382\":{}},\"parent\":{}}],[\"estimategas\",{\"_index\":13,\"name\":{\"14\":{},\"110\":{},\"129\":{}},\"parent\":{}}],[\"eth_goerli\",{\"_index\":127,\"name\":{\"180\":{}},\"parent\":{}}],[\"eth_kovan\",{\"_index\":128,\"name\":{\"181\":{}},\"parent\":{}}],[\"eth_mainnet\",{\"_index\":125,\"name\":{\"178\":{}},\"parent\":{}}],[\"eth_rinkeby\",{\"_index\":129,\"name\":{\"182\":{}},\"parent\":{}}],[\"eth_ropsten\",{\"_index\":126,\"name\":{\"179\":{}},\"parent\":{}}],[\"excludefilters\",{\"_index\":218,\"name\":{\"323\":{},\"330\":{}},\"parent\":{}}],[\"excludezerovalue\",{\"_index\":164,\"name\":{\"228\":{},\"241\":{}},\"parent\":{}}],[\"external\",{\"_index\":170,\"name\":{\"246\":{}},\"parent\":{}}],[\"external_url\",{\"_index\":200,\"name\":{\"298\":{}},\"parent\":{}}],[\"externalurl\",{\"_index\":283,\"name\":{\"448\":{}},\"parent\":{}}],[\"fast\",{\"_index\":307,\"name\":{\"477\":{}},\"parent\":{}}],[\"filters\",{\"_index\":334,\"name\":{\"549\":{},\"558\":{}},\"parent\":{}}],[\"findcontractdeployer\",{\"_index\":82,\"name\":{\"117\":{}},\"parent\":{}}],[\"finished\",{\"_index\":259,\"name\":{\"402\":{}},\"parent\":{}}],[\"floorprice\",{\"_index\":241,\"name\":{\"377\":{},\"443\":{}},\"parent\":{}}],[\"floorpriceerror\",{\"_index\":245,\"name\":{\"381\":{}},\"parent\":{\"382\":{}}}],[\"floorpricemarketplace\",{\"_index\":240,\"name\":{\"376\":{}},\"parent\":{\"377\":{},\"378\":{},\"379\":{},\"380\":{}}}],[\"format\",{\"_index\":206,\"name\":{\"308\":{}},\"parent\":{}}],[\"from\",{\"_index\":186,\"name\":{\"269\":{},\"283\":{}},\"parent\":{}}],[\"fromaddress\",{\"_index\":161,\"name\":{\"225\":{},\"238\":{},\"465\":{}},\"parent\":{}}],[\"fromblock\",{\"_index\":158,\"name\":{\"222\":{},\"235\":{}},\"parent\":{}}],[\"fromhex\",{\"_index\":119,\"name\":{\"166\":{}},\"parent\":{}}],[\"gateway\",{\"_index\":204,\"name\":{\"303\":{},\"306\":{}},\"parent\":{}}],[\"getaddresses\",{\"_index\":94,\"name\":{\"134\":{}},\"parent\":{}}],[\"getaddressesoptions\",{\"_index\":329,\"name\":{\"539\":{}},\"parent\":{\"540\":{},\"541\":{}}}],[\"getallwebhooks\",{\"_index\":93,\"name\":{\"133\":{}},\"parent\":{}}],[\"getallwebhooksresponse\",{\"_index\":327,\"name\":{\"536\":{}},\"parent\":{\"537\":{},\"538\":{}}}],[\"getassettransfers\",{\"_index\":85,\"name\":{\"120\":{}},\"parent\":{}}],[\"getbalance\",{\"_index\":11,\"name\":{\"12\":{},\"98\":{}},\"parent\":{}}],[\"getbasenftsforcontractoptions\",{\"_index\":271,\"name\":{\"424\":{}},\"parent\":{\"425\":{},\"426\":{},\"427\":{}}}],[\"getbasenftsforowneroptions\",{\"_index\":222,\"name\":{\"327\":{}},\"parent\":{\"328\":{},\"329\":{},\"330\":{},\"331\":{},\"332\":{},\"333\":{}}}],[\"getblock\",{\"_index\":73,\"name\":{\"102\":{}},\"parent\":{}}],[\"getblocknumber\",{\"_index\":76,\"name\":{\"105\":{}},\"parent\":{}}],[\"getblockwithtransactions\",{\"_index\":74,\"name\":{\"103\":{}},\"parent\":{}}],[\"getchainid\",{\"_index\":16,\"name\":{\"17\":{}},\"parent\":{}}],[\"getcode\",{\"_index\":71,\"name\":{\"99\":{}},\"parent\":{}}],[\"getcontractmetadata\",{\"_index\":52,\"name\":{\"73\":{}},\"parent\":{}}],[\"getfeedata\",{\"_index\":18,\"name\":{\"19\":{},\"107\":{}},\"parent\":{}}],[\"getfloorprice\",{\"_index\":63,\"name\":{\"84\":{}},\"parent\":{}}],[\"getfloorpriceresponse\",{\"_index\":246,\"name\":{\"383\":{}},\"parent\":{\"384\":{},\"385\":{}}}],[\"getgasprice\",{\"_index\":17,\"name\":{\"18\":{},\"106\":{}},\"parent\":{}}],[\"getlogs\",{\"_index\":81,\"name\":{\"115\":{}},\"parent\":{}}],[\"getmaxpriorityfeepergas\",{\"_index\":91,\"name\":{\"130\":{}},\"parent\":{}}],[\"getnetwork\",{\"_index\":75,\"name\":{\"104\":{}},\"parent\":{}}],[\"getnftfilters\",{\"_index\":95,\"name\":{\"135\":{}},\"parent\":{}}],[\"getnftmetadata\",{\"_index\":51,\"name\":{\"72\":{}},\"parent\":{}}],[\"getnftsforcontract\",{\"_index\":55,\"name\":{\"76\":{}},\"parent\":{}}],[\"getnftsforcontractiterator\",{\"_index\":56,\"name\":{\"77\":{}},\"parent\":{}}],[\"getnftsforcontractoptions\",{\"_index\":270,\"name\":{\"419\":{}},\"parent\":{\"420\":{},\"421\":{},\"422\":{},\"423\":{}}}],[\"getnftsforowner\",{\"_index\":54,\"name\":{\"75\":{}},\"parent\":{}}],[\"getnftsforowneriterator\",{\"_index\":53,\"name\":{\"74\":{}},\"parent\":{}}],[\"getnftsforowneroptions\",{\"_index\":217,\"name\":{\"320\":{}},\"parent\":{\"321\":{},\"322\":{},\"323\":{},\"324\":{},\"325\":{},\"326\":{}}}],[\"getownersforcontract\",{\"_index\":57,\"name\":{\"78\":{}},\"parent\":{}}],[\"getownersforcontractoptions\",{\"_index\":272,\"name\":{\"428\":{}},\"parent\":{\"429\":{},\"430\":{},\"431\":{}}}],[\"getownersforcontractresponse\",{\"_index\":235,\"name\":{\"365\":{}},\"parent\":{\"366\":{}}}],[\"getownersforcontractwithtokenbalancesoptions\",{\"_index\":275,\"name\":{\"432\":{}},\"parent\":{\"433\":{},\"434\":{},\"435\":{}}}],[\"getownersforcontractwithtokenbalancesresponse\",{\"_index\":236,\"name\":{\"367\":{}},\"parent\":{\"368\":{},\"369\":{}}}],[\"getownersfornft\",{\"_index\":58,\"name\":{\"79\":{}},\"parent\":{}}],[\"getownersfornftresponse\",{\"_index\":233,\"name\":{\"363\":{}},\"parent\":{\"364\":{}}}],[\"getprovider\",{\"_index\":30,\"name\":{\"42\":{}},\"parent\":{}}],[\"getspamcontracts\",{\"_index\":62,\"name\":{\"83\":{}},\"parent\":{}}],[\"getstorageat\",{\"_index\":72,\"name\":{\"100\":{}},\"parent\":{}}],[\"gettokenbalances\",{\"_index\":83,\"name\":{\"118\":{}},\"parent\":{}}],[\"gettokenmetadata\",{\"_index\":84,\"name\":{\"119\":{}},\"parent\":{}}],[\"gettransaction\",{\"_index\":78,\"name\":{\"111\":{},\"127\":{}},\"parent\":{}}],[\"gettransactioncount\",{\"_index\":12,\"name\":{\"13\":{},\"101\":{}},\"parent\":{}}],[\"gettransactionreceipt\",{\"_index\":79,\"name\":{\"112\":{}},\"parent\":{}}],[\"gettransactionreceipts\",{\"_index\":86,\"name\":{\"121\":{}},\"parent\":{}}],[\"getwallet\",{\"_index\":20,\"name\":{\"21\":{}},\"parent\":{}}],[\"getwebsocketprovider\",{\"_index\":31,\"name\":{\"43\":{}},\"parent\":{}}],[\"hash\",{\"_index\":192,\"name\":{\"276\":{},\"290\":{}},\"parent\":{}}],[\"hashesonly\",{\"_index\":299,\"name\":{\"467\":{},\"472\":{}},\"parent\":{}}],[\"id\",{\"_index\":309,\"name\":{\"479\":{},\"498\":{},\"508\":{},\"518\":{},\"528\":{}},\"parent\":{}}],[\"image\",{\"_index\":199,\"name\":{\"297\":{}},\"parent\":{}}],[\"imageurl\",{\"_index\":282,\"name\":{\"446\":{}},\"parent\":{}}],[\"in_progress\",{\"_index\":258,\"name\":{\"401\":{}},\"parent\":{}}],[\"includeremoved\",{\"_index\":302,\"name\":{\"471\":{}},\"parent\":{}}],[\"internal\",{\"_index\":171,\"name\":{\"247\":{}},\"parent\":{}}],[\"isactive\",{\"_index\":310,\"name\":{\"483\":{},\"501\":{},\"511\":{},\"521\":{},\"531\":{},\"562\":{}},\"parent\":{}}],[\"iscommunityresource\",{\"_index\":35,\"name\":{\"49\":{},\"62\":{}},\"parent\":{}}],[\"ishex\",{\"_index\":121,\"name\":{\"168\":{}},\"parent\":{}}],[\"isspam\",{\"_index\":215,\"name\":{\"318\":{}},\"parent\":{}}],[\"isspamcontract\",{\"_index\":61,\"name\":{\"82\":{}},\"parent\":{}}],[\"lastingestedat\",{\"_index\":286,\"name\":{\"451\":{}},\"parent\":{}}],[\"limit\",{\"_index\":330,\"name\":{\"540\":{}},\"parent\":{}}],[\"listenercount\",{\"_index\":43,\"name\":{\"59\":{},\"95\":{}},\"parent\":{}}],[\"listeners\",{\"_index\":44,\"name\":{\"60\":{},\"96\":{}},\"parent\":{}}],[\"loglevel\",{\"_index\":123,\"name\":{\"170\":{}},\"parent\":{}}],[\"logo\",{\"_index\":156,\"name\":{\"220\":{}},\"parent\":{}}],[\"looksrare\",{\"_index\":247,\"name\":{\"385\":{}},\"parent\":{}}],[\"lookupaddress\",{\"_index\":87,\"name\":{\"123\":{}},\"parent\":{}}],[\"matic_mainnet\",{\"_index\":136,\"name\":{\"189\":{}},\"parent\":{}}],[\"matic_mumbai\",{\"_index\":137,\"name\":{\"190\":{}},\"parent\":{}}],[\"maxcount\",{\"_index\":166,\"name\":{\"230\":{},\"243\":{}},\"parent\":{}}],[\"maxretries\",{\"_index\":27,\"name\":{\"39\":{},\"46\":{},\"174\":{}},\"parent\":{}}],[\"media\",{\"_index\":115,\"name\":{\"158\":{},\"304\":{},\"354\":{}},\"parent\":{\"305\":{},\"306\":{},\"307\":{},\"308\":{},\"309\":{},\"310\":{}}}],[\"metadata\",{\"_index\":195,\"name\":{\"279\":{}},\"parent\":{}}],[\"metadataerror\",{\"_index\":112,\"name\":{\"155\":{},\"351\":{}},\"parent\":{}}],[\"method\",{\"_index\":298,\"name\":{\"464\":{},\"469\":{}},\"parent\":{}}],[\"mined_transaction\",{\"_index\":319,\"name\":{\"492\":{}},\"parent\":{}}],[\"mined_transactions\",{\"_index\":296,\"name\":{\"462\":{}},\"parent\":{}}],[\"minedtransactionwebhook\",{\"_index\":323,\"name\":{\"496\":{}},\"parent\":{\"497\":{},\"498\":{},\"499\":{},\"500\":{},\"501\":{},\"502\":{},\"503\":{},\"504\":{},\"505\":{}}}],[\"mostlyhoneypotowners\",{\"_index\":213,\"name\":{\"315\":{}},\"parent\":{}}],[\"name\",{\"_index\":105,\"name\":{\"145\":{},\"217\":{},\"295\":{}},\"parent\":{}}],[\"network\",{\"_index\":26,\"name\":{\"38\":{},\"173\":{},\"177\":{},\"480\":{},\"499\":{},\"509\":{},\"519\":{},\"529\":{},\"550\":{},\"553\":{}},\"parent\":{\"178\":{},\"179\":{},\"180\":{},\"181\":{},\"182\":{},\"183\":{},\"184\":{},\"185\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{},\"190\":{},\"191\":{}}}],[\"newaddresses\",{\"_index\":346,\"name\":{\"570\":{}},\"parent\":{}}],[\"nft\",{\"_index\":4,\"name\":{\"4\":{},\"150\":{}},\"parent\":{\"151\":{},\"152\":{},\"153\":{},\"154\":{},\"155\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{}}}],[\"nft_activity\",{\"_index\":322,\"name\":{\"495\":{}},\"parent\":{}}],[\"nftactivitywebhook\",{\"_index\":326,\"name\":{\"526\":{}},\"parent\":{\"527\":{},\"528\":{},\"529\":{},\"530\":{},\"531\":{},\"532\":{},\"533\":{},\"534\":{},\"535\":{}}}],[\"nftattributerarity\",{\"_index\":248,\"name\":{\"386\":{}},\"parent\":{\"387\":{},\"388\":{},\"389\":{}}}],[\"nftattributesresponse\",{\"_index\":251,\"name\":{\"390\":{}},\"parent\":{\"391\":{},\"392\":{},\"393\":{}}}],[\"nftcontract\",{\"_index\":103,\"name\":{\"143\":{}},\"parent\":{\"144\":{},\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{}}}],[\"nftcontractbasenftsresponse\",{\"_index\":276,\"name\":{\"436\":{}},\"parent\":{\"437\":{},\"438\":{}}}],[\"nftcontractnftsresponse\",{\"_index\":278,\"name\":{\"439\":{}},\"parent\":{\"440\":{},\"441\":{}}}],[\"nftcontractowner\",{\"_index\":237,\"name\":{\"370\":{}},\"parent\":{\"371\":{},\"372\":{}}}],[\"nftcontracttokenbalance\",{\"_index\":239,\"name\":{\"373\":{}},\"parent\":{\"374\":{},\"375\":{}}}],[\"nftexcludefilters\",{\"_index\":223,\"name\":{\"334\":{}},\"parent\":{\"335\":{},\"336\":{}}}],[\"nftfilter\",{\"_index\":336,\"name\":{\"554\":{}},\"parent\":{\"555\":{},\"556\":{}}}],[\"nftfiltersresponse\",{\"_index\":337,\"name\":{\"557\":{}},\"parent\":{\"558\":{},\"559\":{},\"560\":{}}}],[\"nftmetadata\",{\"_index\":198,\"name\":{\"294\":{}},\"parent\":{\"295\":{},\"296\":{},\"297\":{},\"298\":{},\"299\":{},\"300\":{}}}],[\"nftnamespace\",{\"_index\":50,\"name\":{\"71\":{}},\"parent\":{\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{}}}],[\"nfts\",{\"_index\":277,\"name\":{\"437\":{},\"440\":{}},\"parent\":{}}],[\"nftspamclassification\",{\"_index\":209,\"name\":{\"311\":{}},\"parent\":{\"312\":{},\"313\":{},\"314\":{},\"315\":{},\"316\":{}}}],[\"nfttokentype\",{\"_index\":178,\"name\":{\"255\":{}},\"parent\":{\"256\":{},\"257\":{},\"258\":{}}}],[\"nftwebhookparams\",{\"_index\":333,\"name\":{\"548\":{}},\"parent\":{\"549\":{},\"550\":{}}}],[\"nftwebhookupdate\",{\"_index\":347,\"name\":{\"571\":{}},\"parent\":{}}],[\"nonemptyarray\",{\"_index\":350,\"name\":{\"574\":{}},\"parent\":{}}],[\"not_requested\",{\"_index\":291,\"name\":{\"456\":{}},\"parent\":{}}],[\"notify\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{}}],[\"notifynamespace\",{\"_index\":92,\"name\":{\"132\":{}},\"parent\":{\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{}}}],[\"off\",{\"_index\":41,\"name\":{\"57\":{},\"93\":{}},\"parent\":{}}],[\"omitmetadata\",{\"_index\":220,\"name\":{\"325\":{},\"332\":{},\"421\":{},\"426\":{}},\"parent\":{}}],[\"on\",{\"_index\":39,\"name\":{\"55\":{},\"91\":{}},\"parent\":{}}],[\"once\",{\"_index\":40,\"name\":{\"56\":{},\"92\":{}},\"parent\":{}}],[\"opensea\",{\"_index\":108,\"name\":{\"148\":{},\"384\":{}},\"parent\":{}}],[\"openseacollectionmetadata\",{\"_index\":279,\"name\":{\"442\":{}},\"parent\":{\"443\":{},\"444\":{},\"445\":{},\"446\":{},\"447\":{},\"448\":{},\"449\":{},\"450\":{},\"451\":{}}}],[\"openseasafelistrequeststatus\",{\"_index\":287,\"name\":{\"452\":{}},\"parent\":{\"453\":{},\"454\":{},\"455\":{},\"456\":{}}}],[\"opt_goerli\",{\"_index\":132,\"name\":{\"185\":{}},\"parent\":{}}],[\"opt_kovan\",{\"_index\":131,\"name\":{\"184\":{}},\"parent\":{}}],[\"opt_mainnet\",{\"_index\":130,\"name\":{\"183\":{}},\"parent\":{}}],[\"order\",{\"_index\":160,\"name\":{\"224\":{},\"237\":{}},\"parent\":{}}],[\"ownedbasenft\",{\"_index\":232,\"name\":{\"358\":{}},\"parent\":{\"359\":{},\"360\":{},\"361\":{},\"362\":{}}}],[\"ownedbasenftsresponse\",{\"_index\":229,\"name\":{\"341\":{}},\"parent\":{\"342\":{},\"343\":{},\"344\":{}}}],[\"ownedbymosthoneypots\",{\"_index\":214,\"name\":{\"316\":{}},\"parent\":{}}],[\"ownednft\",{\"_index\":230,\"name\":{\"345\":{}},\"parent\":{\"346\":{},\"347\":{},\"348\":{},\"349\":{},\"350\":{},\"351\":{},\"352\":{},\"353\":{},\"354\":{},\"355\":{},\"356\":{},\"357\":{}}}],[\"ownednfts\",{\"_index\":227,\"name\":{\"338\":{},\"342\":{}},\"parent\":{}}],[\"ownednftsresponse\",{\"_index\":226,\"name\":{\"337\":{}},\"parent\":{\"338\":{},\"339\":{},\"340\":{}}}],[\"owneraddress\",{\"_index\":238,\"name\":{\"371\":{}},\"parent\":{}}],[\"owners\",{\"_index\":234,\"name\":{\"364\":{},\"366\":{},\"368\":{}},\"parent\":{}}],[\"pagekey\",{\"_index\":144,\"name\":{\"197\":{},\"201\":{},\"231\":{},\"244\":{},\"261\":{},\"264\":{},\"321\":{},\"328\":{},\"339\":{},\"343\":{},\"369\":{},\"420\":{},\"425\":{},\"431\":{},\"435\":{},\"438\":{},\"441\":{},\"541\":{},\"545\":{},\"560\":{}},\"parent\":{}}],[\"pagesize\",{\"_index\":219,\"name\":{\"324\":{},\"331\":{},\"422\":{},\"427\":{}},\"parent\":{}}],[\"pending_transactions\",{\"_index\":295,\"name\":{\"461\":{}},\"parent\":{}}],[\"prevalence\",{\"_index\":250,\"name\":{\"389\":{}},\"parent\":{}}],[\"pricecurrency\",{\"_index\":242,\"name\":{\"378\":{}},\"parent\":{}}],[\"progress\",{\"_index\":255,\"name\":{\"397\":{}},\"parent\":{}}],[\"queue_failed\",{\"_index\":261,\"name\":{\"404\":{}},\"parent\":{}}],[\"queued\",{\"_index\":260,\"name\":{\"403\":{}},\"parent\":{}}],[\"raw\",{\"_index\":203,\"name\":{\"302\":{},\"305\":{}},\"parent\":{}}],[\"rawcontract\",{\"_index\":193,\"name\":{\"277\":{},\"291\":{},\"415\":{}},\"parent\":{\"416\":{},\"417\":{},\"418\":{}}}],[\"rawmetadata\",{\"_index\":113,\"name\":{\"156\":{},\"352\":{}},\"parent\":{}}],[\"ready\",{\"_index\":77,\"name\":{\"108\":{}},\"parent\":{}}],[\"receipts\",{\"_index\":268,\"name\":{\"411\":{}},\"parent\":{}}],[\"refreshcontract\",{\"_index\":68,\"name\":{\"89\":{}},\"parent\":{}}],[\"refreshcontractresult\",{\"_index\":253,\"name\":{\"394\":{}},\"parent\":{\"395\":{},\"396\":{},\"397\":{}}}],[\"refreshnftmetadata\",{\"_index\":67,\"name\":{\"88\":{}},\"parent\":{}}],[\"refreshstate\",{\"_index\":254,\"name\":{\"396\":{},\"398\":{}},\"parent\":{\"399\":{},\"400\":{},\"401\":{},\"402\":{},\"403\":{},\"404\":{}}}],[\"removeaddresses\",{\"_index\":344,\"name\":{\"568\":{}},\"parent\":{}}],[\"removealllisteners\",{\"_index\":42,\"name\":{\"58\":{},\"94\":{}},\"parent\":{}}],[\"removefilters\",{\"_index\":341,\"name\":{\"565\":{}},\"parent\":{}}],[\"requested\",{\"_index\":290,\"name\":{\"455\":{}},\"parent\":{}}],[\"requireatleastone\",{\"_index\":349,\"name\":{\"573\":{}},\"parent\":{}}],[\"resolvename\",{\"_index\":19,\"name\":{\"20\":{},\"122\":{}},\"parent\":{}}],[\"retrievedat\",{\"_index\":244,\"name\":{\"380\":{}},\"parent\":{}}],[\"safelistrequeststatus\",{\"_index\":281,\"name\":{\"445\":{}},\"parent\":{}}],[\"searchcontractmetadata\",{\"_index\":65,\"name\":{\"86\":{}},\"parent\":{}}],[\"send\",{\"_index\":36,\"name\":{\"50\":{},\"116\":{}},\"parent\":{}}],[\"sendprivatetransaction\",{\"_index\":89,\"name\":{\"125\":{}},\"parent\":{}}],[\"sendprivatetransactionoptions\",{\"_index\":306,\"name\":{\"476\":{}},\"parent\":{\"477\":{}}}],[\"sendtransaction\",{\"_index\":15,\"name\":{\"16\":{},\"113\":{},\"128\":{}},\"parent\":{}}],[\"sendwebhookrequest\",{\"_index\":100,\"name\":{\"140\":{}},\"parent\":{}}],[\"setloglevel\",{\"_index\":122,\"name\":{\"169\":{}},\"parent\":{}}],[\"signingkey\",{\"_index\":312,\"name\":{\"485\":{},\"503\":{},\"513\":{},\"523\":{},\"533\":{}},\"parent\":{}}],[\"size\",{\"_index\":207,\"name\":{\"309\":{}},\"parent\":{}}],[\"spam\",{\"_index\":224,\"name\":{\"335\":{}},\"parent\":{}}],[\"spaminfo\",{\"_index\":116,\"name\":{\"159\":{},\"317\":{},\"355\":{}},\"parent\":{\"318\":{},\"319\":{}}}],[\"specialnft\",{\"_index\":174,\"name\":{\"251\":{}},\"parent\":{}}],[\"summarizenftattributes\",{\"_index\":66,\"name\":{\"87\":{}},\"parent\":{}}],[\"summary\",{\"_index\":252,\"name\":{\"393\":{}},\"parent\":{}}],[\"symbol\",{\"_index\":106,\"name\":{\"146\":{},\"218\":{}},\"parent\":{}}],[\"thumbnail\",{\"_index\":205,\"name\":{\"307\":{}},\"parent\":{}}],[\"timecreated\",{\"_index\":311,\"name\":{\"484\":{},\"502\":{},\"512\":{},\"522\":{},\"532\":{}},\"parent\":{}}],[\"timelastupdated\",{\"_index\":111,\"name\":{\"154\":{},\"350\":{}},\"parent\":{}}],[\"title\",{\"_index\":109,\"name\":{\"152\":{},\"348\":{}},\"parent\":{}}],[\"to\",{\"_index\":187,\"name\":{\"270\":{},\"284\":{}},\"parent\":{}}],[\"toaddress\",{\"_index\":162,\"name\":{\"226\":{},\"239\":{},\"466\":{}},\"parent\":{}}],[\"toblock\",{\"_index\":159,\"name\":{\"223\":{},\"236\":{}},\"parent\":{}}],[\"tohex\",{\"_index\":120,\"name\":{\"167\":{}},\"parent\":{}}],[\"tokenbalance\",{\"_index\":149,\"name\":{\"207\":{},\"210\":{},\"214\":{}},\"parent\":{}}],[\"tokenbalancefailure\",{\"_index\":153,\"name\":{\"212\":{}},\"parent\":{\"213\":{},\"214\":{},\"215\":{}}}],[\"tokenbalances\",{\"_index\":147,\"name\":{\"203\":{},\"206\":{},\"372\":{}},\"parent\":{}}],[\"tokenbalancesoptionsdefaulttokens\",{\"_index\":145,\"name\":{\"198\":{}},\"parent\":{\"199\":{}}}],[\"tokenbalancesoptionserc20\",{\"_index\":142,\"name\":{\"195\":{}},\"parent\":{\"196\":{},\"197\":{}}}],[\"tokenbalancesresponse\",{\"_index\":148,\"name\":{\"204\":{}},\"parent\":{\"205\":{},\"206\":{}}}],[\"tokenbalancesresponseerc20\",{\"_index\":146,\"name\":{\"200\":{}},\"parent\":{\"201\":{},\"202\":{},\"203\":{}}}],[\"tokenbalancesuccess\",{\"_index\":150,\"name\":{\"208\":{}},\"parent\":{\"209\":{},\"210\":{},\"211\":{}}}],[\"tokenbalancetype\",{\"_index\":139,\"name\":{\"192\":{}},\"parent\":{\"193\":{},\"194\":{}}}],[\"tokenid\",{\"_index\":117,\"name\":{\"160\":{},\"164\":{},\"274\":{},\"288\":{},\"356\":{},\"361\":{},\"374\":{},\"413\":{},\"556\":{}},\"parent\":{}}],[\"tokenmetadataresponse\",{\"_index\":154,\"name\":{\"216\":{}},\"parent\":{\"217\":{},\"218\":{},\"219\":{},\"220\":{}}}],[\"tokentype\",{\"_index\":104,\"name\":{\"144\":{},\"161\":{},\"165\":{},\"357\":{},\"362\":{}},\"parent\":{}}],[\"tokenuri\",{\"_index\":114,\"name\":{\"157\":{},\"301\":{},\"353\":{}},\"parent\":{\"302\":{},\"303\":{}}}],[\"tokenuritimeoutinms\",{\"_index\":221,\"name\":{\"326\":{},\"333\":{},\"423\":{}},\"parent\":{}}],[\"totalcount\",{\"_index\":228,\"name\":{\"340\":{},\"344\":{},\"538\":{},\"544\":{},\"559\":{}},\"parent\":{}}],[\"totalsupply\",{\"_index\":107,\"name\":{\"147\":{},\"392\":{}},\"parent\":{}}],[\"traittype\",{\"_index\":249,\"name\":{\"388\":{}},\"parent\":{}}],[\"transact\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"transactionreceiptsblockhash\",{\"_index\":264,\"name\":{\"407\":{}},\"parent\":{\"408\":{}}}],[\"transactionreceiptsblocknumber\",{\"_index\":262,\"name\":{\"405\":{}},\"parent\":{\"406\":{}}}],[\"transactionreceiptsparams\",{\"_index\":266,\"name\":{\"409\":{}},\"parent\":{}}],[\"transactionreceiptsresponse\",{\"_index\":267,\"name\":{\"410\":{}},\"parent\":{\"411\":{}}}],[\"transactionwebhookparams\",{\"_index\":332,\"name\":{\"546\":{}},\"parent\":{\"547\":{}}}],[\"transactnamespace\",{\"_index\":88,\"name\":{\"124\":{}},\"parent\":{\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{}}}],[\"transfers\",{\"_index\":181,\"name\":{\"260\":{},\"263\":{}},\"parent\":{}}],[\"twitterusername\",{\"_index\":284,\"name\":{\"449\":{}},\"parent\":{}}],[\"type\",{\"_index\":143,\"name\":{\"196\":{},\"199\":{},\"481\":{},\"497\":{},\"507\":{},\"517\":{},\"527\":{}},\"parent\":{}}],[\"uniqueid\",{\"_index\":184,\"name\":{\"266\":{},\"280\":{}},\"parent\":{}}],[\"unknown\",{\"_index\":179,\"name\":{\"258\":{}},\"parent\":{}}],[\"updatewebhook\",{\"_index\":96,\"name\":{\"136\":{}},\"parent\":{}}],[\"url\",{\"_index\":28,\"name\":{\"40\":{},\"175\":{},\"482\":{},\"500\":{},\"510\":{},\"520\":{},\"530\":{}},\"parent\":{}}],[\"utils\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{}}],[\"v1\",{\"_index\":316,\"name\":{\"489\":{}},\"parent\":{}}],[\"v2\",{\"_index\":317,\"name\":{\"490\":{}},\"parent\":{}}],[\"value\",{\"_index\":188,\"name\":{\"271\":{},\"285\":{},\"387\":{},\"414\":{},\"416\":{}},\"parent\":{}}],[\"verified\",{\"_index\":288,\"name\":{\"453\":{}},\"parent\":{}}],[\"verifyconfig\",{\"_index\":99,\"name\":{\"139\":{}},\"parent\":{}}],[\"verifynftownership\",{\"_index\":60,\"name\":{\"81\":{}},\"parent\":{}}],[\"version\",{\"_index\":313,\"name\":{\"486\":{},\"504\":{},\"514\":{},\"524\":{},\"534\":{}},\"parent\":{}}],[\"waitfortransaction\",{\"_index\":80,\"name\":{\"114\":{},\"131\":{}},\"parent\":{}}],[\"wallet\",{\"_index\":9,\"name\":{\"9\":{}},\"parent\":{\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{}}}],[\"webhook\",{\"_index\":308,\"name\":{\"478\":{}},\"parent\":{\"479\":{},\"480\":{},\"481\":{},\"482\":{},\"483\":{},\"484\":{},\"485\":{},\"486\":{},\"487\":{}}}],[\"webhookaddressoverride\",{\"_index\":345,\"name\":{\"569\":{}},\"parent\":{\"570\":{}}}],[\"webhookaddressupdate\",{\"_index\":342,\"name\":{\"566\":{}},\"parent\":{\"567\":{},\"568\":{}}}],[\"webhooknftfilterupdate\",{\"_index\":339,\"name\":{\"563\":{}},\"parent\":{\"564\":{},\"565\":{}}}],[\"webhooks\",{\"_index\":328,\"name\":{\"537\":{}},\"parent\":{}}],[\"webhookstatusupdate\",{\"_index\":338,\"name\":{\"561\":{}},\"parent\":{\"562\":{}}}],[\"webhooktype\",{\"_index\":318,\"name\":{\"491\":{}},\"parent\":{\"492\":{},\"493\":{},\"494\":{},\"495\":{}}}],[\"webhookversion\",{\"_index\":315,\"name\":{\"488\":{}},\"parent\":{\"489\":{},\"490\":{}}}],[\"websocketnamespace\",{\"_index\":69,\"name\":{\"90\":{}},\"parent\":{\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{}}}],[\"withmetadata\",{\"_index\":167,\"name\":{\"232\":{},\"234\":{}},\"parent\":{}}],[\"withtokenbalances\",{\"_index\":273,\"name\":{\"429\":{},\"433\":{}},\"parent\":{}}],[\"ws\",{\"_index\":5,\"name\":{\"5\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"4\":\"Namespace\",\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":4,\"name\":\"Utils\",\"url\":\"modules/Utils.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":1,\"kind\":128,\"name\":\"Alchemy\",\"url\":\"classes/Alchemy.html\",\"classes\":\"tsd-kind-class\"},{\"id\":2,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Alchemy.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":3,\"kind\":1024,\"name\":\"core\",\"url\":\"classes/Alchemy.html#core\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":4,\"kind\":1024,\"name\":\"nft\",\"url\":\"classes/Alchemy.html#nft\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":5,\"kind\":1024,\"name\":\"ws\",\"url\":\"classes/Alchemy.html#ws\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":6,\"kind\":1024,\"name\":\"transact\",\"url\":\"classes/Alchemy.html#transact\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":7,\"kind\":1024,\"name\":\"config\",\"url\":\"classes/Alchemy.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":8,\"kind\":1024,\"name\":\"notify\",\"url\":\"classes/Alchemy.html#notify\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Alchemy\"},{\"id\":9,\"kind\":128,\"name\":\"Wallet\",\"url\":\"classes/Wallet.html\",\"classes\":\"tsd-kind-class\"},{\"id\":10,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Wallet.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":11,\"kind\":1024,\"name\":\"alchemyProviderPromise\",\"url\":\"classes/Wallet.html#alchemyProviderPromise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"Wallet\"},{\"id\":12,\"kind\":2048,\"name\":\"getBalance\",\"url\":\"classes/Wallet.html#getBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":13,\"kind\":2048,\"name\":\"getTransactionCount\",\"url\":\"classes/Wallet.html#getTransactionCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":14,\"kind\":2048,\"name\":\"estimateGas\",\"url\":\"classes/Wallet.html#estimateGas\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":15,\"kind\":2048,\"name\":\"call\",\"url\":\"classes/Wallet.html#call\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":16,\"kind\":2048,\"name\":\"sendTransaction\",\"url\":\"classes/Wallet.html#sendTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":17,\"kind\":2048,\"name\":\"getChainId\",\"url\":\"classes/Wallet.html#getChainId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":18,\"kind\":2048,\"name\":\"getGasPrice\",\"url\":\"classes/Wallet.html#getGasPrice\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":19,\"kind\":2048,\"name\":\"getFeeData\",\"url\":\"classes/Wallet.html#getFeeData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":20,\"kind\":2048,\"name\":\"resolveName\",\"url\":\"classes/Wallet.html#resolveName\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Wallet\"},{\"id\":21,\"kind\":2048,\"name\":\"getWallet\",\"url\":\"classes/Wallet.html#getWallet\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"Wallet\"},{\"id\":22,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Wallet.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Wallet\"},{\"id\":23,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Wallet.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Wallet\"},{\"id\":24,\"kind\":128,\"name\":\"Contract\",\"url\":\"classes/Contract.html\",\"classes\":\"tsd-kind-class\"},{\"id\":25,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Contract.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Contract\"},{\"id\":26,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":27,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":28,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":29,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":30,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":31,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":32,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Contract.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Contract\"},{\"id\":33,\"kind\":128,\"name\":\"ContractFactory\",\"url\":\"classes/ContractFactory.html\",\"classes\":\"tsd-kind-class\"},{\"id\":34,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ContractFactory.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ContractFactory\"},{\"id\":35,\"kind\":128,\"name\":\"AlchemyConfig\",\"url\":\"classes/AlchemyConfig.html\",\"classes\":\"tsd-kind-class\"},{\"id\":36,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/AlchemyConfig.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":37,\"kind\":1024,\"name\":\"apiKey\",\"url\":\"classes/AlchemyConfig.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":38,\"kind\":1024,\"name\":\"network\",\"url\":\"classes/AlchemyConfig.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":39,\"kind\":1024,\"name\":\"maxRetries\",\"url\":\"classes/AlchemyConfig.html#maxRetries\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":40,\"kind\":1024,\"name\":\"batchRequests\",\"url\":\"classes/AlchemyConfig.html#batchRequests\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":41,\"kind\":1024,\"name\":\"url\",\"url\":\"classes/AlchemyConfig.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":42,\"kind\":1024,\"name\":\"authToken\",\"url\":\"classes/AlchemyConfig.html#authToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":43,\"kind\":2048,\"name\":\"getProvider\",\"url\":\"classes/AlchemyConfig.html#getProvider\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":44,\"kind\":2048,\"name\":\"getWebSocketProvider\",\"url\":\"classes/AlchemyConfig.html#getWebSocketProvider\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AlchemyConfig\"},{\"id\":45,\"kind\":128,\"name\":\"AlchemyProvider\",\"url\":\"classes/AlchemyProvider.html\",\"classes\":\"tsd-kind-class\"},{\"id\":46,\"kind\":1024,\"name\":\"apiKey\",\"url\":\"classes/AlchemyProvider.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyProvider\"},{\"id\":47,\"kind\":1024,\"name\":\"maxRetries\",\"url\":\"classes/AlchemyProvider.html#maxRetries\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyProvider\"},{\"id\":48,\"kind\":1024,\"name\":\"batchRequests\",\"url\":\"classes/AlchemyProvider.html#batchRequests\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyProvider\"},{\"id\":49,\"kind\":2048,\"name\":\"detectNetwork\",\"url\":\"classes/AlchemyProvider.html#detectNetwork\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyProvider\"},{\"id\":50,\"kind\":2048,\"name\":\"_startPending\",\"url\":\"classes/AlchemyProvider.html#_startPending\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyProvider\"},{\"id\":51,\"kind\":2048,\"name\":\"isCommunityResource\",\"url\":\"classes/AlchemyProvider.html#isCommunityResource\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AlchemyProvider\"},{\"id\":52,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/AlchemyProvider.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyProvider\"},{\"id\":53,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyProvider.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyProvider\"},{\"id\":54,\"kind\":128,\"name\":\"AlchemyWebSocketProvider\",\"url\":\"classes/AlchemyWebSocketProvider.html\",\"classes\":\"tsd-kind-class\"},{\"id\":55,\"kind\":1024,\"name\":\"_events\",\"url\":\"classes/AlchemyWebSocketProvider.html#_events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":56,\"kind\":1024,\"name\":\"apiKey\",\"url\":\"classes/AlchemyWebSocketProvider.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":57,\"kind\":2048,\"name\":\"on\",\"url\":\"classes/AlchemyWebSocketProvider.html#on\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":58,\"kind\":2048,\"name\":\"once\",\"url\":\"classes/AlchemyWebSocketProvider.html#once\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":59,\"kind\":2048,\"name\":\"off\",\"url\":\"classes/AlchemyWebSocketProvider.html#off\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":60,\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/AlchemyWebSocketProvider.html#removeAllListeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":61,\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/AlchemyWebSocketProvider.html#listenerCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":62,\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/AlchemyWebSocketProvider.html#listeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":63,\"kind\":2048,\"name\":\"destroy\",\"url\":\"classes/AlchemyWebSocketProvider.html#destroy\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":64,\"kind\":2048,\"name\":\"isCommunityResource\",\"url\":\"classes/AlchemyWebSocketProvider.html#isCommunityResource\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":65,\"kind\":2048,\"name\":\"_off\",\"url\":\"classes/AlchemyWebSocketProvider.html#_off\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":66,\"kind\":2048,\"name\":\"_removeAllListeners\",\"url\":\"classes/AlchemyWebSocketProvider.html#_removeAllListeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":67,\"kind\":2048,\"name\":\"_listenerCount\",\"url\":\"classes/AlchemyWebSocketProvider.html#_listenerCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":68,\"kind\":2048,\"name\":\"_listeners\",\"url\":\"classes/AlchemyWebSocketProvider.html#_listeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":69,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyWebSocketProvider.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":70,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyWebSocketProvider.html#__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":71,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyWebSocketProvider.html#__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":72,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AlchemyWebSocketProvider.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"AlchemyWebSocketProvider\"},{\"id\":73,\"kind\":128,\"name\":\"NftNamespace\",\"url\":\"classes/NftNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":74,\"kind\":2048,\"name\":\"getNftMetadata\",\"url\":\"classes/NftNamespace.html#getNftMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":75,\"kind\":2048,\"name\":\"getNftMetadataBatch\",\"url\":\"classes/NftNamespace.html#getNftMetadataBatch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":76,\"kind\":2048,\"name\":\"getContractMetadata\",\"url\":\"classes/NftNamespace.html#getContractMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":77,\"kind\":2048,\"name\":\"getNftsForOwnerIterator\",\"url\":\"classes/NftNamespace.html#getNftsForOwnerIterator\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":78,\"kind\":2048,\"name\":\"getNftsForOwner\",\"url\":\"classes/NftNamespace.html#getNftsForOwner\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":79,\"kind\":2048,\"name\":\"getNftsForContract\",\"url\":\"classes/NftNamespace.html#getNftsForContract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":80,\"kind\":2048,\"name\":\"getNftsForContractIterator\",\"url\":\"classes/NftNamespace.html#getNftsForContractIterator\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":81,\"kind\":2048,\"name\":\"getOwnersForContract\",\"url\":\"classes/NftNamespace.html#getOwnersForContract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":82,\"kind\":2048,\"name\":\"getOwnersForNft\",\"url\":\"classes/NftNamespace.html#getOwnersForNft\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":83,\"kind\":2048,\"name\":\"checkNftOwnership\",\"url\":\"classes/NftNamespace.html#checkNftOwnership\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":84,\"kind\":2048,\"name\":\"verifyNftOwnership\",\"url\":\"classes/NftNamespace.html#verifyNftOwnership\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":85,\"kind\":2048,\"name\":\"isSpamContract\",\"url\":\"classes/NftNamespace.html#isSpamContract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":86,\"kind\":2048,\"name\":\"getSpamContracts\",\"url\":\"classes/NftNamespace.html#getSpamContracts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":87,\"kind\":2048,\"name\":\"getFloorPrice\",\"url\":\"classes/NftNamespace.html#getFloorPrice\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":88,\"kind\":2048,\"name\":\"getNftSales\",\"url\":\"classes/NftNamespace.html#getNftSales\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":89,\"kind\":2048,\"name\":\"computeRarity\",\"url\":\"classes/NftNamespace.html#computeRarity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":90,\"kind\":2048,\"name\":\"searchContractMetadata\",\"url\":\"classes/NftNamespace.html#searchContractMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":91,\"kind\":2048,\"name\":\"summarizeNftAttributes\",\"url\":\"classes/NftNamespace.html#summarizeNftAttributes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":92,\"kind\":2048,\"name\":\"refreshNftMetadata\",\"url\":\"classes/NftNamespace.html#refreshNftMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":93,\"kind\":2048,\"name\":\"refreshContract\",\"url\":\"classes/NftNamespace.html#refreshContract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NftNamespace\"},{\"id\":94,\"kind\":128,\"name\":\"WebSocketNamespace\",\"url\":\"classes/WebSocketNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":95,\"kind\":2048,\"name\":\"on\",\"url\":\"classes/WebSocketNamespace.html#on\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":96,\"kind\":2048,\"name\":\"once\",\"url\":\"classes/WebSocketNamespace.html#once\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":97,\"kind\":2048,\"name\":\"off\",\"url\":\"classes/WebSocketNamespace.html#off\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":98,\"kind\":2048,\"name\":\"removeAllListeners\",\"url\":\"classes/WebSocketNamespace.html#removeAllListeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":99,\"kind\":2048,\"name\":\"listenerCount\",\"url\":\"classes/WebSocketNamespace.html#listenerCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":100,\"kind\":2048,\"name\":\"listeners\",\"url\":\"classes/WebSocketNamespace.html#listeners\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"WebSocketNamespace\"},{\"id\":101,\"kind\":128,\"name\":\"CoreNamespace\",\"url\":\"classes/CoreNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":102,\"kind\":2048,\"name\":\"getBalance\",\"url\":\"classes/CoreNamespace.html#getBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":103,\"kind\":2048,\"name\":\"getCode\",\"url\":\"classes/CoreNamespace.html#getCode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":104,\"kind\":2048,\"name\":\"getStorageAt\",\"url\":\"classes/CoreNamespace.html#getStorageAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":105,\"kind\":2048,\"name\":\"getTransactionCount\",\"url\":\"classes/CoreNamespace.html#getTransactionCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":106,\"kind\":2048,\"name\":\"getBlock\",\"url\":\"classes/CoreNamespace.html#getBlock\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":107,\"kind\":2048,\"name\":\"getBlockWithTransactions\",\"url\":\"classes/CoreNamespace.html#getBlockWithTransactions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":108,\"kind\":2048,\"name\":\"getNetwork\",\"url\":\"classes/CoreNamespace.html#getNetwork\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":109,\"kind\":2048,\"name\":\"getBlockNumber\",\"url\":\"classes/CoreNamespace.html#getBlockNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":110,\"kind\":2048,\"name\":\"getGasPrice\",\"url\":\"classes/CoreNamespace.html#getGasPrice\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":111,\"kind\":2048,\"name\":\"getFeeData\",\"url\":\"classes/CoreNamespace.html#getFeeData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":112,\"kind\":2048,\"name\":\"ready\",\"url\":\"classes/CoreNamespace.html#ready\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":113,\"kind\":2048,\"name\":\"call\",\"url\":\"classes/CoreNamespace.html#call\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":114,\"kind\":2048,\"name\":\"estimateGas\",\"url\":\"classes/CoreNamespace.html#estimateGas\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":115,\"kind\":2048,\"name\":\"getTransaction\",\"url\":\"classes/CoreNamespace.html#getTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":116,\"kind\":2048,\"name\":\"getTransactionReceipt\",\"url\":\"classes/CoreNamespace.html#getTransactionReceipt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":117,\"kind\":2048,\"name\":\"sendTransaction\",\"url\":\"classes/CoreNamespace.html#sendTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":118,\"kind\":2048,\"name\":\"waitForTransaction\",\"url\":\"classes/CoreNamespace.html#waitForTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":119,\"kind\":2048,\"name\":\"getLogs\",\"url\":\"classes/CoreNamespace.html#getLogs\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":120,\"kind\":2048,\"name\":\"send\",\"url\":\"classes/CoreNamespace.html#send\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":121,\"kind\":2048,\"name\":\"findContractDeployer\",\"url\":\"classes/CoreNamespace.html#findContractDeployer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":122,\"kind\":2048,\"name\":\"getTokenBalances\",\"url\":\"classes/CoreNamespace.html#getTokenBalances\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":123,\"kind\":2048,\"name\":\"getTokenMetadata\",\"url\":\"classes/CoreNamespace.html#getTokenMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":124,\"kind\":2048,\"name\":\"getAssetTransfers\",\"url\":\"classes/CoreNamespace.html#getAssetTransfers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":125,\"kind\":2048,\"name\":\"getTransactionReceipts\",\"url\":\"classes/CoreNamespace.html#getTransactionReceipts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":126,\"kind\":2048,\"name\":\"resolveName\",\"url\":\"classes/CoreNamespace.html#resolveName\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":127,\"kind\":2048,\"name\":\"lookupAddress\",\"url\":\"classes/CoreNamespace.html#lookupAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CoreNamespace\"},{\"id\":128,\"kind\":128,\"name\":\"TransactNamespace\",\"url\":\"classes/TransactNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":129,\"kind\":2048,\"name\":\"sendPrivateTransaction\",\"url\":\"classes/TransactNamespace.html#sendPrivateTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":130,\"kind\":2048,\"name\":\"cancelPrivateTransaction\",\"url\":\"classes/TransactNamespace.html#cancelPrivateTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":131,\"kind\":2048,\"name\":\"getTransaction\",\"url\":\"classes/TransactNamespace.html#getTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":132,\"kind\":2048,\"name\":\"sendTransaction\",\"url\":\"classes/TransactNamespace.html#sendTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":133,\"kind\":2048,\"name\":\"estimateGas\",\"url\":\"classes/TransactNamespace.html#estimateGas\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":134,\"kind\":2048,\"name\":\"getMaxPriorityFeePerGas\",\"url\":\"classes/TransactNamespace.html#getMaxPriorityFeePerGas\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":135,\"kind\":2048,\"name\":\"waitForTransaction\",\"url\":\"classes/TransactNamespace.html#waitForTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TransactNamespace\"},{\"id\":136,\"kind\":128,\"name\":\"NotifyNamespace\",\"url\":\"classes/NotifyNamespace.html\",\"classes\":\"tsd-kind-class\"},{\"id\":137,\"kind\":2048,\"name\":\"getAllWebhooks\",\"url\":\"classes/NotifyNamespace.html#getAllWebhooks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":138,\"kind\":2048,\"name\":\"getAddresses\",\"url\":\"classes/NotifyNamespace.html#getAddresses\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":139,\"kind\":2048,\"name\":\"getNftFilters\",\"url\":\"classes/NotifyNamespace.html#getNftFilters\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":140,\"kind\":2048,\"name\":\"updateWebhook\",\"url\":\"classes/NotifyNamespace.html#updateWebhook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":141,\"kind\":2048,\"name\":\"createWebhook\",\"url\":\"classes/NotifyNamespace.html#createWebhook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":142,\"kind\":2048,\"name\":\"deleteWebhook\",\"url\":\"classes/NotifyNamespace.html#deleteWebhook\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"NotifyNamespace\"},{\"id\":143,\"kind\":2048,\"name\":\"verifyConfig\",\"url\":\"classes/NotifyNamespace.html#verifyConfig\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"NotifyNamespace\"},{\"id\":144,\"kind\":2048,\"name\":\"sendWebhookRequest\",\"url\":\"classes/NotifyNamespace.html#sendWebhookRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-private\",\"parent\":\"NotifyNamespace\"},{\"id\":145,\"kind\":256,\"name\":\"BaseNftContract\",\"url\":\"interfaces/BaseNftContract.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":146,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/BaseNftContract.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BaseNftContract\"},{\"id\":147,\"kind\":256,\"name\":\"NftContract\",\"url\":\"interfaces/NftContract.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":148,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/NftContract.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":149,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/NftContract.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":150,\"kind\":1024,\"name\":\"symbol\",\"url\":\"interfaces/NftContract.html#symbol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":151,\"kind\":1024,\"name\":\"totalSupply\",\"url\":\"interfaces/NftContract.html#totalSupply\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":152,\"kind\":1024,\"name\":\"openSea\",\"url\":\"interfaces/NftContract.html#openSea\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContract\"},{\"id\":153,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/NftContract.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftContract\"},{\"id\":154,\"kind\":256,\"name\":\"Nft\",\"url\":\"interfaces/Nft.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":155,\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/Nft.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"Nft\"},{\"id\":156,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/Nft.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":157,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/Nft.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":158,\"kind\":1024,\"name\":\"timeLastUpdated\",\"url\":\"interfaces/Nft.html#timeLastUpdated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":159,\"kind\":1024,\"name\":\"metadataError\",\"url\":\"interfaces/Nft.html#metadataError\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":160,\"kind\":1024,\"name\":\"rawMetadata\",\"url\":\"interfaces/Nft.html#rawMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":161,\"kind\":1024,\"name\":\"tokenUri\",\"url\":\"interfaces/Nft.html#tokenUri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":162,\"kind\":1024,\"name\":\"media\",\"url\":\"interfaces/Nft.html#media\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":163,\"kind\":1024,\"name\":\"spamInfo\",\"url\":\"interfaces/Nft.html#spamInfo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Nft\"},{\"id\":164,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/Nft.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Nft\"},{\"id\":165,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/Nft.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Nft\"},{\"id\":166,\"kind\":256,\"name\":\"BaseNft\",\"url\":\"interfaces/BaseNft.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":167,\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/BaseNft.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BaseNft\"},{\"id\":168,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/BaseNft.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BaseNft\"},{\"id\":169,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/BaseNft.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BaseNft\"},{\"id\":170,\"kind\":64,\"name\":\"fromHex\",\"url\":\"modules.html#fromHex\",\"classes\":\"tsd-kind-function\"},{\"id\":171,\"kind\":64,\"name\":\"toHex\",\"url\":\"modules.html#toHex\",\"classes\":\"tsd-kind-function\"},{\"id\":172,\"kind\":64,\"name\":\"isHex\",\"url\":\"modules.html#isHex\",\"classes\":\"tsd-kind-function\"},{\"id\":173,\"kind\":64,\"name\":\"setLogLevel\",\"url\":\"modules.html#setLogLevel\",\"classes\":\"tsd-kind-function\"},{\"id\":174,\"kind\":4194304,\"name\":\"LogLevel\",\"url\":\"modules.html#LogLevel\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":175,\"kind\":256,\"name\":\"AlchemySettings\",\"url\":\"interfaces/AlchemySettings.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":176,\"kind\":1024,\"name\":\"apiKey\",\"url\":\"interfaces/AlchemySettings.html#apiKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":177,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/AlchemySettings.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":178,\"kind\":1024,\"name\":\"maxRetries\",\"url\":\"interfaces/AlchemySettings.html#maxRetries\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":179,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/AlchemySettings.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":180,\"kind\":1024,\"name\":\"authToken\",\"url\":\"interfaces/AlchemySettings.html#authToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":181,\"kind\":1024,\"name\":\"batchRequsets\",\"url\":\"interfaces/AlchemySettings.html#batchRequsets\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemySettings\"},{\"id\":182,\"kind\":8,\"name\":\"Network\",\"url\":\"enums/Network.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":183,\"kind\":16,\"name\":\"ETH_MAINNET\",\"url\":\"enums/Network.html#ETH_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":184,\"kind\":16,\"name\":\"ETH_ROPSTEN\",\"url\":\"enums/Network.html#ETH_ROPSTEN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":185,\"kind\":16,\"name\":\"ETH_GOERLI\",\"url\":\"enums/Network.html#ETH_GOERLI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":186,\"kind\":16,\"name\":\"ETH_KOVAN\",\"url\":\"enums/Network.html#ETH_KOVAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":187,\"kind\":16,\"name\":\"ETH_RINKEBY\",\"url\":\"enums/Network.html#ETH_RINKEBY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":188,\"kind\":16,\"name\":\"OPT_MAINNET\",\"url\":\"enums/Network.html#OPT_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":189,\"kind\":16,\"name\":\"OPT_KOVAN\",\"url\":\"enums/Network.html#OPT_KOVAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":190,\"kind\":16,\"name\":\"OPT_GOERLI\",\"url\":\"enums/Network.html#OPT_GOERLI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":191,\"kind\":16,\"name\":\"ARB_MAINNET\",\"url\":\"enums/Network.html#ARB_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":192,\"kind\":16,\"name\":\"ARB_RINKEBY\",\"url\":\"enums/Network.html#ARB_RINKEBY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":193,\"kind\":16,\"name\":\"ARB_GOERLI\",\"url\":\"enums/Network.html#ARB_GOERLI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":194,\"kind\":16,\"name\":\"MATIC_MAINNET\",\"url\":\"enums/Network.html#MATIC_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":195,\"kind\":16,\"name\":\"MATIC_MUMBAI\",\"url\":\"enums/Network.html#MATIC_MUMBAI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":196,\"kind\":16,\"name\":\"ASTAR_MAINNET\",\"url\":\"enums/Network.html#ASTAR_MAINNET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Network\"},{\"id\":197,\"kind\":8,\"name\":\"TokenBalanceType\",\"url\":\"enums/TokenBalanceType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":198,\"kind\":16,\"name\":\"DEFAULT_TOKENS\",\"url\":\"enums/TokenBalanceType.html#DEFAULT_TOKENS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"TokenBalanceType\"},{\"id\":199,\"kind\":16,\"name\":\"ERC20\",\"url\":\"enums/TokenBalanceType.html#ERC20\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"TokenBalanceType\"},{\"id\":200,\"kind\":256,\"name\":\"TokenBalancesOptionsErc20\",\"url\":\"interfaces/TokenBalancesOptionsErc20.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":201,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TokenBalancesOptionsErc20.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesOptionsErc20\"},{\"id\":202,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/TokenBalancesOptionsErc20.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesOptionsErc20\"},{\"id\":203,\"kind\":256,\"name\":\"TokenBalancesOptionsDefaultTokens\",\"url\":\"interfaces/TokenBalancesOptionsDefaultTokens.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":204,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TokenBalancesOptionsDefaultTokens.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesOptionsDefaultTokens\"},{\"id\":205,\"kind\":256,\"name\":\"TokenBalancesResponseErc20\",\"url\":\"interfaces/TokenBalancesResponseErc20.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":206,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/TokenBalancesResponseErc20.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesResponseErc20\"},{\"id\":207,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/TokenBalancesResponseErc20.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"TokenBalancesResponseErc20\"},{\"id\":208,\"kind\":1024,\"name\":\"tokenBalances\",\"url\":\"interfaces/TokenBalancesResponseErc20.html#tokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"TokenBalancesResponseErc20\"},{\"id\":209,\"kind\":256,\"name\":\"TokenBalancesResponse\",\"url\":\"interfaces/TokenBalancesResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":210,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/TokenBalancesResponse.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesResponse\"},{\"id\":211,\"kind\":1024,\"name\":\"tokenBalances\",\"url\":\"interfaces/TokenBalancesResponse.html#tokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalancesResponse\"},{\"id\":212,\"kind\":4194304,\"name\":\"TokenBalance\",\"url\":\"modules.html#TokenBalance\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":213,\"kind\":256,\"name\":\"TokenBalanceSuccess\",\"url\":\"interfaces/TokenBalanceSuccess.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":214,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/TokenBalanceSuccess.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceSuccess\"},{\"id\":215,\"kind\":1024,\"name\":\"tokenBalance\",\"url\":\"interfaces/TokenBalanceSuccess.html#tokenBalance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceSuccess\"},{\"id\":216,\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/TokenBalanceSuccess.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceSuccess\"},{\"id\":217,\"kind\":256,\"name\":\"TokenBalanceFailure\",\"url\":\"interfaces/TokenBalanceFailure.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":218,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/TokenBalanceFailure.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceFailure\"},{\"id\":219,\"kind\":1024,\"name\":\"tokenBalance\",\"url\":\"interfaces/TokenBalanceFailure.html#tokenBalance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceFailure\"},{\"id\":220,\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/TokenBalanceFailure.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenBalanceFailure\"},{\"id\":221,\"kind\":256,\"name\":\"TokenMetadataResponse\",\"url\":\"interfaces/TokenMetadataResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":222,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/TokenMetadataResponse.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenMetadataResponse\"},{\"id\":223,\"kind\":1024,\"name\":\"symbol\",\"url\":\"interfaces/TokenMetadataResponse.html#symbol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenMetadataResponse\"},{\"id\":224,\"kind\":1024,\"name\":\"decimals\",\"url\":\"interfaces/TokenMetadataResponse.html#decimals\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenMetadataResponse\"},{\"id\":225,\"kind\":1024,\"name\":\"logo\",\"url\":\"interfaces/TokenMetadataResponse.html#logo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenMetadataResponse\"},{\"id\":226,\"kind\":256,\"name\":\"AssetTransfersParams\",\"url\":\"interfaces/AssetTransfersParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":227,\"kind\":1024,\"name\":\"fromBlock\",\"url\":\"interfaces/AssetTransfersParams.html#fromBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":228,\"kind\":1024,\"name\":\"toBlock\",\"url\":\"interfaces/AssetTransfersParams.html#toBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":229,\"kind\":1024,\"name\":\"order\",\"url\":\"interfaces/AssetTransfersParams.html#order\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":230,\"kind\":1024,\"name\":\"fromAddress\",\"url\":\"interfaces/AssetTransfersParams.html#fromAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":231,\"kind\":1024,\"name\":\"toAddress\",\"url\":\"interfaces/AssetTransfersParams.html#toAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":232,\"kind\":1024,\"name\":\"contractAddresses\",\"url\":\"interfaces/AssetTransfersParams.html#contractAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":233,\"kind\":1024,\"name\":\"excludeZeroValue\",\"url\":\"interfaces/AssetTransfersParams.html#excludeZeroValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":234,\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/AssetTransfersParams.html#category\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":235,\"kind\":1024,\"name\":\"maxCount\",\"url\":\"interfaces/AssetTransfersParams.html#maxCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":236,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AssetTransfersParams.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":237,\"kind\":1024,\"name\":\"withMetadata\",\"url\":\"interfaces/AssetTransfersParams.html#withMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersParams\"},{\"id\":238,\"kind\":256,\"name\":\"AssetTransfersWithMetadataParams\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":239,\"kind\":1024,\"name\":\"withMetadata\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#withMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":240,\"kind\":1024,\"name\":\"fromBlock\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#fromBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":241,\"kind\":1024,\"name\":\"toBlock\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#toBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":242,\"kind\":1024,\"name\":\"order\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#order\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":243,\"kind\":1024,\"name\":\"fromAddress\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#fromAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":244,\"kind\":1024,\"name\":\"toAddress\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#toAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":245,\"kind\":1024,\"name\":\"contractAddresses\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#contractAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":246,\"kind\":1024,\"name\":\"excludeZeroValue\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#excludeZeroValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":247,\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#category\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":248,\"kind\":1024,\"name\":\"maxCount\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#maxCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":249,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AssetTransfersWithMetadataParams.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataParams\"},{\"id\":250,\"kind\":8,\"name\":\"AssetTransfersCategory\",\"url\":\"enums/AssetTransfersCategory.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":251,\"kind\":16,\"name\":\"EXTERNAL\",\"url\":\"enums/AssetTransfersCategory.html#EXTERNAL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":252,\"kind\":16,\"name\":\"INTERNAL\",\"url\":\"enums/AssetTransfersCategory.html#INTERNAL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":253,\"kind\":16,\"name\":\"ERC20\",\"url\":\"enums/AssetTransfersCategory.html#ERC20\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":254,\"kind\":16,\"name\":\"ERC721\",\"url\":\"enums/AssetTransfersCategory.html#ERC721\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":255,\"kind\":16,\"name\":\"ERC1155\",\"url\":\"enums/AssetTransfersCategory.html#ERC1155\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":256,\"kind\":16,\"name\":\"SPECIALNFT\",\"url\":\"enums/AssetTransfersCategory.html#SPECIALNFT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersCategory\"},{\"id\":257,\"kind\":8,\"name\":\"AssetTransfersOrder\",\"url\":\"enums/AssetTransfersOrder.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":258,\"kind\":16,\"name\":\"ASCENDING\",\"url\":\"enums/AssetTransfersOrder.html#ASCENDING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersOrder\"},{\"id\":259,\"kind\":16,\"name\":\"DESCENDING\",\"url\":\"enums/AssetTransfersOrder.html#DESCENDING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AssetTransfersOrder\"},{\"id\":260,\"kind\":8,\"name\":\"NftTokenType\",\"url\":\"enums/NftTokenType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":261,\"kind\":16,\"name\":\"ERC721\",\"url\":\"enums/NftTokenType.html#ERC721\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftTokenType\"},{\"id\":262,\"kind\":16,\"name\":\"ERC1155\",\"url\":\"enums/NftTokenType.html#ERC1155\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftTokenType\"},{\"id\":263,\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/NftTokenType.html#UNKNOWN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftTokenType\"},{\"id\":264,\"kind\":256,\"name\":\"AssetTransfersResponse\",\"url\":\"interfaces/AssetTransfersResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":265,\"kind\":1024,\"name\":\"transfers\",\"url\":\"interfaces/AssetTransfersResponse.html#transfers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResponse\"},{\"id\":266,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AssetTransfersResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResponse\"},{\"id\":267,\"kind\":256,\"name\":\"AssetTransfersWithMetadataResponse\",\"url\":\"interfaces/AssetTransfersWithMetadataResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":268,\"kind\":1024,\"name\":\"transfers\",\"url\":\"interfaces/AssetTransfersWithMetadataResponse.html#transfers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersWithMetadataResponse\"},{\"id\":269,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AssetTransfersWithMetadataResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersWithMetadataResponse\"},{\"id\":270,\"kind\":256,\"name\":\"AssetTransfersResult\",\"url\":\"interfaces/AssetTransfersResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":271,\"kind\":1024,\"name\":\"uniqueId\",\"url\":\"interfaces/AssetTransfersResult.html#uniqueId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":272,\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/AssetTransfersResult.html#category\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":273,\"kind\":1024,\"name\":\"blockNum\",\"url\":\"interfaces/AssetTransfersResult.html#blockNum\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":274,\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/AssetTransfersResult.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":275,\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/AssetTransfersResult.html#to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":276,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/AssetTransfersResult.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":277,\"kind\":1024,\"name\":\"erc721TokenId\",\"url\":\"interfaces/AssetTransfersResult.html#erc721TokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":278,\"kind\":1024,\"name\":\"erc1155Metadata\",\"url\":\"interfaces/AssetTransfersResult.html#erc1155Metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":279,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/AssetTransfersResult.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":280,\"kind\":1024,\"name\":\"asset\",\"url\":\"interfaces/AssetTransfersResult.html#asset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":281,\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/AssetTransfersResult.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":282,\"kind\":1024,\"name\":\"rawContract\",\"url\":\"interfaces/AssetTransfersResult.html#rawContract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersResult\"},{\"id\":283,\"kind\":256,\"name\":\"AssetTransfersWithMetadataResult\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":284,\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":285,\"kind\":1024,\"name\":\"uniqueId\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#uniqueId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":286,\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#category\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":287,\"kind\":1024,\"name\":\"blockNum\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#blockNum\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":288,\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":289,\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":290,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":291,\"kind\":1024,\"name\":\"erc721TokenId\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#erc721TokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":292,\"kind\":1024,\"name\":\"erc1155Metadata\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#erc1155Metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":293,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":294,\"kind\":1024,\"name\":\"asset\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#asset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":295,\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":296,\"kind\":1024,\"name\":\"rawContract\",\"url\":\"interfaces/AssetTransfersWithMetadataResult.html#rawContract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AssetTransfersWithMetadataResult\"},{\"id\":297,\"kind\":256,\"name\":\"AssetTransfersMetadata\",\"url\":\"interfaces/AssetTransfersMetadata.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":298,\"kind\":1024,\"name\":\"blockTimestamp\",\"url\":\"interfaces/AssetTransfersMetadata.html#blockTimestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AssetTransfersMetadata\"},{\"id\":299,\"kind\":256,\"name\":\"NftMetadata\",\"url\":\"interfaces/NftMetadata.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":300,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/NftMetadata.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":301,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/NftMetadata.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":302,\"kind\":1024,\"name\":\"image\",\"url\":\"interfaces/NftMetadata.html#image\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":303,\"kind\":1024,\"name\":\"external_url\",\"url\":\"interfaces/NftMetadata.html#external_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":304,\"kind\":1024,\"name\":\"background_color\",\"url\":\"interfaces/NftMetadata.html#background_color\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":305,\"kind\":1024,\"name\":\"attributes\",\"url\":\"interfaces/NftMetadata.html#attributes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadata\"},{\"id\":306,\"kind\":256,\"name\":\"TokenUri\",\"url\":\"interfaces/TokenUri.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":307,\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/TokenUri.html#raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenUri\"},{\"id\":308,\"kind\":1024,\"name\":\"gateway\",\"url\":\"interfaces/TokenUri.html#gateway\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TokenUri\"},{\"id\":309,\"kind\":256,\"name\":\"Media\",\"url\":\"interfaces/Media.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":310,\"kind\":1024,\"name\":\"raw\",\"url\":\"interfaces/Media.html#raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":311,\"kind\":1024,\"name\":\"gateway\",\"url\":\"interfaces/Media.html#gateway\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":312,\"kind\":1024,\"name\":\"thumbnail\",\"url\":\"interfaces/Media.html#thumbnail\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":313,\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/Media.html#format\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":314,\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/Media.html#size\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":315,\"kind\":1024,\"name\":\"bytes\",\"url\":\"interfaces/Media.html#bytes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Media\"},{\"id\":316,\"kind\":8,\"name\":\"NftSpamClassification\",\"url\":\"enums/NftSpamClassification.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":317,\"kind\":16,\"name\":\"Erc721TooManyOwners\",\"url\":\"enums/NftSpamClassification.html#Erc721TooManyOwners\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":318,\"kind\":16,\"name\":\"Erc721TooManyTokens\",\"url\":\"enums/NftSpamClassification.html#Erc721TooManyTokens\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":319,\"kind\":16,\"name\":\"Erc721DishonestTotalSupply\",\"url\":\"enums/NftSpamClassification.html#Erc721DishonestTotalSupply\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":320,\"kind\":16,\"name\":\"MostlyHoneyPotOwners\",\"url\":\"enums/NftSpamClassification.html#MostlyHoneyPotOwners\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":321,\"kind\":16,\"name\":\"OwnedByMostHoneyPots\",\"url\":\"enums/NftSpamClassification.html#OwnedByMostHoneyPots\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSpamClassification\"},{\"id\":322,\"kind\":256,\"name\":\"SpamInfo\",\"url\":\"interfaces/SpamInfo.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":323,\"kind\":1024,\"name\":\"isSpam\",\"url\":\"interfaces/SpamInfo.html#isSpam\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SpamInfo\"},{\"id\":324,\"kind\":1024,\"name\":\"classifications\",\"url\":\"interfaces/SpamInfo.html#classifications\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SpamInfo\"},{\"id\":325,\"kind\":256,\"name\":\"GetNftsForOwnerOptions\",\"url\":\"interfaces/GetNftsForOwnerOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":326,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":327,\"kind\":1024,\"name\":\"contractAddresses\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#contractAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":328,\"kind\":1024,\"name\":\"excludeFilters\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#excludeFilters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":329,\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#pageSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":330,\"kind\":1024,\"name\":\"omitMetadata\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#omitMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":331,\"kind\":1024,\"name\":\"tokenUriTimeoutInMs\",\"url\":\"interfaces/GetNftsForOwnerOptions.html#tokenUriTimeoutInMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForOwnerOptions\"},{\"id\":332,\"kind\":256,\"name\":\"GetBaseNftsForOwnerOptions\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":333,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":334,\"kind\":1024,\"name\":\"contractAddresses\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#contractAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":335,\"kind\":1024,\"name\":\"excludeFilters\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#excludeFilters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":336,\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#pageSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":337,\"kind\":1024,\"name\":\"omitMetadata\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#omitMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":338,\"kind\":1024,\"name\":\"tokenUriTimeoutInMs\",\"url\":\"interfaces/GetBaseNftsForOwnerOptions.html#tokenUriTimeoutInMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForOwnerOptions\"},{\"id\":339,\"kind\":8,\"name\":\"NftExcludeFilters\",\"url\":\"enums/NftExcludeFilters.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":340,\"kind\":16,\"name\":\"SPAM\",\"url\":\"enums/NftExcludeFilters.html#SPAM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftExcludeFilters\"},{\"id\":341,\"kind\":16,\"name\":\"AIRDROPS\",\"url\":\"enums/NftExcludeFilters.html#AIRDROPS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftExcludeFilters\"},{\"id\":342,\"kind\":256,\"name\":\"OwnedNftsResponse\",\"url\":\"interfaces/OwnedNftsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":343,\"kind\":1024,\"name\":\"ownedNfts\",\"url\":\"interfaces/OwnedNftsResponse.html#ownedNfts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedNftsResponse\"},{\"id\":344,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/OwnedNftsResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedNftsResponse\"},{\"id\":345,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/OwnedNftsResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedNftsResponse\"},{\"id\":346,\"kind\":256,\"name\":\"OwnedBaseNftsResponse\",\"url\":\"interfaces/OwnedBaseNftsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":347,\"kind\":1024,\"name\":\"ownedNfts\",\"url\":\"interfaces/OwnedBaseNftsResponse.html#ownedNfts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedBaseNftsResponse\"},{\"id\":348,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/OwnedBaseNftsResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedBaseNftsResponse\"},{\"id\":349,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/OwnedBaseNftsResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedBaseNftsResponse\"},{\"id\":350,\"kind\":256,\"name\":\"OwnedNft\",\"url\":\"interfaces/OwnedNft.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":351,\"kind\":1024,\"name\":\"balance\",\"url\":\"interfaces/OwnedNft.html#balance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedNft\"},{\"id\":352,\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/OwnedNft.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":353,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/OwnedNft.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":354,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/OwnedNft.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":355,\"kind\":1024,\"name\":\"timeLastUpdated\",\"url\":\"interfaces/OwnedNft.html#timeLastUpdated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":356,\"kind\":1024,\"name\":\"metadataError\",\"url\":\"interfaces/OwnedNft.html#metadataError\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":357,\"kind\":1024,\"name\":\"rawMetadata\",\"url\":\"interfaces/OwnedNft.html#rawMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":358,\"kind\":1024,\"name\":\"tokenUri\",\"url\":\"interfaces/OwnedNft.html#tokenUri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":359,\"kind\":1024,\"name\":\"media\",\"url\":\"interfaces/OwnedNft.html#media\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":360,\"kind\":1024,\"name\":\"spamInfo\",\"url\":\"interfaces/OwnedNft.html#spamInfo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":361,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/OwnedNft.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":362,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/OwnedNft.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedNft\"},{\"id\":363,\"kind\":256,\"name\":\"OwnedBaseNft\",\"url\":\"interfaces/OwnedBaseNft.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":364,\"kind\":1024,\"name\":\"balance\",\"url\":\"interfaces/OwnedBaseNft.html#balance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OwnedBaseNft\"},{\"id\":365,\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/OwnedBaseNft.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedBaseNft\"},{\"id\":366,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/OwnedBaseNft.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedBaseNft\"},{\"id\":367,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/OwnedBaseNft.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OwnedBaseNft\"},{\"id\":368,\"kind\":256,\"name\":\"GetOwnersForNftResponse\",\"url\":\"interfaces/GetOwnersForNftResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":369,\"kind\":1024,\"name\":\"owners\",\"url\":\"interfaces/GetOwnersForNftResponse.html#owners\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForNftResponse\"},{\"id\":370,\"kind\":256,\"name\":\"GetOwnersForContractResponse\",\"url\":\"interfaces/GetOwnersForContractResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":371,\"kind\":1024,\"name\":\"owners\",\"url\":\"interfaces/GetOwnersForContractResponse.html#owners\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractResponse\"},{\"id\":372,\"kind\":256,\"name\":\"GetOwnersForContractWithTokenBalancesResponse\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":373,\"kind\":1024,\"name\":\"owners\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesResponse.html#owners\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesResponse\"},{\"id\":374,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesResponse\"},{\"id\":375,\"kind\":256,\"name\":\"NftContractOwner\",\"url\":\"interfaces/NftContractOwner.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":376,\"kind\":1024,\"name\":\"ownerAddress\",\"url\":\"interfaces/NftContractOwner.html#ownerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractOwner\"},{\"id\":377,\"kind\":1024,\"name\":\"tokenBalances\",\"url\":\"interfaces/NftContractOwner.html#tokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractOwner\"},{\"id\":378,\"kind\":256,\"name\":\"NftContractTokenBalance\",\"url\":\"interfaces/NftContractTokenBalance.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":379,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/NftContractTokenBalance.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractTokenBalance\"},{\"id\":380,\"kind\":1024,\"name\":\"balance\",\"url\":\"interfaces/NftContractTokenBalance.html#balance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractTokenBalance\"},{\"id\":381,\"kind\":256,\"name\":\"NftMetadataBatchToken\",\"url\":\"interfaces/NftMetadataBatchToken.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":382,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/NftMetadataBatchToken.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadataBatchToken\"},{\"id\":383,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/NftMetadataBatchToken.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadataBatchToken\"},{\"id\":384,\"kind\":1024,\"name\":\"tokenType\",\"url\":\"interfaces/NftMetadataBatchToken.html#tokenType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadataBatchToken\"},{\"id\":385,\"kind\":256,\"name\":\"NftMetadataBatchOptions\",\"url\":\"interfaces/NftMetadataBatchOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":386,\"kind\":1024,\"name\":\"tokenUriTimeoutInMs\",\"url\":\"interfaces/NftMetadataBatchOptions.html#tokenUriTimeoutInMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadataBatchOptions\"},{\"id\":387,\"kind\":1024,\"name\":\"refreshCache\",\"url\":\"interfaces/NftMetadataBatchOptions.html#refreshCache\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftMetadataBatchOptions\"},{\"id\":388,\"kind\":256,\"name\":\"FloorPriceMarketplace\",\"url\":\"interfaces/FloorPriceMarketplace.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":389,\"kind\":1024,\"name\":\"floorPrice\",\"url\":\"interfaces/FloorPriceMarketplace.html#floorPrice\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceMarketplace\"},{\"id\":390,\"kind\":1024,\"name\":\"priceCurrency\",\"url\":\"interfaces/FloorPriceMarketplace.html#priceCurrency\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceMarketplace\"},{\"id\":391,\"kind\":1024,\"name\":\"collectionUrl\",\"url\":\"interfaces/FloorPriceMarketplace.html#collectionUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceMarketplace\"},{\"id\":392,\"kind\":1024,\"name\":\"retrievedAt\",\"url\":\"interfaces/FloorPriceMarketplace.html#retrievedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceMarketplace\"},{\"id\":393,\"kind\":256,\"name\":\"FloorPriceError\",\"url\":\"interfaces/FloorPriceError.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":394,\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/FloorPriceError.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloorPriceError\"},{\"id\":395,\"kind\":256,\"name\":\"GetFloorPriceResponse\",\"url\":\"interfaces/GetFloorPriceResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":396,\"kind\":1024,\"name\":\"openSea\",\"url\":\"interfaces/GetFloorPriceResponse.html#openSea\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetFloorPriceResponse\"},{\"id\":397,\"kind\":1024,\"name\":\"looksRare\",\"url\":\"interfaces/GetFloorPriceResponse.html#looksRare\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetFloorPriceResponse\"},{\"id\":398,\"kind\":256,\"name\":\"GetNftSalesOptions\",\"url\":\"interfaces/GetNftSalesOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":399,\"kind\":1024,\"name\":\"fromBlock\",\"url\":\"interfaces/GetNftSalesOptions.html#fromBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptions\"},{\"id\":400,\"kind\":1024,\"name\":\"toBlock\",\"url\":\"interfaces/GetNftSalesOptions.html#toBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptions\"},{\"id\":401,\"kind\":1024,\"name\":\"order\",\"url\":\"interfaces/GetNftSalesOptions.html#order\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptions\"},{\"id\":402,\"kind\":1024,\"name\":\"marketplace\",\"url\":\"interfaces/GetNftSalesOptions.html#marketplace\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptions\"},{\"id\":403,\"kind\":1024,\"name\":\"buyerAddress\",\"url\":\"interfaces/GetNftSalesOptions.html#buyerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptions\"},{\"id\":404,\"kind\":1024,\"name\":\"sellerAddress\",\"url\":\"interfaces/GetNftSalesOptions.html#sellerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptions\"},{\"id\":405,\"kind\":1024,\"name\":\"taker\",\"url\":\"interfaces/GetNftSalesOptions.html#taker\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptions\"},{\"id\":406,\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/GetNftSalesOptions.html#limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptions\"},{\"id\":407,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetNftSalesOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptions\"},{\"id\":408,\"kind\":256,\"name\":\"GetNftSalesOptionsByContractAddress\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":409,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":410,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":411,\"kind\":1024,\"name\":\"fromBlock\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#fromBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":412,\"kind\":1024,\"name\":\"toBlock\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#toBlock\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":413,\"kind\":1024,\"name\":\"order\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#order\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":414,\"kind\":1024,\"name\":\"marketplace\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#marketplace\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":415,\"kind\":1024,\"name\":\"buyerAddress\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#buyerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":416,\"kind\":1024,\"name\":\"sellerAddress\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#sellerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":417,\"kind\":1024,\"name\":\"taker\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#taker\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":418,\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":419,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetNftSalesOptionsByContractAddress.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GetNftSalesOptionsByContractAddress\"},{\"id\":420,\"kind\":256,\"name\":\"GetNftSalesResponse\",\"url\":\"interfaces/GetNftSalesResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":421,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetNftSalesResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesResponse\"},{\"id\":422,\"kind\":1024,\"name\":\"nftSales\",\"url\":\"interfaces/GetNftSalesResponse.html#nftSales\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftSalesResponse\"},{\"id\":423,\"kind\":256,\"name\":\"NftSale\",\"url\":\"interfaces/NftSale.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":424,\"kind\":1024,\"name\":\"marketplace\",\"url\":\"interfaces/NftSale.html#marketplace\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":425,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/NftSale.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":426,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/NftSale.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":427,\"kind\":1024,\"name\":\"quantity\",\"url\":\"interfaces/NftSale.html#quantity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":428,\"kind\":1024,\"name\":\"buyerAddress\",\"url\":\"interfaces/NftSale.html#buyerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":429,\"kind\":1024,\"name\":\"sellerAddress\",\"url\":\"interfaces/NftSale.html#sellerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":430,\"kind\":1024,\"name\":\"taker\",\"url\":\"interfaces/NftSale.html#taker\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":431,\"kind\":1024,\"name\":\"sellerFee\",\"url\":\"interfaces/NftSale.html#sellerFee\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":432,\"kind\":1024,\"name\":\"marketplaceFee\",\"url\":\"interfaces/NftSale.html#marketplaceFee\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":433,\"kind\":1024,\"name\":\"royaltyFee\",\"url\":\"interfaces/NftSale.html#royaltyFee\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":434,\"kind\":1024,\"name\":\"blockNumber\",\"url\":\"interfaces/NftSale.html#blockNumber\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":435,\"kind\":1024,\"name\":\"logIndex\",\"url\":\"interfaces/NftSale.html#logIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":436,\"kind\":1024,\"name\":\"bundleIndex\",\"url\":\"interfaces/NftSale.html#bundleIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":437,\"kind\":1024,\"name\":\"transactionHash\",\"url\":\"interfaces/NftSale.html#transactionHash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSale\"},{\"id\":438,\"kind\":256,\"name\":\"NftSaleFeeData\",\"url\":\"interfaces/NftSaleFeeData.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":439,\"kind\":1024,\"name\":\"amount\",\"url\":\"interfaces/NftSaleFeeData.html#amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSaleFeeData\"},{\"id\":440,\"kind\":1024,\"name\":\"symbol\",\"url\":\"interfaces/NftSaleFeeData.html#symbol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSaleFeeData\"},{\"id\":441,\"kind\":1024,\"name\":\"decimal\",\"url\":\"interfaces/NftSaleFeeData.html#decimal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftSaleFeeData\"},{\"id\":442,\"kind\":8,\"name\":\"SortingOrder\",\"url\":\"enums/SortingOrder.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":443,\"kind\":16,\"name\":\"ASCENDING\",\"url\":\"enums/SortingOrder.html#ASCENDING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SortingOrder\"},{\"id\":444,\"kind\":16,\"name\":\"DESCENDING\",\"url\":\"enums/SortingOrder.html#DESCENDING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SortingOrder\"},{\"id\":445,\"kind\":8,\"name\":\"NftSaleMarketplace\",\"url\":\"enums/NftSaleMarketplace.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":446,\"kind\":16,\"name\":\"SEAPORT\",\"url\":\"enums/NftSaleMarketplace.html#SEAPORT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSaleMarketplace\"},{\"id\":447,\"kind\":16,\"name\":\"LOOKSRARE\",\"url\":\"enums/NftSaleMarketplace.html#LOOKSRARE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSaleMarketplace\"},{\"id\":448,\"kind\":16,\"name\":\"X2Y2\",\"url\":\"enums/NftSaleMarketplace.html#X2Y2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSaleMarketplace\"},{\"id\":449,\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/NftSaleMarketplace.html#UNKNOWN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSaleMarketplace\"},{\"id\":450,\"kind\":8,\"name\":\"NftSaleTakerType\",\"url\":\"enums/NftSaleTakerType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":451,\"kind\":16,\"name\":\"BUYER\",\"url\":\"enums/NftSaleTakerType.html#BUYER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSaleTakerType\"},{\"id\":452,\"kind\":16,\"name\":\"SELLER\",\"url\":\"enums/NftSaleTakerType.html#SELLER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"NftSaleTakerType\"},{\"id\":453,\"kind\":256,\"name\":\"NftAttributeRarity\",\"url\":\"interfaces/NftAttributeRarity.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":454,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/NftAttributeRarity.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributeRarity\"},{\"id\":455,\"kind\":1024,\"name\":\"traitType\",\"url\":\"interfaces/NftAttributeRarity.html#traitType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributeRarity\"},{\"id\":456,\"kind\":1024,\"name\":\"prevalence\",\"url\":\"interfaces/NftAttributeRarity.html#prevalence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributeRarity\"},{\"id\":457,\"kind\":256,\"name\":\"NftAttributesResponse\",\"url\":\"interfaces/NftAttributesResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":458,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/NftAttributesResponse.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributesResponse\"},{\"id\":459,\"kind\":1024,\"name\":\"totalSupply\",\"url\":\"interfaces/NftAttributesResponse.html#totalSupply\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributesResponse\"},{\"id\":460,\"kind\":1024,\"name\":\"summary\",\"url\":\"interfaces/NftAttributesResponse.html#summary\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftAttributesResponse\"},{\"id\":461,\"kind\":256,\"name\":\"RefreshContractResult\",\"url\":\"interfaces/RefreshContractResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":462,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/RefreshContractResult.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RefreshContractResult\"},{\"id\":463,\"kind\":1024,\"name\":\"refreshState\",\"url\":\"interfaces/RefreshContractResult.html#refreshState\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RefreshContractResult\"},{\"id\":464,\"kind\":1024,\"name\":\"progress\",\"url\":\"interfaces/RefreshContractResult.html#progress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RefreshContractResult\"},{\"id\":465,\"kind\":8,\"name\":\"RefreshState\",\"url\":\"enums/RefreshState.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":466,\"kind\":16,\"name\":\"DOES_NOT_EXIST\",\"url\":\"enums/RefreshState.html#DOES_NOT_EXIST\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":467,\"kind\":16,\"name\":\"ALREADY_QUEUED\",\"url\":\"enums/RefreshState.html#ALREADY_QUEUED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":468,\"kind\":16,\"name\":\"IN_PROGRESS\",\"url\":\"enums/RefreshState.html#IN_PROGRESS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":469,\"kind\":16,\"name\":\"FINISHED\",\"url\":\"enums/RefreshState.html#FINISHED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":470,\"kind\":16,\"name\":\"QUEUED\",\"url\":\"enums/RefreshState.html#QUEUED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":471,\"kind\":16,\"name\":\"QUEUE_FAILED\",\"url\":\"enums/RefreshState.html#QUEUE_FAILED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"RefreshState\"},{\"id\":472,\"kind\":256,\"name\":\"TransactionReceiptsBlockNumber\",\"url\":\"interfaces/TransactionReceiptsBlockNumber.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":473,\"kind\":1024,\"name\":\"blockNumber\",\"url\":\"interfaces/TransactionReceiptsBlockNumber.html#blockNumber\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TransactionReceiptsBlockNumber\"},{\"id\":474,\"kind\":256,\"name\":\"TransactionReceiptsBlockHash\",\"url\":\"interfaces/TransactionReceiptsBlockHash.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":475,\"kind\":1024,\"name\":\"blockHash\",\"url\":\"interfaces/TransactionReceiptsBlockHash.html#blockHash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TransactionReceiptsBlockHash\"},{\"id\":476,\"kind\":4194304,\"name\":\"TransactionReceiptsParams\",\"url\":\"modules.html#TransactionReceiptsParams\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":477,\"kind\":256,\"name\":\"TransactionReceiptsResponse\",\"url\":\"interfaces/TransactionReceiptsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":478,\"kind\":1024,\"name\":\"receipts\",\"url\":\"interfaces/TransactionReceiptsResponse.html#receipts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TransactionReceiptsResponse\"},{\"id\":479,\"kind\":256,\"name\":\"ERC1155Metadata\",\"url\":\"interfaces/ERC1155Metadata.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":480,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/ERC1155Metadata.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ERC1155Metadata\"},{\"id\":481,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ERC1155Metadata.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ERC1155Metadata\"},{\"id\":482,\"kind\":256,\"name\":\"RawContract\",\"url\":\"interfaces/RawContract.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":483,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/RawContract.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RawContract\"},{\"id\":484,\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/RawContract.html#address\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RawContract\"},{\"id\":485,\"kind\":1024,\"name\":\"decimal\",\"url\":\"interfaces/RawContract.html#decimal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"RawContract\"},{\"id\":486,\"kind\":256,\"name\":\"GetNftsForContractOptions\",\"url\":\"interfaces/GetNftsForContractOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":487,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetNftsForContractOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForContractOptions\"},{\"id\":488,\"kind\":1024,\"name\":\"omitMetadata\",\"url\":\"interfaces/GetNftsForContractOptions.html#omitMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForContractOptions\"},{\"id\":489,\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/GetNftsForContractOptions.html#pageSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForContractOptions\"},{\"id\":490,\"kind\":1024,\"name\":\"tokenUriTimeoutInMs\",\"url\":\"interfaces/GetNftsForContractOptions.html#tokenUriTimeoutInMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetNftsForContractOptions\"},{\"id\":491,\"kind\":256,\"name\":\"GetBaseNftsForContractOptions\",\"url\":\"interfaces/GetBaseNftsForContractOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":492,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetBaseNftsForContractOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForContractOptions\"},{\"id\":493,\"kind\":1024,\"name\":\"omitMetadata\",\"url\":\"interfaces/GetBaseNftsForContractOptions.html#omitMetadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForContractOptions\"},{\"id\":494,\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/GetBaseNftsForContractOptions.html#pageSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetBaseNftsForContractOptions\"},{\"id\":495,\"kind\":256,\"name\":\"GetOwnersForContractOptions\",\"url\":\"interfaces/GetOwnersForContractOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":496,\"kind\":1024,\"name\":\"withTokenBalances\",\"url\":\"interfaces/GetOwnersForContractOptions.html#withTokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractOptions\"},{\"id\":497,\"kind\":1024,\"name\":\"block\",\"url\":\"interfaces/GetOwnersForContractOptions.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractOptions\"},{\"id\":498,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetOwnersForContractOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractOptions\"},{\"id\":499,\"kind\":256,\"name\":\"GetOwnersForContractWithTokenBalancesOptions\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":500,\"kind\":1024,\"name\":\"withTokenBalances\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesOptions.html#withTokenBalances\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesOptions\"},{\"id\":501,\"kind\":1024,\"name\":\"block\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesOptions.html#block\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesOptions\"},{\"id\":502,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetOwnersForContractWithTokenBalancesOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetOwnersForContractWithTokenBalancesOptions\"},{\"id\":503,\"kind\":256,\"name\":\"NftContractBaseNftsResponse\",\"url\":\"interfaces/NftContractBaseNftsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":504,\"kind\":1024,\"name\":\"nfts\",\"url\":\"interfaces/NftContractBaseNftsResponse.html#nfts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractBaseNftsResponse\"},{\"id\":505,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/NftContractBaseNftsResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractBaseNftsResponse\"},{\"id\":506,\"kind\":256,\"name\":\"NftContractNftsResponse\",\"url\":\"interfaces/NftContractNftsResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":507,\"kind\":1024,\"name\":\"nfts\",\"url\":\"interfaces/NftContractNftsResponse.html#nfts\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractNftsResponse\"},{\"id\":508,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/NftContractNftsResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftContractNftsResponse\"},{\"id\":509,\"kind\":256,\"name\":\"OpenSeaCollectionMetadata\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":510,\"kind\":1024,\"name\":\"floorPrice\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#floorPrice\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":511,\"kind\":1024,\"name\":\"collectionName\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#collectionName\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":512,\"kind\":1024,\"name\":\"safelistRequestStatus\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#safelistRequestStatus\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":513,\"kind\":1024,\"name\":\"imageUrl\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#imageUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":514,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":515,\"kind\":1024,\"name\":\"externalUrl\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#externalUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":516,\"kind\":1024,\"name\":\"twitterUsername\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#twitterUsername\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":517,\"kind\":1024,\"name\":\"discordUrl\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#discordUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":518,\"kind\":1024,\"name\":\"lastIngestedAt\",\"url\":\"interfaces/OpenSeaCollectionMetadata.html#lastIngestedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OpenSeaCollectionMetadata\"},{\"id\":519,\"kind\":8,\"name\":\"OpenSeaSafelistRequestStatus\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":520,\"kind\":16,\"name\":\"VERIFIED\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html#VERIFIED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"OpenSeaSafelistRequestStatus\"},{\"id\":521,\"kind\":16,\"name\":\"APPROVED\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html#APPROVED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"OpenSeaSafelistRequestStatus\"},{\"id\":522,\"kind\":16,\"name\":\"REQUESTED\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html#REQUESTED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"OpenSeaSafelistRequestStatus\"},{\"id\":523,\"kind\":16,\"name\":\"NOT_REQUESTED\",\"url\":\"enums/OpenSeaSafelistRequestStatus.html#NOT_REQUESTED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"OpenSeaSafelistRequestStatus\"},{\"id\":524,\"kind\":256,\"name\":\"DeployResult\",\"url\":\"interfaces/DeployResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":525,\"kind\":1024,\"name\":\"deployerAddress\",\"url\":\"interfaces/DeployResult.html#deployerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DeployResult\"},{\"id\":526,\"kind\":1024,\"name\":\"blockNumber\",\"url\":\"interfaces/DeployResult.html#blockNumber\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DeployResult\"},{\"id\":527,\"kind\":8,\"name\":\"AlchemySubscription\",\"url\":\"enums/AlchemySubscription.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":528,\"kind\":16,\"name\":\"PENDING_TRANSACTIONS\",\"url\":\"enums/AlchemySubscription.html#PENDING_TRANSACTIONS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AlchemySubscription\"},{\"id\":529,\"kind\":16,\"name\":\"MINED_TRANSACTIONS\",\"url\":\"enums/AlchemySubscription.html#MINED_TRANSACTIONS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AlchemySubscription\"},{\"id\":530,\"kind\":256,\"name\":\"AlchemyPendingTransactionsEventFilter\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":531,\"kind\":1024,\"name\":\"method\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html#method\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyPendingTransactionsEventFilter\"},{\"id\":532,\"kind\":1024,\"name\":\"fromAddress\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html#fromAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyPendingTransactionsEventFilter\"},{\"id\":533,\"kind\":1024,\"name\":\"toAddress\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html#toAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyPendingTransactionsEventFilter\"},{\"id\":534,\"kind\":1024,\"name\":\"hashesOnly\",\"url\":\"interfaces/AlchemyPendingTransactionsEventFilter.html#hashesOnly\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyPendingTransactionsEventFilter\"},{\"id\":535,\"kind\":256,\"name\":\"AlchemyMinedTransactionsEventFilter\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":536,\"kind\":1024,\"name\":\"method\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html#method\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyMinedTransactionsEventFilter\"},{\"id\":537,\"kind\":1024,\"name\":\"addresses\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html#addresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyMinedTransactionsEventFilter\"},{\"id\":538,\"kind\":1024,\"name\":\"includeRemoved\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html#includeRemoved\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyMinedTransactionsEventFilter\"},{\"id\":539,\"kind\":1024,\"name\":\"hashesOnly\",\"url\":\"interfaces/AlchemyMinedTransactionsEventFilter.html#hashesOnly\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AlchemyMinedTransactionsEventFilter\"},{\"id\":540,\"kind\":4194304,\"name\":\"AlchemyMinedTransactionsAddress\",\"url\":\"modules.html#AlchemyMinedTransactionsAddress\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":541,\"kind\":4194304,\"name\":\"AlchemyEventType\",\"url\":\"modules.html#AlchemyEventType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":542,\"kind\":4194304,\"name\":\"AlchemyEventFilter\",\"url\":\"modules.html#AlchemyEventFilter\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":543,\"kind\":256,\"name\":\"SendPrivateTransactionOptions\",\"url\":\"interfaces/SendPrivateTransactionOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":544,\"kind\":1024,\"name\":\"fast\",\"url\":\"interfaces/SendPrivateTransactionOptions.html#fast\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SendPrivateTransactionOptions\"},{\"id\":545,\"kind\":256,\"name\":\"Webhook\",\"url\":\"interfaces/Webhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":546,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/Webhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":547,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/Webhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":548,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Webhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":549,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/Webhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":550,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/Webhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":551,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/Webhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":552,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/Webhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":553,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/Webhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":554,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/Webhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Webhook\"},{\"id\":555,\"kind\":8,\"name\":\"WebhookVersion\",\"url\":\"enums/WebhookVersion.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":556,\"kind\":16,\"name\":\"V1\",\"url\":\"enums/WebhookVersion.html#V1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookVersion\"},{\"id\":557,\"kind\":16,\"name\":\"V2\",\"url\":\"enums/WebhookVersion.html#V2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookVersion\"},{\"id\":558,\"kind\":8,\"name\":\"WebhookType\",\"url\":\"enums/WebhookType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":559,\"kind\":16,\"name\":\"MINED_TRANSACTION\",\"url\":\"enums/WebhookType.html#MINED_TRANSACTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookType\"},{\"id\":560,\"kind\":16,\"name\":\"DROPPED_TRANSACTION\",\"url\":\"enums/WebhookType.html#DROPPED_TRANSACTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookType\"},{\"id\":561,\"kind\":16,\"name\":\"ADDRESS_ACTIVITY\",\"url\":\"enums/WebhookType.html#ADDRESS_ACTIVITY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookType\"},{\"id\":562,\"kind\":16,\"name\":\"NFT_ACTIVITY\",\"url\":\"enums/WebhookType.html#NFT_ACTIVITY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WebhookType\"},{\"id\":563,\"kind\":256,\"name\":\"MinedTransactionWebhook\",\"url\":\"interfaces/MinedTransactionWebhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":564,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/MinedTransactionWebhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":565,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/MinedTransactionWebhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":566,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/MinedTransactionWebhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":567,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/MinedTransactionWebhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":568,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/MinedTransactionWebhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":569,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/MinedTransactionWebhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":570,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/MinedTransactionWebhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":571,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/MinedTransactionWebhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":572,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/MinedTransactionWebhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"MinedTransactionWebhook\"},{\"id\":573,\"kind\":256,\"name\":\"DroppedTransactionWebhook\",\"url\":\"interfaces/DroppedTransactionWebhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":574,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/DroppedTransactionWebhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":575,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/DroppedTransactionWebhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":576,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/DroppedTransactionWebhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":577,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/DroppedTransactionWebhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":578,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/DroppedTransactionWebhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":579,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/DroppedTransactionWebhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":580,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/DroppedTransactionWebhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":581,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/DroppedTransactionWebhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":582,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/DroppedTransactionWebhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"DroppedTransactionWebhook\"},{\"id\":583,\"kind\":256,\"name\":\"AddressActivityWebhook\",\"url\":\"interfaces/AddressActivityWebhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":584,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/AddressActivityWebhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"AddressActivityWebhook\"},{\"id\":585,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/AddressActivityWebhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":586,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/AddressActivityWebhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":587,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/AddressActivityWebhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":588,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/AddressActivityWebhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":589,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/AddressActivityWebhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":590,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/AddressActivityWebhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":591,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/AddressActivityWebhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":592,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/AddressActivityWebhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"AddressActivityWebhook\"},{\"id\":593,\"kind\":256,\"name\":\"NftActivityWebhook\",\"url\":\"interfaces/NftActivityWebhook.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":594,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/NftActivityWebhook.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"NftActivityWebhook\"},{\"id\":595,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/NftActivityWebhook.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":596,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/NftActivityWebhook.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":597,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/NftActivityWebhook.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":598,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/NftActivityWebhook.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":599,\"kind\":1024,\"name\":\"timeCreated\",\"url\":\"interfaces/NftActivityWebhook.html#timeCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":600,\"kind\":1024,\"name\":\"signingKey\",\"url\":\"interfaces/NftActivityWebhook.html#signingKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":601,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/NftActivityWebhook.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":602,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/NftActivityWebhook.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"NftActivityWebhook\"},{\"id\":603,\"kind\":256,\"name\":\"GetAllWebhooksResponse\",\"url\":\"interfaces/GetAllWebhooksResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":604,\"kind\":1024,\"name\":\"webhooks\",\"url\":\"interfaces/GetAllWebhooksResponse.html#webhooks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetAllWebhooksResponse\"},{\"id\":605,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/GetAllWebhooksResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetAllWebhooksResponse\"},{\"id\":606,\"kind\":256,\"name\":\"GetAddressesOptions\",\"url\":\"interfaces/GetAddressesOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":607,\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/GetAddressesOptions.html#limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetAddressesOptions\"},{\"id\":608,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/GetAddressesOptions.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GetAddressesOptions\"},{\"id\":609,\"kind\":256,\"name\":\"AddressActivityResponse\",\"url\":\"interfaces/AddressActivityResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":610,\"kind\":1024,\"name\":\"addresses\",\"url\":\"interfaces/AddressActivityResponse.html#addresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressActivityResponse\"},{\"id\":611,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/AddressActivityResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressActivityResponse\"},{\"id\":612,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/AddressActivityResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressActivityResponse\"},{\"id\":613,\"kind\":256,\"name\":\"TransactionWebhookParams\",\"url\":\"interfaces/TransactionWebhookParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":614,\"kind\":1024,\"name\":\"appId\",\"url\":\"interfaces/TransactionWebhookParams.html#appId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"TransactionWebhookParams\"},{\"id\":615,\"kind\":256,\"name\":\"NftWebhookParams\",\"url\":\"interfaces/NftWebhookParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":616,\"kind\":1024,\"name\":\"filters\",\"url\":\"interfaces/NftWebhookParams.html#filters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftWebhookParams\"},{\"id\":617,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/NftWebhookParams.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftWebhookParams\"},{\"id\":618,\"kind\":256,\"name\":\"AddressWebhookParams\",\"url\":\"interfaces/AddressWebhookParams.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":619,\"kind\":1024,\"name\":\"addresses\",\"url\":\"interfaces/AddressWebhookParams.html#addresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressWebhookParams\"},{\"id\":620,\"kind\":1024,\"name\":\"network\",\"url\":\"interfaces/AddressWebhookParams.html#network\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AddressWebhookParams\"},{\"id\":621,\"kind\":256,\"name\":\"NftFilter\",\"url\":\"interfaces/NftFilter.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":622,\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"interfaces/NftFilter.html#contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFilter\"},{\"id\":623,\"kind\":1024,\"name\":\"tokenId\",\"url\":\"interfaces/NftFilter.html#tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFilter\"},{\"id\":624,\"kind\":256,\"name\":\"NftFiltersResponse\",\"url\":\"interfaces/NftFiltersResponse.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":625,\"kind\":1024,\"name\":\"filters\",\"url\":\"interfaces/NftFiltersResponse.html#filters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFiltersResponse\"},{\"id\":626,\"kind\":1024,\"name\":\"totalCount\",\"url\":\"interfaces/NftFiltersResponse.html#totalCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFiltersResponse\"},{\"id\":627,\"kind\":1024,\"name\":\"pageKey\",\"url\":\"interfaces/NftFiltersResponse.html#pageKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NftFiltersResponse\"},{\"id\":628,\"kind\":256,\"name\":\"WebhookStatusUpdate\",\"url\":\"interfaces/WebhookStatusUpdate.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":629,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/WebhookStatusUpdate.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookStatusUpdate\"},{\"id\":630,\"kind\":256,\"name\":\"WebhookNftFilterUpdate\",\"url\":\"interfaces/WebhookNftFilterUpdate.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":631,\"kind\":1024,\"name\":\"addFilters\",\"url\":\"interfaces/WebhookNftFilterUpdate.html#addFilters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookNftFilterUpdate\"},{\"id\":632,\"kind\":1024,\"name\":\"removeFilters\",\"url\":\"interfaces/WebhookNftFilterUpdate.html#removeFilters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookNftFilterUpdate\"},{\"id\":633,\"kind\":256,\"name\":\"WebhookAddressUpdate\",\"url\":\"interfaces/WebhookAddressUpdate.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":634,\"kind\":1024,\"name\":\"addAddresses\",\"url\":\"interfaces/WebhookAddressUpdate.html#addAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookAddressUpdate\"},{\"id\":635,\"kind\":1024,\"name\":\"removeAddresses\",\"url\":\"interfaces/WebhookAddressUpdate.html#removeAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookAddressUpdate\"},{\"id\":636,\"kind\":256,\"name\":\"WebhookAddressOverride\",\"url\":\"interfaces/WebhookAddressOverride.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":637,\"kind\":1024,\"name\":\"newAddresses\",\"url\":\"interfaces/WebhookAddressOverride.html#newAddresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WebhookAddressOverride\"},{\"id\":638,\"kind\":4194304,\"name\":\"NftWebhookUpdate\",\"url\":\"modules.html#NftWebhookUpdate\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":639,\"kind\":4194304,\"name\":\"AddressWebhookUpdate\",\"url\":\"modules.html#AddressWebhookUpdate\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":640,\"kind\":4194304,\"name\":\"RequireAtLeastOne\",\"url\":\"modules.html#RequireAtLeastOne\",\"classes\":\"tsd-kind-type-alias tsd-has-type-parameter\"},{\"id\":641,\"kind\":4194304,\"name\":\"NonEmptyArray\",\"url\":\"modules.html#NonEmptyArray\",\"classes\":\"tsd-kind-type-alias tsd-has-type-parameter\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,60.607]],[\"parent/0\",[]],[\"name/1\",[1,43.261]],[\"parent/1\",[]],[\"name/2\",[2,47.614]],[\"parent/2\",[1,3.947]],[\"name/3\",[3,60.607]],[\"parent/3\",[1,3.947]],[\"name/4\",[4,38.635]],[\"parent/4\",[1,3.947]],[\"name/5\",[5,60.607]],[\"parent/5\",[1,3.947]],[\"name/6\",[6,60.607]],[\"parent/6\",[1,3.947]],[\"name/7\",[7,60.607]],[\"parent/7\",[1,3.947]],[\"name/8\",[8,60.607]],[\"parent/8\",[1,3.947]],[\"name/9\",[9,37.253]],[\"parent/9\",[]],[\"name/10\",[2,47.614]],[\"parent/10\",[9,3.399]],[\"name/11\",[10,60.607]],[\"parent/11\",[9,3.399]],[\"name/12\",[11,55.499]],[\"parent/12\",[9,3.399]],[\"name/13\",[12,55.499]],[\"parent/13\",[9,3.399]],[\"name/14\",[13,52.134]],[\"parent/14\",[9,3.399]],[\"name/15\",[14,55.499]],[\"parent/15\",[9,3.399]],[\"name/16\",[15,52.134]],[\"parent/16\",[9,3.399]],[\"name/17\",[16,60.607]],[\"parent/17\",[9,3.399]],[\"name/18\",[17,55.499]],[\"parent/18\",[9,3.399]],[\"name/19\",[18,55.499]],[\"parent/19\",[9,3.399]],[\"name/20\",[19,55.499]],[\"parent/20\",[9,3.399]],[\"name/21\",[20,60.607]],[\"parent/21\",[9,3.399]],[\"name/22\",[21,37.92]],[\"parent/22\",[9,3.399]],[\"name/23\",[21,37.92]],[\"parent/23\",[9,3.399]],[\"name/24\",[22,38.635]],[\"parent/24\",[]],[\"name/25\",[2,47.614]],[\"parent/25\",[22,3.525]],[\"name/26\",[21,37.92]],[\"parent/26\",[22,3.525]],[\"name/27\",[21,37.92]],[\"parent/27\",[22,3.525]],[\"name/28\",[21,37.92]],[\"parent/28\",[22,3.525]],[\"name/29\",[21,37.92]],[\"parent/29\",[22,3.525]],[\"name/30\",[21,37.92]],[\"parent/30\",[22,3.525]],[\"name/31\",[21,37.92]],[\"parent/31\",[22,3.525]],[\"name/32\",[21,37.92]],[\"parent/32\",[22,3.525]],[\"name/33\",[23,55.499]],[\"parent/33\",[]],[\"name/34\",[2,47.614]],[\"parent/34\",[23,5.064]],[\"name/35\",[24,41.148]],[\"parent/35\",[]],[\"name/36\",[2,47.614]],[\"parent/36\",[24,3.754]],[\"name/37\",[25,49.621]],[\"parent/37\",[24,3.754]],[\"name/38\",[26,32.675]],[\"parent/38\",[24,3.754]],[\"name/39\",[27,52.134]],[\"parent/39\",[24,3.754]],[\"name/40\",[28,55.499]],[\"parent/40\",[24,3.754]],[\"name/41\",[29,44.512]],[\"parent/41\",[24,3.754]],[\"name/42\",[30,55.499]],[\"parent/42\",[24,3.754]],[\"name/43\",[31,60.607]],[\"parent/43\",[24,3.754]],[\"name/44\",[32,60.607]],[\"parent/44\",[24,3.754]],[\"name/45\",[33,42.149]],[\"parent/45\",[]],[\"name/46\",[25,49.621]],[\"parent/46\",[33,3.846]],[\"name/47\",[27,52.134]],[\"parent/47\",[33,3.846]],[\"name/48\",[28,55.499]],[\"parent/48\",[33,3.846]],[\"name/49\",[34,60.607]],[\"parent/49\",[33,3.846]],[\"name/50\",[35,60.607]],[\"parent/50\",[33,3.846]],[\"name/51\",[36,55.499]],[\"parent/51\",[33,3.846]],[\"name/52\",[37,55.499]],[\"parent/52\",[33,3.846]],[\"name/53\",[21,37.92]],[\"parent/53\",[33,3.846]],[\"name/54\",[38,34.957]],[\"parent/54\",[]],[\"name/55\",[39,60.607]],[\"parent/55\",[38,3.19]],[\"name/56\",[25,49.621]],[\"parent/56\",[38,3.19]],[\"name/57\",[40,55.499]],[\"parent/57\",[38,3.19]],[\"name/58\",[41,55.499]],[\"parent/58\",[38,3.19]],[\"name/59\",[42,55.499]],[\"parent/59\",[38,3.19]],[\"name/60\",[43,55.499]],[\"parent/60\",[38,3.19]],[\"name/61\",[44,55.499]],[\"parent/61\",[38,3.19]],[\"name/62\",[45,55.499]],[\"parent/62\",[38,3.19]],[\"name/63\",[46,60.607]],[\"parent/63\",[38,3.19]],[\"name/64\",[36,55.499]],[\"parent/64\",[38,3.19]],[\"name/65\",[47,60.607]],[\"parent/65\",[38,3.19]],[\"name/66\",[48,60.607]],[\"parent/66\",[38,3.19]],[\"name/67\",[49,60.607]],[\"parent/67\",[38,3.19]],[\"name/68\",[50,60.607]],[\"parent/68\",[38,3.19]],[\"name/69\",[21,37.92]],[\"parent/69\",[38,3.19]],[\"name/70\",[21,37.92]],[\"parent/70\",[38,3.19]],[\"name/71\",[21,37.92]],[\"parent/71\",[38,3.19]],[\"name/72\",[21,37.92]],[\"parent/72\",[38,3.19]],[\"name/73\",[51,33.981]],[\"parent/73\",[]],[\"name/74\",[52,60.607]],[\"parent/74\",[51,3.101]],[\"name/75\",[53,60.607]],[\"parent/75\",[51,3.101]],[\"name/76\",[54,60.607]],[\"parent/76\",[51,3.101]],[\"name/77\",[55,60.607]],[\"parent/77\",[51,3.101]],[\"name/78\",[56,60.607]],[\"parent/78\",[51,3.101]],[\"name/79\",[57,60.607]],[\"parent/79\",[51,3.101]],[\"name/80\",[58,60.607]],[\"parent/80\",[51,3.101]],[\"name/81\",[59,60.607]],[\"parent/81\",[51,3.101]],[\"name/82\",[60,60.607]],[\"parent/82\",[51,3.101]],[\"name/83\",[61,60.607]],[\"parent/83\",[51,3.101]],[\"name/84\",[62,60.607]],[\"parent/84\",[51,3.101]],[\"name/85\",[63,60.607]],[\"parent/85\",[51,3.101]],[\"name/86\",[64,60.607]],[\"parent/86\",[51,3.101]],[\"name/87\",[65,60.607]],[\"parent/87\",[51,3.101]],[\"name/88\",[66,60.607]],[\"parent/88\",[51,3.101]],[\"name/89\",[67,60.607]],[\"parent/89\",[51,3.101]],[\"name/90\",[68,60.607]],[\"parent/90\",[51,3.101]],[\"name/91\",[69,60.607]],[\"parent/91\",[51,3.101]],[\"name/92\",[70,60.607]],[\"parent/92\",[51,3.101]],[\"name/93\",[71,60.607]],[\"parent/93\",[51,3.101]],[\"name/94\",[72,44.512]],[\"parent/94\",[]],[\"name/95\",[40,55.499]],[\"parent/95\",[72,4.061]],[\"name/96\",[41,55.499]],[\"parent/96\",[72,4.061]],[\"name/97\",[42,55.499]],[\"parent/97\",[72,4.061]],[\"name/98\",[43,55.499]],[\"parent/98\",[72,4.061]],[\"name/99\",[44,55.499]],[\"parent/99\",[72,4.061]],[\"name/100\",[45,55.499]],[\"parent/100\",[72,4.061]],[\"name/101\",[73,31.52]],[\"parent/101\",[]],[\"name/102\",[11,55.499]],[\"parent/102\",[73,2.876]],[\"name/103\",[74,60.607]],[\"parent/103\",[73,2.876]],[\"name/104\",[75,60.607]],[\"parent/104\",[73,2.876]],[\"name/105\",[12,55.499]],[\"parent/105\",[73,2.876]],[\"name/106\",[76,60.607]],[\"parent/106\",[73,2.876]],[\"name/107\",[77,60.607]],[\"parent/107\",[73,2.876]],[\"name/108\",[78,60.607]],[\"parent/108\",[73,2.876]],[\"name/109\",[79,60.607]],[\"parent/109\",[73,2.876]],[\"name/110\",[17,55.499]],[\"parent/110\",[73,2.876]],[\"name/111\",[18,55.499]],[\"parent/111\",[73,2.876]],[\"name/112\",[80,60.607]],[\"parent/112\",[73,2.876]],[\"name/113\",[14,55.499]],[\"parent/113\",[73,2.876]],[\"name/114\",[13,52.134]],[\"parent/114\",[73,2.876]],[\"name/115\",[81,55.499]],[\"parent/115\",[73,2.876]],[\"name/116\",[82,60.607]],[\"parent/116\",[73,2.876]],[\"name/117\",[15,52.134]],[\"parent/117\",[73,2.876]],[\"name/118\",[83,55.499]],[\"parent/118\",[73,2.876]],[\"name/119\",[84,60.607]],[\"parent/119\",[73,2.876]],[\"name/120\",[37,55.499]],[\"parent/120\",[73,2.876]],[\"name/121\",[85,60.607]],[\"parent/121\",[73,2.876]],[\"name/122\",[86,60.607]],[\"parent/122\",[73,2.876]],[\"name/123\",[87,60.607]],[\"parent/123\",[73,2.876]],[\"name/124\",[88,60.607]],[\"parent/124\",[73,2.876]],[\"name/125\",[89,60.607]],[\"parent/125\",[73,2.876]],[\"name/126\",[19,55.499]],[\"parent/126\",[73,2.876]],[\"name/127\",[90,60.607]],[\"parent/127\",[73,2.876]],[\"name/128\",[91,43.261]],[\"parent/128\",[]],[\"name/129\",[92,60.607]],[\"parent/129\",[91,3.947]],[\"name/130\",[93,60.607]],[\"parent/130\",[91,3.947]],[\"name/131\",[81,55.499]],[\"parent/131\",[91,3.947]],[\"name/132\",[15,52.134]],[\"parent/132\",[91,3.947]],[\"name/133\",[13,52.134]],[\"parent/133\",[91,3.947]],[\"name/134\",[94,60.607]],[\"parent/134\",[91,3.947]],[\"name/135\",[83,55.499]],[\"parent/135\",[91,3.947]],[\"name/136\",[95,42.149]],[\"parent/136\",[]],[\"name/137\",[96,60.607]],[\"parent/137\",[95,3.846]],[\"name/138\",[97,60.607]],[\"parent/138\",[95,3.846]],[\"name/139\",[98,60.607]],[\"parent/139\",[95,3.846]],[\"name/140\",[99,60.607]],[\"parent/140\",[95,3.846]],[\"name/141\",[100,60.607]],[\"parent/141\",[95,3.846]],[\"name/142\",[101,60.607]],[\"parent/142\",[95,3.846]],[\"name/143\",[102,60.607]],[\"parent/143\",[95,3.846]],[\"name/144\",[103,60.607]],[\"parent/144\",[95,3.846]],[\"name/145\",[104,55.499]],[\"parent/145\",[]],[\"name/146\",[105,47.614]],[\"parent/146\",[104,5.064]],[\"name/147\",[106,44.512]],[\"parent/147\",[]],[\"name/148\",[107,45.943]],[\"parent/148\",[106,4.061]],[\"name/149\",[108,52.134]],[\"parent/149\",[106,4.061]],[\"name/150\",[109,52.134]],[\"parent/150\",[106,4.061]],[\"name/151\",[110,55.499]],[\"parent/151\",[106,4.061]],[\"name/152\",[111,55.499]],[\"parent/152\",[106,4.061]],[\"name/153\",[105,47.614]],[\"parent/153\",[106,4.061]],[\"name/154\",[4,38.635]],[\"parent/154\",[]],[\"name/155\",[22,38.635]],[\"parent/155\",[4,3.525]],[\"name/156\",[112,55.499]],[\"parent/156\",[4,3.525]],[\"name/157\",[113,49.621]],[\"parent/157\",[4,3.525]],[\"name/158\",[114,55.499]],[\"parent/158\",[4,3.525]],[\"name/159\",[115,55.499]],[\"parent/159\",[4,3.525]],[\"name/160\",[116,55.499]],[\"parent/160\",[4,3.525]],[\"name/161\",[117,47.614]],[\"parent/161\",[4,3.525]],[\"name/162\",[118,42.149]],[\"parent/162\",[4,3.525]],[\"name/163\",[119,47.614]],[\"parent/163\",[4,3.525]],[\"name/164\",[120,39.404]],[\"parent/164\",[4,3.525]],[\"name/165\",[107,45.943]],[\"parent/165\",[4,3.525]],[\"name/166\",[121,49.621]],[\"parent/166\",[]],[\"name/167\",[22,38.635]],[\"parent/167\",[121,4.528]],[\"name/168\",[120,39.404]],[\"parent/168\",[121,4.528]],[\"name/169\",[107,45.943]],[\"parent/169\",[121,4.528]],[\"name/170\",[122,60.607]],[\"parent/170\",[]],[\"name/171\",[123,60.607]],[\"parent/171\",[]],[\"name/172\",[124,60.607]],[\"parent/172\",[]],[\"name/173\",[125,60.607]],[\"parent/173\",[]],[\"name/174\",[126,60.607]],[\"parent/174\",[]],[\"name/175\",[127,44.512]],[\"parent/175\",[]],[\"name/176\",[25,49.621]],[\"parent/176\",[127,4.061]],[\"name/177\",[26,32.675]],[\"parent/177\",[127,4.061]],[\"name/178\",[27,52.134]],[\"parent/178\",[127,4.061]],[\"name/179\",[29,44.512]],[\"parent/179\",[127,4.061]],[\"name/180\",[30,55.499]],[\"parent/180\",[127,4.061]],[\"name/181\",[128,60.607]],[\"parent/181\",[127,4.061]],[\"name/182\",[26,32.675]],[\"parent/182\",[]],[\"name/183\",[129,60.607]],[\"parent/183\",[26,2.981]],[\"name/184\",[130,60.607]],[\"parent/184\",[26,2.981]],[\"name/185\",[131,60.607]],[\"parent/185\",[26,2.981]],[\"name/186\",[132,60.607]],[\"parent/186\",[26,2.981]],[\"name/187\",[133,60.607]],[\"parent/187\",[26,2.981]],[\"name/188\",[134,60.607]],[\"parent/188\",[26,2.981]],[\"name/189\",[135,60.607]],[\"parent/189\",[26,2.981]],[\"name/190\",[136,60.607]],[\"parent/190\",[26,2.981]],[\"name/191\",[137,60.607]],[\"parent/191\",[26,2.981]],[\"name/192\",[138,60.607]],[\"parent/192\",[26,2.981]],[\"name/193\",[139,60.607]],[\"parent/193\",[26,2.981]],[\"name/194\",[140,60.607]],[\"parent/194\",[26,2.981]],[\"name/195\",[141,60.607]],[\"parent/195\",[26,2.981]],[\"name/196\",[142,60.607]],[\"parent/196\",[26,2.981]],[\"name/197\",[143,52.134]],[\"parent/197\",[]],[\"name/198\",[144,60.607]],[\"parent/198\",[143,4.757]],[\"name/199\",[145,55.499]],[\"parent/199\",[143,4.757]],[\"name/200\",[146,52.134]],[\"parent/200\",[]],[\"name/201\",[147,44.512]],[\"parent/201\",[146,4.757]],[\"name/202\",[148,33.091]],[\"parent/202\",[146,4.757]],[\"name/203\",[149,55.499]],[\"parent/203\",[]],[\"name/204\",[147,44.512]],[\"parent/204\",[149,5.064]],[\"name/205\",[150,49.621]],[\"parent/205\",[]],[\"name/206\",[148,33.091]],[\"parent/206\",[150,4.528]],[\"name/207\",[105,47.614]],[\"parent/207\",[150,4.528]],[\"name/208\",[151,52.134]],[\"parent/208\",[150,4.528]],[\"name/209\",[152,52.134]],[\"parent/209\",[]],[\"name/210\",[105,47.614]],[\"parent/210\",[152,4.757]],[\"name/211\",[151,52.134]],[\"parent/211\",[152,4.757]],[\"name/212\",[153,52.134]],[\"parent/212\",[]],[\"name/213\",[154,49.621]],[\"parent/213\",[]],[\"name/214\",[155,43.261]],[\"parent/214\",[154,4.528]],[\"name/215\",[153,52.134]],[\"parent/215\",[154,4.528]],[\"name/216\",[156,52.134]],[\"parent/216\",[154,4.528]],[\"name/217\",[157,49.621]],[\"parent/217\",[]],[\"name/218\",[155,43.261]],[\"parent/218\",[157,4.528]],[\"name/219\",[153,52.134]],[\"parent/219\",[157,4.528]],[\"name/220\",[156,52.134]],[\"parent/220\",[157,4.528]],[\"name/221\",[158,47.614]],[\"parent/221\",[]],[\"name/222\",[108,52.134]],[\"parent/222\",[158,4.344]],[\"name/223\",[109,52.134]],[\"parent/223\",[158,4.344]],[\"name/224\",[159,60.607]],[\"parent/224\",[158,4.344]],[\"name/225\",[160,60.607]],[\"parent/225\",[158,4.344]],[\"name/226\",[161,39.404]],[\"parent/226\",[]],[\"name/227\",[162,49.621]],[\"parent/227\",[161,3.595]],[\"name/228\",[163,49.621]],[\"parent/228\",[161,3.595]],[\"name/229\",[164,49.621]],[\"parent/229\",[161,3.595]],[\"name/230\",[165,52.134]],[\"parent/230\",[161,3.595]],[\"name/231\",[166,52.134]],[\"parent/231\",[161,3.595]],[\"name/232\",[167,49.621]],[\"parent/232\",[161,3.595]],[\"name/233\",[168,55.499]],[\"parent/233\",[161,3.595]],[\"name/234\",[169,49.621]],[\"parent/234\",[161,3.595]],[\"name/235\",[170,55.499]],[\"parent/235\",[161,3.595]],[\"name/236\",[148,33.091]],[\"parent/236\",[161,3.595]],[\"name/237\",[171,55.499]],[\"parent/237\",[161,3.595]],[\"name/238\",[172,39.404]],[\"parent/238\",[]],[\"name/239\",[171,55.499]],[\"parent/239\",[172,3.595]],[\"name/240\",[162,49.621]],[\"parent/240\",[172,3.595]],[\"name/241\",[163,49.621]],[\"parent/241\",[172,3.595]],[\"name/242\",[164,49.621]],[\"parent/242\",[172,3.595]],[\"name/243\",[165,52.134]],[\"parent/243\",[172,3.595]],[\"name/244\",[166,52.134]],[\"parent/244\",[172,3.595]],[\"name/245\",[167,49.621]],[\"parent/245\",[172,3.595]],[\"name/246\",[168,55.499]],[\"parent/246\",[172,3.595]],[\"name/247\",[169,49.621]],[\"parent/247\",[172,3.595]],[\"name/248\",[170,55.499]],[\"parent/248\",[172,3.595]],[\"name/249\",[148,33.091]],[\"parent/249\",[172,3.595]],[\"name/250\",[173,44.512]],[\"parent/250\",[]],[\"name/251\",[174,60.607]],[\"parent/251\",[173,4.061]],[\"name/252\",[175,60.607]],[\"parent/252\",[173,4.061]],[\"name/253\",[145,55.499]],[\"parent/253\",[173,4.061]],[\"name/254\",[176,55.499]],[\"parent/254\",[173,4.061]],[\"name/255\",[177,55.499]],[\"parent/255\",[173,4.061]],[\"name/256\",[178,60.607]],[\"parent/256\",[173,4.061]],[\"name/257\",[179,52.134]],[\"parent/257\",[]],[\"name/258\",[180,55.499]],[\"parent/258\",[179,4.757]],[\"name/259\",[181,55.499]],[\"parent/259\",[179,4.757]],[\"name/260\",[182,49.621]],[\"parent/260\",[]],[\"name/261\",[176,55.499]],[\"parent/261\",[182,4.528]],[\"name/262\",[177,55.499]],[\"parent/262\",[182,4.528]],[\"name/263\",[183,55.499]],[\"parent/263\",[182,4.528]],[\"name/264\",[184,52.134]],[\"parent/264\",[]],[\"name/265\",[185,55.499]],[\"parent/265\",[184,4.757]],[\"name/266\",[148,33.091]],[\"parent/266\",[184,4.757]],[\"name/267\",[186,52.134]],[\"parent/267\",[]],[\"name/268\",[185,55.499]],[\"parent/268\",[186,4.757]],[\"name/269\",[148,33.091]],[\"parent/269\",[186,4.757]],[\"name/270\",[187,38.635]],[\"parent/270\",[]],[\"name/271\",[188,55.499]],[\"parent/271\",[187,3.525]],[\"name/272\",[169,49.621]],[\"parent/272\",[187,3.525]],[\"name/273\",[189,55.499]],[\"parent/273\",[187,3.525]],[\"name/274\",[190,55.499]],[\"parent/274\",[187,3.525]],[\"name/275\",[191,55.499]],[\"parent/275\",[187,3.525]],[\"name/276\",[192,47.614]],[\"parent/276\",[187,3.525]],[\"name/277\",[193,55.499]],[\"parent/277\",[187,3.525]],[\"name/278\",[194,47.614]],[\"parent/278\",[187,3.525]],[\"name/279\",[120,39.404]],[\"parent/279\",[187,3.525]],[\"name/280\",[195,55.499]],[\"parent/280\",[187,3.525]],[\"name/281\",[196,55.499]],[\"parent/281\",[187,3.525]],[\"name/282\",[197,45.943]],[\"parent/282\",[187,3.525]],[\"name/283\",[198,37.92]],[\"parent/283\",[]],[\"name/284\",[199,60.607]],[\"parent/284\",[198,3.46]],[\"name/285\",[188,55.499]],[\"parent/285\",[198,3.46]],[\"name/286\",[169,49.621]],[\"parent/286\",[198,3.46]],[\"name/287\",[189,55.499]],[\"parent/287\",[198,3.46]],[\"name/288\",[190,55.499]],[\"parent/288\",[198,3.46]],[\"name/289\",[191,55.499]],[\"parent/289\",[198,3.46]],[\"name/290\",[192,47.614]],[\"parent/290\",[198,3.46]],[\"name/291\",[193,55.499]],[\"parent/291\",[198,3.46]],[\"name/292\",[194,47.614]],[\"parent/292\",[198,3.46]],[\"name/293\",[120,39.404]],[\"parent/293\",[198,3.46]],[\"name/294\",[195,55.499]],[\"parent/294\",[198,3.46]],[\"name/295\",[196,55.499]],[\"parent/295\",[198,3.46]],[\"name/296\",[197,45.943]],[\"parent/296\",[198,3.46]],[\"name/297\",[200,55.499]],[\"parent/297\",[]],[\"name/298\",[201,60.607]],[\"parent/298\",[200,5.064]],[\"name/299\",[202,44.512]],[\"parent/299\",[]],[\"name/300\",[108,52.134]],[\"parent/300\",[202,4.061]],[\"name/301\",[113,49.621]],[\"parent/301\",[202,4.061]],[\"name/302\",[203,60.607]],[\"parent/302\",[202,4.061]],[\"name/303\",[204,60.607]],[\"parent/303\",[202,4.061]],[\"name/304\",[205,60.607]],[\"parent/304\",[202,4.061]],[\"name/305\",[206,60.607]],[\"parent/305\",[202,4.061]],[\"name/306\",[117,47.614]],[\"parent/306\",[]],[\"name/307\",[207,55.499]],[\"parent/307\",[117,4.344]],[\"name/308\",[208,55.499]],[\"parent/308\",[117,4.344]],[\"name/309\",[118,42.149]],[\"parent/309\",[]],[\"name/310\",[207,55.499]],[\"parent/310\",[118,3.846]],[\"name/311\",[208,55.499]],[\"parent/311\",[118,3.846]],[\"name/312\",[209,60.607]],[\"parent/312\",[118,3.846]],[\"name/313\",[210,60.607]],[\"parent/313\",[118,3.846]],[\"name/314\",[211,60.607]],[\"parent/314\",[118,3.846]],[\"name/315\",[212,60.607]],[\"parent/315\",[118,3.846]],[\"name/316\",[213,45.943]],[\"parent/316\",[]],[\"name/317\",[214,60.607]],[\"parent/317\",[213,4.192]],[\"name/318\",[215,60.607]],[\"parent/318\",[213,4.192]],[\"name/319\",[216,60.607]],[\"parent/319\",[213,4.192]],[\"name/320\",[217,60.607]],[\"parent/320\",[213,4.192]],[\"name/321\",[218,60.607]],[\"parent/321\",[213,4.192]],[\"name/322\",[119,47.614]],[\"parent/322\",[]],[\"name/323\",[219,60.607]],[\"parent/323\",[119,4.344]],[\"name/324\",[220,60.607]],[\"parent/324\",[119,4.344]],[\"name/325\",[221,44.512]],[\"parent/325\",[]],[\"name/326\",[148,33.091]],[\"parent/326\",[221,4.061]],[\"name/327\",[167,49.621]],[\"parent/327\",[221,4.061]],[\"name/328\",[222,55.499]],[\"parent/328\",[221,4.061]],[\"name/329\",[223,49.621]],[\"parent/329\",[221,4.061]],[\"name/330\",[224,49.621]],[\"parent/330\",[221,4.061]],[\"name/331\",[225,49.621]],[\"parent/331\",[221,4.061]],[\"name/332\",[226,44.512]],[\"parent/332\",[]],[\"name/333\",[148,33.091]],[\"parent/333\",[226,4.061]],[\"name/334\",[167,49.621]],[\"parent/334\",[226,4.061]],[\"name/335\",[222,55.499]],[\"parent/335\",[226,4.061]],[\"name/336\",[223,49.621]],[\"parent/336\",[226,4.061]],[\"name/337\",[224,49.621]],[\"parent/337\",[226,4.061]],[\"name/338\",[225,49.621]],[\"parent/338\",[226,4.061]],[\"name/339\",[227,52.134]],[\"parent/339\",[]],[\"name/340\",[228,60.607]],[\"parent/340\",[227,4.757]],[\"name/341\",[229,60.607]],[\"parent/341\",[227,4.757]],[\"name/342\",[230,49.621]],[\"parent/342\",[]],[\"name/343\",[231,55.499]],[\"parent/343\",[230,4.528]],[\"name/344\",[148,33.091]],[\"parent/344\",[230,4.528]],[\"name/345\",[232,47.614]],[\"parent/345\",[230,4.528]],[\"name/346\",[233,49.621]],[\"parent/346\",[]],[\"name/347\",[231,55.499]],[\"parent/347\",[233,4.528]],[\"name/348\",[148,33.091]],[\"parent/348\",[233,4.528]],[\"name/349\",[232,47.614]],[\"parent/349\",[233,4.528]],[\"name/350\",[234,38.635]],[\"parent/350\",[]],[\"name/351\",[235,52.134]],[\"parent/351\",[234,3.525]],[\"name/352\",[22,38.635]],[\"parent/352\",[234,3.525]],[\"name/353\",[112,55.499]],[\"parent/353\",[234,3.525]],[\"name/354\",[113,49.621]],[\"parent/354\",[234,3.525]],[\"name/355\",[114,55.499]],[\"parent/355\",[234,3.525]],[\"name/356\",[115,55.499]],[\"parent/356\",[234,3.525]],[\"name/357\",[116,55.499]],[\"parent/357\",[234,3.525]],[\"name/358\",[117,47.614]],[\"parent/358\",[234,3.525]],[\"name/359\",[118,42.149]],[\"parent/359\",[234,3.525]],[\"name/360\",[119,47.614]],[\"parent/360\",[234,3.525]],[\"name/361\",[120,39.404]],[\"parent/361\",[234,3.525]],[\"name/362\",[107,45.943]],[\"parent/362\",[234,3.525]],[\"name/363\",[236,47.614]],[\"parent/363\",[]],[\"name/364\",[235,52.134]],[\"parent/364\",[236,4.344]],[\"name/365\",[22,38.635]],[\"parent/365\",[236,4.344]],[\"name/366\",[120,39.404]],[\"parent/366\",[236,4.344]],[\"name/367\",[107,45.943]],[\"parent/367\",[236,4.344]],[\"name/368\",[237,55.499]],[\"parent/368\",[]],[\"name/369\",[238,52.134]],[\"parent/369\",[237,5.064]],[\"name/370\",[239,55.499]],[\"parent/370\",[]],[\"name/371\",[238,52.134]],[\"parent/371\",[239,5.064]],[\"name/372\",[240,52.134]],[\"parent/372\",[]],[\"name/373\",[238,52.134]],[\"parent/373\",[240,4.757]],[\"name/374\",[148,33.091]],[\"parent/374\",[240,4.757]],[\"name/375\",[241,52.134]],[\"parent/375\",[]],[\"name/376\",[242,60.607]],[\"parent/376\",[241,4.757]],[\"name/377\",[151,52.134]],[\"parent/377\",[241,4.757]],[\"name/378\",[243,52.134]],[\"parent/378\",[]],[\"name/379\",[120,39.404]],[\"parent/379\",[243,4.757]],[\"name/380\",[235,52.134]],[\"parent/380\",[243,4.757]],[\"name/381\",[244,49.621]],[\"parent/381\",[]],[\"name/382\",[155,43.261]],[\"parent/382\",[244,4.528]],[\"name/383\",[120,39.404]],[\"parent/383\",[244,4.528]],[\"name/384\",[107,45.943]],[\"parent/384\",[244,4.528]],[\"name/385\",[245,52.134]],[\"parent/385\",[]],[\"name/386\",[225,49.621]],[\"parent/386\",[245,4.757]],[\"name/387\",[246,60.607]],[\"parent/387\",[245,4.757]],[\"name/388\",[247,47.614]],[\"parent/388\",[]],[\"name/389\",[248,55.499]],[\"parent/389\",[247,4.344]],[\"name/390\",[249,60.607]],[\"parent/390\",[247,4.344]],[\"name/391\",[250,60.607]],[\"parent/391\",[247,4.344]],[\"name/392\",[251,60.607]],[\"parent/392\",[247,4.344]],[\"name/393\",[252,55.499]],[\"parent/393\",[]],[\"name/394\",[156,52.134]],[\"parent/394\",[252,5.064]],[\"name/395\",[253,52.134]],[\"parent/395\",[]],[\"name/396\",[111,55.499]],[\"parent/396\",[253,4.757]],[\"name/397\",[254,55.499]],[\"parent/397\",[253,4.757]],[\"name/398\",[255,41.148]],[\"parent/398\",[]],[\"name/399\",[162,49.621]],[\"parent/399\",[255,3.754]],[\"name/400\",[163,49.621]],[\"parent/400\",[255,3.754]],[\"name/401\",[164,49.621]],[\"parent/401\",[255,3.754]],[\"name/402\",[256,52.134]],[\"parent/402\",[255,3.754]],[\"name/403\",[257,52.134]],[\"parent/403\",[255,3.754]],[\"name/404\",[258,52.134]],[\"parent/404\",[255,3.754]],[\"name/405\",[259,52.134]],[\"parent/405\",[255,3.754]],[\"name/406\",[260,52.134]],[\"parent/406\",[255,3.754]],[\"name/407\",[148,33.091]],[\"parent/407\",[255,3.754]],[\"name/408\",[261,39.404]],[\"parent/408\",[]],[\"name/409\",[155,43.261]],[\"parent/409\",[261,3.595]],[\"name/410\",[120,39.404]],[\"parent/410\",[261,3.595]],[\"name/411\",[162,49.621]],[\"parent/411\",[261,3.595]],[\"name/412\",[163,49.621]],[\"parent/412\",[261,3.595]],[\"name/413\",[164,49.621]],[\"parent/413\",[261,3.595]],[\"name/414\",[256,52.134]],[\"parent/414\",[261,3.595]],[\"name/415\",[257,52.134]],[\"parent/415\",[261,3.595]],[\"name/416\",[258,52.134]],[\"parent/416\",[261,3.595]],[\"name/417\",[259,52.134]],[\"parent/417\",[261,3.595]],[\"name/418\",[260,52.134]],[\"parent/418\",[261,3.595]],[\"name/419\",[148,33.091]],[\"parent/419\",[261,3.595]],[\"name/420\",[262,52.134]],[\"parent/420\",[]],[\"name/421\",[148,33.091]],[\"parent/421\",[262,4.757]],[\"name/422\",[263,60.607]],[\"parent/422\",[262,4.757]],[\"name/423\",[264,37.253]],[\"parent/423\",[]],[\"name/424\",[256,52.134]],[\"parent/424\",[264,3.399]],[\"name/425\",[155,43.261]],[\"parent/425\",[264,3.399]],[\"name/426\",[120,39.404]],[\"parent/426\",[264,3.399]],[\"name/427\",[265,60.607]],[\"parent/427\",[264,3.399]],[\"name/428\",[257,52.134]],[\"parent/428\",[264,3.399]],[\"name/429\",[258,52.134]],[\"parent/429\",[264,3.399]],[\"name/430\",[259,52.134]],[\"parent/430\",[264,3.399]],[\"name/431\",[266,60.607]],[\"parent/431\",[264,3.399]],[\"name/432\",[267,60.607]],[\"parent/432\",[264,3.399]],[\"name/433\",[268,60.607]],[\"parent/433\",[264,3.399]],[\"name/434\",[269,52.134]],[\"parent/434\",[264,3.399]],[\"name/435\",[270,60.607]],[\"parent/435\",[264,3.399]],[\"name/436\",[271,60.607]],[\"parent/436\",[264,3.399]],[\"name/437\",[272,60.607]],[\"parent/437\",[264,3.399]],[\"name/438\",[273,49.621]],[\"parent/438\",[]],[\"name/439\",[274,60.607]],[\"parent/439\",[273,4.528]],[\"name/440\",[109,52.134]],[\"parent/440\",[273,4.528]],[\"name/441\",[275,55.499]],[\"parent/441\",[273,4.528]],[\"name/442\",[276,52.134]],[\"parent/442\",[]],[\"name/443\",[180,55.499]],[\"parent/443\",[276,4.757]],[\"name/444\",[181,55.499]],[\"parent/444\",[276,4.757]],[\"name/445\",[277,47.614]],[\"parent/445\",[]],[\"name/446\",[278,60.607]],[\"parent/446\",[277,4.344]],[\"name/447\",[254,55.499]],[\"parent/447\",[277,4.344]],[\"name/448\",[279,60.607]],[\"parent/448\",[277,4.344]],[\"name/449\",[183,55.499]],[\"parent/449\",[277,4.344]],[\"name/450\",[280,52.134]],[\"parent/450\",[]],[\"name/451\",[281,60.607]],[\"parent/451\",[280,4.757]],[\"name/452\",[282,60.607]],[\"parent/452\",[280,4.757]],[\"name/453\",[283,49.621]],[\"parent/453\",[]],[\"name/454\",[192,47.614]],[\"parent/454\",[283,4.528]],[\"name/455\",[284,60.607]],[\"parent/455\",[283,4.528]],[\"name/456\",[285,60.607]],[\"parent/456\",[283,4.528]],[\"name/457\",[286,49.621]],[\"parent/457\",[]],[\"name/458\",[155,43.261]],[\"parent/458\",[286,4.528]],[\"name/459\",[110,55.499]],[\"parent/459\",[286,4.528]],[\"name/460\",[287,60.607]],[\"parent/460\",[286,4.528]],[\"name/461\",[288,49.621]],[\"parent/461\",[]],[\"name/462\",[155,43.261]],[\"parent/462\",[288,4.528]],[\"name/463\",[289,43.261]],[\"parent/463\",[288,4.528]],[\"name/464\",[290,60.607]],[\"parent/464\",[288,4.528]],[\"name/465\",[289,43.261]],[\"parent/465\",[]],[\"name/466\",[291,60.607]],[\"parent/466\",[289,3.947]],[\"name/467\",[292,60.607]],[\"parent/467\",[289,3.947]],[\"name/468\",[293,60.607]],[\"parent/468\",[289,3.947]],[\"name/469\",[294,60.607]],[\"parent/469\",[289,3.947]],[\"name/470\",[295,60.607]],[\"parent/470\",[289,3.947]],[\"name/471\",[296,60.607]],[\"parent/471\",[289,3.947]],[\"name/472\",[297,55.499]],[\"parent/472\",[]],[\"name/473\",[269,52.134]],[\"parent/473\",[297,5.064]],[\"name/474\",[298,55.499]],[\"parent/474\",[]],[\"name/475\",[299,60.607]],[\"parent/475\",[298,5.064]],[\"name/476\",[300,60.607]],[\"parent/476\",[]],[\"name/477\",[301,55.499]],[\"parent/477\",[]],[\"name/478\",[302,60.607]],[\"parent/478\",[301,5.064]],[\"name/479\",[194,47.614]],[\"parent/479\",[]],[\"name/480\",[120,39.404]],[\"parent/480\",[194,4.344]],[\"name/481\",[192,47.614]],[\"parent/481\",[194,4.344]],[\"name/482\",[197,45.943]],[\"parent/482\",[]],[\"name/483\",[192,47.614]],[\"parent/483\",[197,4.192]],[\"name/484\",[105,47.614]],[\"parent/484\",[197,4.192]],[\"name/485\",[275,55.499]],[\"parent/485\",[197,4.192]],[\"name/486\",[303,47.614]],[\"parent/486\",[]],[\"name/487\",[148,33.091]],[\"parent/487\",[303,4.344]],[\"name/488\",[224,49.621]],[\"parent/488\",[303,4.344]],[\"name/489\",[223,49.621]],[\"parent/489\",[303,4.344]],[\"name/490\",[225,49.621]],[\"parent/490\",[303,4.344]],[\"name/491\",[304,49.621]],[\"parent/491\",[]],[\"name/492\",[148,33.091]],[\"parent/492\",[304,4.528]],[\"name/493\",[224,49.621]],[\"parent/493\",[304,4.528]],[\"name/494\",[223,49.621]],[\"parent/494\",[304,4.528]],[\"name/495\",[305,49.621]],[\"parent/495\",[]],[\"name/496\",[306,55.499]],[\"parent/496\",[305,4.528]],[\"name/497\",[307,55.499]],[\"parent/497\",[305,4.528]],[\"name/498\",[148,33.091]],[\"parent/498\",[305,4.528]],[\"name/499\",[308,49.621]],[\"parent/499\",[]],[\"name/500\",[306,55.499]],[\"parent/500\",[308,4.528]],[\"name/501\",[307,55.499]],[\"parent/501\",[308,4.528]],[\"name/502\",[148,33.091]],[\"parent/502\",[308,4.528]],[\"name/503\",[309,52.134]],[\"parent/503\",[]],[\"name/504\",[310,55.499]],[\"parent/504\",[309,4.757]],[\"name/505\",[148,33.091]],[\"parent/505\",[309,4.757]],[\"name/506\",[311,52.134]],[\"parent/506\",[]],[\"name/507\",[310,55.499]],[\"parent/507\",[311,4.757]],[\"name/508\",[148,33.091]],[\"parent/508\",[311,4.757]],[\"name/509\",[312,41.148]],[\"parent/509\",[]],[\"name/510\",[248,55.499]],[\"parent/510\",[312,3.754]],[\"name/511\",[313,60.607]],[\"parent/511\",[312,3.754]],[\"name/512\",[314,60.607]],[\"parent/512\",[312,3.754]],[\"name/513\",[315,60.607]],[\"parent/513\",[312,3.754]],[\"name/514\",[113,49.621]],[\"parent/514\",[312,3.754]],[\"name/515\",[316,60.607]],[\"parent/515\",[312,3.754]],[\"name/516\",[317,60.607]],[\"parent/516\",[312,3.754]],[\"name/517\",[318,60.607]],[\"parent/517\",[312,3.754]],[\"name/518\",[319,60.607]],[\"parent/518\",[312,3.754]],[\"name/519\",[320,47.614]],[\"parent/519\",[]],[\"name/520\",[321,60.607]],[\"parent/520\",[320,4.344]],[\"name/521\",[322,60.607]],[\"parent/521\",[320,4.344]],[\"name/522\",[323,60.607]],[\"parent/522\",[320,4.344]],[\"name/523\",[324,60.607]],[\"parent/523\",[320,4.344]],[\"name/524\",[325,52.134]],[\"parent/524\",[]],[\"name/525\",[326,60.607]],[\"parent/525\",[325,4.757]],[\"name/526\",[269,52.134]],[\"parent/526\",[325,4.757]],[\"name/527\",[327,52.134]],[\"parent/527\",[]],[\"name/528\",[328,60.607]],[\"parent/528\",[327,4.757]],[\"name/529\",[329,60.607]],[\"parent/529\",[327,4.757]],[\"name/530\",[330,47.614]],[\"parent/530\",[]],[\"name/531\",[331,55.499]],[\"parent/531\",[330,4.344]],[\"name/532\",[165,52.134]],[\"parent/532\",[330,4.344]],[\"name/533\",[166,52.134]],[\"parent/533\",[330,4.344]],[\"name/534\",[332,55.499]],[\"parent/534\",[330,4.344]],[\"name/535\",[333,47.614]],[\"parent/535\",[]],[\"name/536\",[331,55.499]],[\"parent/536\",[333,4.344]],[\"name/537\",[334,52.134]],[\"parent/537\",[333,4.344]],[\"name/538\",[335,60.607]],[\"parent/538\",[333,4.344]],[\"name/539\",[332,55.499]],[\"parent/539\",[333,4.344]],[\"name/540\",[336,60.607]],[\"parent/540\",[]],[\"name/541\",[337,60.607]],[\"parent/541\",[]],[\"name/542\",[338,60.607]],[\"parent/542\",[]],[\"name/543\",[339,55.499]],[\"parent/543\",[]],[\"name/544\",[340,60.607]],[\"parent/544\",[339,5.064]],[\"name/545\",[341,41.148]],[\"parent/545\",[]],[\"name/546\",[342,47.614]],[\"parent/546\",[341,3.754]],[\"name/547\",[26,32.675]],[\"parent/547\",[341,3.754]],[\"name/548\",[147,44.512]],[\"parent/548\",[341,3.754]],[\"name/549\",[29,44.512]],[\"parent/549\",[341,3.754]],[\"name/550\",[343,45.943]],[\"parent/550\",[341,3.754]],[\"name/551\",[344,47.614]],[\"parent/551\",[341,3.754]],[\"name/552\",[345,47.614]],[\"parent/552\",[341,3.754]],[\"name/553\",[346,47.614]],[\"parent/553\",[341,3.754]],[\"name/554\",[347,45.943]],[\"parent/554\",[341,3.754]],[\"name/555\",[348,52.134]],[\"parent/555\",[]],[\"name/556\",[349,60.607]],[\"parent/556\",[348,4.757]],[\"name/557\",[350,60.607]],[\"parent/557\",[348,4.757]],[\"name/558\",[351,47.614]],[\"parent/558\",[]],[\"name/559\",[352,60.607]],[\"parent/559\",[351,4.344]],[\"name/560\",[353,60.607]],[\"parent/560\",[351,4.344]],[\"name/561\",[354,60.607]],[\"parent/561\",[351,4.344]],[\"name/562\",[355,60.607]],[\"parent/562\",[351,4.344]],[\"name/563\",[356,41.148]],[\"parent/563\",[]],[\"name/564\",[147,44.512]],[\"parent/564\",[356,3.754]],[\"name/565\",[342,47.614]],[\"parent/565\",[356,3.754]],[\"name/566\",[26,32.675]],[\"parent/566\",[356,3.754]],[\"name/567\",[29,44.512]],[\"parent/567\",[356,3.754]],[\"name/568\",[343,45.943]],[\"parent/568\",[356,3.754]],[\"name/569\",[344,47.614]],[\"parent/569\",[356,3.754]],[\"name/570\",[345,47.614]],[\"parent/570\",[356,3.754]],[\"name/571\",[346,47.614]],[\"parent/571\",[356,3.754]],[\"name/572\",[347,45.943]],[\"parent/572\",[356,3.754]],[\"name/573\",[357,41.148]],[\"parent/573\",[]],[\"name/574\",[147,44.512]],[\"parent/574\",[357,3.754]],[\"name/575\",[342,47.614]],[\"parent/575\",[357,3.754]],[\"name/576\",[26,32.675]],[\"parent/576\",[357,3.754]],[\"name/577\",[29,44.512]],[\"parent/577\",[357,3.754]],[\"name/578\",[343,45.943]],[\"parent/578\",[357,3.754]],[\"name/579\",[344,47.614]],[\"parent/579\",[357,3.754]],[\"name/580\",[345,47.614]],[\"parent/580\",[357,3.754]],[\"name/581\",[346,47.614]],[\"parent/581\",[357,3.754]],[\"name/582\",[347,45.943]],[\"parent/582\",[357,3.754]],[\"name/583\",[358,41.148]],[\"parent/583\",[]],[\"name/584\",[147,44.512]],[\"parent/584\",[358,3.754]],[\"name/585\",[342,47.614]],[\"parent/585\",[358,3.754]],[\"name/586\",[26,32.675]],[\"parent/586\",[358,3.754]],[\"name/587\",[29,44.512]],[\"parent/587\",[358,3.754]],[\"name/588\",[343,45.943]],[\"parent/588\",[358,3.754]],[\"name/589\",[344,47.614]],[\"parent/589\",[358,3.754]],[\"name/590\",[345,47.614]],[\"parent/590\",[358,3.754]],[\"name/591\",[346,47.614]],[\"parent/591\",[358,3.754]],[\"name/592\",[347,45.943]],[\"parent/592\",[358,3.754]],[\"name/593\",[359,41.148]],[\"parent/593\",[]],[\"name/594\",[147,44.512]],[\"parent/594\",[359,3.754]],[\"name/595\",[342,47.614]],[\"parent/595\",[359,3.754]],[\"name/596\",[26,32.675]],[\"parent/596\",[359,3.754]],[\"name/597\",[29,44.512]],[\"parent/597\",[359,3.754]],[\"name/598\",[343,45.943]],[\"parent/598\",[359,3.754]],[\"name/599\",[344,47.614]],[\"parent/599\",[359,3.754]],[\"name/600\",[345,47.614]],[\"parent/600\",[359,3.754]],[\"name/601\",[346,47.614]],[\"parent/601\",[359,3.754]],[\"name/602\",[347,45.943]],[\"parent/602\",[359,3.754]],[\"name/603\",[360,52.134]],[\"parent/603\",[]],[\"name/604\",[361,60.607]],[\"parent/604\",[360,4.757]],[\"name/605\",[232,47.614]],[\"parent/605\",[360,4.757]],[\"name/606\",[362,52.134]],[\"parent/606\",[]],[\"name/607\",[260,52.134]],[\"parent/607\",[362,4.757]],[\"name/608\",[148,33.091]],[\"parent/608\",[362,4.757]],[\"name/609\",[363,49.621]],[\"parent/609\",[]],[\"name/610\",[334,52.134]],[\"parent/610\",[363,4.528]],[\"name/611\",[232,47.614]],[\"parent/611\",[363,4.528]],[\"name/612\",[148,33.091]],[\"parent/612\",[363,4.528]],[\"name/613\",[364,55.499]],[\"parent/613\",[]],[\"name/614\",[347,45.943]],[\"parent/614\",[364,5.064]],[\"name/615\",[365,52.134]],[\"parent/615\",[]],[\"name/616\",[366,55.499]],[\"parent/616\",[365,4.757]],[\"name/617\",[26,32.675]],[\"parent/617\",[365,4.757]],[\"name/618\",[367,52.134]],[\"parent/618\",[]],[\"name/619\",[334,52.134]],[\"parent/619\",[367,4.757]],[\"name/620\",[26,32.675]],[\"parent/620\",[367,4.757]],[\"name/621\",[368,52.134]],[\"parent/621\",[]],[\"name/622\",[155,43.261]],[\"parent/622\",[368,4.757]],[\"name/623\",[120,39.404]],[\"parent/623\",[368,4.757]],[\"name/624\",[369,49.621]],[\"parent/624\",[]],[\"name/625\",[366,55.499]],[\"parent/625\",[369,4.528]],[\"name/626\",[232,47.614]],[\"parent/626\",[369,4.528]],[\"name/627\",[148,33.091]],[\"parent/627\",[369,4.528]],[\"name/628\",[370,55.499]],[\"parent/628\",[]],[\"name/629\",[343,45.943]],[\"parent/629\",[370,5.064]],[\"name/630\",[371,52.134]],[\"parent/630\",[]],[\"name/631\",[372,60.607]],[\"parent/631\",[371,4.757]],[\"name/632\",[373,60.607]],[\"parent/632\",[371,4.757]],[\"name/633\",[374,52.134]],[\"parent/633\",[]],[\"name/634\",[375,60.607]],[\"parent/634\",[374,4.757]],[\"name/635\",[376,60.607]],[\"parent/635\",[374,4.757]],[\"name/636\",[377,55.499]],[\"parent/636\",[]],[\"name/637\",[378,60.607]],[\"parent/637\",[377,5.064]],[\"name/638\",[379,60.607]],[\"parent/638\",[]],[\"name/639\",[380,60.607]],[\"parent/639\",[]],[\"name/640\",[381,60.607]],[\"parent/640\",[]],[\"name/641\",[382,60.607]],[\"parent/641\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":21,\"name\":{\"22\":{},\"23\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"53\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{}},\"parent\":{}}],[\"_events\",{\"_index\":39,\"name\":{\"55\":{}},\"parent\":{}}],[\"_listenercount\",{\"_index\":49,\"name\":{\"67\":{}},\"parent\":{}}],[\"_listeners\",{\"_index\":50,\"name\":{\"68\":{}},\"parent\":{}}],[\"_off\",{\"_index\":47,\"name\":{\"65\":{}},\"parent\":{}}],[\"_removealllisteners\",{\"_index\":48,\"name\":{\"66\":{}},\"parent\":{}}],[\"_startpending\",{\"_index\":35,\"name\":{\"50\":{}},\"parent\":{}}],[\"addaddresses\",{\"_index\":375,\"name\":{\"634\":{}},\"parent\":{}}],[\"addfilters\",{\"_index\":372,\"name\":{\"631\":{}},\"parent\":{}}],[\"address\",{\"_index\":105,\"name\":{\"146\":{},\"153\":{},\"207\":{},\"210\":{},\"484\":{}},\"parent\":{}}],[\"address_activity\",{\"_index\":354,\"name\":{\"561\":{}},\"parent\":{}}],[\"addressactivityresponse\",{\"_index\":363,\"name\":{\"609\":{}},\"parent\":{\"610\":{},\"611\":{},\"612\":{}}}],[\"addressactivitywebhook\",{\"_index\":358,\"name\":{\"583\":{}},\"parent\":{\"584\":{},\"585\":{},\"586\":{},\"587\":{},\"588\":{},\"589\":{},\"590\":{},\"591\":{},\"592\":{}}}],[\"addresses\",{\"_index\":334,\"name\":{\"537\":{},\"610\":{},\"619\":{}},\"parent\":{}}],[\"addresswebhookparams\",{\"_index\":367,\"name\":{\"618\":{}},\"parent\":{\"619\":{},\"620\":{}}}],[\"addresswebhookupdate\",{\"_index\":380,\"name\":{\"639\":{}},\"parent\":{}}],[\"airdrops\",{\"_index\":229,\"name\":{\"341\":{}},\"parent\":{}}],[\"alchemy\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{}}}],[\"alchemyconfig\",{\"_index\":24,\"name\":{\"35\":{}},\"parent\":{\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{}}}],[\"alchemyeventfilter\",{\"_index\":338,\"name\":{\"542\":{}},\"parent\":{}}],[\"alchemyeventtype\",{\"_index\":337,\"name\":{\"541\":{}},\"parent\":{}}],[\"alchemyminedtransactionsaddress\",{\"_index\":336,\"name\":{\"540\":{}},\"parent\":{}}],[\"alchemyminedtransactionseventfilter\",{\"_index\":333,\"name\":{\"535\":{}},\"parent\":{\"536\":{},\"537\":{},\"538\":{},\"539\":{}}}],[\"alchemypendingtransactionseventfilter\",{\"_index\":330,\"name\":{\"530\":{}},\"parent\":{\"531\":{},\"532\":{},\"533\":{},\"534\":{}}}],[\"alchemyprovider\",{\"_index\":33,\"name\":{\"45\":{}},\"parent\":{\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{}}}],[\"alchemyproviderpromise\",{\"_index\":10,\"name\":{\"11\":{}},\"parent\":{}}],[\"alchemysettings\",{\"_index\":127,\"name\":{\"175\":{}},\"parent\":{\"176\":{},\"177\":{},\"178\":{},\"179\":{},\"180\":{},\"181\":{}}}],[\"alchemysubscription\",{\"_index\":327,\"name\":{\"527\":{}},\"parent\":{\"528\":{},\"529\":{}}}],[\"alchemywebsocketprovider\",{\"_index\":38,\"name\":{\"54\":{}},\"parent\":{\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{}}}],[\"already_queued\",{\"_index\":292,\"name\":{\"467\":{}},\"parent\":{}}],[\"amount\",{\"_index\":274,\"name\":{\"439\":{}},\"parent\":{}}],[\"apikey\",{\"_index\":25,\"name\":{\"37\":{},\"46\":{},\"56\":{},\"176\":{}},\"parent\":{}}],[\"appid\",{\"_index\":347,\"name\":{\"554\":{},\"572\":{},\"582\":{},\"592\":{},\"602\":{},\"614\":{}},\"parent\":{}}],[\"approved\",{\"_index\":322,\"name\":{\"521\":{}},\"parent\":{}}],[\"arb_goerli\",{\"_index\":139,\"name\":{\"193\":{}},\"parent\":{}}],[\"arb_mainnet\",{\"_index\":137,\"name\":{\"191\":{}},\"parent\":{}}],[\"arb_rinkeby\",{\"_index\":138,\"name\":{\"192\":{}},\"parent\":{}}],[\"ascending\",{\"_index\":180,\"name\":{\"258\":{},\"443\":{}},\"parent\":{}}],[\"asset\",{\"_index\":195,\"name\":{\"280\":{},\"294\":{}},\"parent\":{}}],[\"assettransferscategory\",{\"_index\":173,\"name\":{\"250\":{}},\"parent\":{\"251\":{},\"252\":{},\"253\":{},\"254\":{},\"255\":{},\"256\":{}}}],[\"assettransfersmetadata\",{\"_index\":200,\"name\":{\"297\":{}},\"parent\":{\"298\":{}}}],[\"assettransfersorder\",{\"_index\":179,\"name\":{\"257\":{}},\"parent\":{\"258\":{},\"259\":{}}}],[\"assettransfersparams\",{\"_index\":161,\"name\":{\"226\":{}},\"parent\":{\"227\":{},\"228\":{},\"229\":{},\"230\":{},\"231\":{},\"232\":{},\"233\":{},\"234\":{},\"235\":{},\"236\":{},\"237\":{}}}],[\"assettransfersresponse\",{\"_index\":184,\"name\":{\"264\":{}},\"parent\":{\"265\":{},\"266\":{}}}],[\"assettransfersresult\",{\"_index\":187,\"name\":{\"270\":{}},\"parent\":{\"271\":{},\"272\":{},\"273\":{},\"274\":{},\"275\":{},\"276\":{},\"277\":{},\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{}}}],[\"assettransferswithmetadataparams\",{\"_index\":172,\"name\":{\"238\":{}},\"parent\":{\"239\":{},\"240\":{},\"241\":{},\"242\":{},\"243\":{},\"244\":{},\"245\":{},\"246\":{},\"247\":{},\"248\":{},\"249\":{}}}],[\"assettransferswithmetadataresponse\",{\"_index\":186,\"name\":{\"267\":{}},\"parent\":{\"268\":{},\"269\":{}}}],[\"assettransferswithmetadataresult\",{\"_index\":198,\"name\":{\"283\":{}},\"parent\":{\"284\":{},\"285\":{},\"286\":{},\"287\":{},\"288\":{},\"289\":{},\"290\":{},\"291\":{},\"292\":{},\"293\":{},\"294\":{},\"295\":{},\"296\":{}}}],[\"astar_mainnet\",{\"_index\":142,\"name\":{\"196\":{}},\"parent\":{}}],[\"attributes\",{\"_index\":206,\"name\":{\"305\":{}},\"parent\":{}}],[\"authtoken\",{\"_index\":30,\"name\":{\"42\":{},\"180\":{}},\"parent\":{}}],[\"background_color\",{\"_index\":205,\"name\":{\"304\":{}},\"parent\":{}}],[\"balance\",{\"_index\":235,\"name\":{\"351\":{},\"364\":{},\"380\":{}},\"parent\":{}}],[\"basenft\",{\"_index\":121,\"name\":{\"166\":{}},\"parent\":{\"167\":{},\"168\":{},\"169\":{}}}],[\"basenftcontract\",{\"_index\":104,\"name\":{\"145\":{}},\"parent\":{\"146\":{}}}],[\"batchrequests\",{\"_index\":28,\"name\":{\"40\":{},\"48\":{}},\"parent\":{}}],[\"batchrequsets\",{\"_index\":128,\"name\":{\"181\":{}},\"parent\":{}}],[\"block\",{\"_index\":307,\"name\":{\"497\":{},\"501\":{}},\"parent\":{}}],[\"blockhash\",{\"_index\":299,\"name\":{\"475\":{}},\"parent\":{}}],[\"blocknum\",{\"_index\":189,\"name\":{\"273\":{},\"287\":{}},\"parent\":{}}],[\"blocknumber\",{\"_index\":269,\"name\":{\"434\":{},\"473\":{},\"526\":{}},\"parent\":{}}],[\"blocktimestamp\",{\"_index\":201,\"name\":{\"298\":{}},\"parent\":{}}],[\"bundleindex\",{\"_index\":271,\"name\":{\"436\":{}},\"parent\":{}}],[\"buyer\",{\"_index\":281,\"name\":{\"451\":{}},\"parent\":{}}],[\"buyeraddress\",{\"_index\":257,\"name\":{\"403\":{},\"415\":{},\"428\":{}},\"parent\":{}}],[\"bytes\",{\"_index\":212,\"name\":{\"315\":{}},\"parent\":{}}],[\"call\",{\"_index\":14,\"name\":{\"15\":{},\"113\":{}},\"parent\":{}}],[\"cancelprivatetransaction\",{\"_index\":93,\"name\":{\"130\":{}},\"parent\":{}}],[\"category\",{\"_index\":169,\"name\":{\"234\":{},\"247\":{},\"272\":{},\"286\":{}},\"parent\":{}}],[\"checknftownership\",{\"_index\":61,\"name\":{\"83\":{}},\"parent\":{}}],[\"classifications\",{\"_index\":220,\"name\":{\"324\":{}},\"parent\":{}}],[\"collectionname\",{\"_index\":313,\"name\":{\"511\":{}},\"parent\":{}}],[\"collectionurl\",{\"_index\":250,\"name\":{\"391\":{}},\"parent\":{}}],[\"computerarity\",{\"_index\":67,\"name\":{\"89\":{}},\"parent\":{}}],[\"config\",{\"_index\":7,\"name\":{\"7\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":2,\"name\":{\"2\":{},\"10\":{},\"25\":{},\"34\":{},\"36\":{}},\"parent\":{}}],[\"contract\",{\"_index\":22,\"name\":{\"24\":{},\"155\":{},\"167\":{},\"352\":{},\"365\":{}},\"parent\":{\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{}}}],[\"contractaddress\",{\"_index\":155,\"name\":{\"214\":{},\"218\":{},\"382\":{},\"409\":{},\"425\":{},\"458\":{},\"462\":{},\"622\":{}},\"parent\":{}}],[\"contractaddresses\",{\"_index\":167,\"name\":{\"232\":{},\"245\":{},\"327\":{},\"334\":{}},\"parent\":{}}],[\"contractfactory\",{\"_index\":23,\"name\":{\"33\":{}},\"parent\":{\"34\":{}}}],[\"core\",{\"_index\":3,\"name\":{\"3\":{}},\"parent\":{}}],[\"corenamespace\",{\"_index\":73,\"name\":{\"101\":{}},\"parent\":{\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{},\"123\":{},\"124\":{},\"125\":{},\"126\":{},\"127\":{}}}],[\"createwebhook\",{\"_index\":100,\"name\":{\"141\":{}},\"parent\":{}}],[\"decimal\",{\"_index\":275,\"name\":{\"441\":{},\"485\":{}},\"parent\":{}}],[\"decimals\",{\"_index\":159,\"name\":{\"224\":{}},\"parent\":{}}],[\"default_tokens\",{\"_index\":144,\"name\":{\"198\":{}},\"parent\":{}}],[\"deletewebhook\",{\"_index\":101,\"name\":{\"142\":{}},\"parent\":{}}],[\"deployeraddress\",{\"_index\":326,\"name\":{\"525\":{}},\"parent\":{}}],[\"deployresult\",{\"_index\":325,\"name\":{\"524\":{}},\"parent\":{\"525\":{},\"526\":{}}}],[\"descending\",{\"_index\":181,\"name\":{\"259\":{},\"444\":{}},\"parent\":{}}],[\"description\",{\"_index\":113,\"name\":{\"157\":{},\"301\":{},\"354\":{},\"514\":{}},\"parent\":{}}],[\"destroy\",{\"_index\":46,\"name\":{\"63\":{}},\"parent\":{}}],[\"detectnetwork\",{\"_index\":34,\"name\":{\"49\":{}},\"parent\":{}}],[\"discordurl\",{\"_index\":318,\"name\":{\"517\":{}},\"parent\":{}}],[\"does_not_exist\",{\"_index\":291,\"name\":{\"466\":{}},\"parent\":{}}],[\"dropped_transaction\",{\"_index\":353,\"name\":{\"560\":{}},\"parent\":{}}],[\"droppedtransactionwebhook\",{\"_index\":357,\"name\":{\"573\":{}},\"parent\":{\"574\":{},\"575\":{},\"576\":{},\"577\":{},\"578\":{},\"579\":{},\"580\":{},\"581\":{},\"582\":{}}}],[\"erc1155\",{\"_index\":177,\"name\":{\"255\":{},\"262\":{}},\"parent\":{}}],[\"erc1155metadata\",{\"_index\":194,\"name\":{\"278\":{},\"292\":{},\"479\":{}},\"parent\":{\"480\":{},\"481\":{}}}],[\"erc20\",{\"_index\":145,\"name\":{\"199\":{},\"253\":{}},\"parent\":{}}],[\"erc721\",{\"_index\":176,\"name\":{\"254\":{},\"261\":{}},\"parent\":{}}],[\"erc721dishonesttotalsupply\",{\"_index\":216,\"name\":{\"319\":{}},\"parent\":{}}],[\"erc721tokenid\",{\"_index\":193,\"name\":{\"277\":{},\"291\":{}},\"parent\":{}}],[\"erc721toomanyowners\",{\"_index\":214,\"name\":{\"317\":{}},\"parent\":{}}],[\"erc721toomanytokens\",{\"_index\":215,\"name\":{\"318\":{}},\"parent\":{}}],[\"error\",{\"_index\":156,\"name\":{\"216\":{},\"220\":{},\"394\":{}},\"parent\":{}}],[\"estimategas\",{\"_index\":13,\"name\":{\"14\":{},\"114\":{},\"133\":{}},\"parent\":{}}],[\"eth_goerli\",{\"_index\":131,\"name\":{\"185\":{}},\"parent\":{}}],[\"eth_kovan\",{\"_index\":132,\"name\":{\"186\":{}},\"parent\":{}}],[\"eth_mainnet\",{\"_index\":129,\"name\":{\"183\":{}},\"parent\":{}}],[\"eth_rinkeby\",{\"_index\":133,\"name\":{\"187\":{}},\"parent\":{}}],[\"eth_ropsten\",{\"_index\":130,\"name\":{\"184\":{}},\"parent\":{}}],[\"excludefilters\",{\"_index\":222,\"name\":{\"328\":{},\"335\":{}},\"parent\":{}}],[\"excludezerovalue\",{\"_index\":168,\"name\":{\"233\":{},\"246\":{}},\"parent\":{}}],[\"external\",{\"_index\":174,\"name\":{\"251\":{}},\"parent\":{}}],[\"external_url\",{\"_index\":204,\"name\":{\"303\":{}},\"parent\":{}}],[\"externalurl\",{\"_index\":316,\"name\":{\"515\":{}},\"parent\":{}}],[\"fast\",{\"_index\":340,\"name\":{\"544\":{}},\"parent\":{}}],[\"filters\",{\"_index\":366,\"name\":{\"616\":{},\"625\":{}},\"parent\":{}}],[\"findcontractdeployer\",{\"_index\":85,\"name\":{\"121\":{}},\"parent\":{}}],[\"finished\",{\"_index\":294,\"name\":{\"469\":{}},\"parent\":{}}],[\"floorprice\",{\"_index\":248,\"name\":{\"389\":{},\"510\":{}},\"parent\":{}}],[\"floorpriceerror\",{\"_index\":252,\"name\":{\"393\":{}},\"parent\":{\"394\":{}}}],[\"floorpricemarketplace\",{\"_index\":247,\"name\":{\"388\":{}},\"parent\":{\"389\":{},\"390\":{},\"391\":{},\"392\":{}}}],[\"format\",{\"_index\":210,\"name\":{\"313\":{}},\"parent\":{}}],[\"from\",{\"_index\":190,\"name\":{\"274\":{},\"288\":{}},\"parent\":{}}],[\"fromaddress\",{\"_index\":165,\"name\":{\"230\":{},\"243\":{},\"532\":{}},\"parent\":{}}],[\"fromblock\",{\"_index\":162,\"name\":{\"227\":{},\"240\":{},\"399\":{},\"411\":{}},\"parent\":{}}],[\"fromhex\",{\"_index\":122,\"name\":{\"170\":{}},\"parent\":{}}],[\"gateway\",{\"_index\":208,\"name\":{\"308\":{},\"311\":{}},\"parent\":{}}],[\"getaddresses\",{\"_index\":97,\"name\":{\"138\":{}},\"parent\":{}}],[\"getaddressesoptions\",{\"_index\":362,\"name\":{\"606\":{}},\"parent\":{\"607\":{},\"608\":{}}}],[\"getallwebhooks\",{\"_index\":96,\"name\":{\"137\":{}},\"parent\":{}}],[\"getallwebhooksresponse\",{\"_index\":360,\"name\":{\"603\":{}},\"parent\":{\"604\":{},\"605\":{}}}],[\"getassettransfers\",{\"_index\":88,\"name\":{\"124\":{}},\"parent\":{}}],[\"getbalance\",{\"_index\":11,\"name\":{\"12\":{},\"102\":{}},\"parent\":{}}],[\"getbasenftsforcontractoptions\",{\"_index\":304,\"name\":{\"491\":{}},\"parent\":{\"492\":{},\"493\":{},\"494\":{}}}],[\"getbasenftsforowneroptions\",{\"_index\":226,\"name\":{\"332\":{}},\"parent\":{\"333\":{},\"334\":{},\"335\":{},\"336\":{},\"337\":{},\"338\":{}}}],[\"getblock\",{\"_index\":76,\"name\":{\"106\":{}},\"parent\":{}}],[\"getblocknumber\",{\"_index\":79,\"name\":{\"109\":{}},\"parent\":{}}],[\"getblockwithtransactions\",{\"_index\":77,\"name\":{\"107\":{}},\"parent\":{}}],[\"getchainid\",{\"_index\":16,\"name\":{\"17\":{}},\"parent\":{}}],[\"getcode\",{\"_index\":74,\"name\":{\"103\":{}},\"parent\":{}}],[\"getcontractmetadata\",{\"_index\":54,\"name\":{\"76\":{}},\"parent\":{}}],[\"getfeedata\",{\"_index\":18,\"name\":{\"19\":{},\"111\":{}},\"parent\":{}}],[\"getfloorprice\",{\"_index\":65,\"name\":{\"87\":{}},\"parent\":{}}],[\"getfloorpriceresponse\",{\"_index\":253,\"name\":{\"395\":{}},\"parent\":{\"396\":{},\"397\":{}}}],[\"getgasprice\",{\"_index\":17,\"name\":{\"18\":{},\"110\":{}},\"parent\":{}}],[\"getlogs\",{\"_index\":84,\"name\":{\"119\":{}},\"parent\":{}}],[\"getmaxpriorityfeepergas\",{\"_index\":94,\"name\":{\"134\":{}},\"parent\":{}}],[\"getnetwork\",{\"_index\":78,\"name\":{\"108\":{}},\"parent\":{}}],[\"getnftfilters\",{\"_index\":98,\"name\":{\"139\":{}},\"parent\":{}}],[\"getnftmetadata\",{\"_index\":52,\"name\":{\"74\":{}},\"parent\":{}}],[\"getnftmetadatabatch\",{\"_index\":53,\"name\":{\"75\":{}},\"parent\":{}}],[\"getnftsales\",{\"_index\":66,\"name\":{\"88\":{}},\"parent\":{}}],[\"getnftsalesoptions\",{\"_index\":255,\"name\":{\"398\":{}},\"parent\":{\"399\":{},\"400\":{},\"401\":{},\"402\":{},\"403\":{},\"404\":{},\"405\":{},\"406\":{},\"407\":{}}}],[\"getnftsalesoptionsbycontractaddress\",{\"_index\":261,\"name\":{\"408\":{}},\"parent\":{\"409\":{},\"410\":{},\"411\":{},\"412\":{},\"413\":{},\"414\":{},\"415\":{},\"416\":{},\"417\":{},\"418\":{},\"419\":{}}}],[\"getnftsalesresponse\",{\"_index\":262,\"name\":{\"420\":{}},\"parent\":{\"421\":{},\"422\":{}}}],[\"getnftsforcontract\",{\"_index\":57,\"name\":{\"79\":{}},\"parent\":{}}],[\"getnftsforcontractiterator\",{\"_index\":58,\"name\":{\"80\":{}},\"parent\":{}}],[\"getnftsforcontractoptions\",{\"_index\":303,\"name\":{\"486\":{}},\"parent\":{\"487\":{},\"488\":{},\"489\":{},\"490\":{}}}],[\"getnftsforowner\",{\"_index\":56,\"name\":{\"78\":{}},\"parent\":{}}],[\"getnftsforowneriterator\",{\"_index\":55,\"name\":{\"77\":{}},\"parent\":{}}],[\"getnftsforowneroptions\",{\"_index\":221,\"name\":{\"325\":{}},\"parent\":{\"326\":{},\"327\":{},\"328\":{},\"329\":{},\"330\":{},\"331\":{}}}],[\"getownersforcontract\",{\"_index\":59,\"name\":{\"81\":{}},\"parent\":{}}],[\"getownersforcontractoptions\",{\"_index\":305,\"name\":{\"495\":{}},\"parent\":{\"496\":{},\"497\":{},\"498\":{}}}],[\"getownersforcontractresponse\",{\"_index\":239,\"name\":{\"370\":{}},\"parent\":{\"371\":{}}}],[\"getownersforcontractwithtokenbalancesoptions\",{\"_index\":308,\"name\":{\"499\":{}},\"parent\":{\"500\":{},\"501\":{},\"502\":{}}}],[\"getownersforcontractwithtokenbalancesresponse\",{\"_index\":240,\"name\":{\"372\":{}},\"parent\":{\"373\":{},\"374\":{}}}],[\"getownersfornft\",{\"_index\":60,\"name\":{\"82\":{}},\"parent\":{}}],[\"getownersfornftresponse\",{\"_index\":237,\"name\":{\"368\":{}},\"parent\":{\"369\":{}}}],[\"getprovider\",{\"_index\":31,\"name\":{\"43\":{}},\"parent\":{}}],[\"getspamcontracts\",{\"_index\":64,\"name\":{\"86\":{}},\"parent\":{}}],[\"getstorageat\",{\"_index\":75,\"name\":{\"104\":{}},\"parent\":{}}],[\"gettokenbalances\",{\"_index\":86,\"name\":{\"122\":{}},\"parent\":{}}],[\"gettokenmetadata\",{\"_index\":87,\"name\":{\"123\":{}},\"parent\":{}}],[\"gettransaction\",{\"_index\":81,\"name\":{\"115\":{},\"131\":{}},\"parent\":{}}],[\"gettransactioncount\",{\"_index\":12,\"name\":{\"13\":{},\"105\":{}},\"parent\":{}}],[\"gettransactionreceipt\",{\"_index\":82,\"name\":{\"116\":{}},\"parent\":{}}],[\"gettransactionreceipts\",{\"_index\":89,\"name\":{\"125\":{}},\"parent\":{}}],[\"getwallet\",{\"_index\":20,\"name\":{\"21\":{}},\"parent\":{}}],[\"getwebsocketprovider\",{\"_index\":32,\"name\":{\"44\":{}},\"parent\":{}}],[\"hash\",{\"_index\":196,\"name\":{\"281\":{},\"295\":{}},\"parent\":{}}],[\"hashesonly\",{\"_index\":332,\"name\":{\"534\":{},\"539\":{}},\"parent\":{}}],[\"id\",{\"_index\":342,\"name\":{\"546\":{},\"565\":{},\"575\":{},\"585\":{},\"595\":{}},\"parent\":{}}],[\"image\",{\"_index\":203,\"name\":{\"302\":{}},\"parent\":{}}],[\"imageurl\",{\"_index\":315,\"name\":{\"513\":{}},\"parent\":{}}],[\"in_progress\",{\"_index\":293,\"name\":{\"468\":{}},\"parent\":{}}],[\"includeremoved\",{\"_index\":335,\"name\":{\"538\":{}},\"parent\":{}}],[\"internal\",{\"_index\":175,\"name\":{\"252\":{}},\"parent\":{}}],[\"isactive\",{\"_index\":343,\"name\":{\"550\":{},\"568\":{},\"578\":{},\"588\":{},\"598\":{},\"629\":{}},\"parent\":{}}],[\"iscommunityresource\",{\"_index\":36,\"name\":{\"51\":{},\"64\":{}},\"parent\":{}}],[\"ishex\",{\"_index\":124,\"name\":{\"172\":{}},\"parent\":{}}],[\"isspam\",{\"_index\":219,\"name\":{\"323\":{}},\"parent\":{}}],[\"isspamcontract\",{\"_index\":63,\"name\":{\"85\":{}},\"parent\":{}}],[\"lastingestedat\",{\"_index\":319,\"name\":{\"518\":{}},\"parent\":{}}],[\"limit\",{\"_index\":260,\"name\":{\"406\":{},\"418\":{},\"607\":{}},\"parent\":{}}],[\"listenercount\",{\"_index\":44,\"name\":{\"61\":{},\"99\":{}},\"parent\":{}}],[\"listeners\",{\"_index\":45,\"name\":{\"62\":{},\"100\":{}},\"parent\":{}}],[\"logindex\",{\"_index\":270,\"name\":{\"435\":{}},\"parent\":{}}],[\"loglevel\",{\"_index\":126,\"name\":{\"174\":{}},\"parent\":{}}],[\"logo\",{\"_index\":160,\"name\":{\"225\":{}},\"parent\":{}}],[\"looksrare\",{\"_index\":254,\"name\":{\"397\":{},\"447\":{}},\"parent\":{}}],[\"lookupaddress\",{\"_index\":90,\"name\":{\"127\":{}},\"parent\":{}}],[\"marketplace\",{\"_index\":256,\"name\":{\"402\":{},\"414\":{},\"424\":{}},\"parent\":{}}],[\"marketplacefee\",{\"_index\":267,\"name\":{\"432\":{}},\"parent\":{}}],[\"matic_mainnet\",{\"_index\":140,\"name\":{\"194\":{}},\"parent\":{}}],[\"matic_mumbai\",{\"_index\":141,\"name\":{\"195\":{}},\"parent\":{}}],[\"maxcount\",{\"_index\":170,\"name\":{\"235\":{},\"248\":{}},\"parent\":{}}],[\"maxretries\",{\"_index\":27,\"name\":{\"39\":{},\"47\":{},\"178\":{}},\"parent\":{}}],[\"media\",{\"_index\":118,\"name\":{\"162\":{},\"309\":{},\"359\":{}},\"parent\":{\"310\":{},\"311\":{},\"312\":{},\"313\":{},\"314\":{},\"315\":{}}}],[\"metadata\",{\"_index\":199,\"name\":{\"284\":{}},\"parent\":{}}],[\"metadataerror\",{\"_index\":115,\"name\":{\"159\":{},\"356\":{}},\"parent\":{}}],[\"method\",{\"_index\":331,\"name\":{\"531\":{},\"536\":{}},\"parent\":{}}],[\"mined_transaction\",{\"_index\":352,\"name\":{\"559\":{}},\"parent\":{}}],[\"mined_transactions\",{\"_index\":329,\"name\":{\"529\":{}},\"parent\":{}}],[\"minedtransactionwebhook\",{\"_index\":356,\"name\":{\"563\":{}},\"parent\":{\"564\":{},\"565\":{},\"566\":{},\"567\":{},\"568\":{},\"569\":{},\"570\":{},\"571\":{},\"572\":{}}}],[\"mostlyhoneypotowners\",{\"_index\":217,\"name\":{\"320\":{}},\"parent\":{}}],[\"name\",{\"_index\":108,\"name\":{\"149\":{},\"222\":{},\"300\":{}},\"parent\":{}}],[\"network\",{\"_index\":26,\"name\":{\"38\":{},\"177\":{},\"182\":{},\"547\":{},\"566\":{},\"576\":{},\"586\":{},\"596\":{},\"617\":{},\"620\":{}},\"parent\":{\"183\":{},\"184\":{},\"185\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{}}}],[\"newaddresses\",{\"_index\":378,\"name\":{\"637\":{}},\"parent\":{}}],[\"nft\",{\"_index\":4,\"name\":{\"4\":{},\"154\":{}},\"parent\":{\"155\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{}}}],[\"nft_activity\",{\"_index\":355,\"name\":{\"562\":{}},\"parent\":{}}],[\"nftactivitywebhook\",{\"_index\":359,\"name\":{\"593\":{}},\"parent\":{\"594\":{},\"595\":{},\"596\":{},\"597\":{},\"598\":{},\"599\":{},\"600\":{},\"601\":{},\"602\":{}}}],[\"nftattributerarity\",{\"_index\":283,\"name\":{\"453\":{}},\"parent\":{\"454\":{},\"455\":{},\"456\":{}}}],[\"nftattributesresponse\",{\"_index\":286,\"name\":{\"457\":{}},\"parent\":{\"458\":{},\"459\":{},\"460\":{}}}],[\"nftcontract\",{\"_index\":106,\"name\":{\"147\":{}},\"parent\":{\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{},\"153\":{}}}],[\"nftcontractbasenftsresponse\",{\"_index\":309,\"name\":{\"503\":{}},\"parent\":{\"504\":{},\"505\":{}}}],[\"nftcontractnftsresponse\",{\"_index\":311,\"name\":{\"506\":{}},\"parent\":{\"507\":{},\"508\":{}}}],[\"nftcontractowner\",{\"_index\":241,\"name\":{\"375\":{}},\"parent\":{\"376\":{},\"377\":{}}}],[\"nftcontracttokenbalance\",{\"_index\":243,\"name\":{\"378\":{}},\"parent\":{\"379\":{},\"380\":{}}}],[\"nftexcludefilters\",{\"_index\":227,\"name\":{\"339\":{}},\"parent\":{\"340\":{},\"341\":{}}}],[\"nftfilter\",{\"_index\":368,\"name\":{\"621\":{}},\"parent\":{\"622\":{},\"623\":{}}}],[\"nftfiltersresponse\",{\"_index\":369,\"name\":{\"624\":{}},\"parent\":{\"625\":{},\"626\":{},\"627\":{}}}],[\"nftmetadata\",{\"_index\":202,\"name\":{\"299\":{}},\"parent\":{\"300\":{},\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{}}}],[\"nftmetadatabatchoptions\",{\"_index\":245,\"name\":{\"385\":{}},\"parent\":{\"386\":{},\"387\":{}}}],[\"nftmetadatabatchtoken\",{\"_index\":244,\"name\":{\"381\":{}},\"parent\":{\"382\":{},\"383\":{},\"384\":{}}}],[\"nftnamespace\",{\"_index\":51,\"name\":{\"73\":{}},\"parent\":{\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{}}}],[\"nfts\",{\"_index\":310,\"name\":{\"504\":{},\"507\":{}},\"parent\":{}}],[\"nftsale\",{\"_index\":264,\"name\":{\"423\":{}},\"parent\":{\"424\":{},\"425\":{},\"426\":{},\"427\":{},\"428\":{},\"429\":{},\"430\":{},\"431\":{},\"432\":{},\"433\":{},\"434\":{},\"435\":{},\"436\":{},\"437\":{}}}],[\"nftsalefeedata\",{\"_index\":273,\"name\":{\"438\":{}},\"parent\":{\"439\":{},\"440\":{},\"441\":{}}}],[\"nftsalemarketplace\",{\"_index\":277,\"name\":{\"445\":{}},\"parent\":{\"446\":{},\"447\":{},\"448\":{},\"449\":{}}}],[\"nftsales\",{\"_index\":263,\"name\":{\"422\":{}},\"parent\":{}}],[\"nftsaletakertype\",{\"_index\":280,\"name\":{\"450\":{}},\"parent\":{\"451\":{},\"452\":{}}}],[\"nftspamclassification\",{\"_index\":213,\"name\":{\"316\":{}},\"parent\":{\"317\":{},\"318\":{},\"319\":{},\"320\":{},\"321\":{}}}],[\"nfttokentype\",{\"_index\":182,\"name\":{\"260\":{}},\"parent\":{\"261\":{},\"262\":{},\"263\":{}}}],[\"nftwebhookparams\",{\"_index\":365,\"name\":{\"615\":{}},\"parent\":{\"616\":{},\"617\":{}}}],[\"nftwebhookupdate\",{\"_index\":379,\"name\":{\"638\":{}},\"parent\":{}}],[\"nonemptyarray\",{\"_index\":382,\"name\":{\"641\":{}},\"parent\":{}}],[\"not_requested\",{\"_index\":324,\"name\":{\"523\":{}},\"parent\":{}}],[\"notify\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{}}],[\"notifynamespace\",{\"_index\":95,\"name\":{\"136\":{}},\"parent\":{\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{}}}],[\"off\",{\"_index\":42,\"name\":{\"59\":{},\"97\":{}},\"parent\":{}}],[\"omitmetadata\",{\"_index\":224,\"name\":{\"330\":{},\"337\":{},\"488\":{},\"493\":{}},\"parent\":{}}],[\"on\",{\"_index\":40,\"name\":{\"57\":{},\"95\":{}},\"parent\":{}}],[\"once\",{\"_index\":41,\"name\":{\"58\":{},\"96\":{}},\"parent\":{}}],[\"opensea\",{\"_index\":111,\"name\":{\"152\":{},\"396\":{}},\"parent\":{}}],[\"openseacollectionmetadata\",{\"_index\":312,\"name\":{\"509\":{}},\"parent\":{\"510\":{},\"511\":{},\"512\":{},\"513\":{},\"514\":{},\"515\":{},\"516\":{},\"517\":{},\"518\":{}}}],[\"openseasafelistrequeststatus\",{\"_index\":320,\"name\":{\"519\":{}},\"parent\":{\"520\":{},\"521\":{},\"522\":{},\"523\":{}}}],[\"opt_goerli\",{\"_index\":136,\"name\":{\"190\":{}},\"parent\":{}}],[\"opt_kovan\",{\"_index\":135,\"name\":{\"189\":{}},\"parent\":{}}],[\"opt_mainnet\",{\"_index\":134,\"name\":{\"188\":{}},\"parent\":{}}],[\"order\",{\"_index\":164,\"name\":{\"229\":{},\"242\":{},\"401\":{},\"413\":{}},\"parent\":{}}],[\"ownedbasenft\",{\"_index\":236,\"name\":{\"363\":{}},\"parent\":{\"364\":{},\"365\":{},\"366\":{},\"367\":{}}}],[\"ownedbasenftsresponse\",{\"_index\":233,\"name\":{\"346\":{}},\"parent\":{\"347\":{},\"348\":{},\"349\":{}}}],[\"ownedbymosthoneypots\",{\"_index\":218,\"name\":{\"321\":{}},\"parent\":{}}],[\"ownednft\",{\"_index\":234,\"name\":{\"350\":{}},\"parent\":{\"351\":{},\"352\":{},\"353\":{},\"354\":{},\"355\":{},\"356\":{},\"357\":{},\"358\":{},\"359\":{},\"360\":{},\"361\":{},\"362\":{}}}],[\"ownednfts\",{\"_index\":231,\"name\":{\"343\":{},\"347\":{}},\"parent\":{}}],[\"ownednftsresponse\",{\"_index\":230,\"name\":{\"342\":{}},\"parent\":{\"343\":{},\"344\":{},\"345\":{}}}],[\"owneraddress\",{\"_index\":242,\"name\":{\"376\":{}},\"parent\":{}}],[\"owners\",{\"_index\":238,\"name\":{\"369\":{},\"371\":{},\"373\":{}},\"parent\":{}}],[\"pagekey\",{\"_index\":148,\"name\":{\"202\":{},\"206\":{},\"236\":{},\"249\":{},\"266\":{},\"269\":{},\"326\":{},\"333\":{},\"344\":{},\"348\":{},\"374\":{},\"407\":{},\"419\":{},\"421\":{},\"487\":{},\"492\":{},\"498\":{},\"502\":{},\"505\":{},\"508\":{},\"608\":{},\"612\":{},\"627\":{}},\"parent\":{}}],[\"pagesize\",{\"_index\":223,\"name\":{\"329\":{},\"336\":{},\"489\":{},\"494\":{}},\"parent\":{}}],[\"pending_transactions\",{\"_index\":328,\"name\":{\"528\":{}},\"parent\":{}}],[\"prevalence\",{\"_index\":285,\"name\":{\"456\":{}},\"parent\":{}}],[\"pricecurrency\",{\"_index\":249,\"name\":{\"390\":{}},\"parent\":{}}],[\"progress\",{\"_index\":290,\"name\":{\"464\":{}},\"parent\":{}}],[\"quantity\",{\"_index\":265,\"name\":{\"427\":{}},\"parent\":{}}],[\"queue_failed\",{\"_index\":296,\"name\":{\"471\":{}},\"parent\":{}}],[\"queued\",{\"_index\":295,\"name\":{\"470\":{}},\"parent\":{}}],[\"raw\",{\"_index\":207,\"name\":{\"307\":{},\"310\":{}},\"parent\":{}}],[\"rawcontract\",{\"_index\":197,\"name\":{\"282\":{},\"296\":{},\"482\":{}},\"parent\":{\"483\":{},\"484\":{},\"485\":{}}}],[\"rawmetadata\",{\"_index\":116,\"name\":{\"160\":{},\"357\":{}},\"parent\":{}}],[\"ready\",{\"_index\":80,\"name\":{\"112\":{}},\"parent\":{}}],[\"receipts\",{\"_index\":302,\"name\":{\"478\":{}},\"parent\":{}}],[\"refreshcache\",{\"_index\":246,\"name\":{\"387\":{}},\"parent\":{}}],[\"refreshcontract\",{\"_index\":71,\"name\":{\"93\":{}},\"parent\":{}}],[\"refreshcontractresult\",{\"_index\":288,\"name\":{\"461\":{}},\"parent\":{\"462\":{},\"463\":{},\"464\":{}}}],[\"refreshnftmetadata\",{\"_index\":70,\"name\":{\"92\":{}},\"parent\":{}}],[\"refreshstate\",{\"_index\":289,\"name\":{\"463\":{},\"465\":{}},\"parent\":{\"466\":{},\"467\":{},\"468\":{},\"469\":{},\"470\":{},\"471\":{}}}],[\"removeaddresses\",{\"_index\":376,\"name\":{\"635\":{}},\"parent\":{}}],[\"removealllisteners\",{\"_index\":43,\"name\":{\"60\":{},\"98\":{}},\"parent\":{}}],[\"removefilters\",{\"_index\":373,\"name\":{\"632\":{}},\"parent\":{}}],[\"requested\",{\"_index\":323,\"name\":{\"522\":{}},\"parent\":{}}],[\"requireatleastone\",{\"_index\":381,\"name\":{\"640\":{}},\"parent\":{}}],[\"resolvename\",{\"_index\":19,\"name\":{\"20\":{},\"126\":{}},\"parent\":{}}],[\"retrievedat\",{\"_index\":251,\"name\":{\"392\":{}},\"parent\":{}}],[\"royaltyfee\",{\"_index\":268,\"name\":{\"433\":{}},\"parent\":{}}],[\"safelistrequeststatus\",{\"_index\":314,\"name\":{\"512\":{}},\"parent\":{}}],[\"seaport\",{\"_index\":278,\"name\":{\"446\":{}},\"parent\":{}}],[\"searchcontractmetadata\",{\"_index\":68,\"name\":{\"90\":{}},\"parent\":{}}],[\"seller\",{\"_index\":282,\"name\":{\"452\":{}},\"parent\":{}}],[\"selleraddress\",{\"_index\":258,\"name\":{\"404\":{},\"416\":{},\"429\":{}},\"parent\":{}}],[\"sellerfee\",{\"_index\":266,\"name\":{\"431\":{}},\"parent\":{}}],[\"send\",{\"_index\":37,\"name\":{\"52\":{},\"120\":{}},\"parent\":{}}],[\"sendprivatetransaction\",{\"_index\":92,\"name\":{\"129\":{}},\"parent\":{}}],[\"sendprivatetransactionoptions\",{\"_index\":339,\"name\":{\"543\":{}},\"parent\":{\"544\":{}}}],[\"sendtransaction\",{\"_index\":15,\"name\":{\"16\":{},\"117\":{},\"132\":{}},\"parent\":{}}],[\"sendwebhookrequest\",{\"_index\":103,\"name\":{\"144\":{}},\"parent\":{}}],[\"setloglevel\",{\"_index\":125,\"name\":{\"173\":{}},\"parent\":{}}],[\"signingkey\",{\"_index\":345,\"name\":{\"552\":{},\"570\":{},\"580\":{},\"590\":{},\"600\":{}},\"parent\":{}}],[\"size\",{\"_index\":211,\"name\":{\"314\":{}},\"parent\":{}}],[\"sortingorder\",{\"_index\":276,\"name\":{\"442\":{}},\"parent\":{\"443\":{},\"444\":{}}}],[\"spam\",{\"_index\":228,\"name\":{\"340\":{}},\"parent\":{}}],[\"spaminfo\",{\"_index\":119,\"name\":{\"163\":{},\"322\":{},\"360\":{}},\"parent\":{\"323\":{},\"324\":{}}}],[\"specialnft\",{\"_index\":178,\"name\":{\"256\":{}},\"parent\":{}}],[\"summarizenftattributes\",{\"_index\":69,\"name\":{\"91\":{}},\"parent\":{}}],[\"summary\",{\"_index\":287,\"name\":{\"460\":{}},\"parent\":{}}],[\"symbol\",{\"_index\":109,\"name\":{\"150\":{},\"223\":{},\"440\":{}},\"parent\":{}}],[\"taker\",{\"_index\":259,\"name\":{\"405\":{},\"417\":{},\"430\":{}},\"parent\":{}}],[\"thumbnail\",{\"_index\":209,\"name\":{\"312\":{}},\"parent\":{}}],[\"timecreated\",{\"_index\":344,\"name\":{\"551\":{},\"569\":{},\"579\":{},\"589\":{},\"599\":{}},\"parent\":{}}],[\"timelastupdated\",{\"_index\":114,\"name\":{\"158\":{},\"355\":{}},\"parent\":{}}],[\"title\",{\"_index\":112,\"name\":{\"156\":{},\"353\":{}},\"parent\":{}}],[\"to\",{\"_index\":191,\"name\":{\"275\":{},\"289\":{}},\"parent\":{}}],[\"toaddress\",{\"_index\":166,\"name\":{\"231\":{},\"244\":{},\"533\":{}},\"parent\":{}}],[\"toblock\",{\"_index\":163,\"name\":{\"228\":{},\"241\":{},\"400\":{},\"412\":{}},\"parent\":{}}],[\"tohex\",{\"_index\":123,\"name\":{\"171\":{}},\"parent\":{}}],[\"tokenbalance\",{\"_index\":153,\"name\":{\"212\":{},\"215\":{},\"219\":{}},\"parent\":{}}],[\"tokenbalancefailure\",{\"_index\":157,\"name\":{\"217\":{}},\"parent\":{\"218\":{},\"219\":{},\"220\":{}}}],[\"tokenbalances\",{\"_index\":151,\"name\":{\"208\":{},\"211\":{},\"377\":{}},\"parent\":{}}],[\"tokenbalancesoptionsdefaulttokens\",{\"_index\":149,\"name\":{\"203\":{}},\"parent\":{\"204\":{}}}],[\"tokenbalancesoptionserc20\",{\"_index\":146,\"name\":{\"200\":{}},\"parent\":{\"201\":{},\"202\":{}}}],[\"tokenbalancesresponse\",{\"_index\":152,\"name\":{\"209\":{}},\"parent\":{\"210\":{},\"211\":{}}}],[\"tokenbalancesresponseerc20\",{\"_index\":150,\"name\":{\"205\":{}},\"parent\":{\"206\":{},\"207\":{},\"208\":{}}}],[\"tokenbalancesuccess\",{\"_index\":154,\"name\":{\"213\":{}},\"parent\":{\"214\":{},\"215\":{},\"216\":{}}}],[\"tokenbalancetype\",{\"_index\":143,\"name\":{\"197\":{}},\"parent\":{\"198\":{},\"199\":{}}}],[\"tokenid\",{\"_index\":120,\"name\":{\"164\":{},\"168\":{},\"279\":{},\"293\":{},\"361\":{},\"366\":{},\"379\":{},\"383\":{},\"410\":{},\"426\":{},\"480\":{},\"623\":{}},\"parent\":{}}],[\"tokenmetadataresponse\",{\"_index\":158,\"name\":{\"221\":{}},\"parent\":{\"222\":{},\"223\":{},\"224\":{},\"225\":{}}}],[\"tokentype\",{\"_index\":107,\"name\":{\"148\":{},\"165\":{},\"169\":{},\"362\":{},\"367\":{},\"384\":{}},\"parent\":{}}],[\"tokenuri\",{\"_index\":117,\"name\":{\"161\":{},\"306\":{},\"358\":{}},\"parent\":{\"307\":{},\"308\":{}}}],[\"tokenuritimeoutinms\",{\"_index\":225,\"name\":{\"331\":{},\"338\":{},\"386\":{},\"490\":{}},\"parent\":{}}],[\"totalcount\",{\"_index\":232,\"name\":{\"345\":{},\"349\":{},\"605\":{},\"611\":{},\"626\":{}},\"parent\":{}}],[\"totalsupply\",{\"_index\":110,\"name\":{\"151\":{},\"459\":{}},\"parent\":{}}],[\"traittype\",{\"_index\":284,\"name\":{\"455\":{}},\"parent\":{}}],[\"transact\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"transactionhash\",{\"_index\":272,\"name\":{\"437\":{}},\"parent\":{}}],[\"transactionreceiptsblockhash\",{\"_index\":298,\"name\":{\"474\":{}},\"parent\":{\"475\":{}}}],[\"transactionreceiptsblocknumber\",{\"_index\":297,\"name\":{\"472\":{}},\"parent\":{\"473\":{}}}],[\"transactionreceiptsparams\",{\"_index\":300,\"name\":{\"476\":{}},\"parent\":{}}],[\"transactionreceiptsresponse\",{\"_index\":301,\"name\":{\"477\":{}},\"parent\":{\"478\":{}}}],[\"transactionwebhookparams\",{\"_index\":364,\"name\":{\"613\":{}},\"parent\":{\"614\":{}}}],[\"transactnamespace\",{\"_index\":91,\"name\":{\"128\":{}},\"parent\":{\"129\":{},\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{}}}],[\"transfers\",{\"_index\":185,\"name\":{\"265\":{},\"268\":{}},\"parent\":{}}],[\"twitterusername\",{\"_index\":317,\"name\":{\"516\":{}},\"parent\":{}}],[\"type\",{\"_index\":147,\"name\":{\"201\":{},\"204\":{},\"548\":{},\"564\":{},\"574\":{},\"584\":{},\"594\":{}},\"parent\":{}}],[\"uniqueid\",{\"_index\":188,\"name\":{\"271\":{},\"285\":{}},\"parent\":{}}],[\"unknown\",{\"_index\":183,\"name\":{\"263\":{},\"449\":{}},\"parent\":{}}],[\"updatewebhook\",{\"_index\":99,\"name\":{\"140\":{}},\"parent\":{}}],[\"url\",{\"_index\":29,\"name\":{\"41\":{},\"179\":{},\"549\":{},\"567\":{},\"577\":{},\"587\":{},\"597\":{}},\"parent\":{}}],[\"utils\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{}}],[\"v1\",{\"_index\":349,\"name\":{\"556\":{}},\"parent\":{}}],[\"v2\",{\"_index\":350,\"name\":{\"557\":{}},\"parent\":{}}],[\"value\",{\"_index\":192,\"name\":{\"276\":{},\"290\":{},\"454\":{},\"481\":{},\"483\":{}},\"parent\":{}}],[\"verified\",{\"_index\":321,\"name\":{\"520\":{}},\"parent\":{}}],[\"verifyconfig\",{\"_index\":102,\"name\":{\"143\":{}},\"parent\":{}}],[\"verifynftownership\",{\"_index\":62,\"name\":{\"84\":{}},\"parent\":{}}],[\"version\",{\"_index\":346,\"name\":{\"553\":{},\"571\":{},\"581\":{},\"591\":{},\"601\":{}},\"parent\":{}}],[\"waitfortransaction\",{\"_index\":83,\"name\":{\"118\":{},\"135\":{}},\"parent\":{}}],[\"wallet\",{\"_index\":9,\"name\":{\"9\":{}},\"parent\":{\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{}}}],[\"webhook\",{\"_index\":341,\"name\":{\"545\":{}},\"parent\":{\"546\":{},\"547\":{},\"548\":{},\"549\":{},\"550\":{},\"551\":{},\"552\":{},\"553\":{},\"554\":{}}}],[\"webhookaddressoverride\",{\"_index\":377,\"name\":{\"636\":{}},\"parent\":{\"637\":{}}}],[\"webhookaddressupdate\",{\"_index\":374,\"name\":{\"633\":{}},\"parent\":{\"634\":{},\"635\":{}}}],[\"webhooknftfilterupdate\",{\"_index\":371,\"name\":{\"630\":{}},\"parent\":{\"631\":{},\"632\":{}}}],[\"webhooks\",{\"_index\":361,\"name\":{\"604\":{}},\"parent\":{}}],[\"webhookstatusupdate\",{\"_index\":370,\"name\":{\"628\":{}},\"parent\":{\"629\":{}}}],[\"webhooktype\",{\"_index\":351,\"name\":{\"558\":{}},\"parent\":{\"559\":{},\"560\":{},\"561\":{},\"562\":{}}}],[\"webhookversion\",{\"_index\":348,\"name\":{\"555\":{}},\"parent\":{\"556\":{},\"557\":{}}}],[\"websocketnamespace\",{\"_index\":72,\"name\":{\"94\":{}},\"parent\":{\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{}}}],[\"withmetadata\",{\"_index\":171,\"name\":{\"237\":{},\"239\":{}},\"parent\":{}}],[\"withtokenbalances\",{\"_index\":306,\"name\":{\"496\":{},\"500\":{}},\"parent\":{}}],[\"ws\",{\"_index\":5,\"name\":{\"5\":{}},\"parent\":{}}],[\"x2y2\",{\"_index\":279,\"name\":{\"448\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/classes/Alchemy.html b/docs/classes/Alchemy.html index e8d4915c..2889936c 100644 --- a/docs/classes/Alchemy.html +++ b/docs/classes/Alchemy.html @@ -3,20 +3,20 @@ APIs and separates functionality into different namespaces.

Each SDK instance is associated with a specific network and API key. To use a different network or API key, create a new instance of Alchemy.

-

Hierarchy

Index

Constructors

Properties

+

Hierarchy

Index

Constructors

Properties

Holds the setting information for the instance of the Alchemy SDK client and allows access to the underlying providers.

-
+

The core namespace contains the core eth json-rpc calls and Alchemy's Enhanced APIs.

-
+

The nft namespace contains methods for Alchemy's NFT API.

-
+

The notify namespace contains methods for creating and managing webhooks as part of the Notify API.

-
+

The transact namespace contains methods for sending transactions and checking on the state of submitted transasctions.

-
+

The ws namespace contains methods for using WebSockets and creating subscriptions.

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/AlchemyConfig.html b/docs/classes/AlchemyConfig.html index 537c7c5a..6df911bb 100644 --- a/docs/classes/AlchemyConfig.html +++ b/docs/classes/AlchemyConfig.html @@ -1,18 +1,20 @@ AlchemyConfig | alchemy-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class AlchemyConfig

This class holds the config information for the SDK client instance and exposes the underlying providers for more advanced use cases.

-

Hierarchy

  • AlchemyConfig

Index

Constructors

Properties

apiKey: string
+

Hierarchy

  • AlchemyConfig

Index

Constructors

Properties

apiKey: string

The Alchemy API key.

-
authToken?: string
+
authToken?: string

The optional Alchemy auth token to use when sending requests with the Notify API.

-
maxRetries: number
+
batchRequests: boolean
+

Setting to enable automatic batching on json-rpc requests. Defaults to false.

+
maxRetries: number

The maximum number of retries to perform.

-
network: Network
+
network: Network

The Network that this SDK is associated with.

-
url?: string
+
url?: string

The optional hardcoded URL to send requests to instead of using the network and apiKey.

-

Methods

Methods

  • Returns an AlchemyProvider instance. Only one provider is created per Alchemy instance.

    The AlchemyProvider is a wrapper around ether's AlchemyProvider class and @@ -20,7 +22,7 @@

    Most common methods on the provider are available as top-level methods on the Alchemy instance, but the provider is exposed here to access other less-common methods.

    -

    Returns Promise<AlchemyProvider>

  • Returns an AlchemyWebsocketProvider instance. Only one provider is created per Alchemy instance.

    The AlchemyWebSocketProvider is a wrapper around ether's @@ -29,4 +31,4 @@

    Most common methods on the provider are available as top-level methods on the Alchemy instance, but the provider is exposed here to access other less-common methods.

    -

    Returns Promise<AlchemyWebSocketProvider>

Generated using TypeDoc

\ No newline at end of file +

Returns Promise<AlchemyWebSocketProvider>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/AlchemyProvider.html b/docs/classes/AlchemyProvider.html index 3ed261d3..f83abde8 100644 --- a/docs/classes/AlchemyProvider.html +++ b/docs/classes/AlchemyProvider.html @@ -2,17 +2,17 @@

SDK's custom implementation of ethers.js's 'AlchemyProvider'.

Do not call this constructor directly. Instead, instantiate an instance of Alchemy and call {@link Alchemy.config.getProvider()}.

-

Hierarchy

Implements

Index

Properties

_bootstrapPoll: Timer
_emitted: {}

Type declaration

  • [eventName: string]: number | "pending"
_eventLoopCache: Record<string, Promise<any>>
_events: Event[]
_fastBlockNumber: number
_fastBlockNumberPromise: Promise<number>
_fastQueryDate: number
_internalBlockNumber: Promise<{ blockNumber: number; reqTime: number; respTime: number }>
_isProvider: boolean
_lastBlockNumber: number
_maxFilterBlockRange: number
_maxInternalBlockNumber: number
_network: Network
_networkPromise: Promise<Network>
_nextId: number
_pendingFilter: Promise<number>
_poller: Timer
_pollingInterval: number
anyNetwork: boolean
apiKey: string
connection: ConnectionInfo
disableCcipRead: boolean
formatter: Formatter
maxRetries: number

Accessors

Methods

Hierarchy

Implements

Index

Properties

_bootstrapPoll: Timer
_emitted: {}

Type declaration

  • [eventName: string]: number | "pending"
_eventLoopCache: Record<string, Promise<any>>
_events: Event[]
_fastBlockNumber: number
_fastBlockNumberPromise: Promise<number>
_fastQueryDate: number
_internalBlockNumber: Promise<{ blockNumber: number; reqTime: number; respTime: number }>
_isProvider: boolean
_lastBlockNumber: number
_maxFilterBlockRange: number
_maxInternalBlockNumber: number
_network: Network
_networkPromise: Promise<Network>
_nextId: number
_pendingFilter: Promise<number>
_poller: Timer
_pollingInterval: number
anyNetwork: boolean
apiKey: string
batchRequests: boolean
connection: ConnectionInfo
disableCcipRead: boolean
formatter: Formatter
maxRetries: number

Accessors

  • get _cache(): Record<string, Promise<any>>
  • Returns Record<string, Promise<any>>

  • get blockNumber(): number
  • Returns number

  • get network(): Network
  • Returns Network

  • get polling(): boolean
  • set polling(value: boolean): void
  • Returns boolean

  • Parameters

    • value: boolean

    Returns void

  • get pollingInterval(): number
  • set pollingInterval(value: number): void
  • Returns number

  • Parameters

    • value: number

    Returns void

  • get ready(): Promise<Network>
  • Returns Promise<Network>

Methods

  • _addEventListener(eventName: EventType, listener: Listener, once: boolean): AlchemyProvider
  • Parameters

    • eventName: EventType
    • listener: Listener
    • once: boolean

    Returns AlchemyProvider

  • _call(transaction: TransactionRequest, blockTag: BlockTag, attempt: number): Promise<string>
  • Parameters

    • transaction: TransactionRequest
    • blockTag: BlockTag
    • attempt: number

    Returns Promise<string>

  • _getAddress(addressOrName: string | Promise<string>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>

    Returns Promise<string>

  • _getBlock(blockHashOrBlockTag: BlockTag | Promise<BlockTag>, includeTransactions?: boolean): Promise<Block | BlockWithTransactions>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>
    • Optional includeTransactions: boolean

    Returns Promise<Block | BlockWithTransactions>

  • _getBlockTag(blockTag: BlockTag | Promise<BlockTag>): Promise<BlockTag>
  • Parameters

    • blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BlockTag>

  • _getFastBlockNumber(): Promise<number>
  • Returns Promise<number>

  • _getFilter(filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>): Promise<Filter | FilterByBlockHash>
  • Parameters

    • filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>

    Returns Promise<Filter | FilterByBlockHash>

  • _getInternalBlockNumber(maxAge: number): Promise<number>
  • Parameters

    • maxAge: number

    Returns Promise<number>

  • _getResolver(name: string, operation?: string): Promise<string>
  • Parameters

    • name: string
    • Optional operation: string

    Returns Promise<string>

  • _getTransactionRequest(transaction: Deferrable<TransactionRequest>): Promise<Transaction>
  • Parameters

    • transaction: Deferrable<TransactionRequest>

    Returns Promise<Transaction>

  • _ready(): Promise<Network>
  • Returns Promise<Network>

  • _setFastBlockNumber(blockNumber: number): void
  • Parameters

    • blockNumber: number

    Returns void

  • _startEvent(event: Event): void
  • Parameters

    • event: Event

    Returns void

  • _startPending(): void
  • _stopEvent(event: Event): void
  • Parameters

    • event: Event

    Returns void

  • _uncachedDetectNetwork(): Promise<Network>
  • Returns Promise<Network>

  • _waitForTransaction(transactionHash: string, confirmations: number, timeout: number, replaceable: { data: string; from: string; nonce: number; startBlock: number; to: string; value: BigNumber }): Promise<TransactionReceipt>
  • Parameters

    • transactionHash: string
    • confirmations: number
    • timeout: number
    • replaceable: { data: string; from: string; nonce: number; startBlock: number; to: string; value: BigNumber }
      • data: string
      • from: string
      • nonce: number
      • startBlock: number
      • to: string
      • value: BigNumber

    Returns Promise<TransactionReceipt>

  • _wrapTransaction(tx: Transaction, hash?: string, startBlock?: number): TransactionResponse
  • Parameters

    • tx: Transaction
    • Optional hash: string
    • Optional startBlock: number

    Returns TransactionResponse

  • addListener(eventName: EventType, listener: Listener): Provider
  • Parameters

    • eventName: EventType
    • listener: Listener

    Returns Provider

  • call(transaction: Deferrable<TransactionRequest>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • transaction: Deferrable<TransactionRequest>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • ccipReadFetch(tx: Transaction, calldata: string, urls: string[]): Promise<null | string>
  • Parameters

    • tx: Transaction
    • calldata: string
    • urls: string[]

    Returns Promise<null | string>

  • detectNetwork(): Promise<Network>
  • Overrides the method in ethers.js's StaticJsonRpcProvider class. This method is called when calling methods on the parent class BaseProvider.

    -
    override

    Returns Promise<Network>

  • emit(eventName: EventType, ...args: any[]): boolean
  • Parameters

    • eventName: EventType
    • Rest ...args: any[]

    Returns boolean

  • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>
  • Parameters

    • transaction: Deferrable<TransactionRequest>

    Returns Promise<BigNumber>

  • getAvatar(nameOrAddress: string): Promise<null | string>
  • Parameters

    • nameOrAddress: string

    Returns Promise<null | string>

  • getBalance(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<BigNumber>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BigNumber>

  • getBlock(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<Block>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

    Returns Promise<Block>

  • getBlockNumber(): Promise<number>
  • Returns Promise<number>

  • getBlockWithTransactions(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<BlockWithTransactions>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BlockWithTransactions>

  • getCode(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • getEtherPrice(): Promise<number>
  • Returns Promise<number>

  • getFeeData(): Promise<FeeData>
  • Returns Promise<FeeData>

  • getGasPrice(): Promise<BigNumber>
  • Returns Promise<BigNumber>

  • getLogs(filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>): Promise<Log[]>
  • Parameters

    • filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>

    Returns Promise<Log[]>

  • getNetwork(): Promise<Network>
  • Returns Promise<Network>

  • getResolver(name: string): Promise<null | Resolver>
  • Parameters

    • name: string

    Returns Promise<null | Resolver>

  • getSigner(addressOrIndex?: string | number): JsonRpcSigner
  • Parameters

    • Optional addressOrIndex: string | number

    Returns JsonRpcSigner

  • getStorageAt(addressOrName: string | Promise<string>, position: BigNumberish | Promise<BigNumberish>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>
    • position: BigNumberish | Promise<BigNumberish>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • getTransaction(transactionHash: string | Promise<string>): Promise<TransactionResponse>
  • Parameters

    • transactionHash: string | Promise<string>

    Returns Promise<TransactionResponse>

  • getTransactionCount(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<number>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<number>

  • getTransactionReceipt(transactionHash: string | Promise<string>): Promise<TransactionReceipt>
  • Parameters

    • transactionHash: string | Promise<string>

    Returns Promise<TransactionReceipt>

  • getUncheckedSigner(addressOrIndex?: string | number): UncheckedJsonRpcSigner
  • Parameters

    • Optional addressOrIndex: string | number

    Returns UncheckedJsonRpcSigner

  • isCommunityResource(): boolean
  • emit(eventName: EventType, ...args: any[]): boolean
  • Parameters

    • eventName: EventType
    • Rest ...args: any[]

    Returns boolean

  • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>
  • Parameters

    • transaction: Deferrable<TransactionRequest>

    Returns Promise<BigNumber>

  • getAvatar(nameOrAddress: string): Promise<null | string>
  • Parameters

    • nameOrAddress: string

    Returns Promise<null | string>

  • getBalance(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<BigNumber>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BigNumber>

  • getBlock(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<Block>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

    Returns Promise<Block>

  • getBlockNumber(): Promise<number>
  • Returns Promise<number>

  • getBlockWithTransactions(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<BlockWithTransactions>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BlockWithTransactions>

  • getCode(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • getEtherPrice(): Promise<number>
  • Returns Promise<number>

  • getFeeData(): Promise<FeeData>
  • Returns Promise<FeeData>

  • getGasPrice(): Promise<BigNumber>
  • Returns Promise<BigNumber>

  • getLogs(filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>): Promise<Log[]>
  • Parameters

    • filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>

    Returns Promise<Log[]>

  • getNetwork(): Promise<Network>
  • Returns Promise<Network>

  • getResolver(name: string): Promise<null | Resolver>
  • Parameters

    • name: string

    Returns Promise<null | Resolver>

  • getSigner(addressOrIndex?: string | number): JsonRpcSigner
  • Parameters

    • Optional addressOrIndex: string | number

    Returns JsonRpcSigner

  • getStorageAt(addressOrName: string | Promise<string>, position: BigNumberish | Promise<BigNumberish>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>
    • position: BigNumberish | Promise<BigNumberish>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • getTransaction(transactionHash: string | Promise<string>): Promise<TransactionResponse>
  • Parameters

    • transactionHash: string | Promise<string>

    Returns Promise<TransactionResponse>

  • getTransactionCount(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<number>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<number>

  • getTransactionReceipt(transactionHash: string | Promise<string>): Promise<TransactionReceipt>
  • Parameters

    • transactionHash: string | Promise<string>

    Returns Promise<TransactionReceipt>

  • getUncheckedSigner(addressOrIndex?: string | number): UncheckedJsonRpcSigner
  • Parameters

    • Optional addressOrIndex: string | number

    Returns UncheckedJsonRpcSigner

  • isCommunityResource(): boolean
  • Overrides the ether's isCommunityResource() method. Returns true if the current api key is the default key.

    -
    override

    Returns boolean

  • listAccounts(): Promise<string[]>
  • Returns Promise<string[]>

  • listenerCount(eventName?: EventType): number
  • Parameters

    • Optional eventName: EventType

    Returns number

  • listeners(eventName?: EventType): Listener[]
  • Parameters

    • Optional eventName: EventType

    Returns Listener[]

  • lookupAddress(address: string | Promise<string>): Promise<null | string>
  • Parameters

    • address: string | Promise<string>

    Returns Promise<null | string>

  • Parameters

    • eventName: EventType
    • Optional listener: Listener

    Returns AlchemyProvider

  • Parameters

    • eventName: EventType
    • listener: Listener

    Returns AlchemyProvider

  • Parameters

    • eventName: EventType
    • listener: Listener

    Returns AlchemyProvider

  • perform(method: string, params: any): Promise<any>
  • Parameters

    • method: string
    • params: any

    Returns Promise<any>

  • poll(): Promise<void>
  • Returns Promise<void>

  • prepareRequest(method: string, params: any): [string, any[]]
  • Parameters

    • method: string
    • params: any

    Returns [string, any[]]

  • Parameters

    • Optional eventName: EventType

    Returns AlchemyProvider

  • removeListener(eventName: EventType, listener: Listener): Provider
  • Parameters

    • eventName: EventType
    • listener: Listener

    Returns Provider

  • resetEventsBlock(blockNumber: number): void
  • Parameters

    • blockNumber: number

    Returns void

  • resolveName(name: string | Promise<string>): Promise<null | string>
  • Parameters

    • name: string | Promise<string>

    Returns Promise<null | string>

  • send(method: string, params: any[]): Promise<any>
  • listAccounts(): Promise<string[]>
  • Returns Promise<string[]>

  • listenerCount(eventName?: EventType): number
  • Parameters

    • Optional eventName: EventType

    Returns number

  • listeners(eventName?: EventType): Listener[]
  • Parameters

    • Optional eventName: EventType

    Returns Listener[]

  • lookupAddress(address: string | Promise<string>): Promise<null | string>
  • Parameters

    • address: string | Promise<string>

    Returns Promise<null | string>

  • Parameters

    • eventName: EventType
    • Optional listener: Listener

    Returns AlchemyProvider

  • Parameters

    • eventName: EventType
    • listener: Listener

    Returns AlchemyProvider

  • Parameters

    • eventName: EventType
    • listener: Listener

    Returns AlchemyProvider

  • perform(method: string, params: any): Promise<any>
  • Parameters

    • method: string
    • params: any

    Returns Promise<any>

  • poll(): Promise<void>
  • Returns Promise<void>

  • prepareRequest(method: string, params: any): [string, any[]]
  • Parameters

    • method: string
    • params: any

    Returns [string, any[]]

  • Parameters

    • Optional eventName: EventType

    Returns AlchemyProvider

  • removeListener(eventName: EventType, listener: Listener): Provider
  • Parameters

    • eventName: EventType
    • listener: Listener

    Returns Provider

  • resetEventsBlock(blockNumber: number): void
  • Parameters

    • blockNumber: number

    Returns void

  • resolveName(name: string | Promise<string>): Promise<null | string>
  • Parameters

    • name: string | Promise<string>

    Returns Promise<null | string>

  • send(method: string, params: any[]): Promise<any>
  • Overrides the base {@link JsonRpcProvider.send} method to implement custom logic for sending requests to Alchemy.

    override

    Parameters

    • method: string

      The method name to use for the request.

    • params: any[]

      The parameters to use for the request.

      -

    Returns Promise<any>

  • sendTransaction(signedTransaction: string | Promise<string>): Promise<TransactionResponse>
  • Parameters

    • signedTransaction: string | Promise<string>

    Returns Promise<TransactionResponse>

  • waitForTransaction(transactionHash: string, confirmations?: number, timeout?: number): Promise<TransactionReceipt>
  • Parameters

    • transactionHash: string
    • Optional confirmations: number
    • Optional timeout: number

    Returns Promise<TransactionReceipt>

  • defaultUrl(): string
  • Returns string

  • getFormatter(): Formatter
  • Returns Formatter

  • hexlifyTransaction(transaction: TransactionRequest, allowExtra?: {}): {}
  • Parameters

    • transaction: TransactionRequest
    • Optional allowExtra: {}
      • [key: string]: boolean

    Returns {}

    • [key: string]: string | AccessList
  • isProvider(value: any): value is Provider
  • Parameters

    • value: any

    Returns value is Provider

Generated using TypeDoc

\ No newline at end of file +

Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/AlchemyWebSocketProvider.html b/docs/classes/AlchemyWebSocketProvider.html index 287373c4..5fd3a822 100644 --- a/docs/classes/AlchemyWebSocketProvider.html +++ b/docs/classes/AlchemyWebSocketProvider.html @@ -2,61 +2,61 @@

SDK's custom implementation fo the ethers.js's 'AlchemyWebSocketProvider'.

Do not call this constructor directly. Instead, instantiate an instance of Alchemy and call {@link Alchemy.config.getWebSocketProvider()}.

-

Hierarchy

Implements

Index

Properties

_bootstrapPoll: Timer
_detectNetwork: Promise<Network>
_emitted: {}

Type declaration

  • [eventName: string]: number | "pending"
_eventLoopCache: Record<string, Promise<any>>
_events: EthersEvent[] = []
_fastBlockNumber: number
_fastBlockNumberPromise: Promise<number>
_fastQueryDate: number
_internalBlockNumber: Promise<{ blockNumber: number; reqTime: number; respTime: number }>
_isProvider: boolean
_lastBlockNumber: number
_maxFilterBlockRange: number
_maxInternalBlockNumber: number
_network: Network
_networkPromise: Promise<Network>
_nextId: number
_pendingFilter: Promise<number>
_poller: Timer
_pollingInterval: number
_requests: {}

Type declaration

  • [name: string]: InflightRequest
_subIds: {}

Type declaration

  • [tag: string]: Promise<string>
_subs: {}

Type declaration

  • [name: string]: Subscription
_websocket: any
_wsReady: boolean
anyNetwork: boolean
apiKey: string
connection: ConnectionInfo
disableCcipRead: boolean
formatter: Formatter

Accessors

Methods

Hierarchy

Implements

Index

Properties

_bootstrapPoll: Timer
_detectNetwork: Promise<Network>
_emitted: {}

Type declaration

  • [eventName: string]: number | "pending"
_eventLoopCache: Record<string, Promise<any>>
_events: EthersEvent[] = []
_fastBlockNumber: number
_fastBlockNumberPromise: Promise<number>
_fastQueryDate: number
_internalBlockNumber: Promise<{ blockNumber: number; reqTime: number; respTime: number }>
_isProvider: boolean
_lastBlockNumber: number
_maxFilterBlockRange: number
_maxInternalBlockNumber: number
_network: Network
_networkPromise: Promise<Network>
_nextId: number
_pendingFilter: Promise<number>
_poller: Timer
_pollingInterval: number
_requests: {}

Type declaration

  • [name: string]: InflightRequest
_subIds: {}

Type declaration

  • [tag: string]: Promise<string>
_subs: {}

Type declaration

  • [name: string]: Subscription
_websocket: any
_wsReady: boolean
anyNetwork: boolean
apiKey: string
connection: ConnectionInfo
disableCcipRead: boolean
formatter: Formatter

Accessors

  • get _cache(): Record<string, Promise<any>>
  • Returns Record<string, Promise<any>>

  • get blockNumber(): number
  • Returns number

  • get network(): Network
  • Returns Network

  • set polling(value: boolean): void
  • Parameters

    • value: boolean

    Returns void

  • get pollingInterval(): number
  • set pollingInterval(value: number): void
  • Returns number

  • Parameters

    • value: number

    Returns void

  • get ready(): Promise<Network>
  • Returns Promise<Network>

  • get websocket(): WebSocketLike
  • Returns WebSocketLike

Methods

  • _call(transaction: TransactionRequest, blockTag: BlockTag, attempt: number): Promise<string>
  • Parameters

    • transaction: TransactionRequest
    • blockTag: BlockTag
    • attempt: number

    Returns Promise<string>

  • _getAddress(addressOrName: string | Promise<string>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>

    Returns Promise<string>

  • _getBlock(blockHashOrBlockTag: BlockTag | Promise<BlockTag>, includeTransactions?: boolean): Promise<Block | BlockWithTransactions>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>
    • Optional includeTransactions: boolean

    Returns Promise<Block | BlockWithTransactions>

  • _getBlockTag(blockTag: BlockTag | Promise<BlockTag>): Promise<BlockTag>
  • Parameters

    • blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BlockTag>

  • _getFastBlockNumber(): Promise<number>
  • Returns Promise<number>

  • _getFilter(filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>): Promise<Filter | FilterByBlockHash>
  • Parameters

    • filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>

    Returns Promise<Filter | FilterByBlockHash>

  • _getInternalBlockNumber(maxAge: number): Promise<number>
  • Parameters

    • maxAge: number

    Returns Promise<number>

  • _getResolver(name: string, operation?: string): Promise<string>
  • Parameters

    • name: string
    • Optional operation: string

    Returns Promise<string>

  • _getTransactionRequest(transaction: Deferrable<TransactionRequest>): Promise<Transaction>
  • Parameters

    • transaction: Deferrable<TransactionRequest>

    Returns Promise<Transaction>

  • DO NOT MODIFY.

    Original code copied over from ether.js's BaseProvider.listenerCount().

    This method is copied over directly in order to implement Alchemy's unique subscription types. The only difference is that this method calls {@link getAlchemyEventTag} instead of the original getEventTag() method in order to parse the Alchemy subscription event.

    -

    Parameters

    Returns number

  • DO NOT MODIFY.

    Original code copied over from ether.js's BaseProvider.listeners().

    This method is copied over directly in order to implement Alchemy's unique subscription types. The only difference is that this method calls {@link getAlchemyEventTag} instead of the original getEventTag() method in order to parse the Alchemy subscription event.

    -

    Parameters

    Returns Listener[]

  • DO NOT MODIFY.

    Original code copied over from ether.js's BaseProvider.off().

    This method is copied over directly in order to implement Alchemy's unique subscription types. The only difference is that this method calls {@link getAlchemyEventTag} instead of the original getEventTag() method in order to parse the Alchemy subscription event.

    -

    Parameters

    Returns AlchemyWebSocketProvider

  • _ready(): Promise<Network>
  • Returns Promise<Network>

  • _ready(): Promise<Network>
  • Returns Promise<Network>

  • DO NOT MODIFY.

    Original code copied over from ether.js's BaseProvider.removeAllListeners().

    This method is copied over directly in order to implement Alchemy's unique subscription types. The only difference is that this method calls {@link getAlchemyEventTag} instead of the original getEventTag() method in order to parse the Alchemy subscription event.

    -

    Parameters

    Returns AlchemyWebSocketProvider

  • _setFastBlockNumber(blockNumber: number): void
  • Parameters

    • blockNumber: number

    Returns void

  • _startPending(): void
  • Returns void

  • _uncachedDetectNetwork(): Promise<Network>
  • Returns Promise<Network>

  • _waitForTransaction(transactionHash: string, confirmations: number, timeout: number, replaceable: { data: string; from: string; nonce: number; startBlock: number; to: string; value: BigNumber }): Promise<TransactionReceipt>
  • Parameters

    • transactionHash: string
    • confirmations: number
    • timeout: number
    • replaceable: { data: string; from: string; nonce: number; startBlock: number; to: string; value: BigNumber }
      • data: string
      • from: string
      • nonce: number
      • startBlock: number
      • to: string
      • value: BigNumber

    Returns Promise<TransactionReceipt>

  • _wrapTransaction(tx: Transaction, hash?: string, startBlock?: number): TransactionResponse
  • Parameters

    • tx: Transaction
    • Optional hash: string
    • Optional startBlock: number

    Returns TransactionResponse

  • addListener(eventName: EventType, listener: Listener): Provider
  • Parameters

    • eventName: EventType
    • listener: Listener

    Returns Provider

  • call(transaction: Deferrable<TransactionRequest>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • transaction: Deferrable<TransactionRequest>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • ccipReadFetch(tx: Transaction, calldata: string, urls: string[]): Promise<null | string>
  • Parameters

    • tx: Transaction
    • calldata: string
    • urls: string[]

    Returns Promise<null | string>

  • destroy(): Promise<void>
  • detectNetwork(): Promise<Network>
  • Returns Promise<Network>

  • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>
  • Parameters

    • transaction: Deferrable<TransactionRequest>

    Returns Promise<BigNumber>

  • getAvatar(nameOrAddress: string): Promise<null | string>
  • Parameters

    • nameOrAddress: string

    Returns Promise<null | string>

  • getBalance(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<BigNumber>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BigNumber>

  • getBlock(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<Block>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

    Returns Promise<Block>

  • getBlockNumber(): Promise<number>
  • Returns Promise<number>

  • getBlockWithTransactions(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<BlockWithTransactions>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BlockWithTransactions>

  • getCode(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • getEtherPrice(): Promise<number>
  • Returns Promise<number>

  • getFeeData(): Promise<FeeData>
  • Returns Promise<FeeData>

  • getGasPrice(): Promise<BigNumber>
  • Returns Promise<BigNumber>

  • getLogs(filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>): Promise<Log[]>
  • Parameters

    • filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>

    Returns Promise<Log[]>

  • getNetwork(): Promise<Network>
  • Returns Promise<Network>

  • getResolver(name: string): Promise<null | Resolver>
  • Parameters

    • name: string

    Returns Promise<null | Resolver>

  • getSigner(addressOrIndex?: string | number): JsonRpcSigner
  • Parameters

    • Optional addressOrIndex: string | number

    Returns JsonRpcSigner

  • getStorageAt(addressOrName: string | Promise<string>, position: BigNumberish | Promise<BigNumberish>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>
    • position: BigNumberish | Promise<BigNumberish>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • getTransaction(transactionHash: string | Promise<string>): Promise<TransactionResponse>
  • Parameters

    • transactionHash: string | Promise<string>

    Returns Promise<TransactionResponse>

  • getTransactionCount(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<number>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<number>

  • getTransactionReceipt(transactionHash: string | Promise<string>): Promise<TransactionReceipt>
  • Parameters

    • transactionHash: string | Promise<string>

    Returns Promise<TransactionReceipt>

  • getUncheckedSigner(addressOrIndex?: string | number): UncheckedJsonRpcSigner
  • Parameters

    • Optional addressOrIndex: string | number

    Returns UncheckedJsonRpcSigner

  • isCommunityResource(): boolean
  • _setFastBlockNumber(blockNumber: number): void
  • Parameters

    • blockNumber: number

    Returns void

  • _startPending(): void
  • Returns void

  • _uncachedDetectNetwork(): Promise<Network>
  • Returns Promise<Network>

  • _waitForTransaction(transactionHash: string, confirmations: number, timeout: number, replaceable: { data: string; from: string; nonce: number; startBlock: number; to: string; value: BigNumber }): Promise<TransactionReceipt>
  • Parameters

    • transactionHash: string
    • confirmations: number
    • timeout: number
    • replaceable: { data: string; from: string; nonce: number; startBlock: number; to: string; value: BigNumber }
      • data: string
      • from: string
      • nonce: number
      • startBlock: number
      • to: string
      • value: BigNumber

    Returns Promise<TransactionReceipt>

  • _wrapTransaction(tx: Transaction, hash?: string, startBlock?: number): TransactionResponse
  • Parameters

    • tx: Transaction
    • Optional hash: string
    • Optional startBlock: number

    Returns TransactionResponse

  • addListener(eventName: EventType, listener: Listener): Provider
  • Parameters

    • eventName: EventType
    • listener: Listener

    Returns Provider

  • call(transaction: Deferrable<TransactionRequest>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • transaction: Deferrable<TransactionRequest>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • ccipReadFetch(tx: Transaction, calldata: string, urls: string[]): Promise<null | string>
  • Parameters

    • tx: Transaction
    • calldata: string
    • urls: string[]

    Returns Promise<null | string>

  • destroy(): Promise<void>
  • detectNetwork(): Promise<Network>
  • Returns Promise<Network>

  • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>
  • Parameters

    • transaction: Deferrable<TransactionRequest>

    Returns Promise<BigNumber>

  • getAvatar(nameOrAddress: string): Promise<null | string>
  • Parameters

    • nameOrAddress: string

    Returns Promise<null | string>

  • getBalance(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<BigNumber>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BigNumber>

  • getBlock(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<Block>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

    Returns Promise<Block>

  • getBlockNumber(): Promise<number>
  • Returns Promise<number>

  • getBlockWithTransactions(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<BlockWithTransactions>
  • Parameters

    • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

    Returns Promise<BlockWithTransactions>

  • getCode(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • getEtherPrice(): Promise<number>
  • Returns Promise<number>

  • getFeeData(): Promise<FeeData>
  • Returns Promise<FeeData>

  • getGasPrice(): Promise<BigNumber>
  • Returns Promise<BigNumber>

  • getLogs(filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>): Promise<Log[]>
  • Parameters

    • filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>

    Returns Promise<Log[]>

  • getNetwork(): Promise<Network>
  • Returns Promise<Network>

  • getResolver(name: string): Promise<null | Resolver>
  • Parameters

    • name: string

    Returns Promise<null | Resolver>

  • getSigner(addressOrIndex?: string | number): JsonRpcSigner
  • Parameters

    • Optional addressOrIndex: string | number

    Returns JsonRpcSigner

  • getStorageAt(addressOrName: string | Promise<string>, position: BigNumberish | Promise<BigNumberish>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Parameters

    • addressOrName: string | Promise<string>
    • position: BigNumberish | Promise<BigNumberish>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<string>

  • getTransaction(transactionHash: string | Promise<string>): Promise<TransactionResponse>
  • Parameters

    • transactionHash: string | Promise<string>

    Returns Promise<TransactionResponse>

  • getTransactionCount(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<number>
  • Parameters

    • addressOrName: string | Promise<string>
    • Optional blockTag: BlockTag | Promise<BlockTag>

    Returns Promise<number>

  • getTransactionReceipt(transactionHash: string | Promise<string>): Promise<TransactionReceipt>
  • Parameters

    • transactionHash: string | Promise<string>

    Returns Promise<TransactionReceipt>

  • getUncheckedSigner(addressOrIndex?: string | number): UncheckedJsonRpcSigner
  • Parameters

    • Optional addressOrIndex: string | number

    Returns UncheckedJsonRpcSigner

  • isCommunityResource(): boolean
  • Overrides the ether's isCommunityResource() method. Returns true if the current api key is the default key.

    -
    override

    Returns boolean

  • listAccounts(): Promise<string[]>
  • Returns Promise<string[]>

  • listAccounts(): Promise<string[]>
  • Returns Promise<string[]>

  • Returns the number of listeners for the provided {@link eventName} event. If no event is provided, the total number of listeners for all events is returned.

    override

    Parameters

    • Optional eventName: AlchemyEventType

      The event to get the number of listeners for.

      -

    Returns number

Returns number

  • Returns an array of listeners for the provided {@link eventName} event. If no event is provided, all listeners will be included.

    override

    Parameters

    Returns Listener[]

  • lookupAddress(address: string | Promise<string>): Promise<null | string>
  • Parameters

    • address: string | Promise<string>

    Returns Promise<null | string>

Returns Listener[]

  • lookupAddress(address: string | Promise<string>): Promise<null | string>
  • Parameters

    • address: string | Promise<string>

    Returns Promise<null | string>

Returns AlchemyWebSocketProvider

Returns AlchemyWebSocketProvider

  • Overridden implementation of ethers that includes Alchemy based subscriptions. Adds a listener to the triggered for only the next {@link eventName} event, after which it will be removed.

    @@ -64,7 +64,7 @@

    Event to subscribe to

  • listener: Listener

    The listener function to call when the event is triggered.

    -

Returns AlchemyWebSocketProvider

  • perform(method: string, params: any): Promise<any>
  • Parameters

    • method: string
    • params: any

    Returns Promise<any>

  • poll(): Promise<void>
  • Returns Promise<void>

  • prepareRequest(method: string, params: any): [string, any[]]
  • Parameters

    • method: string
    • params: any

    Returns [string, any[]]

Returns AlchemyWebSocketProvider

  • perform(method: string, params: any): Promise<any>
  • Parameters

    • method: string
    • params: any

    Returns Promise<any>

  • poll(): Promise<void>
  • Returns Promise<void>

  • prepareRequest(method: string, params: any): [string, any[]]
  • Parameters

    • method: string
    • params: any

    Returns [string, any[]]

  • Remove all listeners for the provided {@link eventName} event. If no event is provided, all events and their listeners are removed.

    override

    Parameters

    • Optional eventName: AlchemyEventType
      diff --git a/docs/classes/Contract.html b/docs/classes/Contract.html index 1e16760e..94cf719d 100644 --- a/docs/classes/Contract.html +++ b/docs/classes/Contract.html @@ -1,4 +1,4 @@ Contract | alchemy-sdk
      Options
      All
      • Public
      • Public/Protected
      • All
      Menu

      Class Contract

      The Contract class is a wrapper around the Contract class from ethers.js and is exported here for convenience.

      -

      Hierarchy

      • Contract
        • Contract

      Index

      Constructors

      • new Contract(addressOrName: string, contractInterface: ContractInterface, signerOrProvider?: Signer | Provider): Contract
      • Parameters

        • addressOrName: string
        • contractInterface: ContractInterface
        • Optional signerOrProvider: Signer | Provider

        Returns Contract

      Properties

      _deployedPromise: Promise<Contract>
      _runningEvents: {}

      Type declaration

      • [eventTag: string]: RunningEvent
      _wrappedEmits: {}

      Type declaration

      • [eventTag: string]: (...args: any[]) => void
          • (...args: any[]): void
          • Parameters

            • Rest ...args: any[]

            Returns void

      address: string
      callStatic: {}

      Type declaration

      • [name: string]: ContractFunction
      deployTransaction: TransactionResponse
      estimateGas: {}

      Type declaration

      • [name: string]: ContractFunction<BigNumber>
      filters: {}

      Type declaration

      • [name: string]: (...args: any[]) => EventFilter
          • (...args: any[]): EventFilter
          • Parameters

            • Rest ...args: any[]

            Returns EventFilter

      functions: {}

      Type declaration

      • [name: string]: ContractFunction
      interface: Interface
      populateTransaction: {}

      Type declaration

      • [name: string]: ContractFunction<PopulatedTransaction>
      provider: Provider
      resolvedAddress: Promise<string>
      signer: Signer

      Methods

      • _checkRunningEvents(runningEvent: RunningEvent): void
      • Parameters

        • runningEvent: RunningEvent

        Returns void

      • _deployed(blockTag?: BlockTag): Promise<Contract>
      • Parameters

        • Optional blockTag: BlockTag

        Returns Promise<Contract>

      • _wrapEvent(runningEvent: RunningEvent, log: Log, listener: Listener): Event
      • Parameters

        • runningEvent: RunningEvent
        • log: Log
        • listener: Listener

        Returns Event

      • attach(addressOrName: string): Contract
      • Parameters

        • addressOrName: string

        Returns Contract

      • connect(signerOrProvider: string | Signer | Provider): Contract
      • Parameters

        • signerOrProvider: string | Signer | Provider

        Returns Contract

      • deployed(): Promise<Contract>
      • Returns Promise<Contract>

      • emit(eventName: string | EventFilter, ...args: any[]): boolean
      • Parameters

        • eventName: string | EventFilter
        • Rest ...args: any[]

        Returns boolean

      • fallback(overrides?: TransactionRequest): Promise<TransactionResponse>
      • Parameters

        • Optional overrides: TransactionRequest

        Returns Promise<TransactionResponse>

      • listenerCount(eventName?: string | EventFilter): number
      • Parameters

        • Optional eventName: string | EventFilter

        Returns number

      • listeners(eventName?: string | EventFilter): Listener[]
      • Parameters

        • Optional eventName: string | EventFilter

        Returns Listener[]

      • off(eventName: string | EventFilter, listener: Listener): Contract
      • Parameters

        • eventName: string | EventFilter
        • listener: Listener

        Returns Contract

      • on(event: string | EventFilter, listener: Listener): Contract
      • Parameters

        • event: string | EventFilter
        • listener: Listener

        Returns Contract

      • once(event: string | EventFilter, listener: Listener): Contract
      • Parameters

        • event: string | EventFilter
        • listener: Listener

        Returns Contract

      • queryFilter(event: string | EventFilter, fromBlockOrBlockhash?: BlockTag, toBlock?: BlockTag): Promise<Event[]>
      • Parameters

        • event: string | EventFilter
        • Optional fromBlockOrBlockhash: BlockTag
        • Optional toBlock: BlockTag

        Returns Promise<Event[]>

      • removeAllListeners(eventName?: string | EventFilter): Contract
      • Parameters

        • Optional eventName: string | EventFilter

        Returns Contract

      • removeListener(eventName: string | EventFilter, listener: Listener): Contract
      • Parameters

        • eventName: string | EventFilter
        • listener: Listener

        Returns Contract

      • getContractAddress(transaction: { from: string; nonce: BigNumberish }): string
      • Parameters

        • transaction: { from: string; nonce: BigNumberish }
          • from: string
          • nonce: BigNumberish

        Returns string

      • getInterface(contractInterface: ContractInterface): Interface
      • Parameters

        • contractInterface: ContractInterface

        Returns Interface

      • isIndexed(value: any): value is Indexed
      • Parameters

        • value: any

        Returns value is Indexed

      Legend

      • Constructor
      • Property
      • Method
      • Private property
      • Private method
      • Property
      • Inherited constructor

      Settings

      Theme

      Generated using TypeDoc

      \ No newline at end of file +

Hierarchy

  • Contract
    • Contract

Index

Constructors

  • new Contract(addressOrName: string, contractInterface: ContractInterface, signerOrProvider?: Signer | Provider): Contract
  • Parameters

    • addressOrName: string
    • contractInterface: ContractInterface
    • Optional signerOrProvider: Signer | Provider

    Returns Contract

Properties

_deployedPromise: Promise<Contract>
_runningEvents: {}

Type declaration

  • [eventTag: string]: RunningEvent
_wrappedEmits: {}

Type declaration

  • [eventTag: string]: (...args: any[]) => void
      • (...args: any[]): void
      • Parameters

        • Rest ...args: any[]

        Returns void

address: string
callStatic: {}

Type declaration

  • [name: string]: ContractFunction
deployTransaction: TransactionResponse
estimateGas: {}

Type declaration

  • [name: string]: ContractFunction<BigNumber>
filters: {}

Type declaration

  • [name: string]: (...args: any[]) => EventFilter
      • (...args: any[]): EventFilter
      • Parameters

        • Rest ...args: any[]

        Returns EventFilter

functions: {}

Type declaration

  • [name: string]: ContractFunction
interface: Interface
populateTransaction: {}

Type declaration

  • [name: string]: ContractFunction<PopulatedTransaction>
provider: Provider
resolvedAddress: Promise<string>
signer: Signer

Methods

  • _checkRunningEvents(runningEvent: RunningEvent): void
  • Parameters

    • runningEvent: RunningEvent

    Returns void

  • _deployed(blockTag?: BlockTag): Promise<Contract>
  • Parameters

    • Optional blockTag: BlockTag

    Returns Promise<Contract>

  • _wrapEvent(runningEvent: RunningEvent, log: Log, listener: Listener): Event
  • Parameters

    • runningEvent: RunningEvent
    • log: Log
    • listener: Listener

    Returns Event

  • attach(addressOrName: string): Contract
  • Parameters

    • addressOrName: string

    Returns Contract

  • connect(signerOrProvider: string | Signer | Provider): Contract
  • Parameters

    • signerOrProvider: string | Signer | Provider

    Returns Contract

  • deployed(): Promise<Contract>
  • Returns Promise<Contract>

  • emit(eventName: string | EventFilter, ...args: any[]): boolean
  • Parameters

    • eventName: string | EventFilter
    • Rest ...args: any[]

    Returns boolean

  • fallback(overrides?: TransactionRequest): Promise<TransactionResponse>
  • Parameters

    • Optional overrides: TransactionRequest

    Returns Promise<TransactionResponse>

  • listenerCount(eventName?: string | EventFilter): number
  • Parameters

    • Optional eventName: string | EventFilter

    Returns number

  • listeners(eventName?: string | EventFilter): Listener[]
  • Parameters

    • Optional eventName: string | EventFilter

    Returns Listener[]

  • off(eventName: string | EventFilter, listener: Listener): Contract
  • Parameters

    • eventName: string | EventFilter
    • listener: Listener

    Returns Contract

  • on(event: string | EventFilter, listener: Listener): Contract
  • Parameters

    • event: string | EventFilter
    • listener: Listener

    Returns Contract

  • once(event: string | EventFilter, listener: Listener): Contract
  • Parameters

    • event: string | EventFilter
    • listener: Listener

    Returns Contract

  • queryFilter(event: string | EventFilter, fromBlockOrBlockhash?: BlockTag, toBlock?: BlockTag): Promise<Event[]>
  • Parameters

    • event: string | EventFilter
    • Optional fromBlockOrBlockhash: BlockTag
    • Optional toBlock: BlockTag

    Returns Promise<Event[]>

  • removeAllListeners(eventName?: string | EventFilter): Contract
  • Parameters

    • Optional eventName: string | EventFilter

    Returns Contract

  • removeListener(eventName: string | EventFilter, listener: Listener): Contract
  • Parameters

    • eventName: string | EventFilter
    • listener: Listener

    Returns Contract

  • getContractAddress(transaction: { from: string; nonce: BigNumberish }): string
  • Parameters

    • transaction: { from: string; nonce: BigNumberish }
      • from: string
      • nonce: BigNumberish

    Returns string

  • getInterface(contractInterface: ContractInterface): Interface
  • Parameters

    • contractInterface: ContractInterface

    Returns Interface

  • isIndexed(value: any): value is Indexed
  • Parameters

    • value: any

    Returns value is Indexed

Legend

  • Constructor
  • Property
  • Method
  • Private property
  • Private method
  • Property
  • Inherited constructor

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ContractFactory.html b/docs/classes/ContractFactory.html index 173ef3ae..2919f3d6 100644 --- a/docs/classes/ContractFactory.html +++ b/docs/classes/ContractFactory.html @@ -1,4 +1,4 @@ ContractFactory | alchemy-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ContractFactory

The ContractFactory class is a wrapper around the ContractFactory class from ethers.js and is exported here for convenience.

-

Hierarchy

  • ContractFactory
    • ContractFactory

Index

Constructors

  • new ContractFactory(contractInterface: ContractInterface, bytecode: BytesLike | { object: string }, signer?: Signer): ContractFactory
  • Parameters

    • contractInterface: ContractInterface
    • bytecode: BytesLike | { object: string }
    • Optional signer: Signer

    Returns ContractFactory

Properties

bytecode: string
interface: Interface
signer: Signer

Methods

  • attach(address: string): Contract
  • Parameters

    • address: string

    Returns Contract

  • connect(signer: Signer): ContractFactory
  • Parameters

    • signer: Signer

    Returns ContractFactory

  • deploy(...args: any[]): Promise<Contract>
  • Parameters

    • Rest ...args: any[]

    Returns Promise<Contract>

  • getDeployTransaction(...args: any[]): TransactionRequest
  • Parameters

    • Rest ...args: any[]

    Returns TransactionRequest

  • fromSolidity(compilerOutput: any, signer?: Signer): ContractFactory
  • Parameters

    • compilerOutput: any
    • Optional signer: Signer

    Returns ContractFactory

  • getContract(address: string, contractInterface: ContractInterface, signer?: Signer): Contract
  • Parameters

    • address: string
    • contractInterface: ContractInterface
    • Optional signer: Signer

    Returns Contract

  • getContractAddress(tx: { from: string; nonce: number | BytesLike | BigNumber }): string
  • Parameters

    • tx: { from: string; nonce: number | BytesLike | BigNumber }
      • from: string
      • nonce: number | BytesLike | BigNumber

    Returns string

  • getInterface(contractInterface: ContractInterface): Interface
  • Parameters

    • contractInterface: ContractInterface

    Returns Interface

Legend

  • Constructor
  • Property
  • Method
  • Private property
  • Private method
  • Property
  • Inherited constructor

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Constructors

  • new ContractFactory(contractInterface: ContractInterface, bytecode: BytesLike | { object: string }, signer?: Signer): ContractFactory
  • Parameters

    • contractInterface: ContractInterface
    • bytecode: BytesLike | { object: string }
    • Optional signer: Signer

    Returns ContractFactory

Properties

bytecode: string
interface: Interface
signer: Signer

Methods

  • attach(address: string): Contract
  • Parameters

    • address: string

    Returns Contract

  • connect(signer: Signer): ContractFactory
  • Parameters

    • signer: Signer

    Returns ContractFactory

  • deploy(...args: any[]): Promise<Contract>
  • Parameters

    • Rest ...args: any[]

    Returns Promise<Contract>

  • getDeployTransaction(...args: any[]): TransactionRequest
  • Parameters

    • Rest ...args: any[]

    Returns TransactionRequest

  • fromSolidity(compilerOutput: any, signer?: Signer): ContractFactory
  • Parameters

    • compilerOutput: any
    • Optional signer: Signer

    Returns ContractFactory

  • getContract(address: string, contractInterface: ContractInterface, signer?: Signer): Contract
  • Parameters

    • address: string
    • contractInterface: ContractInterface
    • Optional signer: Signer

    Returns Contract

  • getContractAddress(tx: { from: string; nonce: number | BytesLike | BigNumber }): string
  • Parameters

    • tx: { from: string; nonce: number | BytesLike | BigNumber }
      • from: string
      • nonce: number | BytesLike | BigNumber

    Returns string

  • getInterface(contractInterface: ContractInterface): Interface
  • Parameters

    • contractInterface: ContractInterface

    Returns Interface

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/CoreNamespace.html b/docs/classes/CoreNamespace.html index 38aef860..bbe68b46 100644 --- a/docs/classes/CoreNamespace.html +++ b/docs/classes/CoreNamespace.html @@ -7,7 +7,7 @@

Do not call this constructor directly. Instead, instantiate an Alchemy object with const alchemy = new Alchemy(config) and then access the core namespace via alchemy.core.

-

Hierarchy

Index

Methods

Hierarchy

Index

Methods

  • call(transaction: Deferrable<TransactionRequest>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
  • Returns the result of executing the transaction, using call. A call does not require any ether, but cannot change any state. This is useful for calling getters on Contracts.

    @@ -15,7 +15,7 @@

    The transaction to execute.

  • Optional blockTag: BlockTag | Promise<BlockTag>

    The optional block number or hash to get the call for.

    -

Returns Promise<string>

  • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>

Returns Promise<string>

  • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>
  • Returns an estimate of the amount of gas that would be required to submit transaction to the network.

    An estimate may not be accurate since there could be another transaction on @@ -24,7 +24,7 @@

    This is an alias for TransactNamespace.estimateGas.

    Parameters

    • transaction: Deferrable<TransactionRequest>

      The transaction to estimate gas for.

      -

    Returns Promise<BigNumber>

  • findContractDeployer(contractAddress: string): Promise<DeployResult>

Returns Promise<BigNumber>

  • findContractDeployer(contractAddress: string): Promise<DeployResult>
  • Finds the address that deployed the provided contract and block number it was deployed in.

    NOTE: This method performs a binary search across all blocks since genesis @@ -33,7 +33,7 @@ with this information cached.

    beta

    Parameters

    • contractAddress: string

      The contract address to find the deployer for.

      -

    Returns Promise<DeployResult>

Returns Promise<DeployResult>

Returns Promise<AssetTransfersWithMetadataResponse>

  • Get transactions for specific addresses. See the web documentation for the full details: https://docs.alchemy.com/alchemy/enhanced-apis/transfers-api#alchemy_getassettransfers

    Parameters

    Returns Promise<AssetTransfersResponse>

    • getBalance(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<BigNumber>

    Returns Promise<AssetTransfersResponse>

    • getBalance(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<BigNumber>
    • Returns the balance of a given address as of the provided block.

      Parameters

      • addressOrName: string | Promise<string>

        The address or name of the account to get the balance for.

      • Optional blockTag: BlockTag | Promise<BlockTag>

        The optional block number or hash to get the balance for. Defaults to 'latest' if unspecified.

        -

      Returns Promise<BigNumber>

    • getBlock(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<Block>

    Returns Promise<BigNumber>

    • getBlock(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<Block>
    • Returns the block from the network based on the provided block number or hash. Transactions on the block are represented as an array of transaction hashes. To get the full transaction details on the block, use getBlockWithTransactions instead.

      Parameters

      • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

        The block number or hash to get the block for.

        -

      Returns Promise<Block>

    • getBlockNumber(): Promise<number>

    Returns Promise<Block>

    • getBlockNumber(): Promise<number>
    • getBlockWithTransactions(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<BlockWithTransactions>
    • getBlockWithTransactions(blockHashOrBlockTag: BlockTag | Promise<BlockTag>): Promise<BlockWithTransactions>
    • Returns the block from the network based on the provided block number or hash. Transactions on the block are represented as an array of {@link TransactionResponse} objects.

      Parameters

      • blockHashOrBlockTag: BlockTag | Promise<BlockTag>

        The block number or hash to get the block for.

        -

      Returns Promise<BlockWithTransactions>

    • getCode(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>

    Returns Promise<BlockWithTransactions>

    • getCode(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
    • Returns the contract code of the provided address at the block. If there is no contract deployed, the result is 0x.

      Parameters

      • addressOrName: string | Promise<string>
        @@ -78,21 +78,21 @@
      • Optional blockTag: BlockTag | Promise<BlockTag>

        The optional block number or hash to get the code for. Defaults to 'latest' if unspecified.

        -

      Returns Promise<string>

    • getFeeData(): Promise<FeeData>

    Returns Promise<string>

    • getFeeData(): Promise<FeeData>
    • Returns the recommended fee data to use in a transaction.

      For an EIP-1559 transaction, the maxFeePerGas and maxPriorityFeePerGas should be used.

      For legacy transactions and networks which do not support EIP-1559, the gasPrice should be used.

      -

      Returns Promise<FeeData>

    • getGasPrice(): Promise<BigNumber>
    • getGasPrice(): Promise<BigNumber>
    • getLogs(filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>): Promise<Log[]>
    • getLogs(filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>): Promise<Log[]>
    • Returns an array of logs that match the provided filter.

      Parameters

      • filter: Filter | FilterByBlockHash | Promise<Filter | FilterByBlockHash>

        The filter object to use.

        -

      Returns Promise<Log[]>

    • getNetwork(): Promise<Network>

    Returns Promise<Log[]>

    • getNetwork(): Promise<Network>
    • getStorageAt(addressOrName: string | Promise<string>, position: BigNumberish | Promise<BigNumberish>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
    • getStorageAt(addressOrName: string | Promise<string>, position: BigNumberish | Promise<BigNumberish>, blockTag?: BlockTag | Promise<BlockTag>): Promise<string>
    • Return the value of the provided position at the provided address, at the provided block in Bytes32 format.

      Parameters

      • addressOrName: string | Promise<string>
        @@ -102,25 +102,25 @@
      • Optional blockTag: BlockTag | Promise<BlockTag>

        The optional block number or hash to get the code for. Defaults to 'latest' if unspecified.

        -

      Returns Promise<string>

    Returns Promise<string>

    Returns Promise<TokenBalancesResponseErc20>

  • Returns the token balances for a specific owner address given a list of contracts.

    Parameters

    • addressOrName: string

      The owner address to get the token balances for.

    • Optional contractAddresses: string[]

      A list of contract addresses to check. If omitted, all ERC-20 tokens will be checked.

      -

    Returns Promise<TokenBalancesResponse>

  • +
  • Returns Promise<TokenBalancesResponse>

  • Returns the ERC-20 token balances for a specific owner.

    This overload covers the erc-20 token type which includes a page key in the response.

    Parameters

    • addressOrName: string

      The owner address to get the token balances for.

    • options: TokenBalancesOptionsErc20

      Token type options set to ERC-20 with optional page key.

      -

    Returns Promise<TokenBalancesResponseErc20>

  • +
  • Returns Promise<TokenBalancesResponseErc20>

  • Returns the token balances for a specific owner, fetching from the top 100 tokens by 24 hour volume.

    This overload covers the default token type which includes a page key in @@ -129,11 +129,11 @@

    The owner address to get the token balances for.

  • options: TokenBalancesOptionsDefaultTokens

    Token type options set to ERC-20 with optional page key.

    -
  • Returns Promise<TokenBalancesResponse>

    Returns Promise<TokenBalancesResponse>

    • getTransaction(transactionHash: string | Promise<string>): Promise<null | TransactionResponse>

    Returns Promise<TokenMetadataResponse>

    • getTransaction(transactionHash: string | Promise<string>): Promise<null | TransactionResponse>
    • Returns the transaction with hash or null if the transaction is unknown.

      If a transaction has not been mined, this method will search the transaction pool. Various backends may have more restrictive transaction @@ -142,7 +142,7 @@

      NOTE: This is an alias for TransactNamespace.getTransaction.

      Parameters

      • transactionHash: string | Promise<string>

        The hash of the transaction to get.

        -

      Returns Promise<null | TransactionResponse>

    • getTransactionCount(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<number>

    Returns Promise<null | TransactionResponse>

    • getTransactionCount(addressOrName: string | Promise<string>, blockTag?: BlockTag | Promise<BlockTag>): Promise<number>
    • Returns the number of transactions ever sent from the provided address, as of the provided block tag. This value is used as the nonce for the next transaction from the address sent to the network.

      @@ -150,46 +150,46 @@

      The address or name of the account to get the nonce for.

    • Optional blockTag: BlockTag | Promise<BlockTag>

      The optional block number or hash to get the nonce for.

      -

    Returns Promise<number>

    • getTransactionReceipt(transactionHash: string | Promise<string>): Promise<null | TransactionReceipt>

    Returns Promise<number>

    • getTransactionReceipt(transactionHash: string | Promise<string>): Promise<null | TransactionReceipt>
    • Returns the transaction receipt for hash or null if the transaction has not been mined.

      To stall until the transaction has been mined, consider the waitForTransaction method below.

      Parameters

      • transactionHash: string | Promise<string>

        The hash of the transaction to get.

        -

      Returns Promise<null | TransactionReceipt>

    Returns Promise<null | TransactionReceipt>

    • lookupAddress(address: string): Promise<null | string>

    Returns Promise<TransactionReceiptsResponse>

    • lookupAddress(address: string): Promise<null | string>
    • Performs a reverse lookup of the address in ENS using the Reverse Registrar. If the name does not exist, or the forward lookup does not match, null is returned.

      An ENS name requires additional configuration to setup a reverse record, so not all ENS addresses will map back to the original ENS domain.

      Parameters

      • address: string

        The address to look up the ENS domain name for.

        -

      Returns Promise<null | string>

    • ready(): Promise<Network>

    Returns Promise<null | string>

    • ready(): Promise<Network>
    • Returns a Promise which will stall until the network has heen established, ignoring errors due to the target node not being active yet.

      This can be used for testing or attaching scripts to wait until the node is up and running smoothly.

      -

      Returns Promise<Network>

    • resolveName(name: string): Promise<null | string>
    • resolveName(name: string): Promise<null | string>
    • Returns the underlying owner address for the provided ENS address, or null if the ENS name does not have an underlying address.

      Parameters

      • name: string

        The ENS address name to resolve.

        -

      Returns Promise<null | string>

    • send(method: string, params: any[]): Promise<any>

    Returns Promise<null | string>

    • send(method: string, params: any[]): Promise<any>
    • Allows sending a raw message to the Alchemy backend.

      Parameters

      • method: string

        The method to call.

      • params: any[]

        The parameters to pass to the method.

        -

      Returns Promise<any>

    • sendTransaction(signedTransaction: string | Promise<string>): Promise<TransactionResponse>

    Returns Promise<any>

    • sendTransaction(signedTransaction: string | Promise<string>): Promise<TransactionResponse>
    • Submits transaction to the network to be mined. The transaction must be signed, and be valid (i.e. the nonce is correct and the account has sufficient balance to pay for the transaction).

      NOTE: This is an alias for TransactNamespace.getTransaction.

      Parameters

      • signedTransaction: string | Promise<string>

        The signed transaction to send.

        -

      Returns Promise<TransactionResponse>

    • waitForTransaction(transactionHash: string, confirmations?: number, timeout?: number): Promise<null | TransactionReceipt>

    Returns Promise<TransactionResponse>

    • waitForTransaction(transactionHash: string, confirmations?: number, timeout?: number): Promise<null | TransactionReceipt>
    • Returns a promise which will not resolve until specified transaction hash is mined.

      If {@link confirmations} is 0, this method is non-blocking and if the transaction has not been mined returns null. Otherwise, this method will diff --git a/docs/classes/NftNamespace.html b/docs/classes/NftNamespace.html index 27798178..89f6a43b 100644 --- a/docs/classes/NftNamespace.html +++ b/docs/classes/NftNamespace.html @@ -3,7 +3,7 @@

      Do not call this constructor directly. Instead, instantiate an Alchemy object with const alchemy = new Alchemy(config) and then access the core namespace via alchemy.nft.

      -

    Hierarchy

    • NftNamespace

    Index

    Methods

    • checkNftOwnership(owner: string, contractAddresses: string[]): Promise<boolean>

    Hierarchy

    • NftNamespace

    Index

    Methods

    • checkNftOwnership(owner: string, contractAddresses: string[]): Promise<boolean>
    • DEPRECATED - Checks that the provided owner address owns one of more of the provided NFTs.

      deprecated
        @@ -14,21 +14,21 @@

        The owner address to check.

    • contractAddresses: string[]

      An array of NFT contract addresses to check ownership for.

      -

    Returns Promise<boolean>

    • computeRarity(contractAddress: string, tokenId: BigNumberish): Promise<NftAttributeRarity[]>

    Returns Promise<boolean>

    • computeRarity(contractAddress: string, tokenId: BigNumberish): Promise<NftAttributeRarity[]>
    • Get the rarity of each attribute of an NFT.

      Parameters

      • contractAddress: string

        Contract address for the NFT collection.

      • tokenId: BigNumberish

        Token id of the NFT.

        -

      Returns Promise<NftAttributeRarity[]>

    • getContractMetadata(contractAddress: string): Promise<NftContract>

    Returns Promise<NftAttributeRarity[]>

    • getContractMetadata(contractAddress: string): Promise<NftContract>
    • Get the NFT collection metadata associated with the provided parameters.

      Parameters

      • contractAddress: string

        The contract address of the NFT.

        -

      Returns Promise<NftContract>

    Returns Promise<NftContract>

    • getNftMetadata(contractAddress: string, tokenId: BigNumberish, tokenType?: NftTokenType, tokenUriTimeoutInMs?: number): Promise<Nft>

    Returns Promise<GetFloorPriceResponse>

    • getNftMetadata(contractAddress: string, tokenId: BigNumberish, tokenType?: NftTokenType, tokenUriTimeoutInMs?: number): Promise<Nft>
    • Get the NFT metadata associated with the provided parameters.

      Parameters

      • contractAddress: string

        The contract address of the NFT.

        @@ -41,7 +41,17 @@ requested, this parameter is the timeout (in milliseconds) for the website hosting the metadata to respond. If you want to only access the cache and not live fetch any metadata for cache misses then set this value to 0.

        -

      Returns Promise<Nft>

    Returns Promise<Nft>

    Returns Promise<NftContractNftsResponse>

  • +
  • Returns Promise<NftContractNftsResponse>

  • Get all base NFTs for a given contract address.

    This method returns the base NFTs that omit the associated metadata. To get all NFTs with their associated metadata, use GetNftsForContractOptions.

    @@ -58,7 +68,7 @@

    The contract address of the NFT contract.

  • Optional options: GetBaseNftsForContractOptions

    The optional parameters to use for the request.

    -
  • Returns Promise<NftContractBaseNftsResponse>

    Returns Promise<NftContractBaseNftsResponse>

    • Fetches all NFTs for a given contract address and yields them in an async iterable.

      This method returns the full NFTs in the contract and pages through all page keys until all NFTs have been fetched. To get all NFTs without their @@ -67,7 +77,7 @@

      The contract address of the NFT contract.

    • Optional options: GetNftsForContractOptions

      The optional parameters to use for the request.

      -

    Returns AsyncIterable<Nft>

  • +
  • Returns AsyncIterable<Nft>

  • Fetches all base NFTs for a given contract address and yields them in an async iterable.

    This method returns the base NFTs that omit the associated metadata and @@ -77,7 +87,7 @@

    The contract address of the NFT contract.

  • Optional options: GetBaseNftsForContractOptions

    The optional parameters to use for the request.

    -
  • Returns AsyncIterable<BaseNft>

    Returns AsyncIterable<BaseNft>

    Returns Promise<OwnedNftsResponse>

  • +
  • Returns Promise<OwnedNftsResponse>

  • Get all base NFTs for an owner.

    This method returns the base NFTs that omit the associated metadata. To get all NFTs with their associated metadata, use GetNftsForOwnerOptions.

    @@ -93,7 +103,7 @@

    The address of the owner.

  • Optional options: GetBaseNftsForOwnerOptions

    The optional parameters to use for the request.

    -
  • Returns Promise<OwnedBaseNftsResponse>

    Returns Promise<OwnedBaseNftsResponse>

    • Fetches all NFTs for a given owner and yields them in an async iterable.

      This method returns the full NFT for the owner and pages through all page keys until all NFTs have been fetched.

      @@ -101,7 +111,7 @@

      The address of the owner.

    • Optional options: GetNftsForOwnerOptions

      The optional parameters to use for the request.

      -

    Returns AsyncIterable<OwnedNft>

  • +
  • Returns AsyncIterable<OwnedNft>

  • Fetches all NFTs for a given owner and yields them in an async iterable.

    This method returns the base NFTs that omit the associated metadata and pages through all page keys until all NFTs have been fetched.

    @@ -109,13 +119,13 @@

    The address of the owner.

  • Optional options: GetBaseNftsForOwnerOptions

    The optional parameters to use for the request.

    -
  • Returns AsyncIterable<OwnedBaseNft>

    Returns AsyncIterable<OwnedBaseNft>

    Returns Promise<GetOwnersForContractWithTokenBalancesResponse>

  • Gets all the owners for a given NFT contract.

    Note that token balances are omitted by default. To include token balances for each owner, use GetOwnersForContractWithTokenBalancesOptions, @@ -124,23 +134,23 @@

    The NFT contract to get the owners for.

  • Optional options: GetOwnersForContractOptions

    Optional parameters to use for the request.

    -
  • Returns Promise<GetOwnersForContractResponse>

    Returns Promise<GetOwnersForContractResponse>

    • Gets all the owners for a given NFT contract address and token ID.

      beta

      Parameters

      • contractAddress: string

        The NFT contract address.

      • tokenId: BigNumberish

        Token id of the NFT.

        -

      Returns Promise<GetOwnersForNftResponse>

    • getSpamContracts(): Promise<string[]>

    Returns Promise<GetOwnersForNftResponse>

    • getSpamContracts(): Promise<string[]>
    • isSpamContract(contractAddress: string): Promise<boolean>
    • isSpamContract(contractAddress: string): Promise<boolean>

    Returns Promise<boolean>

    • Triggers a metadata refresh all NFTs in the provided contract address. This method is useful after an NFT collection is revealed.

      Refreshes are queued on the Alchemy backend and may take time to fully @@ -148,7 +158,7 @@ refreshNftMetadata method instead.

      beta

      Parameters

      • contractAddress: string

        The contract address of the NFT collection.

        -

      Returns Promise<RefreshContractResult>

    • refreshNftMetadata(contractAddress: string, tokenId: BigNumberish): Promise<boolean>

    Returns Promise<RefreshContractResult>

    • refreshNftMetadata(contractAddress: string, tokenId: BigNumberish): Promise<boolean>
    • Refreshes the cached metadata for a provided NFT contract address and token id. Returns a boolean value indicating whether the metadata was refreshed.

      This method is useful when you want to refresh the metadata for a NFT that @@ -161,26 +171,26 @@

      The contract address of the NFT.

    • tokenId: BigNumberish

      The token id of the NFT.

      -

    Returns Promise<boolean>

    • searchContractMetadata(query: string): Promise<NftContract[]>

    Returns Promise<boolean>

    • searchContractMetadata(query: string): Promise<NftContract[]>
    • Search for a keyword across metadata of all ERC-721 and ERC-1155 smart contracts.

      Parameters

      • query: string

        The search string that you want to search for in contract metadata.

        -

      Returns Promise<NftContract[]>

    Returns Promise<NftContract[]>

    • verifyNftOwnership(owner: string, contractAddress: string): Promise<boolean>
    • verifyNftOwnership(owner: string, contractAddresses: string[]): Promise<{}>

    Returns Promise<NftAttributesResponse>

    • verifyNftOwnership(owner: string, contractAddress: string): Promise<boolean>
    • verifyNftOwnership(owner: string, contractAddresses: string[]): Promise<{}>
    • Checks that the provided owner address owns one of more of the provided NFT. Returns a boolean indicating whether the owner address owns the provided NFT.

      Parameters

      • owner: string

        The owner address to check.

      • contractAddress: string

        An NFT contract address to check ownership for.

        -

      Returns Promise<boolean>

    • +

    Returns Promise<boolean>

  • Checks which of the provided NFTs the owner address owns. Returns a map of contract address to a boolean indicating whether the owner address owns the NFT.

    Parameters

    • owner: string

      The owner address to check.

    • contractAddresses: string[]

      An array NFT contract address to check ownership for.

      -

    Returns Promise<{}>

  • Legend

    • Constructor
    • Property
    • Method
    • Private property
    • Private method
    • Property
    • Inherited constructor

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +

    Returns Promise<{}>

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/classes/NotifyNamespace.html b/docs/classes/NotifyNamespace.html index 47339698..334915f7 100644 --- a/docs/classes/NotifyNamespace.html +++ b/docs/classes/NotifyNamespace.html @@ -10,7 +10,7 @@

    Do not call this constructor directly. Instead, instantiate an Alchemy object with const alchemy = new Alchemy(config) and then access the notify namespace via alchemy.notify.

    -

    Hierarchy

    Index

    Methods

    Hierarchy

    Index

    Methods

    Returns Promise<MinedTransactionWebhook>

  • +
  • Returns Promise<MinedTransactionWebhook>

  • Create a new DroppedTransactionWebhook to track dropped transactions sent by the app associated with the app id.

    Note that the webhook will be created in the app network of the provided app id.

    @@ -30,7 +30,7 @@

    The type of webhook to create.

  • params: TransactionWebhookParams

    Parameters object containing the app id.

    -
  • Returns Promise<DroppedTransactionWebhook>

  • +
  • Returns Promise<DroppedTransactionWebhook>

  • Create a new NftActivityWebhook to track NFT transfers.

    Parameters

    • url: string

      The URL that the webhook should send events to.

      @@ -39,7 +39,7 @@
    • params: NftWebhookParams

      Parameters object containing the NFTs to track and the network the webhook should be created on.

      -

    Returns Promise<NftActivityWebhook>

  • +
  • Returns Promise<NftActivityWebhook>

  • Create a new AddressActivityWebhook to track address activity.

    Parameters

    • url: string

      The URL that the webhook should send events to.

      @@ -48,21 +48,21 @@
    • params: AddressWebhookParams

      Parameters object containing the addresses to track and the network the webhook should be created on.

      -

    Returns Promise<AddressActivityWebhook>

    • deleteWebhook(webhook: Webhook): Promise<void>
    • deleteWebhook(webhookId: string): Promise<void>

    Returns Promise<AddressActivityWebhook>

    • deleteWebhook(webhook: Webhook): Promise<void>
    • deleteWebhook(webhookId: string): Promise<void>

    Returns Promise<void>

  • Delete the provided webhook.

    Parameters

    • webhookId: string

      The id of the webhook to delete.

      -

    Returns Promise<void>

  • Returns Promise<void>

    Returns Promise<AddressActivityResponse>

  • Get all addresses tracked for the provided AddressActivityWebhook.

    Parameters

    • webhookId: string

      The id of the address activity webhook. Passing in an id @@ -70,18 +70,18 @@ no addresses.

    • Optional options: GetAddressesOptions

      Pagination options when fetching addresses.

      -

    Returns Promise<AddressActivityResponse>

  • Returns Promise<AddressActivityResponse>

    Returns Promise<NftFiltersResponse>

  • Get all NFT filters tracked for the provided NftActivityWebhook.

    Parameters

    • webhookId: string

      The id of the NFT activity webhook. Passing in an @@ -89,28 +89,28 @@ no filters.

    • Optional options: GetAddressesOptions

      Pagination options when fetching nft filters.

      -

    Returns Promise<NftFiltersResponse>

    • sendWebhookRequest<Response>(restApiName: string, methodName: string, params: {}, overrides?: AxiosRequestConfig<any>): Promise<Response>
    • Type parameters

      • Response

      Parameters

      • restApiName: string
      • methodName: string
      • params: {}
        • Optional overrides: AxiosRequestConfig<any>

        Returns Promise<Response>

      Returns Promise<NftFiltersResponse>

      • sendWebhookRequest<Response>(restApiName: string, methodName: string, params: {}, overrides?: AxiosRequestConfig<any>): Promise<Response>
      • Type parameters

        • Response

        Parameters

        • restApiName: string
        • methodName: string
        • params: {}
          • Optional overrides: AxiosRequestConfig<any>

          Returns Promise<Response>

        Returns Promise<void>

      • Update a NftActivityWebhook's active status or NFT filters.

        Parameters

        • nftWebhookId: string

          The id of the NFT activity webhook.

        • update: NftWebhookUpdate

          Object containing the update.

          -

        Returns Promise<void>

      • +
      • Returns Promise<void>

      • Update a AddressActivityWebhook's active status or addresses.

        Parameters

        Returns Promise<void>

      • +
      • Returns Promise<void>

      • Update a AddressActivityWebhook's active status or addresses.

        Parameters

        • addressWebhookId: string

          The id of the address activity webhook.

        • update: AddressWebhookUpdate

          Object containing the update.

          -

        Returns Promise<void>

        • verifyConfig(): void

        Generated using TypeDoc

        \ No newline at end of file +

        Returns Promise<void>

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/classes/TransactNamespace.html b/docs/classes/TransactNamespace.html index 9dbf89fd..9694f530 100644 --- a/docs/classes/TransactNamespace.html +++ b/docs/classes/TransactNamespace.html @@ -4,7 +4,7 @@

        Do not call this constructor directly. Instead, instantiate an Alchemy object with const alchemy = new Alchemy(config) and then access the transact namespace via alchemy.transact.

        -

        Hierarchy

        Index

        Methods

        Hierarchy

        Index

        Methods

        • cancelPrivateTransaction(transactionHash: string): Promise<boolean>
        • Stops the provided private transaction from being submitted for future blocks. A transaction can only be cancelled if the request is signed by the same key as the sendPrivateTransaction call submitting the @@ -13,7 +13,7 @@

          Returns a boolean indicating whether the cancellation was successful.

          Parameters

          • transactionHash: string

            Transaction hash of private tx to be cancelled

            -

          Returns Promise<boolean>

        • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>

        Returns Promise<boolean>

        • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>
        • Returns an estimate of the amount of gas that would be required to submit transaction to the network.

          An estimate may not be accurate since there could be another transaction on @@ -22,12 +22,12 @@

          This is an alias for CoreNamespace.estimateGas.

          Parameters

          • transaction: Deferrable<TransactionRequest>

            The transaction to estimate gas for.

            -

          Returns Promise<BigNumber>

        • getMaxPriorityFeePerGas(): Promise<number>

        Returns Promise<BigNumber>

        • getMaxPriorityFeePerGas(): Promise<number>
        • Returns a fee per gas (in wei) that is an estimate of how much you can pay as a priority fee, or "tip", to get a transaction included in the current block.

          This number is generally used to set the maxPriorityFeePerGas field in a transaction request.

          -

          Returns Promise<number>

        • getTransaction(transactionHash: string | Promise<string>): Promise<null | TransactionResponse>
        • getTransaction(transactionHash: string | Promise<string>): Promise<null | TransactionResponse>
        • Returns the transaction with hash or null if the transaction is unknown.

          If a transaction has not been mined, this method will search the transaction pool. Various backends may have more restrictive transaction @@ -36,7 +36,7 @@

          NOTE: This is an alias for CoreNamespace.getTransaction.

          Parameters

          • transactionHash: string | Promise<string>

            The hash of the transaction to get.

            -

          Returns Promise<null | TransactionResponse>

        Returns Promise<null | TransactionResponse>

        • Used to send a single transaction to Flashbots. Flashbots will attempt to send the transaction to miners for the next 25 blocks.

          Returns the transaction hash of the submitted transaction.

          @@ -47,14 +47,14 @@ transaction should be included.

        • Optional options: SendPrivateTransactionOptions

          Options to configure the request.

          -

        Returns Promise<string>

        • sendTransaction(signedTransaction: string | Promise<string>): Promise<TransactionResponse>

        Returns Promise<string>

        • sendTransaction(signedTransaction: string | Promise<string>): Promise<TransactionResponse>
        • Submits transaction to the network to be mined. The transaction must be signed, and be valid (i.e. the nonce is correct and the account has sufficient balance to pay for the transaction).

          NOTE: This is an alias for CoreNamespace.sendTransaction.

          Parameters

          • signedTransaction: string | Promise<string>

            The signed transaction to send.

            -

          Returns Promise<TransactionResponse>

        • waitForTransaction(transactionHash: string, confirmations?: number, timeout?: number): Promise<null | TransactionReceipt>

        Returns Promise<TransactionResponse>

        • waitForTransaction(transactionHash: string, confirmations?: number, timeout?: number): Promise<null | TransactionReceipt>
        • Returns a promise which will not resolve until specified transaction hash is mined.

          If {@link confirmations} is 0, this method is non-blocking and if the transaction has not been mined returns null. Otherwise, this method will diff --git a/docs/classes/Wallet.html b/docs/classes/Wallet.html index abd2861f..cf1ba6ce 100644 --- a/docs/classes/Wallet.html +++ b/docs/classes/Wallet.html @@ -5,47 +5,47 @@

          Primary difference from Ethers.js 'Wallet' is that you can pass in either a Provider or an Alchemy object. This implementation will intelligently detect the format and set the provider accordingly.

          -
          override

        Hierarchy

        • Wallet
          • Wallet

        Index

        Constructors

        • new Wallet(privateKey: BytesLike | ExternallyOwnedAccount | SigningKey, alchemyOrProvider?: Alchemy | Provider): Wallet

        Hierarchy

        • Wallet
          • Wallet

        Index

        Constructors

        • new Wallet(privateKey: BytesLike | ExternallyOwnedAccount | SigningKey, alchemyOrProvider?: Alchemy | Provider): Wallet
        • Overload permits users to pass in either a standard Provider or an Alchemy object. The constructor will detect the object type and handle appropriately.

          -
          override

          Parameters

          • privateKey: BytesLike | ExternallyOwnedAccount | SigningKey
          • Optional alchemyOrProvider: Alchemy | Provider

          Returns Wallet

        Properties

        _isSigner: boolean
        _mnemonic: () => Mnemonic

        Type declaration

          • (): Mnemonic
          • Returns Mnemonic

        _signingKey: () => SigningKey

        Type declaration

          • (): SigningKey
          • Returns SigningKey

        address: string
        alchemyProviderPromise?: Promise<Provider>
        provider: Provider

        Accessors

        • get mnemonic(): Mnemonic
        • Returns Mnemonic

        • get privateKey(): string
        • Returns string

        • get publicKey(): string
        • Returns string

        Methods

        • _checkProvider(operation?: string): void
        • Parameters

          • Optional operation: string

          Returns void

        • _signTypedData(domain: TypedDataDomain, types: Record<string, TypedDataField[]>, value: Record<string, any>): Promise<string>
        • Parameters

          • domain: TypedDataDomain
          • types: Record<string, TypedDataField[]>
          • value: Record<string, any>

          Returns Promise<string>

        • call(transaction: Deferrable<TransactionRequest>, blockTag?: BlockTag): Promise<string>

        Properties

        _isSigner: boolean
        _mnemonic: () => Mnemonic

        Type declaration

          • (): Mnemonic
          • Returns Mnemonic

        _signingKey: () => SigningKey

        Type declaration

          • (): SigningKey
          • Returns SigningKey

        address: string
        alchemyProviderPromise?: Promise<Provider>
        provider: Provider

        Accessors

        • get mnemonic(): Mnemonic
        • Returns Mnemonic

        • get privateKey(): string
        • Returns string

        • get publicKey(): string
        • Returns string

        Methods

        • _checkProvider(operation?: string): void
        • Parameters

          • Optional operation: string

          Returns void

        • _signTypedData(domain: TypedDataDomain, types: Record<string, TypedDataField[]>, value: Record<string, any>): Promise<string>
        • Parameters

          • domain: TypedDataDomain
          • types: Record<string, TypedDataField[]>
          • value: Record<string, any>

          Returns Promise<string>

        • call(transaction: Deferrable<TransactionRequest>, blockTag?: BlockTag): Promise<string>
        • Returns the result of calling using the transactionRequest, with this account address being used as the from field.

          override

          Parameters

          • transaction: Deferrable<TransactionRequest>

            To make a call on

          • Optional blockTag: BlockTag

            The block to make the call on

            -

          Returns Promise<string>

        • checkTransaction(transaction: Deferrable<TransactionRequest>): Deferrable<TransactionRequest>
        • Parameters

          • transaction: Deferrable<TransactionRequest>

          Returns Deferrable<TransactionRequest>

        • connect(provider: Provider): Wallet
        • Parameters

          • provider: Provider

          Returns Wallet

        • encrypt(password: string | Bytes, options?: any, progressCallback?: ProgressCallback): Promise<string>
        • Parameters

          • password: string | Bytes
          • Optional options: any
          • Optional progressCallback: ProgressCallback

          Returns Promise<string>

        • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>

        Returns Promise<string>

        • checkTransaction(transaction: Deferrable<TransactionRequest>): Deferrable<TransactionRequest>
        • Parameters

          • transaction: Deferrable<TransactionRequest>

          Returns Deferrable<TransactionRequest>

        • connect(provider: Provider): Wallet
        • Parameters

          • provider: Provider

          Returns Wallet

        • encrypt(password: string | Bytes, options?: any, progressCallback?: ProgressCallback): Promise<string>
        • Parameters

          • password: string | Bytes
          • Optional options: any
          • Optional progressCallback: ProgressCallback

          Returns Promise<string>

        • estimateGas(transaction: Deferrable<TransactionRequest>): Promise<BigNumber>
        • Returns the result of estimating the cost to send the transactionRequest, with this account address being used as the from field.

          override

          Parameters

          • transaction: Deferrable<TransactionRequest>

            Transaction to estimate the gas on

            -

          Returns Promise<BigNumber>

        • getAddress(): Promise<string>
        • Returns Promise<string>

        • getBalance(blockTag?: BlockTag): Promise<BigNumber>

        Returns Promise<BigNumber>

        • getAddress(): Promise<string>
        • Returns Promise<string>

        • getBalance(blockTag?: BlockTag): Promise<BigNumber>
        • Returns the balance of this wallet at blockTag.

          override

          Parameters

          • Optional blockTag: BlockTag

            The block to check the balance of

            -

          Returns Promise<BigNumber>

        • getChainId(): Promise<number>

        Returns Promise<BigNumber>

        • getChainId(): Promise<number>
        • Returns the chain ID this wallet is connected to.

          -
          override

          Returns Promise<number>

        • getFeeData(): Promise<FeeData>
        • getFeeData(): Promise<FeeData>
        • Returns the current recommended FeeData to use in a transaction.

          For an EIP-1559 transaction, the maxFeePerGas and maxPriorityFeePerGas should be used.

          For legacy transactions and networks which do not support EIP-1559, the gasPrice should be used.

          -
          override

          Returns Promise<FeeData>

        • getGasPrice(): Promise<BigNumber>
        • getGasPrice(): Promise<BigNumber>
        • getTransactionCount(blockTag?: BlockTag): Promise<number>
        • getTransactionCount(blockTag?: BlockTag): Promise<number>
        • Returns the number of transactions this account has ever sent. This is the value required to be included in transactions as the nonce.

          override

          Parameters

          • Optional blockTag: BlockTag

            The block to check the transaction count on

            -

          Returns Promise<number>

        • getWallet(): Promise<Wallet>
        • populateTransaction(transaction: Deferrable<TransactionRequest>): Promise<TransactionRequest>
        • Parameters

          • transaction: Deferrable<TransactionRequest>

          Returns Promise<TransactionRequest>

        • resolveName(name: string): Promise<string>

        Returns Promise<number>

        • getWallet(): Promise<Wallet>
        • populateTransaction(transaction: Deferrable<TransactionRequest>): Promise<TransactionRequest>
        • Parameters

          • transaction: Deferrable<TransactionRequest>

          Returns Promise<TransactionRequest>

        • resolveName(name: string): Promise<string>
        • Looks up the address of name. If the name is not owned, or does not have a Resolver configured, or the Resolver does not have an address configured, null is returned.

          override

          Parameters

          • name: string

            Name of the ENS address

            -

          Returns Promise<string>

        • sendTransaction(transaction: Deferrable<TransactionRequest>): Promise<TransactionResponse>

        Returns Promise<string>

        • sendTransaction(transaction: Deferrable<TransactionRequest>): Promise<TransactionResponse>
        • Populates all fields in a transaction, signs it and sends it to the network

          override

          Parameters

          • transaction: Deferrable<TransactionRequest>

          Returns Promise<TransactionResponse>

        • signMessage(message: string | Bytes): Promise<string>
        • Parameters

          • message: string | Bytes

          Returns Promise<string>

        • signTransaction(transaction: TransactionRequest): Promise<string>
        • Parameters

          • transaction: TransactionRequest

          Returns Promise<string>

        • createRandom(options?: any): Wallet
        • Static methods to create Wallet instances.

          diff --git a/docs/classes/WebSocketNamespace.html b/docs/classes/WebSocketNamespace.html index 39d63a3e..fe287e77 100644 --- a/docs/classes/WebSocketNamespace.html +++ b/docs/classes/WebSocketNamespace.html @@ -6,24 +6,24 @@

          Do not call this constructor directly. Instead, instantiate an Alchemy object with const alchemy = new Alchemy(config) and then access the core namespace via alchemy.ws.

          -

        Hierarchy

        • WebSocketNamespace

        Index

        Methods

        Hierarchy

        • WebSocketNamespace

        Index

        Methods

        • Returns the number of listeners for the provided {@link eventName} event. If no event is provided, the total number of listeners for all events is returned.

          Parameters

          • Optional eventName: AlchemyEventType

            The event to get the number of listeners for.

            -

          Returns Promise<number>

        Returns Promise<number>

        • Returns an array of listeners for the provided {@link eventName} event. If no event is provided, all listeners will be included.

          Parameters

          Returns Promise<Listener[]>

        Returns Promise<Listener[]>

        Returns WebSocketNamespace

        • Adds a listener to be triggered for each {@link eventName} event. Also includes Alchemy's Subscription API events. See AlchemyEventType for how to use them.

          @@ -31,7 +31,7 @@

          The event to listen for.

        • listener: Listener

          The listener to call when the event is triggered.

          -

        Returns WebSocketNamespace

        Returns WebSocketNamespace

        • Adds a listener to be triggered for only the next {@link eventName} event, after which it will be removed. Also includes Alchemy's Subscription API events. See AlchemyEventType for how to use them.

          @@ -39,7 +39,7 @@

          The event to listen for.

        • listener: Listener

          The listener to call when the event is triggered.

          -

        Returns WebSocketNamespace

        Returns WebSocketNamespace

        • Remove all listeners for the provided {@link eventName} event. If no event is provided, all events and their listeners are removed.

          Parameters

          • Optional eventName: AlchemyEventType
            diff --git a/docs/enums/AlchemySubscription.html b/docs/enums/AlchemySubscription.html index dc7e5453..6a5a4c41 100644 --- a/docs/enums/AlchemySubscription.html +++ b/docs/enums/AlchemySubscription.html @@ -2,4 +2,4 @@

            Method names for Alchemy's custom Subscription API endpoints.

            This value is provided in the method field when creating an event filter on the Websocket Namespace.

            -

        Index

        Enumeration members

        MINED_TRANSACTIONS = "alchemy_minedTransactions"
        PENDING_TRANSACTIONS = "alchemy_pendingTransactions"

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Index

        Enumeration members

        MINED_TRANSACTIONS = "alchemy_minedTransactions"
        PENDING_TRANSACTIONS = "alchemy_pendingTransactions"

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/AssetTransfersCategory.html b/docs/enums/AssetTransfersCategory.html index a0d07f5b..10909681 100644 --- a/docs/enums/AssetTransfersCategory.html +++ b/docs/enums/AssetTransfersCategory.html @@ -1,20 +1,20 @@ AssetTransfersCategory | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration AssetTransfersCategory

        Categories of transfers to use with the AssetTransfersParams request object when using CoreNamespace.getAssetTransfers.

        -

        Index

        Enumeration members

        ERC1155 = "erc1155"
        +

        Index

        Enumeration members

        ERC1155 = "erc1155"

        ERC1155 transfers.

        -
        ERC20 = "erc20"
        +
        ERC20 = "erc20"

        ERC20 transfers.

        -
        ERC721 = "erc721"
        +
        ERC721 = "erc721"

        ERC721 transfers.

        -
        EXTERNAL = "external"
        +
        EXTERNAL = "external"

        Top level ETH transactions that occur where the fromAddress is an external user-created address. External addresses have private keys and are accessed by users.

        -
        INTERNAL = "internal"
        +
        INTERNAL = "internal"

        Top level ETH transactions that occur where the fromAddress is an internal, smart contract address. For example, a smart contract calling another smart contract or sending

        -
        SPECIALNFT = "specialnft"
        +
        SPECIALNFT = "specialnft"

        Special contracts that don't follow ERC 721/1155, (ex: CryptoKitties).

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/AssetTransfersOrder.html b/docs/enums/AssetTransfersOrder.html index 2c514b18..09a8a125 100644 --- a/docs/enums/AssetTransfersOrder.html +++ b/docs/enums/AssetTransfersOrder.html @@ -1,4 +1,6 @@ AssetTransfersOrder | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration AssetTransfersOrder

        Enum for the order of the AssetTransfersParams request object when using CoreNamespace.getAssetTransfers.

        -

        Index

        Enumeration members

        Enumeration members

        ASCENDING = "asc"
        DESCENDING = "desc"

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +
        deprecated

        Use SortingOrder instead. This enum will be removed in a +future version.

        +

        Index

        Enumeration members

        Enumeration members

        ASCENDING = "asc"
        DESCENDING = "desc"

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/Network.html b/docs/enums/Network.html index f19fd8f2..2dc8b3b9 100644 --- a/docs/enums/Network.html +++ b/docs/enums/Network.html @@ -3,19 +3,19 @@ on all networks. Please refer to the Alchemy documentation for which APIs are available on which networks https://docs.alchemy.com/alchemy/apis/feature-support-by-chain

        -

        Index

        Enumeration members

        ARB_GOERLI = "arb-goerli"
        ARB_MAINNET = "arb-mainnet"
        ARB_RINKEBY = "arb-rinkeby"
        deprecated
          +

        Index

        Enumeration members

        ARB_GOERLI = "arb-goerli"
        ARB_MAINNET = "arb-mainnet"
        ARB_RINKEBY = "arb-rinkeby"
        deprecated
        • Will be removed in subsequent versions
        -
        ASTAR_MAINNET = "astar-mainnet"
        ETH_GOERLI = "eth-goerli"
        ETH_KOVAN = "eth-kovan"
        deprecated
          +
        ASTAR_MAINNET = "astar-mainnet"
        ETH_GOERLI = "eth-goerli"
        ETH_KOVAN = "eth-kovan"
        deprecated
        • Will be removed in subsequent versions
        -
        ETH_MAINNET = "eth-mainnet"
        ETH_RINKEBY = "eth-rinkeby"
        deprecated
          +
        ETH_MAINNET = "eth-mainnet"
        ETH_RINKEBY = "eth-rinkeby"
        deprecated
        • Will be removed in subsequent versions
        -
        ETH_ROPSTEN = "eth-ropsten"
        deprecated
          +
        ETH_ROPSTEN = "eth-ropsten"
        deprecated
        • Will be removed in subsequent versions
        -
        MATIC_MAINNET = "polygon-mainnet"
        MATIC_MUMBAI = "polygon-mumbai"
        OPT_GOERLI = "opt-goerli"
        OPT_KOVAN = "opt-kovan"
        deprecated
          +
        MATIC_MAINNET = "polygon-mainnet"
        MATIC_MUMBAI = "polygon-mumbai"
        OPT_GOERLI = "opt-goerli"
        OPT_KOVAN = "opt-kovan"
        deprecated
        • Will be removed in subsequent versions
        -
        OPT_MAINNET = "opt-mainnet"

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +
        OPT_MAINNET = "opt-mainnet"

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/NftExcludeFilters.html b/docs/enums/NftExcludeFilters.html index 274927d7..aa4851d9 100644 --- a/docs/enums/NftExcludeFilters.html +++ b/docs/enums/NftExcludeFilters.html @@ -1,8 +1,8 @@ NftExcludeFilters | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration NftExcludeFilters

        Enum of NFT filters that can be applied to a getNftsForOwner request. NFTs that match one or more of these filters are excluded from the response.

        -
        beta

        Index

        Enumeration members

        Enumeration members

        AIRDROPS = "AIRDROPS"
        +
        beta

        Index

        Enumeration members

        Enumeration members

        AIRDROPS = "AIRDROPS"

        Exclude NFTs that have been airdropped to a user.

        -
        SPAM = "SPAM"
        +
        SPAM = "SPAM"

        Exclude NFTs that have been classified as spam.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/NftSpamClassification.html b/docs/enums/NftSpamClassification.html index c53515fb..727ba35d 100644 --- a/docs/enums/NftSpamClassification.html +++ b/docs/enums/NftSpamClassification.html @@ -1,3 +1,3 @@ NftSpamClassification | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration NftSpamClassification

        Potential reasons why an NFT contract was classified as spam.

        -

        Index

        Enumeration members

        Erc721DishonestTotalSupply = "Erc721DishonestTotalSupply"
        Erc721TooManyOwners = "Erc721TooManyOwners"
        Erc721TooManyTokens = "Erc721TooManyTokens"
        MostlyHoneyPotOwners = "MostlyHoneyPotOwners"
        OwnedByMostHoneyPots = "OwnedByMostHoneyPots"

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Index

        Enumeration members

        Erc721DishonestTotalSupply = "Erc721DishonestTotalSupply"
        Erc721TooManyOwners = "Erc721TooManyOwners"
        Erc721TooManyTokens = "Erc721TooManyTokens"
        MostlyHoneyPotOwners = "MostlyHoneyPotOwners"
        OwnedByMostHoneyPots = "OwnedByMostHoneyPots"

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/NftTokenType.html b/docs/enums/NftTokenType.html index 41d333ed..53c761e5 100644 --- a/docs/enums/NftTokenType.html +++ b/docs/enums/NftTokenType.html @@ -1,3 +1,3 @@ NftTokenType | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration NftTokenType

        An enum for specifying the token type on NFTs.

        -

        Index

        Enumeration members

        Enumeration members

        ERC1155 = "ERC1155"
        ERC721 = "ERC721"
        UNKNOWN = "UNKNOWN"

        Generated using TypeDoc

        \ No newline at end of file +

        Index

        Enumeration members

        Enumeration members

        ERC1155 = "ERC1155"
        ERC721 = "ERC721"
        UNKNOWN = "UNKNOWN"

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/OpenSeaSafelistRequestStatus.html b/docs/enums/OpenSeaSafelistRequestStatus.html index 82868bbe..721b7c75 100644 --- a/docs/enums/OpenSeaSafelistRequestStatus.html +++ b/docs/enums/OpenSeaSafelistRequestStatus.html @@ -1,11 +1,11 @@ OpenSeaSafelistRequestStatus | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration OpenSeaSafelistRequestStatus

        An OpenSea collection's approval status.

        -

        Index

        Enumeration members

        APPROVED = "approved"
        +

        Index

        Enumeration members

        APPROVED = "approved"

        Collections that are approved on open sea and can be found in search results.

        -
        NOT_REQUESTED = "not_requested"
        +
        NOT_REQUESTED = "not_requested"

        Brand new collections.

        -
        REQUESTED = "requested"
        +
        REQUESTED = "requested"

        Collections that requested safelisting on OpenSea.

        -
        VERIFIED = "verified"
        +
        VERIFIED = "verified"

        Verified collection.

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/RefreshState.html b/docs/enums/RefreshState.html index 49ff953d..e6aeb650 100644 --- a/docs/enums/RefreshState.html +++ b/docs/enums/RefreshState.html @@ -1,15 +1,15 @@ RefreshState | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration RefreshState

        The current state of the NFT contract refresh process.

        -

        Index

        Enumeration members

        ALREADY_QUEUED = "already_queued"
        +

        Index

        Enumeration members

        ALREADY_QUEUED = "already_queued"

        The contract has already been queued for refresh.

        -
        DOES_NOT_EXIST = "does_not_exist"
        +
        DOES_NOT_EXIST = "does_not_exist"

        The provided contract is not an NFT or does not contain metadata.

        -
        FINISHED = "finished"
        +
        FINISHED = "finished"

        The contract refresh is complete.

        -
        IN_PROGRESS = "in_progress"
        +
        IN_PROGRESS = "in_progress"

        The contract is currently being refreshed.

        -
        QUEUED = "queued"
        +
        QUEUED = "queued"

        The contract refresh has been queued and await execution.

        -
        QUEUE_FAILED = "queue_failed"
        +
        QUEUE_FAILED = "queue_failed"

        The contract was unable to be queued due to an internal error.

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/TokenBalanceType.html b/docs/enums/TokenBalanceType.html index daa6b238..a368ba82 100644 --- a/docs/enums/TokenBalanceType.html +++ b/docs/enums/TokenBalanceType.html @@ -1,9 +1,9 @@ TokenBalanceType | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration TokenBalanceType

        Token Types for the getTokenBalances() endpoint.

        -

        Index

        Enumeration members

        Enumeration members

        DEFAULT_TOKENS = "DEFAULT_TOKENS"
        +

        Index

        Enumeration members

        Enumeration members

        DEFAULT_TOKENS = "DEFAULT_TOKENS"

        Option to fetch the top 100 tokens by 24-hour volume. This option is only available on Mainnet in Ethereum, Polygon, and Arbitrum.

        -
        ERC20 = "erc20"
        +
        ERC20 = "erc20"

        Option to fetch the set of ERC-20 tokens that the address as ever held. his list is produced by an address's historical transfer activity and includes all tokens that the address has ever received.

        diff --git a/docs/enums/WebhookType.html b/docs/enums/WebhookType.html index 1b41166f..36974f2b 100644 --- a/docs/enums/WebhookType.html +++ b/docs/enums/WebhookType.html @@ -1,3 +1,3 @@ WebhookType | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration WebhookType

        The type of Webhook.

        -

        Index

        Enumeration members

        ADDRESS_ACTIVITY = "ADDRESS_ACTIVITY"
        DROPPED_TRANSACTION = "DROPPED_TRANSACTION"
        MINED_TRANSACTION = "MINED_TRANSACTION"
        NFT_ACTIVITY = "NFT_ACTIVITY"

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Index

        Enumeration members

        ADDRESS_ACTIVITY = "ADDRESS_ACTIVITY"
        DROPPED_TRANSACTION = "DROPPED_TRANSACTION"
        MINED_TRANSACTION = "MINED_TRANSACTION"
        NFT_ACTIVITY = "NFT_ACTIVITY"

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/enums/WebhookVersion.html b/docs/enums/WebhookVersion.html index b8218a43..5208ee29 100644 --- a/docs/enums/WebhookVersion.html +++ b/docs/enums/WebhookVersion.html @@ -1,3 +1,3 @@ WebhookVersion | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Enumeration WebhookVersion

        The version of the webhook. All newly created webhooks default to V2.

        -

        Index

        Enumeration members

        Enumeration members

        V1 = "V1"
        V2 = "V2"

        Generated using TypeDoc

        \ No newline at end of file +

        Index

        Enumeration members

        Enumeration members

        V1 = "V1"
        V2 = "V2"

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 7d19129a..c60f14bf 100644 --- a/docs/index.html +++ b/docs/index.html @@ -6,7 +6,8 @@

        Alchemy SDK for Javascript

        It supports the exact same syntax and functionality of the Ethers.js AlchemyProvider and WebSocketProvider, making it a 1:1 mapping for anyone using the Ethers.js Provider. However, it adds a significant amount of improved functionality on top of Ethers, such as easy access to Alchemy’s Enhanced and NFT APIs, robust WebSockets, and quality-of-life improvements such as automated retries.

        The SDK leverages Alchemy's hardened node infrastructure, guaranteeing best-in-class node reliability, scalability, and data correctness, and is undergoing active development by Alchemy's engineers.

        -

        🙋‍♀️ FEATURE REQUESTS: We'd love your thoughts on what would improve your web3 dev process the most! If you have 5 minutes, tell us what you want on our Feature Request feedback form, and we'd love to build it for you:

        +

        🙋‍♀️ FEATURE REQUESTS:

        +

        We'd love your thoughts on what would improve your web3 dev process the most! If you have 5 minutes, tell us what you want on our Feature Request feedback form, and we'd love to build it for you.

        The SDK currently supports the following chains:

        If you are already using Ethers.js, you should be simply able to replace the Ethers.js Provider object with alchemy.core and it should work properly.

        +
        +

        ℹ️ ENS Name Resolution

        +

        The Alchemy SDK now supports ENS names (e.g. vitalik.eth) for every parameter where you can pass in a Externally Owned Address, or user address (e.g. 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045).

        +
        import { Alchemy, AlchemySubscription } from 'alchemy-sdk';

        // Using default settings - pass in a settings object to specify your API key and network
        const alchemy = new Alchemy();

        // Access standard Ethers.js JSON-RPC node request
        alchemy.core.getBlockNumber().then(console.log);

        // Access Alchemy Enhanced API requests
        alchemy.core
        .getTokenBalances('0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE')
        .then(console.log);

        // Access the Alchemy NFT API
        alchemy.nft.getNftsForOwner('vitalik.eth').then(console.log);

        // Access WebSockets and Alchemy-specific WS methods
        alchemy.ws.on(
        {
        method: AlchemySubscription.PENDING_TRANSACTIONS
        },
        res => console.log(res)
        );
        +

        The Alchemy SDK also supports a number of Ethers.js objects that streamline the development process:

        +

        Alchemy Core

        @@ -72,7 +88,7 @@

        Alchemy WebSockets

        In addition to the built-in Ethers.js listeners, the Alchemy SDK includes support for Alchemy's Subscription API. This allows you to subscribe to events and receive updates as they occur.

        The alchemy.ws instance can be used like the standard Ethers.js WebSocketProvider to add listeners for Alchemy events:

        -
        import { Alchemy, AlchemySubscription } from 'alchemy-sdk';

        const alchemy = new Alchemy();

        // Listen to all new pending transactions.
        alchemy.ws.on('block', res => console.log(res));

        // Listen to only the next transaction on the USDC contract.
        alchemy.ws.once(
        {
        method: AlchemySubscription.PENDING_TRANSACTIONS,
        toAddress: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
        },
        res => console.log(res)
        );

        // Remove all listeners.
        alchemy.ws.removeAllListeners(); +
        import { Alchemy, AlchemySubscription } from 'alchemy-sdk';

        const alchemy = new Alchemy();

        // Listen to all new pending transactions.
        alchemy.ws.on('block', res => console.log(res));

        // Listen to only the next transaction on the USDC contract.
        alchemy.ws.once(
        {
        method: AlchemySubscription.PENDING_TRANSACTIONS,
        toAddress: 'vitalik.eth'
        },
        res => console.log(res)
        );

        // Remove all listeners.
        alchemy.ws.removeAllListeners();

        The SDK brings multiple improvements to ensure correct WebSocket behavior in cases of temporary network failure or dropped connections. As with any network connection, you should not assume that a WebSocket will remain open forever @@ -110,7 +126,8 @@

        Alchemy NFT API

        The SDK currently supports the following NFT API endpoints under the alchemy.nft namespace:

        @@ -195,7 +214,11 @@

        Documentation

        Usage Examples

        -

        Below are a few usage examples. You can also find examples at the following page: Examples Using the Alchemy SDK.

        +

        Below are a few usage examples.

        +
        +

        **ℹ️ More Examples **

        +

        You can also go here: Examples Using the Alchemy SDK.

        +

        Getting the NFTs owned by an address

        @@ -212,7 +235,7 @@

        Getting all the owners of the BAYC NFT

        Get all outbound transfers for a provided address

        -
        import { Alchemy } from 'alchemy-sdk';

        const alchemy = new Alchemy();

        alchemy.core
        .getTokenBalances('0x994b342dd87fc825f66e51ffa3ef71ad818b6893')
        .then(console.log); +
        import { Alchemy } from 'alchemy-sdk';

        const alchemy = new Alchemy();

        alchemy.core.getTokenBalances('vitalik.eth').then(console.log);
        @@ -221,4 +244,4 @@

        Questions and Feedback

        If you have any questions, issues, or feedback, please file an issue on GitHub, or drop us a message on our Discord channel for the SDK.

        -

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AddressActivityResponse.html b/docs/interfaces/AddressActivityResponse.html index 1ef2f035..892c5e57 100644 --- a/docs/interfaces/AddressActivityResponse.html +++ b/docs/interfaces/AddressActivityResponse.html @@ -1,9 +1,9 @@ AddressActivityResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AddressActivityResponse

        Response object for the NotifyNamespace.getAddresses method.

        -

        Hierarchy

        • AddressActivityResponse

        Index

        Properties

        addresses: string[]
        +

        Hierarchy

        • AddressActivityResponse

        Index

        Properties

        addresses: string[]

        The addresses for the webhook.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key used to fetch the remaining addresses.

        -
        totalCount: number
        +
        totalCount: number

        The total number of addresses.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AddressActivityWebhook.html b/docs/interfaces/AddressActivityWebhook.html index aaf16472..33161421 100644 --- a/docs/interfaces/AddressActivityWebhook.html +++ b/docs/interfaces/AddressActivityWebhook.html @@ -2,23 +2,23 @@

        An Address Activity Webhook tracks ETH, ERC20, ERC721, and ERC1155 transfers for the provided addresses. This can be used to notify your app with real-time state changes when your tracked addresses send or receive tokens.

        -

        Hierarchy

        Index

        Properties

        appId?: string
        +

        Hierarchy

        Index

        Properties

        appId?: string

        The app id of the app used for the webhook. This field is only present on MinedTransactionWebhook and DroppedTransactionWebhook

        -
        id: string
        +
        id: string

        The webhook's unique id.

        -
        isActive: boolean
        +
        isActive: boolean

        Whether the webhook is currently active

        -
        network: Network
        +
        network: Network

        The network the webhook is on.

        -
        signingKey: string
        +
        signingKey: string

        The signing key used to verify payloads for the webhook.

        -
        timeCreated: string
        +
        timeCreated: string

        The creation time of the webhook as an ISO string.

        -
        +

        The type of webhook.

        -
        url: string
        +
        url: string

        The url that the webhook sends its payload to.

        -
        +

        The webhook version. All newly created webhooks default to V2.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AddressWebhookParams.html b/docs/interfaces/AddressWebhookParams.html index 1226eebe..f446fc04 100644 --- a/docs/interfaces/AddressWebhookParams.html +++ b/docs/interfaces/AddressWebhookParams.html @@ -1,9 +1,9 @@ AddressWebhookParams | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AddressWebhookParams

        Params to pass in when calling NotifyNamespace.createWebhook in order to create a AddressActivityWebhook.

        -

        Hierarchy

        • AddressWebhookParams

        Index

        Properties

        addresses: string[]
        +

        Hierarchy

        • AddressWebhookParams

        Index

        Properties

        addresses: string[]

        Array of addresses the webhook should activity for.

        -
        network?: Network
        +
        network?: Network

        Optional network to create the webhook on. If omitted, the webhook will be created on network of the app provided in the api key config.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AlchemyMinedTransactionsEventFilter.html b/docs/interfaces/AlchemyMinedTransactionsEventFilter.html index 9fdbe8af..0a37a848 100644 --- a/docs/interfaces/AlchemyMinedTransactionsEventFilter.html +++ b/docs/interfaces/AlchemyMinedTransactionsEventFilter.html @@ -7,14 +7,14 @@ https://docs.alchemy.com/reference/alchemy-minedtransactions

        Note that excluding all optional parameters will return transaction information for ALL mined transactions.

        -

        Hierarchy

        • AlchemyMinedTransactionsEventFilter

        Index

        Properties

        +

        Hierarchy

        • AlchemyMinedTransactionsEventFilter

        Index

        Properties

        Address filters to subscribe to. Defaults to all transactions if omitted. Limit 100 address filters. Requires a non-empty array.

        -
        hashesOnly?: boolean
        +
        hashesOnly?: boolean

        Whether to only include transaction hashes and exclude the rest of the transaction response for a smaller payload. Defaults to false (by default, the entire transaction response is included).

        -
        includeRemoved?: boolean
        +
        includeRemoved?: boolean

        Whether to include transactions that were removed from the mempool. Defaults to false.

        -

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AlchemyPendingTransactionsEventFilter.html b/docs/interfaces/AlchemyPendingTransactionsEventFilter.html index 511446ac..a030865d 100644 --- a/docs/interfaces/AlchemyPendingTransactionsEventFilter.html +++ b/docs/interfaces/AlchemyPendingTransactionsEventFilter.html @@ -7,14 +7,14 @@ https://docs.alchemy.com/reference/alchemy-pendingtransactions

        Note that excluding all optional parameters will return transaction information for ALL pending transactions that are added to the mempool.

        -

        Hierarchy

        • AlchemyPendingTransactionsEventFilter

        Index

        Properties

        fromAddress?: string | string[]
        +

        Hierarchy

        • AlchemyPendingTransactionsEventFilter

        Index

        Properties

        fromAddress?: string | string[]

        Filter pending transactions sent FROM the provided address or array of addresses.

        -
        hashesOnly?: boolean
        +
        hashesOnly?: boolean

        Whether to only include transaction hashes and exclude the rest of the transaction response for a smaller payload. Defaults to false (by default, the entire transaction response is included).

        Note that setting only hashesOnly to true will return the same response as subscribing to newPendingTransactions.

        -
        toAddress?: string | string[]
        +
        toAddress?: string | string[]

        Filter pending transactions sent TO the provided address or array of addresses.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AlchemySettings.html b/docs/interfaces/AlchemySettings.html index 6386d81b..1e365f66 100644 --- a/docs/interfaces/AlchemySettings.html +++ b/docs/interfaces/AlchemySettings.html @@ -1,18 +1,22 @@ AlchemySettings | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AlchemySettings

        Options object used to configure the Alchemy SDK.

        -

        Hierarchy

        • AlchemySettings

        Index

        Properties

        apiKey?: string
        +

        Hierarchy

        • AlchemySettings

        Index

        Properties

        apiKey?: string

        The Alchemy API key that can be found in the Alchemy dashboard.

        -
        authToken?: string
        +
        authToken?: string

        Alchemy auth token required to use the Notify API. This token can be found in the Alchemy Dashboard on the Notify tab.

        -
        maxRetries?: number
        +
        batchRequsets?: boolean
        +

        Optional setting that automatically batches and sends json-rpc requests for +higher throughput and reduced network IO. Defaults to false.

        +

        This implementation is based on the JsonRpcBatchProvider in ethers.

        +
        maxRetries?: number

        The maximum number of retries to attempt if a request fails. Defaults to 5.

        -
        network?: Network
        +
        network?: Network

        The name of the network. Once configured, the network cannot be changed. To use a different network, instantiate a new Alchemy instance

        -
        url?: string
        +
        url?: string

        Optional URL endpoint to use for all requests. Setting this field will override the URL generated by the network and apiKey fields.

        This field is useful for testing or for using a custom node endpoint. Note that not all methods will work with custom URLs.

        -

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AssetTransfersMetadata.html b/docs/interfaces/AssetTransfersMetadata.html index 14741a29..22a28019 100644 --- a/docs/interfaces/AssetTransfersMetadata.html +++ b/docs/interfaces/AssetTransfersMetadata.html @@ -1,6 +1,6 @@ AssetTransfersMetadata | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AssetTransfersMetadata

        The metadata object for a AssetTransfersResult when the AssetTransfersParams.withMetadata field is set to true.

        -

        Hierarchy

        • AssetTransfersMetadata

        Index

        Properties

        Properties

        blockTimestamp: string
        +

        Hierarchy

        • AssetTransfersMetadata

        Index

        Properties

        Properties

        blockTimestamp: string

        Timestamp of the block from which the transaction event originated.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AssetTransfersParams.html b/docs/interfaces/AssetTransfersParams.html index 4e08923e..9ca3fb2d 100644 --- a/docs/interfaces/AssetTransfersParams.html +++ b/docs/interfaces/AssetTransfersParams.html @@ -1,34 +1,34 @@ AssetTransfersParams | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AssetTransfersParams

        Parameters for the CoreNamespace.getAssetTransfers method.

        -

        Hierarchy

        Index

        Properties

        +

        Hierarchy

        Index

        Properties

        REQUIRED field. An array of categories to get transfers for.

        -
        contractAddresses?: string[]
        +
        contractAddresses?: string[]

        List of contract addresses to filter for - only applies to "erc20", "erc721", "erc1155" transfers. Defaults to all address if omitted.

        -
        excludeZeroValue?: boolean
        +
        excludeZeroValue?: boolean

        Whether to exclude transfers with zero value. Note that zero value is different than null value. Defaults to false if omitted.

        -
        fromAddress?: string
        +
        fromAddress?: string

        The from address to filter transfers by. This value defaults to a wildcard for all addresses if omitted.

        -
        fromBlock?: string
        +
        fromBlock?: string

        The starting block to check for transfers. This value is inclusive and defaults to 0x0 if omitted.

        -
        maxCount?: number
        +
        maxCount?: number

        The maximum number of results to return per page. Defaults to 1000 if omitted.

        -
        +
        order?: SortingOrder

        Whether to return results in ascending or descending order by block number. Defaults to ascending if omitted.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key from an existing OwnedBaseNftsResponse AssetTransfersResultto use for pagination.

        -
        toAddress?: string
        +
        toAddress?: string

        The to address to filter transfers by. This value defaults to a wildcard for all address if omitted.

        -
        toBlock?: string
        +
        toBlock?: string

        The ending block to check for transfers. This value is inclusive and defaults to the latest block if omitted.

        -
        withMetadata?: boolean
        +
        withMetadata?: boolean

        Whether to include additional metadata about each transfer event. Defaults to false if omitted.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AssetTransfersResponse.html b/docs/interfaces/AssetTransfersResponse.html index 4f53bb82..e93c0ce1 100644 --- a/docs/interfaces/AssetTransfersResponse.html +++ b/docs/interfaces/AssetTransfersResponse.html @@ -1,5 +1,5 @@ AssetTransfersResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AssetTransfersResponse

        Response object for the CoreNamespace.getAssetTransfers method.

        -

        Hierarchy

        • AssetTransfersResponse

        Index

        Properties

        pageKey?: string
        +

        Hierarchy

        • AssetTransfersResponse

        Index

        Properties

        pageKey?: string

        Page key for the next page of results, if one exists.

        -

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AssetTransfersResult.html b/docs/interfaces/AssetTransfersResult.html index 7db3725b..2e0f266e 100644 --- a/docs/interfaces/AssetTransfersResult.html +++ b/docs/interfaces/AssetTransfersResult.html @@ -1,31 +1,31 @@ AssetTransfersResult | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AssetTransfersResult

        Represents a transfer event that is returned in a AssetTransfersResponse.

        -

        Hierarchy

        Index

        Properties

        asset: null | string
        +

        Hierarchy

        Index

        Properties

        asset: null | string

        Returns the token's symbol or ETH for other transfers. null if the information was not available.

        -
        blockNum: string
        +
        blockNum: string

        The block number where the transfer occurred.

        -
        +

        The category of the transfer.

        -
        erc1155Metadata: null | ERC1155Metadata[]
        +
        erc1155Metadata: null | ERC1155Metadata[]

        A list of ERC1155 metadata objects if the asset transferred is an ERC1155 token. null if not an ERC1155 transfer.

        -
        erc721TokenId: null | string
        +
        erc721TokenId: null | string

        The raw ERC721 token id of the transfer as a hex string. null if not an ERC721 transfer.

        -
        from: string
        +
        from: string

        The from address of the transfer.

        -
        hash: string
        +
        hash: string

        The transaction hash of the transfer transaction.

        -
        rawContract: RawContract
        +
        rawContract: RawContract

        Information about the raw contract of the asset transferred.

        -
        to: null | string
        +
        to: null | string

        The to address of the transfer.

        -
        tokenId: null | string
        +
        tokenId: null | string

        The token id of the token transferred.

        -
        uniqueId: string
        +
        uniqueId: string

        The unique ID of the transfer.

        -
        value: null | number
        +
        value: null | number

        Converted asset transfer value as a number (raw value divided by contract decimal). null if ERC721 transfer or contract decimal not available.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AssetTransfersWithMetadataParams.html b/docs/interfaces/AssetTransfersWithMetadataParams.html index d268e665..fb1d0056 100644 --- a/docs/interfaces/AssetTransfersWithMetadataParams.html +++ b/docs/interfaces/AssetTransfersWithMetadataParams.html @@ -1,35 +1,35 @@ AssetTransfersWithMetadataParams | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AssetTransfersWithMetadataParams

        Parameters for the CoreNamespace.getAssetTransfers method that includes metadata.

        -

        Hierarchy

        Index

        Properties

        +

        Hierarchy

        Index

        Properties

        REQUIRED field. An array of categories to get transfers for.

        -
        contractAddresses?: string[]
        +
        contractAddresses?: string[]

        List of contract addresses to filter for - only applies to "erc20", "erc721", "erc1155" transfers. Defaults to all address if omitted.

        -
        excludeZeroValue?: boolean
        +
        excludeZeroValue?: boolean

        Whether to exclude transfers with zero value. Note that zero value is different than null value. Defaults to false if omitted.

        -
        fromAddress?: string
        +
        fromAddress?: string

        The from address to filter transfers by. This value defaults to a wildcard for all addresses if omitted.

        -
        fromBlock?: string
        +
        fromBlock?: string

        The starting block to check for transfers. This value is inclusive and defaults to 0x0 if omitted.

        -
        maxCount?: number
        +
        maxCount?: number

        The maximum number of results to return per page. Defaults to 1000 if omitted.

        -
        +
        order?: SortingOrder

        Whether to return results in ascending or descending order by block number. Defaults to ascending if omitted.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key from an existing OwnedBaseNftsResponse AssetTransfersResultto use for pagination.

        -
        toAddress?: string
        +
        toAddress?: string

        The to address to filter transfers by. This value defaults to a wildcard for all address if omitted.

        -
        toBlock?: string
        +
        toBlock?: string

        The ending block to check for transfers. This value is inclusive and defaults to the latest block if omitted.

        -
        withMetadata: true
        +
        withMetadata: true

        Whether to include additional metadata about each transfer event. Defaults to false if omitted.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AssetTransfersWithMetadataResponse.html b/docs/interfaces/AssetTransfersWithMetadataResponse.html index 642309de..249f4c64 100644 --- a/docs/interfaces/AssetTransfersWithMetadataResponse.html +++ b/docs/interfaces/AssetTransfersWithMetadataResponse.html @@ -1,4 +1,4 @@ AssetTransfersWithMetadataResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AssetTransfersWithMetadataResponse

        Response object for the CoreNamespace.getAssetTransfers method when the AssetTransfersWithMetadataParams are used.

        -

        Hierarchy

        • AssetTransfersWithMetadataResponse

        Index

        Properties

        pageKey?: string

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Hierarchy

        • AssetTransfersWithMetadataResponse

        Index

        Properties

        pageKey?: string

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/AssetTransfersWithMetadataResult.html b/docs/interfaces/AssetTransfersWithMetadataResult.html index 2223a3cd..32daa914 100644 --- a/docs/interfaces/AssetTransfersWithMetadataResult.html +++ b/docs/interfaces/AssetTransfersWithMetadataResult.html @@ -1,34 +1,34 @@ AssetTransfersWithMetadataResult | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface AssetTransfersWithMetadataResult

        Represents a transfer event that is returned in a AssetTransfersResponse when AssetTransfersWithMetadataParams are used.

        -

        Hierarchy

        Index

        Properties

        asset: null | string
        +

        Hierarchy

        Index

        Properties

        asset: null | string

        Returns the token's symbol or ETH for other transfers. null if the information was not available.

        -
        blockNum: string
        +
        blockNum: string

        The block number where the transfer occurred.

        -
        +

        The category of the transfer.

        -
        erc1155Metadata: null | ERC1155Metadata[]
        +
        erc1155Metadata: null | ERC1155Metadata[]

        A list of ERC1155 metadata objects if the asset transferred is an ERC1155 token. null if not an ERC1155 transfer.

        -
        erc721TokenId: null | string
        +
        erc721TokenId: null | string

        The raw ERC721 token id of the transfer as a hex string. null if not an ERC721 transfer.

        -
        from: string
        +
        from: string

        The from address of the transfer.

        -
        hash: string
        +
        hash: string

        The transaction hash of the transfer transaction.

        -
        +

        Additional metadata about the transfer event.

        -
        rawContract: RawContract
        +
        rawContract: RawContract

        Information about the raw contract of the asset transferred.

        -
        to: null | string
        +
        to: null | string

        The to address of the transfer.

        -
        tokenId: null | string
        +
        tokenId: null | string

        The token id of the token transferred.

        -
        uniqueId: string
        +
        uniqueId: string

        The unique ID of the transfer.

        -
        value: null | number
        +
        value: null | number

        Converted asset transfer value as a number (raw value divided by contract decimal). null if ERC721 transfer or contract decimal not available.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/BaseNft.html b/docs/interfaces/BaseNft.html index 6c22eb95..daac6be0 100644 --- a/docs/interfaces/BaseNft.html +++ b/docs/interfaces/BaseNft.html @@ -1,7 +1,7 @@ BaseNft | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface BaseNft

        Alchemy representation of a base NFT that doesn't contain metadata.

        -

        Hierarchy

        Index

        Properties

        contract: BaseNftContract
        tokenId: string
        +

        Hierarchy

        Index

        Properties

        contract: BaseNftContract
        tokenId: string

        The NFT token ID as an integer string.

        -
        tokenType: NftTokenType
        +
        tokenType: NftTokenType

        The type of ERC token, if known.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/BaseNftContract.html b/docs/interfaces/BaseNftContract.html index 92eb2225..1b4e3573 100644 --- a/docs/interfaces/BaseNftContract.html +++ b/docs/interfaces/BaseNftContract.html @@ -1,5 +1,5 @@ BaseNftContract | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface BaseNftContract

        Alchemy representation of a base NFT contract that doesn't contain metadata.

        -

        Hierarchy

        Index

        Properties

        Properties

        address: string
        +

        Hierarchy

        Index

        Properties

        Properties

        address: string

        The address of the contract.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/DeployResult.html b/docs/interfaces/DeployResult.html index c7707138..270cd0f6 100644 --- a/docs/interfaces/DeployResult.html +++ b/docs/interfaces/DeployResult.html @@ -1,7 +1,7 @@ DeployResult | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface DeployResult

        The response object for the findContractDeployer function.

        -

        Hierarchy

        • DeployResult

        Index

        Properties

        blockNumber: number
        +

        Hierarchy

        • DeployResult

        Index

        Properties

        blockNumber: number

        The block number the contract was deployed in.

        -
        deployerAddress?: string
        +
        deployerAddress?: string

        The address of the contract deployer, if it is available.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/DroppedTransactionWebhook.html b/docs/interfaces/DroppedTransactionWebhook.html index c5016999..e4e5d3af 100644 --- a/docs/interfaces/DroppedTransactionWebhook.html +++ b/docs/interfaces/DroppedTransactionWebhook.html @@ -2,23 +2,23 @@

        A Dropped Transaction webhook is used to notify your app whenever a transaction sent through your API key gets dropped. This can be useful if you want to notify customers that their transactions were dropped.

        -

        Hierarchy

        Index

        Properties

        appId?: string
        +

        Hierarchy

        Index

        Properties

        appId?: string

        The app id of the app used for the webhook. This field is only present on MinedTransactionWebhook and DroppedTransactionWebhook

        -
        id: string
        +
        id: string

        The webhook's unique id.

        -
        isActive: boolean
        +
        isActive: boolean

        Whether the webhook is currently active

        -
        network: Network
        +
        network: Network

        The network the webhook is on.

        -
        signingKey: string
        +
        signingKey: string

        The signing key used to verify payloads for the webhook.

        -
        timeCreated: string
        +
        timeCreated: string

        The creation time of the webhook as an ISO string.

        -
        +

        The type of webhook.

        -
        url: string
        +
        url: string

        The url that the webhook sends its payload to.

        -
        +

        The webhook version. All newly created webhooks default to V2.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/ERC1155Metadata.html b/docs/interfaces/ERC1155Metadata.html index 40815268..74a19ce4 100644 --- a/docs/interfaces/ERC1155Metadata.html +++ b/docs/interfaces/ERC1155Metadata.html @@ -1,4 +1,4 @@ ERC1155Metadata | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface ERC1155Metadata

        Metadata object returned in a AssetTransfersResult object if the asset transferred is an ERC1155.

        -

        Hierarchy

        • ERC1155Metadata

        Index

        Properties

        Properties

        tokenId: string
        value: string

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Hierarchy

        • ERC1155Metadata

        Index

        Properties

        Properties

        tokenId: string
        value: string

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/FloorPriceError.html b/docs/interfaces/FloorPriceError.html index bcc3be3f..6d77349b 100644 --- a/docs/interfaces/FloorPriceError.html +++ b/docs/interfaces/FloorPriceError.html @@ -1,6 +1,6 @@ FloorPriceError | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface FloorPriceError

        The failing object returned by the getFloorPrice call for each marketplace (e.g. looksRare).

        -

        Hierarchy

        • FloorPriceError

        Index

        Properties

        Properties

        error: string
        +

        Hierarchy

        • FloorPriceError

        Index

        Properties

        Properties

        error: string

        Error fetching floor prices from the given marketplace

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/FloorPriceMarketplace.html b/docs/interfaces/FloorPriceMarketplace.html index 50e252dc..0da405bc 100644 --- a/docs/interfaces/FloorPriceMarketplace.html +++ b/docs/interfaces/FloorPriceMarketplace.html @@ -1,12 +1,12 @@ FloorPriceMarketplace | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface FloorPriceMarketplace

        The successful object returned by the getFloorPrice call for each marketplace (e.g. looksRare).

        -

        Hierarchy

        • FloorPriceMarketplace

        Index

        Properties

        collectionUrl: string
        +

        Hierarchy

        • FloorPriceMarketplace

        Index

        Properties

        collectionUrl: string

        The link to the collection on the given marketplace

        -
        floorPrice: number
        +
        floorPrice: number

        The floor price of the collection on the given marketplace

        -
        priceCurrency: string
        +
        priceCurrency: string

        The currency in which the floor price is denominated

        -
        retrievedAt: string
        +
        retrievedAt: string

        UTC timestamp of when the floor price was retrieved from the marketplace

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/GetAddressesOptions.html b/docs/interfaces/GetAddressesOptions.html index 70822c33..d9250a0d 100644 --- a/docs/interfaces/GetAddressesOptions.html +++ b/docs/interfaces/GetAddressesOptions.html @@ -1,7 +1,7 @@ GetAddressesOptions | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface GetAddressesOptions

        Options object for the NotifyNamespace.getAddresses method.

        -

        Hierarchy

        • GetAddressesOptions

        Index

        Properties

        Properties

        limit?: number
        +

        Hierarchy

        • GetAddressesOptions

        Index

        Properties

        Properties

        limit?: number

        Number of addresses to fetch.

        -
        pageKey?: string
        +
        pageKey?: string

        Page

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/GetAllWebhooksResponse.html b/docs/interfaces/GetAllWebhooksResponse.html index fd932548..c2537c89 100644 --- a/docs/interfaces/GetAllWebhooksResponse.html +++ b/docs/interfaces/GetAllWebhooksResponse.html @@ -1,7 +1,7 @@ GetAllWebhooksResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface GetAllWebhooksResponse

        The response for a NotifyNamespace.getAllWebhooks method.

        -

        Hierarchy

        • GetAllWebhooksResponse

        Index

        Properties

        totalCount: number
        +

        Hierarchy

        • GetAllWebhooksResponse

        Index

        Properties

        totalCount: number

        The total number of webhooks.

        -
        webhooks: Webhook[]
        +
        webhooks: Webhook[]

        All webhooks attached to the provided auth token.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/GetBaseNftsForContractOptions.html b/docs/interfaces/GetBaseNftsForContractOptions.html index d365a989..70c5586e 100644 --- a/docs/interfaces/GetBaseNftsForContractOptions.html +++ b/docs/interfaces/GetBaseNftsForContractOptions.html @@ -3,12 +3,12 @@ getNftsForContractIterator functions.

        This interface is used to fetch NFTs without their associated metadata. To get Nfts with their associated metadata, use GetNftsForContractOptions.

        -

        Hierarchy

        • GetBaseNftsForContractOptions

        Index

        Properties

        omitMetadata: false
        +

        Hierarchy

        • GetBaseNftsForContractOptions

        Index

        Properties

        omitMetadata: false

        Optional boolean flag to omit NFT metadata. Defaults to false.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key from an existing NftContractBaseNftsResponse or NftContractNftsResponseto use for pagination.

        -
        pageSize?: number
        +
        pageSize?: number

        Sets the total number of NFTs to return in the response. Defaults to 100. Maximum page size is 100.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/GetBaseNftsForOwnerOptions.html b/docs/interfaces/GetBaseNftsForOwnerOptions.html index fed61c3e..cd22a153 100644 --- a/docs/interfaces/GetBaseNftsForOwnerOptions.html +++ b/docs/interfaces/GetBaseNftsForOwnerOptions.html @@ -3,20 +3,20 @@ getNftsForOwnerIterator functions.

        This interface is used to fetch NFTs without their associated metadata. To get Nfts with their associated metadata, use GetNftsForOwnerOptions.

        -

        Hierarchy

        • GetBaseNftsForOwnerOptions

        Index

        Properties

        contractAddresses?: string[]
        +

        Hierarchy

        • GetBaseNftsForOwnerOptions

        Index

        Properties

        contractAddresses?: string[]

        Optional list of contract addresses to filter the results by. Limit is 20.

        -
        excludeFilters?: NftExcludeFilters[]
        +
        excludeFilters?: NftExcludeFilters[]

        Optional list of filters applied to the query. NFTs that match one or more of these filters are excluded from the response.

        -
        omitMetadata: true
        +
        omitMetadata: true

        Optional boolean flag to include NFT metadata. Defaults to false.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key from an existing OwnedBaseNftsResponse or OwnedNftsResponseto use for pagination.

        -
        pageSize?: number
        +
        pageSize?: number

        Sets the total number of NFTs to return in the response. Defaults to 100. Maximum page size is 100.

        -
        tokenUriTimeoutInMs?: number
        +
        tokenUriTimeoutInMs?: number

        No set timeout by default - When metadata is requested, this parameter is the timeout (in milliseconds) for the website hosting the metadata to respond. If you want to only access the cache and not live fetch any diff --git a/docs/interfaces/GetFloorPriceResponse.html b/docs/interfaces/GetFloorPriceResponse.html index 8f6ec15e..29f507fc 100644 --- a/docs/interfaces/GetFloorPriceResponse.html +++ b/docs/interfaces/GetFloorPriceResponse.html @@ -1,6 +1,6 @@ GetFloorPriceResponse | alchemy-sdk

        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface GetFloorPriceResponse

        The response object for the getFloorPrice method.

        -

        Hierarchy

        • GetFloorPriceResponse

        Index

        Properties

        +

        Hierarchy

        • GetFloorPriceResponse

        Index

        Properties

        Name of the NFT marketplace where the collection is listed. Current marketplaces supported: OpenSea, LooksRare

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/GetNftsForContractOptions.html b/docs/interfaces/GetNftsForContractOptions.html index b06be5f1..88aea217 100644 --- a/docs/interfaces/GetNftsForContractOptions.html +++ b/docs/interfaces/GetNftsForContractOptions.html @@ -3,15 +3,15 @@ getNftsForContractIterator functions.

        This interface is used to fetch NFTs with their associated metadata. To get Nfts without their associated metadata, use GetBaseNftsForContractOptions.

        -

        Hierarchy

        • GetNftsForContractOptions

        Index

        Properties

        omitMetadata?: boolean
        +

        Hierarchy

        • GetNftsForContractOptions

        Index

        Properties

        omitMetadata?: boolean

        Optional boolean flag to omit NFT metadata. Defaults to false.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key from an existing NftContractBaseNftsResponse or NftContractNftsResponseto use for pagination.

        -
        pageSize?: number
        +
        pageSize?: number

        Sets the total number of NFTs to return in the response. Defaults to 100. Maximum page size is 100.

        -
        tokenUriTimeoutInMs?: number
        +
        tokenUriTimeoutInMs?: number

        No set timeout by default - When metadata is requested, this parameter is the timeout (in milliseconds) for the website hosting the metadata to respond. If you want to only access the cache and not live fetch any diff --git a/docs/interfaces/GetNftsForOwnerOptions.html b/docs/interfaces/GetNftsForOwnerOptions.html index f6c4ddc2..ceac48f5 100644 --- a/docs/interfaces/GetNftsForOwnerOptions.html +++ b/docs/interfaces/GetNftsForOwnerOptions.html @@ -3,20 +3,20 @@ getNftsForOwnerIterator functions.

        This interface is used to fetch NFTs with their associated metadata. To get Nfts without their associated metadata, use GetBaseNftsForOwnerOptions.

        -

        Hierarchy

        • GetNftsForOwnerOptions

        Index

        Properties

        contractAddresses?: string[]
        +

        Hierarchy

        • GetNftsForOwnerOptions

        Index

        Properties

        contractAddresses?: string[]

        Optional list of contract addresses to filter the results by. Limit is 20.

        -
        excludeFilters?: NftExcludeFilters[]
        +
        excludeFilters?: NftExcludeFilters[]

        Optional list of filters applied to the query. NFTs that match one or more of these filters are excluded from the response.

        -
        omitMetadata?: boolean
        +
        omitMetadata?: boolean

        Optional boolean flag to omit NFT metadata. Defaults to false.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key from an existing OwnedBaseNftsResponse or OwnedNftsResponseto use for pagination.

        -
        pageSize?: number
        +
        pageSize?: number

        Sets the total number of NFTs to return in the response. Defaults to 100. Maximum page size is 100.

        -
        tokenUriTimeoutInMs?: number
        +
        tokenUriTimeoutInMs?: number

        No set timeout by default - When metadata is requested, this parameter is the timeout (in milliseconds) for the website hosting the metadata to respond. If you want to only access the cache and not live fetch any diff --git a/docs/interfaces/GetOwnersForContractOptions.html b/docs/interfaces/GetOwnersForContractOptions.html index 1bac2ea5..bf82e43e 100644 --- a/docs/interfaces/GetOwnersForContractOptions.html +++ b/docs/interfaces/GetOwnersForContractOptions.html @@ -2,11 +2,11 @@

        Optional parameters object for the getNftsForContract method.

        This interface configures options when fetching the owner addresses of the provided contract.

        -

        Hierarchy

        • GetOwnersForContractOptions

        Index

        Properties

        block?: string
        +

        Hierarchy

        • GetOwnersForContractOptions

        Index

        Properties

        block?: string

        The block number in hex or decimal to fetch owners for.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key to paginate the next page for large requests.

        -
        withTokenBalances?: boolean
        +
        withTokenBalances?: boolean

        Whether to include the token balances per token id for each owner. Defaults to false when omitted.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/GetOwnersForContractResponse.html b/docs/interfaces/GetOwnersForContractResponse.html index 7f59d32a..995c5bcd 100644 --- a/docs/interfaces/GetOwnersForContractResponse.html +++ b/docs/interfaces/GetOwnersForContractResponse.html @@ -1,5 +1,5 @@ GetOwnersForContractResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface GetOwnersForContractResponse

        The response object for the getOwnersForContract.

        -

        Hierarchy

        • GetOwnersForContractResponse

        Index

        Properties

        Properties

        owners: string[]
        +

        Hierarchy

        • GetOwnersForContractResponse

        Index

        Properties

        Properties

        owners: string[]

        An array of owner addresses for the provided contract address

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/GetOwnersForContractWithTokenBalancesOptions.html b/docs/interfaces/GetOwnersForContractWithTokenBalancesOptions.html index dc789ac2..dc268aa5 100644 --- a/docs/interfaces/GetOwnersForContractWithTokenBalancesOptions.html +++ b/docs/interfaces/GetOwnersForContractWithTokenBalancesOptions.html @@ -2,11 +2,11 @@

        Optional parameters object for the getNftsForContract method.

        This interface configures options when fetching the owner addresses of the provided contract.

        -

        Hierarchy

        • GetOwnersForContractWithTokenBalancesOptions

        Index

        Properties

        block?: string
        +

        Hierarchy

        • GetOwnersForContractWithTokenBalancesOptions

        Index

        Properties

        block?: string

        The block number in hex or decimal to fetch owners for.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key to paginate the next page for large requests.

        -
        withTokenBalances: true
        +
        withTokenBalances: true

        Whether to include the token balances per token id for each owner. Defaults to false when omitted.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/GetOwnersForContractWithTokenBalancesResponse.html b/docs/interfaces/GetOwnersForContractWithTokenBalancesResponse.html index 98e7cb2f..f8b26707 100644 --- a/docs/interfaces/GetOwnersForContractWithTokenBalancesResponse.html +++ b/docs/interfaces/GetOwnersForContractWithTokenBalancesResponse.html @@ -1,7 +1,7 @@ GetOwnersForContractWithTokenBalancesResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface GetOwnersForContractWithTokenBalancesResponse

        The response object for the getOwnersForContract.

        -

        Hierarchy

        • GetOwnersForContractWithTokenBalancesResponse

        Index

        Properties

        Properties

        +

        Hierarchy

        • GetOwnersForContractWithTokenBalancesResponse

        Index

        Properties

        Properties

        An array of owner addresses for the provided contract address

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key that is returned when a collection has more than 50,000 owners.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/GetOwnersForNftResponse.html b/docs/interfaces/GetOwnersForNftResponse.html index 541ffb8e..3207ef5a 100644 --- a/docs/interfaces/GetOwnersForNftResponse.html +++ b/docs/interfaces/GetOwnersForNftResponse.html @@ -1,5 +1,5 @@ GetOwnersForNftResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface GetOwnersForNftResponse

        The response object for the getOwnersForNft.

        -

        Hierarchy

        • GetOwnersForNftResponse

        Index

        Properties

        Properties

        owners: string[]
        +

        Hierarchy

        • GetOwnersForNftResponse

        Index

        Properties

        Properties

        owners: string[]

        An array of owner addresses for the provided token.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/Media.html b/docs/interfaces/Media.html index ba4b66f8..16aa468a 100644 --- a/docs/interfaces/Media.html +++ b/docs/interfaces/Media.html @@ -1,21 +1,21 @@ Media | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface Media

        Represents the URI information for the NFT's media assets.

        -

        Hierarchy

        • Media

        Index

        Properties

        bytes?: number
        +

        Hierarchy

        • Media

        Index

        Properties

        bytes?: number

        The size of the media asset in bytes.

        -
        format?: string
        +
        format?: string

        The media format (ex: jpg, gif, png) of the gateway and thumbnail assets.

        -
        gateway: string
        +
        gateway: string

        Public gateway URI for the raw URI. Generally offers better performance.

        -
        raw: string
        +
        raw: string

        URI for the location of the NFT's original metadata blob for media (ex: the original IPFS link).

        -
        size?: number
        +
        size?: number

        DEPRECATED - The size of the media asset in bytes

        deprecated
        • Please use bytes instead. This field will be removed in a subsequent release.
        -
        thumbnail?: string
        +
        thumbnail?: string

        URL for a resized thumbnail of the NFT media asset.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/MinedTransactionWebhook.html b/docs/interfaces/MinedTransactionWebhook.html index 5ee902b3..12e76651 100644 --- a/docs/interfaces/MinedTransactionWebhook.html +++ b/docs/interfaces/MinedTransactionWebhook.html @@ -2,23 +2,23 @@

        A Mined Transaction Webhook is used to notify your app whenever a transaction sent through your API key gets successfully mined. This is useful if you want to notify customers that their transaction went through.

        -

        Hierarchy

        Index

        Properties

        appId?: string
        +

        Hierarchy

        Index

        Properties

        appId?: string

        The app id of the app used for the webhook. This field is only present on MinedTransactionWebhook and DroppedTransactionWebhook

        -
        id: string
        +
        id: string

        The webhook's unique id.

        -
        isActive: boolean
        +
        isActive: boolean

        Whether the webhook is currently active

        -
        network: Network
        +
        network: Network

        The network the webhook is on.

        -
        signingKey: string
        +
        signingKey: string

        The signing key used to verify payloads for the webhook.

        -
        timeCreated: string
        +
        timeCreated: string

        The creation time of the webhook as an ISO string.

        -
        +

        The type of webhook.

        -
        url: string
        +
        url: string

        The url that the webhook sends its payload to.

        -
        +

        The webhook version. All newly created webhooks default to V2.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/Nft.html b/docs/interfaces/Nft.html index 1518bf8f..12737f49 100644 --- a/docs/interfaces/Nft.html +++ b/docs/interfaces/Nft.html @@ -1,26 +1,26 @@ Nft | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface Nft

        Alchemy representation of an NFT.

        -

        Hierarchy

        Index

        Properties

        contract: NftContract
        +

        Hierarchy

        Index

        Properties

        contract: NftContract

        The NFT's underlying contract and relevant contract metadata.

        -
        description: string
        +
        description: string

        The NFT description.

        -
        media: Media[]
        +
        media: Media[]

        URIs for accessing the NFT's media assets.

        -
        metadataError: undefined | string
        +
        metadataError: undefined | string

        Holds an error message if there was an issue fetching metadata.

        -
        rawMetadata: undefined | NftMetadata
        +
        rawMetadata: undefined | NftMetadata

        The raw metadata fetched from the metadata URL specified by the NFT. The field is undefined if Alchemy was unable to fetch metadata.

        -
        spamInfo?: SpamInfo
        +
        spamInfo?: SpamInfo

        Detailed information on why an NFT was classified as spam.

        -
        timeLastUpdated: string
        +
        timeLastUpdated: string

        When the NFT was last updated in the blockchain. Represented in ISO-8601 format.

        -
        title: string
        +
        title: string

        The NFT title.

        -
        tokenId: string
        +
        tokenId: string

        The NFT token ID as an integer string.

        -
        tokenType: NftTokenType
        +
        tokenType: NftTokenType

        The type of ERC token, if known.

        -
        tokenUri: undefined | TokenUri
        +
        tokenUri: undefined | TokenUri

        URIs for accessing the NFT's metadata blob.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftActivityWebhook.html b/docs/interfaces/NftActivityWebhook.html index 8895df16..52165989 100644 --- a/docs/interfaces/NftActivityWebhook.html +++ b/docs/interfaces/NftActivityWebhook.html @@ -2,23 +2,23 @@

        The NFT Activity Webhook tracks all ERC721 and ERC1155 activity. This can be used to notify your app with real time state changes when an NFT is transferred between addresses.

        -

        Hierarchy

        Index

        Properties

        appId?: string
        +

        Hierarchy

        Index

        Properties

        appId?: string

        The app id of the app used for the webhook. This field is only present on MinedTransactionWebhook and DroppedTransactionWebhook

        -
        id: string
        +
        id: string

        The webhook's unique id.

        -
        isActive: boolean
        +
        isActive: boolean

        Whether the webhook is currently active

        -
        network: Network
        +
        network: Network

        The network the webhook is on.

        -
        signingKey: string
        +
        signingKey: string

        The signing key used to verify payloads for the webhook.

        -
        timeCreated: string
        +
        timeCreated: string

        The creation time of the webhook as an ISO string.

        -
        +

        The type of webhook.

        -
        url: string
        +
        url: string

        The url that the webhook sends its payload to.

        -
        +

        The webhook version. All newly created webhooks default to V2.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftAttributeRarity.html b/docs/interfaces/NftAttributeRarity.html index 99ec0ba5..19a7d78f 100644 --- a/docs/interfaces/NftAttributeRarity.html +++ b/docs/interfaces/NftAttributeRarity.html @@ -1,10 +1,10 @@ NftAttributeRarity | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftAttributeRarity

        Information about the rarity of an NFT's attribute in the specified collection.

        -

        Hierarchy

        • NftAttributeRarity

        Index

        Properties

        prevalence: number
        +

        Hierarchy

        • NftAttributeRarity

        Index

        Properties

        prevalence: number

        A number from 0 to 1 representing the prevalence of this value for this trait type in the current collection.

        -
        traitType: string
        +
        traitType: string

        The type of NFT attribute.

        -
        value: string
        +
        value: string

        Name of the NFT's attribute.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftAttributesResponse.html b/docs/interfaces/NftAttributesResponse.html index 5529430b..1b713e3f 100644 --- a/docs/interfaces/NftAttributesResponse.html +++ b/docs/interfaces/NftAttributesResponse.html @@ -1,10 +1,10 @@ NftAttributesResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftAttributesResponse

        Summary of the attribute prevalence for the specified NFT contract.

        -

        Hierarchy

        • NftAttributesResponse

        Index

        Properties

        contractAddress: string
        +

        Hierarchy

        • NftAttributesResponse

        Index

        Properties

        contractAddress: string

        The specified NFT contract's address.

        -
        summary: Record<string, Record<string, number>>
        +
        summary: Record<string, Record<string, number>>

        The attribute prevalence of each trait grouped by the trait type for the provided NFT.

        -
        totalSupply: number
        +
        totalSupply: number

        The specified NFT contract's total supply.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftContract.html b/docs/interfaces/NftContract.html index ccb6ba14..dfff4b5b 100644 --- a/docs/interfaces/NftContract.html +++ b/docs/interfaces/NftContract.html @@ -1,15 +1,15 @@ NftContract | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftContract

        Alchemy representation of an NFT contract.

        -

        Hierarchy

        Index

        Properties

        address: string
        +

        Hierarchy

        Index

        Properties

        address: string

        The address of the contract.

        -
        name?: string
        +
        name?: string

        The name of the contract.

        -
        +

        OpenSea's metadata for the contract.

        -
        symbol?: string
        +
        symbol?: string

        The symbol of the contract.

        -
        tokenType: NftTokenType
        +
        tokenType: NftTokenType

        The type of the token in the contract.

        -
        totalSupply?: string
        +
        totalSupply?: string

        The number of NFTs in the contract as an integer string.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftContractBaseNftsResponse.html b/docs/interfaces/NftContractBaseNftsResponse.html index 147f3ac7..18f2dfb7 100644 --- a/docs/interfaces/NftContractBaseNftsResponse.html +++ b/docs/interfaces/NftContractBaseNftsResponse.html @@ -1,9 +1,9 @@ NftContractBaseNftsResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftContractBaseNftsResponse

        The response object for the getNftsForContract function. The object contains the NFTs without metadata inside the NFT contract.

        -

        Hierarchy

        • NftContractBaseNftsResponse

        Index

        Properties

        Properties

        nfts: BaseNft[]
        +

        Hierarchy

        • NftContractBaseNftsResponse

        Index

        Properties

        Properties

        nfts: BaseNft[]

        An array of NFTs without metadata.

        -
        pageKey?: string
        +
        pageKey?: string

        Pagination token that can be passed into another request to fetch the next NFTs. If there is no page key, then there are no more NFTs to fetch.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftContractNftsResponse.html b/docs/interfaces/NftContractNftsResponse.html index c764b610..093a6dc4 100644 --- a/docs/interfaces/NftContractNftsResponse.html +++ b/docs/interfaces/NftContractNftsResponse.html @@ -1,9 +1,9 @@ NftContractNftsResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftContractNftsResponse

        The response object for the getNftsForContract function. The object contains the NFTs with metadata inside the NFT contract.

        -

        Hierarchy

        • NftContractNftsResponse

        Index

        Properties

        Properties

        nfts: Nft[]
        +

        Hierarchy

        • NftContractNftsResponse

        Index

        Properties

        Properties

        nfts: Nft[]

        An array of NFTs with metadata.

        -
        pageKey?: string
        +
        pageKey?: string

        Pagination token that can be passed into another request to fetch the next NFTs. If there is no page key, then there are no more NFTs to fetch.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftContractOwner.html b/docs/interfaces/NftContractOwner.html index f581cfbb..5940eeb9 100644 --- a/docs/interfaces/NftContractOwner.html +++ b/docs/interfaces/NftContractOwner.html @@ -1,8 +1,8 @@ NftContractOwner | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftContractOwner

        An object representing the owner of an NFT and its corresponding token balances in a GetOwnersForContractWithTokenBalancesResponse object.

        -

        Hierarchy

        • NftContractOwner

        Index

        Properties

        ownerAddress: string
        +

        Hierarchy

        • NftContractOwner

        Index

        Properties

        ownerAddress: string

        The NFT's owner address.

        -
        tokenBalances: NftContractTokenBalance[]
        +
        tokenBalances: NftContractTokenBalance[]

        A list of objects containing token balances for the provided NFT contract.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftContractTokenBalance.html b/docs/interfaces/NftContractTokenBalance.html index d8e53003..232dc4ee 100644 --- a/docs/interfaces/NftContractTokenBalance.html +++ b/docs/interfaces/NftContractTokenBalance.html @@ -1,8 +1,8 @@ NftContractTokenBalance | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftContractTokenBalance

        An object representing the owned token and balance values in a GetOwnersForContractWithTokenBalancesResponse object.

        -

        Hierarchy

        • NftContractTokenBalance

        Index

        Properties

        Properties

        balance: number
        +

        Hierarchy

        • NftContractTokenBalance

        Index

        Properties

        Properties

        balance: number

        The token Id balance for the provided owner.

        -
        tokenId: string
        +
        tokenId: string

        The token id owned in the NFT contract.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftFilter.html b/docs/interfaces/NftFilter.html index abd60c2e..88464373 100644 --- a/docs/interfaces/NftFilter.html +++ b/docs/interfaces/NftFilter.html @@ -1,7 +1,7 @@ NftFilter | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftFilter

        NFT to track on a NftActivityWebhook.

        -

        Hierarchy

        • NftFilter

        Index

        Properties

        contractAddress: string
        +

        Hierarchy

        • NftFilter

        Index

        Properties

        contractAddress: string

        The contract address of the NFT.

        -
        tokenId: BigNumberish
        +
        tokenId: BigNumberish

        The token id of the NFT.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftFiltersResponse.html b/docs/interfaces/NftFiltersResponse.html index a98a5fe2..0a53fb4a 100644 --- a/docs/interfaces/NftFiltersResponse.html +++ b/docs/interfaces/NftFiltersResponse.html @@ -1,9 +1,9 @@ NftFiltersResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftFiltersResponse

        Response object for the NotifyNamespace.getNftFilters method.

        -

        Hierarchy

        • NftFiltersResponse

        Index

        Properties

        filters: NftFilter[]
        +

        Hierarchy

        • NftFiltersResponse

        Index

        Properties

        filters: NftFilter[]

        The NFT filters on the provided webhook.

        -
        pageKey?: string
        +
        pageKey?: string

        Optional page key used to fetch the remaining filters.

        -
        totalCount: number
        +
        totalCount: number

        The total number of NFT filters on the webhook.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftMetadata.html b/docs/interfaces/NftMetadata.html index 42e18f44..0194bf65 100644 --- a/docs/interfaces/NftMetadata.html +++ b/docs/interfaces/NftMetadata.html @@ -1,17 +1,17 @@ NftMetadata | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftMetadata

        Represents NFT metadata that holds fields. Note that since there is no standard metadata format, the fields are not guaranteed to be present.

        -

        Hierarchy

        • Record<string, any>
          • NftMetadata

        Index

        Properties

        attributes?: Record<string, any>[]
        +

        Hierarchy

        • Record<string, any>
          • NftMetadata

        Index

        Properties

        attributes?: Record<string, any>[]

        The traits, attributes, and characteristics for the NFT asset.

        -
        background_color?: string
        +
        background_color?: string

        Background color of the NFT item. Usually defined as a 6 character hex string.

        -
        description?: string
        +
        description?: string

        A human-readable description of the NFT asset.

        -
        external_url?: string
        +
        external_url?: string

        The image URL that appears along the top of the NFT asset page. This tends to be the highest resolution image.

        -
        image?: string
        +
        image?: string

        URL to the NFT asset image.

        -
        name?: string
        +
        name?: string

        Name of the NFT asset.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/NftWebhookParams.html b/docs/interfaces/NftWebhookParams.html index b187a610..150d6b09 100644 --- a/docs/interfaces/NftWebhookParams.html +++ b/docs/interfaces/NftWebhookParams.html @@ -1,9 +1,9 @@ NftWebhookParams | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface NftWebhookParams

        Params to pass in when calling NotifyNamespace.createWebhook in order to create a NftActivityWebhook.

        -

        Hierarchy

        • NftWebhookParams

        Index

        Properties

        Properties

        filters: NftFilter[]
        +

        Hierarchy

        • NftWebhookParams

        Index

        Properties

        Properties

        filters: NftFilter[]

        Array of NFT filters the webhook should track.

        -
        network?: Network
        +
        network?: Network

        Optional network to create the webhook on. If omitted, the webhook will be created on network of the app provided in the api key config.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/OpenSeaCollectionMetadata.html b/docs/interfaces/OpenSeaCollectionMetadata.html index e4bbc1f6..fbdeac3b 100644 --- a/docs/interfaces/OpenSeaCollectionMetadata.html +++ b/docs/interfaces/OpenSeaCollectionMetadata.html @@ -1,21 +1,21 @@ OpenSeaCollectionMetadata | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface OpenSeaCollectionMetadata

        OpenSea's metadata for an NFT collection.

        -

        Hierarchy

        • OpenSeaCollectionMetadata

        Index

        Properties

        collectionName?: string
        +

        Hierarchy

        • OpenSeaCollectionMetadata

        Index

        Properties

        collectionName?: string

        The name of the collection on OpenSea.

        -
        description?: string
        +
        description?: string

        The description of the collection on OpenSea.

        -
        discordUrl?: string
        +
        discordUrl?: string

        The Discord URL of the collection.

        -
        externalUrl?: string
        +
        externalUrl?: string

        The homepage of the collection as determined by OpenSea.

        -
        floorPrice?: number
        +
        floorPrice?: number

        The floor price of the NFT.

        -
        imageUrl?: string
        +
        imageUrl?: string

        The image URL determined by OpenSea.

        -
        lastIngestedAt?: string
        +
        lastIngestedAt?: string

        Timestamp of when the OpenSea metadata was last ingested by Alchemy.

        -
        safelistRequestStatus?: OpenSeaSafelistRequestStatus
        +
        safelistRequestStatus?: OpenSeaSafelistRequestStatus

        The approval status of the collection on OpenSea.

        -
        twitterUsername?: string
        +
        twitterUsername?: string

        The Twitter handle of the collection.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/OwnedBaseNft.html b/docs/interfaces/OwnedBaseNft.html index 3ab3a5cd..84a181b6 100644 --- a/docs/interfaces/OwnedBaseNft.html +++ b/docs/interfaces/OwnedBaseNft.html @@ -1,9 +1,9 @@ OwnedBaseNft | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface OwnedBaseNft

        Represents an NFT without metadata owned by an address.

        -

        Hierarchy

        Index

        Properties

        balance: number
        +

        Hierarchy

        Index

        Properties

        balance: number

        The token balance of the NFT.

        -
        contract: BaseNftContract
        tokenId: string
        +
        contract: BaseNftContract
        tokenId: string

        The NFT token ID as an integer string.

        -
        tokenType: NftTokenType
        +
        tokenType: NftTokenType

        The type of ERC token, if known.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/OwnedBaseNftsResponse.html b/docs/interfaces/OwnedBaseNftsResponse.html index cfeebe90..2ff284d2 100644 --- a/docs/interfaces/OwnedBaseNftsResponse.html +++ b/docs/interfaces/OwnedBaseNftsResponse.html @@ -3,11 +3,11 @@ getNftsForOwnerIterator functions. The object contains the NFTs without metadata owned by the provided address, along with pagination information and the total count.

        -

        Hierarchy

        • OwnedBaseNftsResponse

        Index

        Properties

        ownedNfts: OwnedBaseNft[]
        +

        Hierarchy

        • OwnedBaseNftsResponse

        Index

        Properties

        ownedNfts: OwnedBaseNft[]

        The NFTs owned by the provided address.

        -
        pageKey?: string
        +
        pageKey?: string

        Pagination token that can be passed into another request to fetch the next NFTs. If there is no page key, then there are no more NFTs to fetch.

        -
        totalCount: number
        +
        totalCount: number

        The total count of NFTs owned by the provided address.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/OwnedNft.html b/docs/interfaces/OwnedNft.html index 7ff301ba..2ff090c3 100644 --- a/docs/interfaces/OwnedNft.html +++ b/docs/interfaces/OwnedNft.html @@ -1,28 +1,28 @@ OwnedNft | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface OwnedNft

        Represents an NFT with metadata owned by an address.

        -

        Hierarchy

        Index

        Properties

        balance: number
        +

        Hierarchy

        Index

        Properties

        balance: number

        The token balance of the NFT.

        -
        contract: NftContract
        +
        contract: NftContract

        The NFT's underlying contract and relevant contract metadata.

        -
        description: string
        +
        description: string

        The NFT description.

        -
        media: Media[]
        +
        media: Media[]

        URIs for accessing the NFT's media assets.

        -
        metadataError: undefined | string
        +
        metadataError: undefined | string

        Holds an error message if there was an issue fetching metadata.

        -
        rawMetadata: undefined | NftMetadata
        +
        rawMetadata: undefined | NftMetadata

        The raw metadata fetched from the metadata URL specified by the NFT. The field is undefined if Alchemy was unable to fetch metadata.

        -
        spamInfo?: SpamInfo
        +
        spamInfo?: SpamInfo

        Detailed information on why an NFT was classified as spam.

        -
        timeLastUpdated: string
        +
        timeLastUpdated: string

        When the NFT was last updated in the blockchain. Represented in ISO-8601 format.

        -
        title: string
        +
        title: string

        The NFT title.

        -
        tokenId: string
        +
        tokenId: string

        The NFT token ID as an integer string.

        -
        tokenType: NftTokenType
        +
        tokenType: NftTokenType

        The type of ERC token, if known.

        -
        tokenUri: undefined | TokenUri
        +
        tokenUri: undefined | TokenUri

        URIs for accessing the NFT's metadata blob.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/OwnedNftsResponse.html b/docs/interfaces/OwnedNftsResponse.html index 98f74dc0..a7f5ea04 100644 --- a/docs/interfaces/OwnedNftsResponse.html +++ b/docs/interfaces/OwnedNftsResponse.html @@ -3,11 +3,11 @@ getNftsForOwnerIterator functions. The object contains the NFTs with metadata owned by the provided address, along with pagination information and the total count.

        -

        Hierarchy

        • OwnedNftsResponse

        Index

        Properties

        ownedNfts: OwnedNft[]
        +

        Hierarchy

        • OwnedNftsResponse

        Index

        Properties

        ownedNfts: OwnedNft[]

        The NFTs owned by the provided address.

        -
        pageKey?: string
        +
        pageKey?: string

        Pagination token that can be passed into another request to fetch the next NFTs. If there is no page key, then there are no more NFTs to fetch.

        -
        totalCount: number
        +
        totalCount: number

        The total count of NFTs owned by the provided address.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/RawContract.html b/docs/interfaces/RawContract.html index 9332dc2b..03ee7e2c 100644 --- a/docs/interfaces/RawContract.html +++ b/docs/interfaces/RawContract.html @@ -1,12 +1,12 @@ RawContract | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface RawContract

        Information about the underlying contract for the asset that was transferred in a AssetTransfersResult object.

        -

        Hierarchy

        • RawContract

        Index

        Properties

        address: null | string
        +

        Hierarchy

        • RawContract

        Index

        Properties

        address: null | string

        The contract address. null if it was an internal or external transfer.

        -
        decimal: null | string
        +
        decimal: null | string

        The number of decimals in the contract as a hex string. null if the value is not in the contract and not available from other sources.

        -
        value: null | string
        +
        value: null | string

        The raw transfer value as a hex string. null if the transfer was for an ERC721 or ERC1155 token.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/RefreshContractResult.html b/docs/interfaces/RefreshContractResult.html index 16c12581..68935410 100644 --- a/docs/interfaces/RefreshContractResult.html +++ b/docs/interfaces/RefreshContractResult.html @@ -1,10 +1,10 @@ RefreshContractResult | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface RefreshContractResult

        The refresh result response object returned by refreshContract.

        -

        Hierarchy

        • RefreshContractResult

        Index

        Properties

        contractAddress: string
        +

        Hierarchy

        • RefreshContractResult

        Index

        Properties

        contractAddress: string

        The NFT contract address that was passed in to be refreshed.

        -
        progress: null | string
        +
        progress: null | string

        Percentage of tokens currently refreshed, represented as an integer string. Field can be null if the refresh has not occurred.

        -
        refreshState: RefreshState
        +
        refreshState: RefreshState

        The current state of the refresh request.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/SendPrivateTransactionOptions.html b/docs/interfaces/SendPrivateTransactionOptions.html index 529990c2..65e4d05c 100644 --- a/docs/interfaces/SendPrivateTransactionOptions.html +++ b/docs/interfaces/SendPrivateTransactionOptions.html @@ -1,6 +1,6 @@ SendPrivateTransactionOptions | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface SendPrivateTransactionOptions

        Options for the TransactNamespace.sendPrivateTransaction method.

        -

        Hierarchy

        • SendPrivateTransactionOptions

        Index

        Properties

        Properties

        fast: boolean
        +

        Hierarchy

        • SendPrivateTransactionOptions

        Index

        Properties

        Properties

        fast: boolean

        Whether to use fast-mode. Defaults to false. Please note that fast mode transactions cannot be cancelled using TransactNamespace.cancelPrivateTransaction. method.

        diff --git a/docs/interfaces/SpamInfo.html b/docs/interfaces/SpamInfo.html index 72831bfa..2a6644c8 100644 --- a/docs/interfaces/SpamInfo.html +++ b/docs/interfaces/SpamInfo.html @@ -1,5 +1,5 @@ SpamInfo | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface SpamInfo

        Detailed information on whether and why an NFT contract was classified as spam.

        -

        Hierarchy

        • SpamInfo

        Index

        Properties

        classifications: NftSpamClassification[]
        +

        Hierarchy

        • SpamInfo

        Index

        Properties

        classifications: NftSpamClassification[]

        A list of reasons why an NFT contract was marked as spam.

        -
        isSpam: boolean

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +
        isSpam: boolean

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TokenBalanceFailure.html b/docs/interfaces/TokenBalanceFailure.html index 9d20bcb3..3c6b345c 100644 --- a/docs/interfaces/TokenBalanceFailure.html +++ b/docs/interfaces/TokenBalanceFailure.html @@ -1 +1 @@ -TokenBalanceFailure | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenBalanceFailure

        Hierarchy

        • TokenBalanceFailure

        Index

        Properties

        contractAddress: string
        error: string
        tokenBalance: null

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +TokenBalanceFailure | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenBalanceFailure

        Hierarchy

        • TokenBalanceFailure

        Index

        Properties

        contractAddress: string
        error: string
        tokenBalance: null

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TokenBalanceSuccess.html b/docs/interfaces/TokenBalanceSuccess.html index 2c14b6cb..2da373cc 100644 --- a/docs/interfaces/TokenBalanceSuccess.html +++ b/docs/interfaces/TokenBalanceSuccess.html @@ -1 +1 @@ -TokenBalanceSuccess | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenBalanceSuccess

        Hierarchy

        • TokenBalanceSuccess

        Index

        Properties

        contractAddress: string
        error: null
        tokenBalance: string

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +TokenBalanceSuccess | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenBalanceSuccess

        Hierarchy

        • TokenBalanceSuccess

        Index

        Properties

        contractAddress: string
        error: null
        tokenBalance: string

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TokenBalancesOptionsDefaultTokens.html b/docs/interfaces/TokenBalancesOptionsDefaultTokens.html index 03497ad3..7e53c173 100644 --- a/docs/interfaces/TokenBalancesOptionsDefaultTokens.html +++ b/docs/interfaces/TokenBalancesOptionsDefaultTokens.html @@ -1,6 +1,6 @@ TokenBalancesOptionsDefaultTokens | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenBalancesOptionsDefaultTokens

        Optional params to pass into getTokenBalances() to fetch the top 100 tokens instead of passing in an array of contract addresses to fetch balances for.

        -

        Hierarchy

        • TokenBalancesOptionsDefaultTokens

        Index

        Properties

        Properties

        +

        Hierarchy

        • TokenBalancesOptionsDefaultTokens

        Index

        Properties

        Properties

        The top 100 token type.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TokenBalancesOptionsErc20.html b/docs/interfaces/TokenBalancesOptionsErc20.html index cfe6a222..24544627 100644 --- a/docs/interfaces/TokenBalancesOptionsErc20.html +++ b/docs/interfaces/TokenBalancesOptionsErc20.html @@ -1,8 +1,8 @@ TokenBalancesOptionsErc20 | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenBalancesOptionsErc20

        Optional params to pass into getTokenBalances() to fetch all ERC-20 tokens instead of passing in an array of contract addresses to fetch balances for.

        -

        Hierarchy

        • TokenBalancesOptionsErc20

        Index

        Properties

        Properties

        pageKey?: string
        +

        Hierarchy

        • TokenBalancesOptionsErc20

        Index

        Properties

        Properties

        pageKey?: string

        Optional page key for pagination (only applicable to TokenBalanceType.ERC20)

        -
        type: ERC20
        +
        type: ERC20

        The ERC-20 token type.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TokenBalancesResponse.html b/docs/interfaces/TokenBalancesResponse.html index 5aa2d3a1..c63f4b20 100644 --- a/docs/interfaces/TokenBalancesResponse.html +++ b/docs/interfaces/TokenBalancesResponse.html @@ -1 +1 @@ -TokenBalancesResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenBalancesResponse

        Hierarchy

        Index

        Properties

        address: string
        tokenBalances: TokenBalance[]

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +TokenBalancesResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenBalancesResponse

        Hierarchy

        Index

        Properties

        address: string
        tokenBalances: TokenBalance[]

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TokenBalancesResponseErc20.html b/docs/interfaces/TokenBalancesResponseErc20.html index 76a3cb15..887ddc22 100644 --- a/docs/interfaces/TokenBalancesResponseErc20.html +++ b/docs/interfaces/TokenBalancesResponseErc20.html @@ -1,7 +1,7 @@ TokenBalancesResponseErc20 | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenBalancesResponseErc20

        Response object for when the TokenBalancesOptionsErc20 options are used. A page key may be returned if the provided address has many transfers.

        -

        Hierarchy

        Index

        Properties

        address: string
        pageKey?: string
        +

        Hierarchy

        Index

        Properties

        address: string
        pageKey?: string

        An optional page key to passed into the next request to fetch the next page of token balances.

        -
        tokenBalances: TokenBalance[]

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +
        tokenBalances: TokenBalance[]

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TokenMetadataResponse.html b/docs/interfaces/TokenMetadataResponse.html index e2e02341..27c27fd6 100644 --- a/docs/interfaces/TokenMetadataResponse.html +++ b/docs/interfaces/TokenMetadataResponse.html @@ -1,14 +1,14 @@ TokenMetadataResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenMetadataResponse

        Response object for the CoreNamespace.getTokenMetadata method.

        -

        Hierarchy

        • TokenMetadataResponse

        Index

        Properties

        decimals: null | number
        +

        Hierarchy

        • TokenMetadataResponse

        Index

        Properties

        decimals: null | number

        The number of decimals of the token. Returns null if not defined in the contract and not available from other sources.

        -
        logo: null | string
        +
        logo: null | string

        URL link to the token's logo. Is null if the logo is not available.

        -
        name: null | string
        +
        name: null | string

        The token's name. Is null if the name is not defined in the contract and not available from other sources.

        -
        symbol: null | string
        +
        symbol: null | string

        The token's symbol. Is null if the symbol is not defined in the contract and not available from other sources.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TokenUri.html b/docs/interfaces/TokenUri.html index 7975a961..9707b5c3 100644 --- a/docs/interfaces/TokenUri.html +++ b/docs/interfaces/TokenUri.html @@ -1,8 +1,8 @@ TokenUri | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TokenUri

        Represents the URI information the NFT's metadata.

        -

        Hierarchy

        • TokenUri

        Index

        Properties

        Properties

        gateway: string
        +

        Hierarchy

        • TokenUri

        Index

        Properties

        Properties

        gateway: string

        Public gateway URI for the raw URI. Generally offers better performance.

        -
        raw: string
        +
        raw: string

        URI for the location of the NFT's original metadata blob (ex: the original IPFS link).

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TransactionReceiptsBlockHash.html b/docs/interfaces/TransactionReceiptsBlockHash.html index 25863618..0d78a96a 100644 --- a/docs/interfaces/TransactionReceiptsBlockHash.html +++ b/docs/interfaces/TransactionReceiptsBlockHash.html @@ -1,5 +1,5 @@ TransactionReceiptsBlockHash | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TransactionReceiptsBlockHash

        The parameter field of TransactionReceiptsParams.

        -

        Hierarchy

        • TransactionReceiptsBlockHash

        Index

        Properties

        Properties

        blockHash: string
        +

        Hierarchy

        • TransactionReceiptsBlockHash

        Index

        Properties

        Properties

        blockHash: string

        The block hash to get transaction receipts for.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TransactionReceiptsBlockNumber.html b/docs/interfaces/TransactionReceiptsBlockNumber.html index c57b7646..3407cb8e 100644 --- a/docs/interfaces/TransactionReceiptsBlockNumber.html +++ b/docs/interfaces/TransactionReceiptsBlockNumber.html @@ -1,5 +1,5 @@ TransactionReceiptsBlockNumber | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TransactionReceiptsBlockNumber

        The parameter field of TransactionReceiptsParams.

        -

        Hierarchy

        • TransactionReceiptsBlockNumber

        Index

        Properties

        Properties

        blockNumber: string
        +

        Hierarchy

        • TransactionReceiptsBlockNumber

        Index

        Properties

        Properties

        blockNumber: string

        The block number to get transaction receipts for.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TransactionReceiptsResponse.html b/docs/interfaces/TransactionReceiptsResponse.html index 4500eaf3..484047df 100644 --- a/docs/interfaces/TransactionReceiptsResponse.html +++ b/docs/interfaces/TransactionReceiptsResponse.html @@ -1,5 +1,5 @@ TransactionReceiptsResponse | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface TransactionReceiptsResponse

        Response object for a CoreNamespace.getTransactionReceipts call.

        -

        Hierarchy

        • TransactionReceiptsResponse

        Index

        Properties

        Properties

        receipts: null | TransactionReceipt[]
        +

        Hierarchy

        • TransactionReceiptsResponse

        Index

        Properties

        Properties

        receipts: null | TransactionReceipt[]

        A list of transaction receipts for the queried block.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/TransactionWebhookParams.html b/docs/interfaces/TransactionWebhookParams.html index 3f150c30..2dacff10 100644 --- a/docs/interfaces/TransactionWebhookParams.html +++ b/docs/interfaces/TransactionWebhookParams.html @@ -6,6 +6,6 @@ After clicking on an app, the app id is the string in the URL following 'apps/'.

        This is a temporary workaround for now. We're planning on detecting the app id from the provided api key directly. Stay tuned!

        -

        Hierarchy

        • TransactionWebhookParams

        Index

        Properties

        Properties

        appId: string
        +

        Hierarchy

        • TransactionWebhookParams

        Index

        Properties

        Properties

        appId: string

        The app id of the project to create the webhook on.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/Webhook.html b/docs/interfaces/Webhook.html index f8e9fdcf..60a09756 100644 --- a/docs/interfaces/Webhook.html +++ b/docs/interfaces/Webhook.html @@ -1,22 +1,22 @@ Webhook | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface Webhook

        SDK representation of a Webhook in the Notify API.

        -

        Hierarchy

        Index

        Properties

        appId?: string
        +

        Hierarchy

        Index

        Properties

        appId?: string

        The app id of the app used for the webhook. This field is only present on MinedTransactionWebhook and DroppedTransactionWebhook

        -
        id: string
        +
        id: string

        The webhook's unique id.

        -
        isActive: boolean
        +
        isActive: boolean

        Whether the webhook is currently active

        -
        network: Network
        +
        network: Network

        The network the webhook is on.

        -
        signingKey: string
        +
        signingKey: string

        The signing key used to verify payloads for the webhook.

        -
        timeCreated: string
        +
        timeCreated: string

        The creation time of the webhook as an ISO string.

        -
        +

        The type of webhook.

        -
        url: string
        +
        url: string

        The url that the webhook sends its payload to.

        -
        +

        The webhook version. All newly created webhooks default to V2.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/WebhookAddressOverride.html b/docs/interfaces/WebhookAddressOverride.html index bfc052e1..417140f2 100644 --- a/docs/interfaces/WebhookAddressOverride.html +++ b/docs/interfaces/WebhookAddressOverride.html @@ -1,6 +1,6 @@ WebhookAddressOverride | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface WebhookAddressOverride

        Params object when calling NotifyNamespace.updateWebhook to replace all existing addresses for a AddressActivityWebhook.

        -

        Hierarchy

        • WebhookAddressOverride

        Index

        Properties

        Properties

        newAddresses: string[]
        +

        Hierarchy

        • WebhookAddressOverride

        Index

        Properties

        Properties

        newAddresses: string[]

        The new addresses to track. Existing addresses will be removed.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/WebhookAddressUpdate.html b/docs/interfaces/WebhookAddressUpdate.html index b61950c7..a00a6bef 100644 --- a/docs/interfaces/WebhookAddressUpdate.html +++ b/docs/interfaces/WebhookAddressUpdate.html @@ -1,8 +1,8 @@ WebhookAddressUpdate | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface WebhookAddressUpdate

        Params object when calling NotifyNamespace.updateWebhook to add and remove addresses for a AddressActivityWebhook.

        -

        Hierarchy

        • WebhookAddressUpdate

        Index

        Properties

        addAddresses: string[]
        +

        Hierarchy

        • WebhookAddressUpdate

        Index

        Properties

        addAddresses: string[]

        The addresses to additionally track.

        -
        removeAddresses: string[]
        +
        removeAddresses: string[]

        Existing addresses to remove.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/WebhookNftFilterUpdate.html b/docs/interfaces/WebhookNftFilterUpdate.html index dc69025f..68429bf8 100644 --- a/docs/interfaces/WebhookNftFilterUpdate.html +++ b/docs/interfaces/WebhookNftFilterUpdate.html @@ -1,8 +1,8 @@ WebhookNftFilterUpdate | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface WebhookNftFilterUpdate

        Params object when calling NotifyNamespace.updateWebhook to add and remove NFT filters for a NftActivityWebhook.

        -

        Hierarchy

        • WebhookNftFilterUpdate

        Index

        Properties

        addFilters: NftFilter[]
        +

        Hierarchy

        • WebhookNftFilterUpdate

        Index

        Properties

        addFilters: NftFilter[]

        The filters to additionally track.

        -
        removeFilters: NftFilter[]
        +
        removeFilters: NftFilter[]

        Existing filters to remove.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/interfaces/WebhookStatusUpdate.html b/docs/interfaces/WebhookStatusUpdate.html index 7c299c09..ad3028da 100644 --- a/docs/interfaces/WebhookStatusUpdate.html +++ b/docs/interfaces/WebhookStatusUpdate.html @@ -1,6 +1,6 @@ WebhookStatusUpdate | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Interface WebhookStatusUpdate

        Params object when calling NotifyNamespace.updateWebhook to mark a webhook as active or inactive.

        -

        Hierarchy

        • WebhookStatusUpdate

        Index

        Properties

        Properties

        isActive: boolean
        +

        Hierarchy

        • WebhookStatusUpdate

        Index

        Properties

        Properties

        isActive: boolean

        Whether the webhook is active.

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html index 8478be3e..67429a6d 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -1,37 +1,37 @@ -alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        alchemy-sdk

        Index

        Namespaces

        Enumerations

        Classes

        Interfaces

        Type aliases

        Functions

        Type aliases

        +alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        alchemy-sdk

        Index

        Namespaces

        Enumerations

        Classes

        Interfaces

        Type aliases

        Functions

        Type aliases

        Params object when calling NotifyNamespace.updateWebhook to update a AddressActivityWebhook.

        -
        +

        This type represents the Alchemy's Subscription API endpoints as event filters compatible with other ethers events.

        -
        AlchemyEventType: EventType | AlchemyEventFilter
        +
        AlchemyEventType: EventType | AlchemyEventFilter

        Alchemy's event type that extends the default {@link EventType} interface to also include Alchemy's Subscription API.

        -
        AlchemyMinedTransactionsAddress: RequireAtLeastOne<{ from?: string; to?: string }>
        +
        AlchemyMinedTransactionsAddress: RequireAtLeastOne<{ from?: string; to?: string }>

        Address filters for AlchemyMinedTransactionsEventFilter. Requires at least one of the fields to be set.

        -
        LogLevel: "debug" | "info" | "warn" | "error" | "silent"
        +
        LogLevel: "debug" | "info" | "warn" | "error" | "silent"

        The level of verbosity for the logger.

        -
        +

        Params object when calling NotifyNamespace.updateWebhook to update a NftActivityWebhook.

        -
        NonEmptyArray<T>: [T, ...T[]]
        +
        NonEmptyArray<T>: [T, ...T[]]

        Requires an array with at least one value.

        -

        Type parameters

        • T

        RequireAtLeastOne<T>: { [ K in keyof T]-?: Required<Pick<T, K>> & Partial<Pick<T, Exclude<keyof T, K>>> }[keyof T]
        +

        Type parameters

        • T

        RequireAtLeastOne<T>: { [ K in keyof T]-?: Required<Pick<T, K>> & Partial<Pick<T, Exclude<keyof T, K>>> }[keyof T]

        Requires at least one of the properties to be set.

        Type parameters

        • T

        +

        Type parameters

        • T

        The parameters to use with the CoreNamespace.getTransactionReceipts method.

        -

        Functions

        • fromHex(hexString: string): number

        Functions

        • fromHex(hexString: string): number
        • Converts a hex string to a decimal number.

          Parameters

          • hexString: string

            The hex string to convert.

            -

          Returns number

        • isHex(possibleHexString: string): boolean

        Returns number

        • isHex(possibleHexString: string): boolean
        • Checks if a value is a hex string.

          Parameters

          • possibleHexString: string

            The value to check.

            -

          Returns boolean

        Returns boolean

        • Configures the verbosity of logging. The default log level is info.

          Parameters

          • logLevel: LogLevel

            The verbosity of logging. Can be any of the following values:

            @@ -42,8 +42,8 @@
          • error: A logging level for critical issues.
          • silent: Turn off all logging.
          -

        Returns void

        • toHex(num: number): string

        Returns void

        • toHex(num: number): string
        • Converts a number to a hex string.

          Parameters

          • num: number

            The number to convert to hex.

            -

          Returns string

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +

        Returns string

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/modules/Utils.html b/docs/modules/Utils.html index b29c4c80..ee958dc5 100644 --- a/docs/modules/Utils.html +++ b/docs/modules/Utils.html @@ -1 +1 @@ -Utils | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Namespace Utils

        Index

        Functions

        • arrayify(value: number | BytesLike | Hexable, options?: DataOptions): Uint8Array
        • Parameters

          • value: number | BytesLike | Hexable
          • Optional options: DataOptions

          Returns Uint8Array

        • concat(items: readonly BytesLike[]): Uint8Array
        • Parameters

          • items: readonly BytesLike[]

          Returns Uint8Array

        • dnsEncode(name: string): string
        • Parameters

          • name: string

          Returns string

        • formatEther(wei: BigNumberish): string
        • Parameters

          • wei: BigNumberish

          Returns string

        • formatUnits(value: BigNumberish, unitName?: BigNumberish): string
        • Parameters

          • value: BigNumberish
          • Optional unitName: BigNumberish

          Returns string

        • hashMessage(message: string | Bytes): string
        • Parameters

          • message: string | Bytes

          Returns string

        • hexConcat(items: readonly BytesLike[]): string
        • Parameters

          • items: readonly BytesLike[]

          Returns string

        • hexDataLength(data: BytesLike): number
        • Parameters

          • data: BytesLike

          Returns number

        • hexDataSlice(data: BytesLike, offset: number, endOffset?: number): string
        • Parameters

          • data: BytesLike
          • offset: number
          • Optional endOffset: number

          Returns string

        • hexStripZeros(value: BytesLike): string
        • Parameters

          • value: BytesLike

          Returns string

        • hexValue(value: number | bigint | BytesLike | Hexable): string
        • Parameters

          • value: number | bigint | BytesLike | Hexable

          Returns string

        • hexZeroPad(value: BytesLike, length: number): string
        • Parameters

          • value: BytesLike
          • length: number

          Returns string

        • hexlify(value: number | bigint | BytesLike | Hexable, options?: DataOptions): string
        • Parameters

          • value: number | bigint | BytesLike | Hexable
          • Optional options: DataOptions

          Returns string

        • id(text: string): string
        • Parameters

          • text: string

          Returns string

        • isBytes(value: any): value is Bytes
        • Parameters

          • value: any

          Returns value is Bytes

        • isBytesLike(value: any): value is BytesLike
        • Parameters

          • value: any

          Returns value is BytesLike

        • isHexString(value: any, length?: number): boolean
        • Parameters

          • value: any
          • Optional length: number

          Returns boolean

        • isValidName(name: string): boolean
        • Parameters

          • name: string

          Returns boolean

        • joinSignature(signature: SignatureLike): string
        • Parameters

          • signature: SignatureLike

          Returns string

        • namehash(name: string): string
        • Parameters

          • name: string

          Returns string

        • parseEther(ether: string): BigNumber
        • Parameters

          • ether: string

          Returns BigNumber

        • parseUnits(value: string, unitName?: BigNumberish): BigNumber
        • Parameters

          • value: string
          • Optional unitName: BigNumberish

          Returns BigNumber

        • splitSignature(signature: SignatureLike): Signature
        • Parameters

          • signature: SignatureLike

          Returns Signature

        • stripZeros(value: BytesLike): Uint8Array
        • Parameters

          • value: BytesLike

          Returns Uint8Array

        • zeroPad(value: BytesLike, length: number): Uint8Array
        • Parameters

          • value: BytesLike
          • length: number

          Returns Uint8Array

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file +Utils | alchemy-sdk
        Options
        All
        • Public
        • Public/Protected
        • All
        Menu

        Namespace Utils

        Index

        Functions

        • arrayify(value: number | BytesLike | Hexable, options?: DataOptions): Uint8Array
        • Parameters

          • value: number | BytesLike | Hexable
          • Optional options: DataOptions

          Returns Uint8Array

        • concat(items: readonly BytesLike[]): Uint8Array
        • Parameters

          • items: readonly BytesLike[]

          Returns Uint8Array

        • dnsEncode(name: string): string
        • Parameters

          • name: string

          Returns string

        • formatEther(wei: BigNumberish): string
        • Parameters

          • wei: BigNumberish

          Returns string

        • formatUnits(value: BigNumberish, unitName?: BigNumberish): string
        • Parameters

          • value: BigNumberish
          • Optional unitName: BigNumberish

          Returns string

        • hashMessage(message: string | Bytes): string
        • Parameters

          • message: string | Bytes

          Returns string

        • hexConcat(items: readonly BytesLike[]): string
        • Parameters

          • items: readonly BytesLike[]

          Returns string

        • hexDataLength(data: BytesLike): number
        • Parameters

          • data: BytesLike

          Returns number

        • hexDataSlice(data: BytesLike, offset: number, endOffset?: number): string
        • Parameters

          • data: BytesLike
          • offset: number
          • Optional endOffset: number

          Returns string

        • hexStripZeros(value: BytesLike): string
        • Parameters

          • value: BytesLike

          Returns string

        • hexValue(value: number | bigint | BytesLike | Hexable): string
        • Parameters

          • value: number | bigint | BytesLike | Hexable

          Returns string

        • hexZeroPad(value: BytesLike, length: number): string
        • Parameters

          • value: BytesLike
          • length: number

          Returns string

        • hexlify(value: number | bigint | BytesLike | Hexable, options?: DataOptions): string
        • Parameters

          • value: number | bigint | BytesLike | Hexable
          • Optional options: DataOptions

          Returns string

        • id(text: string): string
        • Parameters

          • text: string

          Returns string

        • isBytes(value: any): value is Bytes
        • Parameters

          • value: any

          Returns value is Bytes

        • isBytesLike(value: any): value is BytesLike
        • Parameters

          • value: any

          Returns value is BytesLike

        • isHexString(value: any, length?: number): boolean
        • Parameters

          • value: any
          • Optional length: number

          Returns boolean

        • isValidName(name: string): boolean
        • Parameters

          • name: string

          Returns boolean

        • joinSignature(signature: SignatureLike): string
        • Parameters

          • signature: SignatureLike

          Returns string

        • namehash(name: string): string
        • Parameters

          • name: string

          Returns string

        • parseEther(ether: string): BigNumber
        • Parameters

          • ether: string

          Returns BigNumber

        • parseUnits(value: string, unitName?: BigNumberish): BigNumber
        • Parameters

          • value: string
          • Optional unitName: BigNumberish

          Returns BigNumber

        • splitSignature(signature: SignatureLike): Signature
        • Parameters

          • signature: SignatureLike

          Returns Signature

        • stripZeros(value: BytesLike): Uint8Array
        • Parameters

          • value: BytesLike

          Returns Uint8Array

        • zeroPad(value: BytesLike, length: number): Uint8Array
        • Parameters

          • value: BytesLike
          • length: number

          Returns Uint8Array

        Legend

        • Constructor
        • Property
        • Method
        • Private property
        • Private method
        • Property
        • Inherited constructor

        Settings

        Theme

        Generated using TypeDoc

        \ No newline at end of file diff --git a/package.json b/package.json index 4eadc88f..1c537f3e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "alchemy-sdk", - "version": "2.2.1", + "version": "2.2.2", "description": "Extended Ethers.js SDK for Alchemy APIs", "author": "Alchemy", "license": "MIT", diff --git a/src/version.ts b/src/version.ts index 36191f05..8c93f06c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ // This file is autogenerated by injectVersion.js. Any changes will be // overwritten on commit! -export const VERSION = '2.2.1'; +export const VERSION = '2.2.2'; diff --git a/test/integration/nft.test.ts b/test/integration/nft.test.ts index 26f663b7..dd23603a 100644 --- a/test/integration/nft.test.ts +++ b/test/integration/nft.test.ts @@ -318,19 +318,20 @@ describe('E2E integration tests', () => { expect(response.nftSales[0].contractAddress).toEqual(contractAddress); }); - it.each(Object.values(NftSaleMarketplace))( - `getNftSales() with marketplace=%s`, - async marketplace => { - const response = await alchemy.nft.getNftSales({ - marketplace, - limit: 10 - }); - - response.nftSales.forEach(nftSale => { - expect(nftSale.marketplace).toEqual(marketplace); - }); - } - ); + it.each( + Object.values(NftSaleMarketplace).filter( + v => v !== NftSaleMarketplace.UNKNOWN + ) + )(`getNftSales() with marketplace=%s`, async marketplace => { + const response = await alchemy.nft.getNftSales({ + marketplace, + limit: 10 + }); + + response.nftSales.forEach(nftSale => { + expect(nftSale.marketplace).toEqual(marketplace); + }); + }); it('computeRarity()', async () => { const contractAddress = '0x0510745d2ca36729bed35c818527c4485912d99e';