Blocks
Transactions
Top Addresses
Verified Contracts
Block #17,482,345
2 mins ago
142 Transactions
Validator: 0x7F3E...8A21
Gas Used: 12,458,932
Reward: 2.05 ETH
Block #17,482,344
5 mins ago
98 Transactions
Validator: 0x3A2B...9C4D
Gas Used: 8,245,621
Reward: 2.02 ETH
Block #17,482,343
8 mins ago
156 Transactions
Validator: 0x8F3E...2A7B
Gas Used: 14,782,345
Reward: 2.08 ETH
Block #17,482,342
12 mins ago
112 Transactions
Validator: 0x4D2C...7E5F
Gas Used: 10,245,678
Reward: 2.03 ETH
Block #17,482,341
15 mins ago
87 Transactions
Validator: 0x1A2B...3C4D
Gas Used: 7,845,123
Reward: 2.01 ETH
0x7A2B...9C3D
2 mins ago
From
0x8F3E...2A7B
To
0x3A2B...9C4D
Value
1.25 ETH
Gas Price
12 Gwei
Status
Success
0x4D2C...7E5F
5 mins ago
From
0x1A2B...3C4D
To
0x9F8E...7D6C (Contract)
Value
0 ETH
Gas Price
15 Gwei
Status
Success
0x2E4F...6B8D
8 mins ago
From
0x7F3E...8A21
To
0x5G7H...9J0K
Value
0.5 ETH
Gas Price
10 Gwei
Status
Pending
0x6L8M...0N1P
12 mins ago
From
0x2Q3R...4S5T
To
0x6U7V...8W9X (Contract)
Value
0 ETH
Gas Price
18 Gwei
Status
Failed
0xA1B2...C3D4
15 mins ago
From
0xE5F6...G7H8
To
0xI9J0...K1L2
Value
2.75 ETH
Gas Price
14 Gwei
Status
Success
0x8F3E...2A7B EOA
245,782.35 ETH
$698,452,886.75 USD
1,245
Transactions
$12.5M
Last 24h Volume
42
Token Types
Top Token Holdings
Token Balance Value
Ethereum
Ethereum
ETH
245,782.35 ETH $698,452,886.75
USD Coin
USD Coin
USDC
125,000,000 USDC $125,000,000.00
Chainlink
Chainlink
LINK
2,450,000 LINK $30,257,500.00
0x3A2B...9C4D EOA
178,452.12 ETH
$507,195,781.40 USD
982
Transactions
$8.2M
Last 24h Volume
35
Token Types
Top Token Holdings
Token Balance Value
Ethereum
Ethereum
ETH
178,452.12 ETH $507,195,781.40
Tether
Tether
USDT
85,000,000 USDT $85,000,000.00
Uniswap
Uniswap
UNI
1,850,000 UNI $9,250,000.00
0x9F8E...7D6C Contract
542,128.78 ETH
$1,542,146,017.30 USD
5,842
Transactions
$45.8M
Last 24h Volume
12
Token Types
Top Token Holdings
Token Balance Value
Ethereum
Ethereum
ETH
542,128.78 ETH $1,542,146,017.30
Dai
Dai
DAI
250,000,000 DAI $250,000,000.00
Aave
Aave
AAVE
750,000 AAVE $60,000,000.00
Uniswap V3: Router
0x9F8E...7D6C
Verified
DEX
Balance
542,128.78 ETH
Transactions
5,842
Compiler
Solidity 0.8.0
Deployed
May 4, 2021
Code
Read Contract
Write Contract
Events
1
// SPDX-License-Identifier: GPL-2.0-or-later
2
pragma solidity ^0.8.0;
3
4
import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol';
5
import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';
6
7
/// @title Uniswap V3 Router
8
/// @notice Router for Uniswap V3 protocol
9
contract UniswapV3Router {
10
address public immutable factory;
11
address public immutable WETH9;
12
13
constructor(address _factory, address _WETH9) {
14
factory = _factory;
15
WETH9 = _WETH9;
16
}
17
18
// Function implementations...
19
}
Aave: Lending Pool
0x6U7V...8W9X
Verified
DeFi
Balance
325,784.45 ETH
Transactions
4,215
Compiler
Solidity 0.7.6
Deployed
Dec 15, 2020
Code
Read Contract
Write Contract
Events
1
// SPDX-License-Identifier: agpl-3.0
2
pragma solidity 0.7.6;
3
4
import './interfaces/ILendingPool.sol';
5
import './libraries/ReserveLogic.sol';
6
7
/// @title Aave Lending Pool
8
/// @notice Main contract for the Aave protocol
9
contract LendingPool is ILendingPool {
10
using ReserveLogic for DataTypes.ReserveData;
11
12
address public override ADDRESSES_PROVIDER;
13
14
constructor(address provider) {
15
ADDRESSES_PROVIDER = provider;
16
}
17
18
// Function implementations...
19
}