Transaction Hash:
Block:
22283651 at Apr-16-2025 07:29:35 PM +UTC
Transaction Fee:
0.000025703075065836 ETH
$0.07
Gas Used:
65,204 Gas / 0.394194759 Gwei
Emitted Events:
268 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000005138d77d51dc57983e5a653cea6e1c1aa9750a39, 0x0000000000000000000000000000000000000000000000000000000000000000, 00000000000000000000000000000000000000000000000000000009502f9000 )
|
269 |
TransparentUpgradeableProxy.0x5380355699fac5266e4d95cf6985cf6a48abe03aa33d07723bdd0338a367af25( 0x5380355699fac5266e4d95cf6985cf6a48abe03aa33d07723bdd0338a367af25, 0x0000000000000000000000005138d77d51dc57983e5a653cea6e1c1aa9750a39, 0x0000000000000000000000005138d77d51dc57983e5a653cea6e1c1aa9750a39, 00000000000000000000000000000000000000000000000000000009502f9000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x39634336...6fb82Aa49
Miner
| (quasarbuilder) | 1.26137771940872627 Eth | 1.261377845447667046 Eth | 0.000000126038940776 | |
0x43415eB6...e97d31C4e | |||||
0x5138D77d...aa9750A39 |
0.395389239360661876 Eth
Nonce: 325
|
0.39536353628559604 Eth
Nonce: 326
| 0.000025703075065836 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )

SuperstateToken.transfer( dst=0x43415eB6ff9DB7E26A15b704e7A3eDCe97d31C4e, amount=40000000000 ) => ( True )
TransparentUpgradeableProxy.841571e0( )
-
AllowList.isAddressAllowedForFund( addr=0x5138D77d51dC57983e5A653CeA6e1C1aa9750A39, fundSymbol=USTB ) => ( True )
-
File 1 of 4: TransparentUpgradeableProxy
File 2 of 4: SuperstateToken
File 3 of 4: TransparentUpgradeableProxy
File 4 of 4: AllowList
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (proxy/transparent/TransparentUpgradeableProxy.sol)pragma solidity ^0.8.0;import "../ERC1967/ERC1967Proxy.sol";/*** @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}* does not implement this interface directly, and some of its functions are implemented by an internal dispatch* mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not* include them in the ABI so this interface must be used to interact with it.*/interface ITransparentUpgradeableProxy is IERC1967 {function admin() external view returns (address);function implementation() external view returns (address);function changeAdmin(address) external;function upgradeTo(address) external;function upgradeToAndCall(address, bytes memory) external payable;
File 2 of 4: SuperstateToken
12345678910111213141516// SPDX-License-Identifier: BUSL-1.1pragma solidity ^0.8.28;import {IERC20} from "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";import {IERC20Metadata} from "openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol";import {IERC20Upgradeable} from "openzeppelin-contracts-upgradeable/interfaces/IERC20Upgradeable.sol";import {ERC20Upgradeable} from "openzeppelin-contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";import {Ownable2StepUpgradeable} from "openzeppelin-contracts-upgradeable/access/Ownable2StepUpgradeable.sol";import {PausableUpgradeable} from "openzeppelin-contracts-upgradeable/security/PausableUpgradeable.sol";import {SafeERC20} from "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";import {ECDSA} from "openzeppelin-contracts/contracts/utils/cryptography/ECDSA.sol";import {ISuperstateToken} from "src/interfaces/ISuperstateToken.sol";import {IAllowList} from "src/interfaces/allowlist/IAllowList.sol";import {IAllowListV2} from "src/interfaces/allowlist/IAllowListV2.sol";import {AllowList} from "src/allowlist/AllowList.sol";import {SuperstateOracle} from "onchain-redemptions/src/oracle/SuperstateOracle.sol";import {AggregatorV3Interface} from
File 3 of 4: TransparentUpgradeableProxy
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (proxy/transparent/TransparentUpgradeableProxy.sol)pragma solidity ^0.8.22;import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";import {ERC1967Proxy} from "../ERC1967/ERC1967Proxy.sol";import {IERC1967} from "../../interfaces/IERC1967.sol";import {ProxyAdmin} from "./ProxyAdmin.sol";/*** @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}* does not implement this interface directly, and its upgradeability mechanism is implemented by an internal dispatch* mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not* include them in the ABI so this interface must be used to interact with it.*/interface ITransparentUpgradeableProxy is IERC1967 {/// @dev See {UUPSUpgradeable-upgradeToAndCall}function upgradeToAndCall(address newImplementation, bytes calldata data) external payable;
File 4 of 4: AllowList
12345678910111213141516// SPDX-License-Identifier: BUSL-1.1pragma solidity ^0.8.28;import {IAllowListV2} from "../interfaces/allowlist/IAllowListV2.sol";import {Ownable2StepUpgradeable} from "openzeppelin/access/Ownable2StepUpgradeable.sol";/*** @title AllowList* @notice A contract that provides allowlist functionalities with both entity-based and protocol address permissions* @author Chris Ridmann (Superstate)*/contract AllowList is IAllowListV2, Ownable2StepUpgradeable {/*** @dev This empty reserved space is put in place to allow future versions to inherit from new contracts* without impacting the fields within `SuperstateToken`.*/uint256[500] private __inheritanceGap;/// @notice The major version of this contract