20M+ users trust MoonPay worldwide. Checkout with your preferred payment method.
Ready to onboard to Ethereum? With MetaMask Portfolio, you're in control.
Don’t invest unless you’re prepared to lose all the money you invest.
Everyday giveaways up to 100 ETH, Lucky Spins. Deposit BONUS 300% and Cashbacks!
5000+ Slots & Live Casino Games, 50+cryptos. Register with Etherscan and get 760% deposit bonus. Win Big$, withdraw it fast.
Slots, Roulette, Poker & more - Proud sponsors of UFC, Everton & StakeF1 team!
5000+ Slots & Live Casino Games, 50+cryptos. Register with Etherscan and get 760% deposit bonus. Win Big$, withdraw it fast.
Anonymous play on awesome games - sign up now for 25 free jackpot spins - worth $100s!
100s of games, generous bonuses, 20+ years of trusted gaming. Join CryptoWins & start winning today!
Overview
ETH Balance
Eth Value
$0.00Token Holdings
Could not find any matches!
- ERC-20 Tokens (5)1.03145468 aWETHAave interes... (aWETH)$3,540.29@3,432.33948.408369ERC20 ***1 nft-aave.comnft-aave.com (nft-aa...)30 TokenERC-20 TOKEN*[Suspicious]30 TokenERC-20 TOKEN*[Spam]NFT Tokens (9)apy-aave.comapy-aave.comERC-1155
More Info
Private Name Tags
ContractCreator
- Transactions
- Internal Transactions
- Token Transfers (ERC-20)
- NFT Transfers
- Contract
- Events
- Analytics
- Multichain Portfolio
Latest 1 internal transaction
Advanced mode:Parent Transaction Hash Block From To 15529819 2022-09-13 23:48:33 801 days ago 1663112913 Contract Creation 0 ETH$0.00 Loading...LoadingThis contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x7ec46976...2d473F437The constructor portion of the code might be different and could alter the actual behaviour of the contractContract Name:FoldingAccount
Compiler Versionv0.6.12+commit.27d51765
Optimization Enabled:Yes with 9999 runs
Other Settings:default evmVersionContract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import '../modules/FoldingAccount/FoldingAccountStorage.sol'; import './interfaces/IFoldingConnectorProvider.sol'; contract FoldingAccount is FoldingAccountStorage { constructor(address foldingRegistry) public { aStore().foldingRegistry = foldingRegistry; } /// @notice Find the connector for `msg.sig` and delegate call it with `msg.data` function delegate() private { bool firstCall = false; // We need to delete the entryCaller on exit AccountStore storage accountStorage = aStore(); if (accountStorage.entryCaller == address(0)) { accountStorage.entryCaller = msg.sender; firstCall = true; } // Check if a connector expects a callback or find connector address impl = accountStorage.callbackTarget; if (impl != address(0)) { require(accountStorage.expectedCallbackSig == msg.sig, 'FA1'); } else { impl = IFoldingConnectorProvider(accountStorage.foldingRegistry).getImplementation(msg.sig); } /// @dev This assembly code returns directly to caller assembly { calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), impl, 0, calldatasize(), 0, 0) let size := returndatasize() returndatacopy(0, 0, size) switch result case 0 { revert(0, size) } default { /// @dev if this is the first call, set the entryCaller to 0 if firstCall { sstore(accountStorage_slot, 0) } return(0, size) } } } fallback() external payable { if (msg.sig != bytes4(0)) delegate(); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; contract FoldingAccountStorage { bytes32 constant ACCOUNT_STORAGE_POSITION = keccak256('folding.account.storage'); /** * entryCaller: address of the caller of the account, during a transaction * * callbackTarget: address of logic to be run when expecting a callback * * expectedCallbackSig: signature of function to be run when expecting a callback * * foldingRegistry address of factory creating FoldingAccount * * nft: address of the nft contract. * * owner: address of the owner of this FoldingAccount. */ struct AccountStore { address entryCaller; address callbackTarget; bytes4 expectedCallbackSig; address foldingRegistry; address nft; address owner; } modifier onlyAccountOwner() { AccountStore storage s = aStore(); require(s.entryCaller == s.owner, 'FA2'); _; } modifier onlyNFTContract() { AccountStore storage s = aStore(); require(s.entryCaller == s.nft, 'FA3'); _; } modifier onlyAccountOwnerOrRegistry() { AccountStore storage s = aStore(); require(s.entryCaller == s.owner || s.entryCaller == s.foldingRegistry, 'FA4'); _; } function aStore() internal pure returns (AccountStore storage s) { bytes32 position = ACCOUNT_STORAGE_POSITION; assembly { s_slot := position } } function accountOwner() internal view returns (address) { return aStore().owner; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IFoldingConnectorProvider { function getImplementation(bytes4 functionSignature) external view returns (address implementation); }
{ "optimizer": { "enabled": true, "runs": 9999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
[{"inputs":[{"internalType":"address","name":"foldingRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x60806040526000357fffffffff00000000000000000000000000000000000000000000000000000000161561003657610036610038565b005b60008061004361023d565b805490915073ffffffffffffffffffffffffffffffffffffffff1661008f5780547fffffffffffffffffffffffff00000000000000000000000000000000000000001633178155600191505b600181015473ffffffffffffffffffffffffffffffffffffffff16801561013e5760018201546000357fffffffff000000000000000000000000000000000000000000000000000000009081167401000000000000000000000000000000000000000090920460e01b1614610139576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610130906102c9565b60405180910390fd5b61020d565b60028201546040517fdc9cc64500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063dc9cc645906101ba907fffffffff00000000000000000000000000000000000000000000000000000000600035169060040161029c565b60206040518083038186803b1580156101d257600080fd5b505afa1580156101e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061020a9190610261565b90505b3660008037600080366000845af43d806000803e81801561023857851561023357600085555b816000f35b816000fd5b7fadbb89e904f74d44d0d104c851da4f2fa24de8f1dee64f038923bb940f37d53a90565b600060208284031215610272578081fd5b815173ffffffffffffffffffffffffffffffffffffffff81168114610295578182fd5b9392505050565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116815260200190565b60208082526003908201527f464131000000000000000000000000000000000000000000000000000000000060408201526060019056fea264697066735822122024923cd795b5543a38f56fe39c7b6ead92248d6b1e0a30cc07b17c8087c8a18264736f6c634300060c0033
Loading...LoadingLoading...Loading
Loading...Loading
Loading...LoadingLoading...LoadingLoading...LoadingLoading...LoadingLoading...LoadingLoading...LoadingMultichain Portfolio | 30 Chains
Chain Token Portfolio % Price Amount Value ETH 100.00% $3,432.33 1.0315 $3,540.29 Loading...Loading[ Download: CSV Export ]A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.
Address QR Code
My Address - Private Name Tag or Note
My Name Tag:
Private Name Tags (up to 35 characters) can be used for easy identification of addressesPrivate Note:
A private note (up to 500 characters) can be attached to this address.
Please DO NOT store any passwords or private keys here.Compiler specific version warnings:
The compiled contract might be susceptible to FullInlinerNonExpressionSplitArgumentEvaluationOrder (low-severity), MissingSideEffectsOnSelectorAccess (low-severity), AbiReencodingHeadOverflowWithStaticArrayCleanup (medium-severity), DirtyBytesArrayToStorage (low-severity), DataLocationChangeInInternalOverride (very low-severity), NestedCalldataArrayAbiReencodingSizeValidation (very low-severity), SignedImmutables (very low-severity), ABIDecodeTwoDimensionalArrayMemory (very low-severity), KeccakCaching (medium-severity), EmptyByteArrayCopy (medium-severity), DynamicArrayCleanup (medium-severity) Solidity Compiler Bugs.
Connect a Wallet
Connecting wallet for read function is optional, useful if you want to call certain functions or simply use your wallet's node.Connect a Wallet
Connecting wallet for read function is optional, useful if you want to call certain functions or simply use your wallet's node.Connect a Wallet
Connecting wallet for read function is optional, useful if you want to call certain functions or simply use your wallet's node.SignIn
Address Cards
To use this feature, please login to your Etherscan account and return to this page.Before You Copy
Transaction Private Note
This website uses cookies to improve your experience. By continuing to use this website, you agree to its Terms and Privacy Policy.