ETH Price: $2,478.94 (-5.93%)

Transaction Decoder

Block:
13963682 at Jan-08-2022 08:18:54 AM +UTC
Transaction Fee:
0.003064609907846481 ETH $7.60
Gas Used:
46,351 Gas / 66.117449631 Gwei

Emitted Events:

193 Vader.Approval( owner=[Sender] 0xc2f6690e9591299dec12191f1120b5241d819627, spender=0x665ff8fA...d780a7369, value=302503999000000000299700000 )

Account State Difference:

  Address   Before After State Difference Code
0x2602278E...075650983
0xC2F6690E...41D819627
0.020121299148317417 Eth
Nonce: 7
0.017056689240470936 Eth
Nonce: 8
0.003064609907846481
(Ethermine)
2,247.555421474256482837 Eth2,247.555491000756482837 Eth0.0000695265

Execution Trace

Vader.approve( spender=0x665ff8fAA06986Bd6f1802fA6C1D2e7d780a7369, amount=302503999000000000299700000 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT AND AGPL-3.0-or-later
pragma solidity =0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "../shared/ProtocolConstants.sol";
import "../interfaces/tokens/IUSDV.sol";
import "../interfaces/tokens/IVader.sol";
import "../interfaces/tokens/vesting/ILinearVesting.sol";
import "../interfaces/tokens/converter/IConverter.sol";
/**
* @dev Implementation of the {IVader} interface.
*
* The Vader token that acts as the backbone of the Vader protocol,
* burned and minted to mint and burn USDV tokens respectively.
*
* The token has a fixed initial supply at 25 billion units that is meant to then
* fluctuate depending on the amount of USDV minted into and burned from circulation.
*
* Emissions are initially controlled by the Vader team and then will be governed
* by the DAO.
*/
contract Vader is IVader, ProtocolConstants, ERC20, Ownable {
/* ========== STATE VARIABLES ========== */
// The Vader <-> Vether converter contract
IConverter public converter;
// The Vader Team vesting contract
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX