Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x2602278E...075650983 | |||||
0xC2F6690E...41D819627 |
0.020121299148317417 Eth
Nonce: 7
|
0.017056689240470936 Eth
Nonce: 8
| 0.003064609907846481 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 2,247.555421474256482837 Eth | 2,247.555491000756482837 Eth | 0.0000695265 |
Execution Trace
Vader.approve( spender=0x665ff8fAA06986Bd6f1802fA6C1D2e7d780a7369, amount=302503999000000000299700000 ) => ( True )
approve[ERC20 (ln:561)]
_approve[ERC20 (ln:562)]
Approval[ERC20 (ln:721)]
_msgSender[ERC20 (ln:562)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT AND AGPL-3.0-or-laterpragma 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 contractIConverter public converter;// The Vader Team vesting contract