-
bitcoin $77560.422694 USD
1.38% -
ethereum $2487.453153 USD
1.65% -
tether $0.999055 USD
0.00% -
bnb $754.929766 USD
3.97% -
xrp $1.325914 USD
1.70% -
usd-coin $0.999829 USD
-0.01% -
solana $105.756375 USD
5.69% -
tron $0.335859 USD
0.15% -
zcash $1491.934575 USD
9.81% -
hyperliquid $87.784577 USD
10.62% -
dogecoin $0.084281 USD
3.81% -
monero $531.066198 USD
7.27% -
chainlink $11.802944 USD
5.34% -
unus-sed-leo $8.892769 USD
-0.44% -
cardano $0.213660 USD
7.72%
What are events in Solidity and how to use them?
Solidity events enable contracts to log data via the `emit` keyword, allowing dApps to listen for and process real-time updates using tools like Web3.js.
Jul 20, 2025 at 08:07 pm
Understanding Events in Solidity
In Solidity, events are a way for a contract to communicate with the external world. They allow smart contracts to emit logs that can be listened to and processed by decentralized applications (dApps), wallets, and other external services. Events are particularly useful for tracking changes in the contract state and providing real-time updates to the front-end interface.
Solidity events are declared using the event keyword followed by the event name and a list of parameters. These parameters can be indexed or unindexed, with indexed parameters being searchable in the logs. When an event is emitted, it is stored in the transaction’s log, which is part of the blockchain but not accessible to other smart contracts.
Declaring Events in Solidity
To declare an event in Solidity, you use the event keyword inside the contract scope. Here's a basic example:
pragma solidity ^0.8.0;
contract MyContract {
event MyEvent(address indexed sender, uint256 amount);
}
In this example, MyEvent is an event that logs the address of the sender and the amount of Ether transferred. The indexed keyword allows the sender parameter to be used as a filter when querying logs.
You can include up to three indexed parameters in an event. This limitation is due to the Ethereum Virtual Machine (EVM) log structure, which allows only up to three topics for filtering.
Emitting Events in Solidity
Once an event is declared, it can be emitted using the emit keyword. This is typically done inside a function where a notable action occurs. Here’s how you can emit the event declared earlier:
function sendFunds(address payable recipient, uint256 amount) public payable {
recipient.transfer(amount);
emit MyEvent(msg.sender, amount);
}
In this function, after transferring funds to the recipient, the contract emits the MyEvent event with the sender’s address and the amount sent. The emit statement must match the event’s parameter list in both number and type.
When the event is emitted, the EVM creates a log entry that is stored in the transaction receipt. This log can later be accessed by external applications.
Listening to Events Using Web3.js
To make use of events in a dApp, you need to listen to them using a tool like Web3.js or Ethers.js. Here's how you can set up a listener using Web3.js:
- Initialize Web3: Connect to an Ethereum node using a provider like Infura or MetaMask.
- Get the contract instance: Use the contract's ABI and address to create a contract object.
- Set up the event listener:
const myContract = new web3.eth.Contract(abi, contractAddress);
myContract.events.MyEvent()
.on('data', event => {
console.log('Event triggered:', event.returnValues);
})
.on('error', error => {
console.error('Error listening to event:', error);
});
This code listens for the MyEvent event and logs the data whenever it is emitted. The returnValues property contains the parameters passed when the event was triggered.
Practical Use Cases of Events
Events are not just for logging; they play a crucial role in dApp development. Some common use cases include:
- Tracking token transfers: ERC-20 and ERC-721 standards use the
Transfer event to log when tokens are moved between accounts. - Notifying front-end updates: When a contract state changes, emitting an event allows the front-end to update in real-time.
- Audit and monitoring: Events provide a transparent and immutable record of contract activity, which is useful for compliance and debugging.
For example, in a voting contract, you might emit an event every time a vote is cast:
event VoteCast(address indexed voter, string proposal);
This allows external systems to track voting activity and ensure transparency.
Best Practices for Using Events
When working with events in Solidity, it's important to follow best practices to ensure efficiency and clarity:
- Use indexed parameters for filtering: If you need to query logs based on a specific parameter, mark it as indexed.
- Don’t overuse events: Emitting too many events can increase gas costs and clutter the logs.
- Document event parameters: Clearly explain what each parameter represents in the event declaration.
- Use descriptive names: Event names should clearly indicate the action they represent, such as
TokensTransferred or OwnershipTransferred.
Avoid emitting events in loops or high-frequency functions unless necessary, as this can significantly increase gas consumption.
Frequently Asked Questions
Q: Can events be used to communicate between smart contracts?
No, events cannot be used for inter-contract communication. They are stored in the transaction logs and are only accessible to off-chain applications.
Q: How much gas do events consume?Events consume gas because they are part of the transaction. The exact cost depends on the number and size of the parameters, especially whether they are indexed or not.
Q: Are events stored permanently on the blockchain?Yes, events are stored in the Ethereum logs, which are part of the blockchain. However, they are not directly accessible to smart contracts.
Q: Can I emit an event without any parameters?Yes, you can declare and emit events without any parameters. This is useful for signaling that a particular action has occurred without needing to pass any data.
Disclaimer:info@kdj.com
The information provided is not trading advice. kdj.com does not assume any responsibility for any investments made based on the information provided in this article. Cryptocurrencies are highly volatile and it is highly recommended that you invest with caution after thorough research!
If you believe that the content used on this website infringes your copyright, please contact us immediately (info@kdj.com) and we will delete it promptly.
- XRP Price Prediction: Navigating Volatility and Unpacking Key Levels Amidst Shifting Market Tides
- 2026-09-19 12:45:01
- Binance New Listing, SWIFT 17 Banks, and Pepeto 100x Entry: The Next Wave in Crypto Finance
- 2026-09-19 09:00:02
- Lagarde, Binance, and the Greek Gambit: A High-Stakes EU Regulatory Standoff
- 2026-09-19 08:55:01
- MemeToro Crypto Presale Review: Public Code Aims for Trust, But Execution is Key for $MT Token
- 2026-09-19 08:35:01
- AVAX Price Surges as Avalanche Chain Embraces Tokenized Funds and Institutional Growth
- 2026-09-18 16:50:01
- Bank of Japan's Rate Hike: Yen, Bitcoin, and the Unwinding of Carry Trades
- 2026-09-18 12:50:01
Related knowledge
How to Check SOL Futures Volume and Open Interest?
Sep 14,2026 at 12:40am
Accessing SOL Futures Market Data1. Navigate to the official exchange platform where SOL perpetual or quarterly futures are listed, such as Bybit, OKX...
How to Check XRP Futures Volume and Open Interest?
Sep 15,2026 at 05:00am
Accessing Real-Time XRP Futures Data1. Visit major derivatives exchanges that list XRP perpetual and quarterly futures contracts, including Binance, B...
How to Check DOGE Futures Volume and Open Interest?
Sep 12,2026 at 08:39am
Understanding DOGE Futures Volume1. Futures volume refers to the total number of DOGE futures contracts traded within a specific time frame, usually m...
How to Check ETH Futures Volume and Open Interest?
Sep 16,2026 at 07:00pm
Accessing Real-Time ETH Futures Data1. Major centralized exchanges such as Binance, Bybit, and OKX provide live dashboards displaying ETH perpetual an...
How to Check BTC Futures Volume and Open Interest?
Sep 12,2026 at 03:19pm
Data Sources for BTC Futures Metrics1. CoinGlass API v4 delivers real-time funding rates, liquidation heatmaps, and granular open interest breakdowns ...
How to Read the SOLUSDT Perpetual Contract Chart?
Sep 19,2026 at 02:19pm
Understanding SOLUSDT Price Structure1. The SOLUSDT perpetual contract chart displays real-time price action of Solana’s native token quoted against T...
How to Check SOL Futures Volume and Open Interest?
Sep 14,2026 at 12:40am
Accessing SOL Futures Market Data1. Navigate to the official exchange platform where SOL perpetual or quarterly futures are listed, such as Bybit, OKX...
How to Check XRP Futures Volume and Open Interest?
Sep 15,2026 at 05:00am
Accessing Real-Time XRP Futures Data1. Visit major derivatives exchanges that list XRP perpetual and quarterly futures contracts, including Binance, B...
How to Check DOGE Futures Volume and Open Interest?
Sep 12,2026 at 08:39am
Understanding DOGE Futures Volume1. Futures volume refers to the total number of DOGE futures contracts traded within a specific time frame, usually m...
How to Check ETH Futures Volume and Open Interest?
Sep 16,2026 at 07:00pm
Accessing Real-Time ETH Futures Data1. Major centralized exchanges such as Binance, Bybit, and OKX provide live dashboards displaying ETH perpetual an...
How to Check BTC Futures Volume and Open Interest?
Sep 12,2026 at 03:19pm
Data Sources for BTC Futures Metrics1. CoinGlass API v4 delivers real-time funding rates, liquidation heatmaps, and granular open interest breakdowns ...
How to Read the SOLUSDT Perpetual Contract Chart?
Sep 19,2026 at 02:19pm
Understanding SOLUSDT Price Structure1. The SOLUSDT perpetual contract chart displays real-time price action of Solana’s native token quoted against T...
See all articles














