QuickAlerts will be officially sunsetting on July 31, 2025. Thus, we encourage all QuickAlerts users to migrate to QuickNode Webhooks – our next-generation alerting platform.
Webhooks offers:
- Up to 50% cheaper than QuickAlerts
- Supports 70+ networks (including Solana)
- Simple no-code templates with advanced filtering capabilities
- Guaranteed delivery and automatic reorg handling
Check out our step-by-step guide on Webhooks for more information.
Ready to switch? Try Webhooks today!
Overview
Lens Protocol is a decentralized social graph on the Polygon PoS blockchain. Lens handles are just like handles in every other social media and can be minted separately from profiles and can be linked or unlinked from one profile to another.
Lens Handle Minted
Whenever a new Lens Handle is minted, the following event gets emitted:
HandleMinted (string handle, string namespace, uint256 handleId, address to, uint256 timestamp)
To create our expression, we will need to target two values:
- The Lens Handle Token contract address - We'll use the contract address of the Lens Handle token smart contract deployed on Polygon PoS Mainnet. This value gets set as the
tx_logs_address
, as we will be looking for any transactions from this address (the contract). - The event the contract emits when the action we're interested in occurs - In this case , the
HandleMinted
event. On EVM blockchains, the event is encoded and can be found intx_logs_topic0
. To get the encoded value, you will need to take the event definition (event name and parameters' types), run it through the Keccak-256 hash function, and prefix it with0x
.
HandleMinted(string,string,uint256,address,uint256)
⬇
30a132e912787e50de6193fe56a96ea6188c0bbf676679d630a25d3293c3e19a
⬇
0x30a132e912787e50de6193fe56a96ea6188c0bbf676679d630a25d3293c3e19a