Transaction Hash:
Block:
19963710 at May-27-2024 08:51:59 PM +UTC
Transaction Fee:
0.004300936969710927 ETH
$11.86
Gas Used:
166,647 Gas / 25.808667241 Gwei
Emitted Events:
183 |
Renq.Approval( owner=[Sender] 0x49f174bee52cbd387d19191526101ab7cbd2d846, spender=[Receiver] Renq_Staking, value=0 )
|
184 |
Renq.Transfer( from=[Sender] 0x49f174bee52cbd387d19191526101ab7cbd2d846, to=[Receiver] Renq_Staking, value=6000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x407CF653...CFc347dB4 | |||||
0x49F174bE...7cBd2d846 |
0.101810332281587417 Eth
Nonce: 19
|
0.09750939531187649 Eth
Nonce: 20
| 0.004300936969710927 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.293558330340119707 Eth | 6.293974947840119707 Eth | 0.0004166175 | |
0xff8C4791...776cF8CF2 |
Execution Trace
Renq_Staking.userDeposit( referral=0x49F174bEe52cbD387D19191526101AB7cBd2d846, _amount=6000000000000000000000, _pool=0 )
-
Renq.allowance( owner=0x49F174bEe52cbD387D19191526101AB7cBd2d846, spender=0x407CF653C4ebb3c2025DfB7f00D5C0dCFc347dB4 ) => ( 6000000000000000000000 )
-
Renq.transferFrom( from=0x49F174bEe52cbD387D19191526101AB7cBd2d846, to=0x407CF653C4ebb3c2025DfB7f00D5C0dCFc347dB4, amount=6000000000000000000000 ) => ( True )
userDeposit[Renq_Staking (ln:412)]
transferFrom[Renq_Staking (ln:419)]
div[Renq_Staking (ln:423)]
mul[Renq_Staking (ln:423)]
transfer[Renq_Staking (ln:424)]
depositStatus[Renq_Staking (ln:429)]
push[Renq_Staking (ln:436)]
add[Renq_Staking (ln:437)]
add[Renq_Staking (ln:441)]
div[Renq_Staking (ln:445)]
mul[Renq_Staking (ln:445)]
referralStatus[Renq_Staking (ln:446)]
push[Renq_Staking (ln:447)]
add[Renq_Staking (ln:448)]
File 1 of 2: Renq_Staking
File 2 of 2: Renq
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IBEP20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the token decimals.*/function decimals() external view returns (uint8);
File 2 of 2: Renq
12345678910111213141516// ██████╗░███████╗███╗░░██╗░██████╗░// ██╔══██╗██╔════╝████╗░██║██╔═══██╗// ██████╔╝█████╗░░██╔██╗██║██║██╗██║// ██╔══██╗██╔══╝░░██║╚████║╚██████╔╝// ██║░░██║███████╗██║░╚███║░╚═██╔═╝░// ╚═╝░░╚═╝╚══════╝╚═╝░░╚══╝░░░╚═╝░░░// Token: Renq Finance// Website: https://renq.io// Twitter: https://twitter.com/renqfinance// Telegram: https://t.me/renqfinance// SPDX-License-Identifier: MIT// File: @openzeppelin/contracts/utils/Context.sol