Testnet Faucet · Events · 15@tokenops/sdk/testnet-faucet

Testnet Faucet event reference.

Testnet-only. mintConfidential parses ConfidentialMint off CTTT (6-decimal ERC-7984); mintUnderlying mints TTT (18-decimal ERC-20). No roles, pause, or fees — both faucets are open mints.

Mint· 2

EventArgs
ConfidentialMint(indexed to, underlyingMinted, encryptedAmount)
Transfer(indexed from, indexed to, value)

Confidential transfers + approvals· 3

EventArgs
ConfidentialTransfer(indexed from, indexed to, indexed amount)
OperatorSet(indexed holder, indexed operator, until)
Approval(indexed owner, indexed spender, value)

Disclosure + decryption· 3

EventArgs
AmountDiscloseRequested(indexed encryptedAmount, indexed requester)
AmountDisclosed(indexed encryptedAmount, amount)
PublicDecryptionVerified(handlesList, abiEncodedCleartexts)

Wrap + unwrap· 3

EventArgs
Wrap(indexed to, roundedAmount, encryptedWrappedAmount)
UnwrapRequested(indexed receiver, indexed unwrapRequestId, amount)
UnwrapFinalized(indexed receiver, indexed unwrapRequestId, encryptedAmount, cleartextAmount)

Proxy + ownership· 4

EventArgs
Initialized(version)
Upgraded(indexed implementation)
OwnershipTransferStarted(indexed previousOwner, indexed newOwner)
OwnershipTransferred(indexed previousOwner, indexed newOwner)
Indexer recipe: subscribe via viem's parseEventLogs({ abi, logs }) and persist by topic. The ACL.Allowed event from the FHE coprocessor is the canonical source for handle ownership — see the indexing events recipe (coming soon).Browse recipes