Skip to main content

Events

Concordium Implementation

The EUROe Stablecoin emits events similarly to other CIS-2 tokens. The below table illustrates the events emitted by the smart contract.

TypeTriggerFunction
Supply changesTokens are mintedMint(MintEvent<T, A>)
TokenMetadata(TokenMetadataEvent<A>)
Tokens are burnedBurn(BurnEvent<T, A>)
Fund movementsTokens are transferredTransfer(TransferEvent<T, A>)
MiscellaneousOperator is updatedUpdateOperator(UpdateOperatorEvent)

EVM Implementations

The EUROe Stablecoin emits events similarly to other ERC20 tokens. The below table illustrates the some of the commonly queried events that are emitted.

TypeTriggerEvent nameFunctionExample transaction
Supply changesTokens are mintedTransfermint()
mintSet()
View on Etherscan ↗
Tokens are burnedTransferburnFromWithPermit()
burnFrom()
burn()
View on Etherscan ↗
Fund movementsTokens are transferredTransfertransfer()
transferFrom()
View on Etherscan ↗
Critical admin actionsThe contract is pausedPausedpause()View on Etherscan ↗
The contract is unpausedUnpausedunpause()View on Etherscan ↗
The implementation is upgradedUpgradedupgradeTo()
upgradeToAndCall()
N/A