pub enum WebhookType {
CustomWebhooks,
MinedTransaction,
DroppedTransaction,
AddressActivity,
NftActivity,
NftMetadataUpdate,
}
Expand description
Webhook version (v1 or v2)
Variants§
CustomWebhooks
Custom Webhooks allows you to track any smart contract or marketplace activity, monitor any contract creation, or any other on-chain interaction. This gives you infinite data access with precise filter controls to get the blockchain data you need.
MinedTransaction
The Mined Transaction webhook notifies your app when a transaction sent through your app (using your API key) gets mined. This is useful for you to further notify the users of your app about the status of the transaction.
DroppedTransaction
The Dropped Transaction webhook notifies your app when a transaction sent through your app (using your API key) gets dropped. This is useful for you to further notify the users of your app about the status of the transaction.
AddressActivity
Alchemy’s Address Activity webhook tracks all ETH, ERC20, ERC721 and ERC1155 transfers. This provides your app with real-time state changes when an address sends/receives tokens or ETH. You can specify the addresses for which you want to track this activity. A maximum of 50,000 addresses can be added to a single webhook.
NftActivity
The NFT Activity webhook allows you to track ERC721 and ERC1155 token contracts for NFTs. This provides your app with real-time state changes when an NFT is transferred between addresses.
NftMetadataUpdate
The NFT Metadata Updates webhook allows you to track metadata updates for ERC721 and ERC1155 token contracts for Ethereum and Polygon NFTs. This notifies your app when the metadata for an NFT is updated.
Trait Implementations§
Source§impl Clone for WebhookType
impl Clone for WebhookType
Source§fn clone(&self) -> WebhookType
fn clone(&self) -> WebhookType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more