Overview
ETH Balance
0.000146400978951881 ETH
Eth Value
$0.29 (@ $2,006.41/ETH)Latest 9 from a total of 9 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Execute | 21439403 | 434 days ago | IN | 0 ETH | 0.0015561 | ||||
| Execute | 21439396 | 434 days ago | IN | 0 ETH | 0.00182071 | ||||
| Execute | 21435848 | 434 days ago | IN | 0 ETH | 0.00243406 | ||||
| Transfer | 21432854 | 435 days ago | IN | 0.00778346 ETH | 0.00033554 | ||||
| Execute | 21228605 | 463 days ago | IN | 0 ETH | 0.0012183 | ||||
| Execute | 21074645 | 485 days ago | IN | 0 ETH | 0.0005921 | ||||
| Execute | 21074620 | 485 days ago | IN | 0 ETH | 0.0019155 | ||||
| Execute | 21074614 | 485 days ago | IN | 0 ETH | 0.00069293 | ||||
| Transfer | 21074583 | 485 days ago | IN | 0.00502444 ETH | 0.000147 |
Latest 12 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 21439403 | 434 days ago | 0.00145359 ETH | ||||
| Transfer | 21439403 | 434 days ago | 0.00312167 ETH | ||||
| Transfer | 21439396 | 434 days ago | 0.00177726 ETH | ||||
| Transfer | 21435848 | 434 days ago | 0.00192802 ETH | ||||
| Transfer | 21228605 | 463 days ago | 0.0011295 ETH | ||||
| Transfer | 21228605 | 463 days ago | 0.01 ETH | ||||
| Transfer | 21074645 | 485 days ago | 0.00058341 ETH | ||||
| Transfer | 21074645 | 485 days ago | 0.01092 ETH | ||||
| Transfer | 21074620 | 485 days ago | 0.00177208 ETH | ||||
| Transfer | 21074614 | 485 days ago | 0.00062829 ETH | ||||
| Transfer | 21074594 | 485 days ago | 0.00118763 ETH | ||||
| 0x603a600e | 21074594 | 485 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Minimal Proxy Contract for 0x4222dca3974e39a8b41c411fedde9b09ae14b911
Contract Name:
MainModuleUpgradable
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 500000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./commons/ModuleAuthUpgradable.sol";
import "./commons/ModuleHooks.sol";
import "./commons/ModuleCalls.sol";
import "./commons/ModuleUpdate.sol";
import "./commons/ModuleCreator.sol";
import "./commons/ModuleExtraAuth.sol";
import "./commons/ModuleAuthConvenience.sol";
/**
* @notice Contains the core functionality Sequence wallets will inherit with
* the added functionality that the main module can be changed.
* @dev If using a new main module, developers must ensure that all inherited
* contracts by the main module don't conflict and are accounted for to be
* supported by the supportsInterface method.
*/
contract MainModuleUpgradable is
ModuleAuthUpgradable,
ModuleExtraAuth,
ModuleCalls,
ModuleUpdate,
ModuleHooks,
ModuleCreator,
ModuleAuthConvenience
{
function _isValidImage(
bytes32 _imageHash
) internal override(
IModuleAuth,
ModuleAuthUpgradable,
ModuleExtraAuth
) view returns (bool) {
return super._isValidImage(_imageHash);
}
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @dev If using a new main module, developers must ensure that all inherited
* contracts by the main module don't conflict and are accounted for to be
* supported by the supportsInterface method.
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(
bytes4 _interfaceID
) public override(
ModuleAuthUpgradable,
ModuleAuthConvenience,
ModuleCalls,
ModuleExtraAuth,
ModuleUpdate,
ModuleHooks,
ModuleCreator
) pure returns (bool) {
return super.supportsInterface(_interfaceID);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
interface IERC1271Wallet {
/**
* @notice Verifies whether the provided signature is valid with respect to the provided data
* @dev MUST return the correct magic value if the signature provided is valid for the provided data
* > The bytes4 magic value to return when signature is valid is 0x20c13b0b : bytes4(keccak256("isValidSignature(bytes,bytes)")
* > This function MAY modify Ethereum's state
* @param _data Arbitrary length data signed on the behalf of address(this)
* @param _signature Signature byte array associated with _data
* @return magicValue Magic value 0x20c13b0b if the signature is valid and 0x0 otherwise
*/
function isValidSignature(
bytes calldata _data,
bytes calldata _signature)
external
view
returns (bytes4 magicValue);
/**
* @notice Verifies whether the provided signature is valid with respect to the provided hash
* @dev MUST return the correct magic value if the signature provided is valid for the provided hash
* > The bytes4 magic value to return when signature is valid is 0x20c13b0b : bytes4(keccak256("isValidSignature(bytes,bytes)")
* > This function MAY modify Ethereum's state
* @param _hash keccak256 hash that was signed
* @param _signature Signature byte array associated with _data
* @return magicValue Magic value 0x20c13b0b if the signature is valid and 0x0 otherwise
*/
function isValidSignature(
bytes32 _hash,
bytes calldata _signature)
external
view
returns (bytes4 magicValue);
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
interface IERC1155Receiver {
function onERC1155Received(address, address, uint256, uint256, bytes calldata) external returns (bytes4);
function onERC1155BatchReceived(address, address, uint256[] calldata, uint256[] calldata, bytes calldata) external returns (bytes4);
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
interface IERC223Receiver {
function tokenFallback(address, uint256, bytes calldata) external;
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
interface IERC721Receiver {
function onERC721Received(address, address, uint256, bytes calldata) external returns (bytes4);
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
/**
* @dev Allows modules to access the implementation slot
*/
contract Implementation {
/**
* @notice Updates the Wallet implementation
* @param _imp New implementation address
* @dev The wallet implementation is stored on the storage slot
* defined by the address of the wallet itself
* WARNING updating this value may break the wallet and users
* must be confident that the new implementation is safe.
*/
function _setImplementation(address _imp) internal {
assembly {
sstore(address(), _imp)
}
}
/**
* @notice Returns the Wallet implementation
* @return _imp The address of the current Wallet implementation
*/
function _getImplementation() internal view returns (address _imp) {
assembly {
_imp := sload(address())
}
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
abstract contract IModuleAuth {
// IMAGE_HASH_KEY = keccak256("org.arcadeum.module.auth.upgradable.image.hash");
bytes32 internal constant IMAGE_HASH_KEY = bytes32(0xea7157fa25e3aa17d0ae2d5280fa4e24d421c61842aa85e45194e1145aa72bf8);
event ImageHashUpdated(bytes32 newImageHash);
// Errors
error ImageHashIsZero();
error InvalidSignatureType(bytes1 _type);
function _signatureValidation(
bytes32 _digest,
bytes calldata _signature
) internal virtual view returns (
bool isValid,
bytes32 subdigest
);
function signatureRecovery(
bytes32 _digest,
bytes calldata _signature
) public virtual view returns (
uint256 threshold,
uint256 weight,
bytes32 imageHash,
bytes32 subdigest,
uint256 checkpoint
);
/**
* @notice Validates the signature image
* @return true if the signature image is valid
*/
function _isValidImage(bytes32) internal virtual view returns (bool) {
return false;
}
/**
* @notice Updates the signers configuration of the wallet
* @param _imageHash New required image hash of the signature
*/
function updateImageHash(bytes32 _imageHash) external virtual;
/**
* @notice Updates the signers configuration of the wallet
* @param _imageHash New required image hash of the signature
*/
function _updateImageHash(bytes32 _imageHash) internal virtual;
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
interface IModuleAuthUpgradable {
/**
* @notice Returns the current image hash of the wallet
*/
function imageHash() external view returns (bytes32);
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
interface IModuleCalls {
// Events
event TxFailed(bytes32 indexed _tx, uint256 _index, bytes _reason);
event TxExecuted(bytes32 indexed _tx, uint256 _index);
// Errors
error NotEnoughGas(uint256 _index, uint256 _requested, uint256 _available);
error InvalidSignature(bytes32 _hash, bytes _signature);
// Transaction structure
struct Transaction {
bool delegateCall; // Performs delegatecall
bool revertOnError; // Reverts transaction bundle if tx fails
uint256 gasLimit; // Maximum gas to be forwarded
address target; // Address of the contract to call
uint256 value; // Amount of ETH to pass with the call
bytes data; // calldata to pass
}
/**
* @notice Allow wallet owner to execute an action
* @param _txs Transactions to process
* @param _nonce Signature nonce (may contain an encoded space)
* @param _signature Encoded signature
*/
function execute(
Transaction[] calldata _txs,
uint256 _nonce,
bytes calldata _signature
) external;
/**
* @notice Allow wallet to execute an action
* without signing the message
* @param _txs Transactions to execute
*/
function selfExecute(
Transaction[] calldata _txs
) external;
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
interface IModuleCreator {
error CreateFailed(bytes _code);
/**
* @notice Creates a contract forwarding eth value
* @param _code Creation code of the contract
* @return addr The address of the created contract
*/
function createContract(bytes calldata _code) external payable returns (address addr);
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
interface IModuleHooks {
// Errors
error HookAlreadyExists(bytes4 _signature);
error HookDoesNotExist(bytes4 _signature);
// Events
event DefinedHook(bytes4 _signature, address _implementation);
/**
* @notice Reads the implementation hook of a signature
* @param _signature Signature function
* @return The address of the implementation hook, address(0) if none
*/
function readHook(bytes4 _signature) external view returns (address);
/**
* @notice Adds a new hook to handle a given function selector
* @param _signature Signature function linked to the hook
* @param _implementation Hook implementation contract
*/
function addHook(bytes4 _signature, address _implementation) external;
/**
* @notice Removes a registered hook
* @param _signature Signature function linked to the hook
*/
function removeHook(bytes4 _signature) external;
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
abstract contract IModuleUpdate {
// Errors
error InvalidImplementation(address _implementation);
/**
* @notice Updates the implementation of the base wallet
* @param _implementation New main module implementation
* @dev WARNING Updating the implementation can brick the wallet
*/
function updateImplementation(address _implementation) external virtual;
/**
* @notice Updates the implementation of the base wallet, used internally.
* @param _implementation New main module implementation
* @dev WARNING Updating the implementation can brick the wallet
*/
function _updateImplementation(address _implementation) internal virtual;
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "../../utils/LibBytes.sol";
import "../../interfaces/IERC1271Wallet.sol";
import "./interfaces/IModuleAuth.sol";
import "./ModuleERC165.sol";
import "./submodules/auth/SequenceBaseSig.sol";
import "./submodules/auth/SequenceDynamicSig.sol";
import "./submodules/auth/SequenceNoChainIdSig.sol";
import "./submodules/auth/SequenceChainedSig.sol";
abstract contract ModuleAuth is
IModuleAuth,
ModuleERC165,
IERC1271Wallet,
SequenceChainedSig
{
using LibBytes for bytes;
bytes1 internal constant LEGACY_TYPE = hex"00";
bytes1 internal constant DYNAMIC_TYPE = hex"01";
bytes1 internal constant NO_CHAIN_ID_TYPE = hex"02";
bytes1 internal constant CHAINED_TYPE = hex"03";
bytes4 internal constant SELECTOR_ERC1271_BYTES_BYTES = 0x20c13b0b;
bytes4 internal constant SELECTOR_ERC1271_BYTES32_BYTES = 0x1626ba7e;
/**
* @notice Recovers the threshold, weight, imageHash, subdigest, and checkpoint of a signature.
* @dev The signature must be prefixed with a type byte, which is used to determine the recovery method.
*
* @param _digest Digest of the signed data.
* @param _signature A Sequence signature.
*
* @return threshold The required number of signatures needed to consider the signature valid.
* @return weight The actual number of signatures collected in the signature.
* @return imageHash The imageHash of the configuration that signed the message.
* @return subdigest A modified version of the original digest, unique for each wallet/network.
* @return checkpoint A nonce that is incremented every time a new configuration is set.
*/
function signatureRecovery(
bytes32 _digest,
bytes calldata _signature
) public override virtual view returns (
uint256 threshold,
uint256 weight,
bytes32 imageHash,
bytes32 subdigest,
uint256 checkpoint
) {
bytes1 signatureType = _signature[0];
if (signatureType == LEGACY_TYPE) {
// networkId digest + base recover
subdigest = SequenceBaseSig.subdigest(_digest);
(threshold, weight, imageHash, checkpoint) = SequenceBaseSig.recover(subdigest, _signature);
return (threshold, weight, imageHash, subdigest, checkpoint);
}
if (signatureType == DYNAMIC_TYPE) {
// networkId digest + dynamic recover
subdigest = SequenceBaseSig.subdigest(_digest);
(threshold, weight, imageHash, checkpoint) = SequenceDynamicSig.recover(subdigest, _signature);
return (threshold, weight, imageHash, subdigest, checkpoint);
}
if (signatureType == NO_CHAIN_ID_TYPE) {
// noChainId digest + dynamic recover
subdigest = SequenceNoChainIdSig.subdigest(_digest);
(threshold, weight, imageHash, checkpoint) = SequenceDynamicSig.recover(subdigest, _signature);
return (threshold, weight, imageHash, subdigest, checkpoint);
}
if (signatureType == CHAINED_TYPE) {
// original digest + chained recover
// (subdigest will be computed in the chained recover)
return chainedRecover(_digest, _signature);
}
revert InvalidSignatureType(signatureType);
}
/**
* @dev Validates a signature.
*
* @param _digest Digest of the signed data.
* @param _signature A Sequence signature.
*
* @return isValid Indicates whether the signature is valid or not.
* @return subdigest A modified version of the original digest, unique for each wallet/network.
*/
function _signatureValidation(
bytes32 _digest,
bytes calldata _signature
) internal override virtual view returns (
bool isValid,
bytes32 subdigest
) {
uint256 threshold; uint256 weight; bytes32 imageHash;
(threshold, weight, imageHash, subdigest,) = signatureRecovery(_digest, _signature);
isValid = weight >= threshold && _isValidImage(imageHash);
}
/**
* @notice Verifies whether the provided signature is valid with respect to the provided data
* @dev MUST return the correct magic value if the signature provided is valid for the provided data
* > The bytes4 magic value to return when signature is valid is 0x20c13b0b : bytes4(keccak256("isValidSignature(bytes,bytes)"))
* @param _data Arbitrary length data signed on the behalf of address(this)
* @param _signatures Signature byte array associated with _data.
* Encoded as abi.encode(Signature[], Configs)
* @return magicValue Magic value 0x20c13b0b if the signature is valid and 0x0 otherwise
*/
function isValidSignature(
bytes calldata _data,
bytes calldata _signatures
) public override virtual view returns (bytes4) {
// Validate signatures
(bool isValid,) = _signatureValidation(keccak256(_data), _signatures);
if (isValid) {
return SELECTOR_ERC1271_BYTES_BYTES;
}
return bytes4(0);
}
/**
* @notice Verifies whether the provided signature is valid with respect to the provided hash
* @dev MUST return the correct magic value if the signature provided is valid for the provided hash
* > The bytes4 magic value to return when signature is valid is 0x1626ba7e : bytes4(keccak256("isValidSignature(bytes32,bytes)"))
* @param _hash keccak256 hash that was signed
* @param _signatures Signature byte array associated with _data.
* Encoded as abi.encode(Signature[], Configs)
* @return magicValue Magic value 0x1626ba7e if the signature is valid and 0x0 otherwise
*/
function isValidSignature(
bytes32 _hash,
bytes calldata _signatures
) public override virtual view returns (bytes4) {
// Validate signatures
(bool isValid,) = _signatureValidation(_hash, _signatures);
if (isValid) {
return SELECTOR_ERC1271_BYTES32_BYTES;
}
return bytes4(0);
}
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(bytes4 _interfaceID) public override virtual pure returns (bool) {
if (
_interfaceID == type(IModuleAuth).interfaceId ||
_interfaceID == type(IERC1271Wallet).interfaceId
) {
return true;
}
return super.supportsInterface(_interfaceID);
}
/**
* @notice Updates the signers configuration of the wallet
* @param _imageHash New required image hash of the signature
*/
function updateImageHash(bytes32 _imageHash) external override virtual onlySelf {
_updateImageHash(_imageHash);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./ModuleSelfAuth.sol";
import "./ModuleAuth.sol";
import "./ModuleIPFS.sol";
import "./ModuleERC165.sol";
import "../../utils/LibString.sol";
abstract contract ModuleAuthConvenience is ModuleERC165, ModuleSelfAuth, ModuleAuth, ModuleIPFS {
/**
* @notice Updates the image hash and the IPFS root in a single operation.
* @dev These two operations are often performed together, so this function
* allows to save some gas by performing them in a single step.
*
* @param _imageHash The new image hash to be set.
* @param _ipfsRoot The new IPFS root to be set.
*/
function updateImageHashAndIPFS(
bytes32 _imageHash,
bytes32 _ipfsRoot
) external onlySelf {
_updateImageHash(_imageHash);
_updateIPFSRoot(_ipfsRoot);
}
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(bytes4 _interfaceID) public override (
ModuleERC165,
ModuleAuth
) virtual pure returns (bool) {
if (_interfaceID == type(ModuleAuthConvenience).interfaceId) {
return true;
}
return super.supportsInterface(_interfaceID);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./interfaces/IModuleAuthUpgradable.sol";
import "./ModuleSelfAuth.sol";
import "./ModuleAuth.sol";
import "./ModuleStorage.sol";
abstract contract ModuleAuthUpgradable is IModuleAuthUpgradable, ModuleSelfAuth, ModuleAuth {
/**
* @notice Updates the signers configuration of the wallet
* @param _imageHash New required image hash of the signature
*/
function _updateImageHash(bytes32 _imageHash) internal override virtual {
if (_imageHash == bytes32(0)) revert ImageHashIsZero();
ModuleStorage.writeBytes32(IMAGE_HASH_KEY, _imageHash);
emit ImageHashUpdated(_imageHash);
}
/**
* @notice Returns the current image hash of the wallet
*/
function imageHash() external override virtual view returns (bytes32) {
return ModuleStorage.readBytes32(IMAGE_HASH_KEY);
}
/**
* @notice Validates the signature image with a valid image hash defined
* in the contract storage
* @param _imageHash Hash image of signature
* @return true if the signature image is valid
*/
function _isValidImage(bytes32 _imageHash) internal override virtual view returns (bool) {
return _imageHash != bytes32(0) && _imageHash == ModuleStorage.readBytes32(IMAGE_HASH_KEY);
}
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(bytes4 _interfaceID) public override virtual pure returns (bool) {
if (_interfaceID == type(IModuleAuthUpgradable).interfaceId) {
return true;
}
return super.supportsInterface(_interfaceID);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./ModuleSelfAuth.sol";
import "./ModuleStorage.sol";
import "./ModuleERC165.sol";
import "./ModuleNonce.sol";
import "./ModuleOnlyDelegatecall.sol";
import "./interfaces/IModuleCalls.sol";
import "./interfaces/IModuleAuth.sol";
import "./submodules/nonce/SubModuleNonce.sol";
import "./submodules/auth/SequenceBaseSig.sol";
import "../../utils/LibOptim.sol";
abstract contract ModuleCalls is IModuleCalls, IModuleAuth, ModuleERC165, ModuleOnlyDelegatecall, ModuleSelfAuth, ModuleNonce {
/**
* @notice Allow wallet owner to execute an action
* @dev Relayers must ensure that the gasLimit specified for each transaction
* is acceptable to them. A user could specify large enough that it could
* consume all the gas available.
* @param _txs Transactions to process
* @param _nonce Signature nonce (may contain an encoded space)
* @param _signature Encoded signature
*/
function execute(
Transaction[] calldata _txs,
uint256 _nonce,
bytes calldata _signature
) external override virtual onlyDelegatecall {
// Validate and update nonce
_validateNonce(_nonce);
// Hash and verify transaction bundle
(bool isValid, bytes32 txHash) = _signatureValidation(
keccak256(
abi.encode(
_nonce,
_txs
)
),
_signature
);
if (!isValid) {
revert InvalidSignature(txHash, _signature);
}
// Execute the transactions
_execute(txHash, _txs);
}
/**
* @notice Allow wallet to execute an action
* without signing the message
* @param _txs Transactions to execute
*/
function selfExecute(
Transaction[] calldata _txs
) external override virtual onlySelf {
// Hash transaction bundle
bytes32 txHash = SequenceBaseSig.subdigest(
keccak256(
abi.encode('self:', _txs)
)
);
// Execute the transactions
_execute(txHash, _txs);
}
/**
* @notice Executes a list of transactions
* @param _txHash Hash of the batch of transactions
* @param _txs Transactions to execute
*/
function _execute(
bytes32 _txHash,
Transaction[] calldata _txs
) private {
unchecked {
// Execute transaction
uint256 size = _txs.length;
for (uint256 i = 0; i < size; i++) {
Transaction calldata transaction = _txs[i];
uint256 gasLimit = transaction.gasLimit;
if (gasleft() < gasLimit) revert NotEnoughGas(i, gasLimit, gasleft());
bool success;
if (transaction.delegateCall) {
success = LibOptim.delegatecall(
transaction.target,
gasLimit == 0 ? gasleft() : gasLimit,
transaction.data
);
} else {
success = LibOptim.call(
transaction.target,
transaction.value,
gasLimit == 0 ? gasleft() : gasLimit,
transaction.data
);
}
if (success) {
emit TxExecuted(_txHash, i);
} else {
// Avoid copy of return data until neccesary
_revertBytes(
transaction.revertOnError,
_txHash,
i,
LibOptim.returnData()
);
}
}
}
}
/**
* @notice Logs a failed transaction, reverts if the transaction is not optional
* @param _revertOnError Signals if it should revert or just log
* @param _txHash Hash of the transaction
* @param _index Index of the transaction in the batch
* @param _reason Encoded revert message
*/
function _revertBytes(
bool _revertOnError,
bytes32 _txHash,
uint256 _index,
bytes memory _reason
) internal {
if (_revertOnError) {
assembly { revert(add(_reason, 0x20), mload(_reason)) }
} else {
emit TxFailed(_txHash, _index, _reason);
}
}
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(bytes4 _interfaceID) public override virtual pure returns (bool) {
if (_interfaceID == type(IModuleCalls).interfaceId) {
return true;
}
return super.supportsInterface(_interfaceID);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./interfaces/IModuleCreator.sol";
import "./ModuleSelfAuth.sol";
import "./ModuleERC165.sol";
contract ModuleCreator is IModuleCreator, ModuleERC165, ModuleSelfAuth {
event CreatedContract(address _contract);
/**
* @notice Creates a contract forwarding eth value
* @param _code Creation code of the contract
* @return addr The address of the created contract
*/
function createContract(bytes memory _code) public override virtual payable onlySelf returns (address addr) {
assembly { addr := create(callvalue(), add(_code, 32), mload(_code)) }
if (addr == address(0)) revert CreateFailed(_code);
emit CreatedContract(addr);
}
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(bytes4 _interfaceID) public override virtual pure returns (bool) {
if (_interfaceID == type(IModuleCreator).interfaceId) {
return true;
}
return super.supportsInterface(_interfaceID);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
abstract contract ModuleERC165 {
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @dev Adding new hooks will not lead to them being reported by this function
* without upgrading the wallet. In addition, developers must ensure that
* all inherited contracts by the main module don't conflict and are accounted
* to be supported by the supportsInterface method.
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(bytes4 _interfaceID) virtual public pure returns (bool) {
return _interfaceID == this.supportsInterface.selector;
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./ModuleAuth.sol";
import "./ModuleStorage.sol";
import "./ModuleSelfAuth.sol";
import "./ModuleERC165.sol";
abstract contract ModuleExtraAuth is ModuleERC165, ModuleSelfAuth, ModuleAuth {
// EXTRA_IMAGE_HASH_KEY = keccak256("org.sequence.module.static.auth.extra.image.hash");
bytes32 private constant EXTRA_IMAGE_HASH_KEY = bytes32(0x849e7bdc245db17e50b9f43086f1914d70eb4dab6dd89af4d541d53353ad97de);
event SetExtraImageHash(bytes32 indexed _imageHash, uint256 _expiration);
function _writeExpirationForImageHash(bytes32 _imageHash, uint256 _expiration) internal {
ModuleStorage.writeBytes32Map(EXTRA_IMAGE_HASH_KEY, _imageHash, bytes32(_expiration));
}
function _readExpirationForImageHash(bytes32 _imageHash) internal view returns (uint256 _expiration) {
return uint256(ModuleStorage.readBytes32Map(EXTRA_IMAGE_HASH_KEY, _imageHash));
}
function _isValidImage(bytes32 _imageHash) internal override virtual view returns (bool) {
if (super._isValidImage(_imageHash)) {
return true;
}
uint256 expiration = _readExpirationForImageHash(_imageHash);
// solhint-disable-next-line not-rely-on-time
return expiration != 0 && expiration > block.timestamp;
}
function extraImageHash(bytes32 _imageHash) public view returns (uint256) {
return _readExpirationForImageHash(_imageHash);
}
function setExtraImageHash(bytes32 _imageHash, uint256 _expiration) external onlySelf {
_writeExpirationForImageHash(_imageHash, _expiration);
emit SetExtraImageHash(_imageHash, _expiration);
}
function clearExtraImageHashes(bytes32[] calldata _imageHashes) external onlySelf {
unchecked {
uint256 imageHashesLength = _imageHashes.length;
for (uint256 i = 0; i < imageHashesLength; i++) {
bytes32 imageHash = _imageHashes[i];
_writeExpirationForImageHash(imageHash, 0);
emit SetExtraImageHash(imageHash, 0);
}
}
}
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(bytes4 _interfaceID) public override (
ModuleERC165,
ModuleAuth
) virtual pure returns (bool) {
if (_interfaceID == type(ModuleExtraAuth).interfaceId) {
return true;
}
return super.supportsInterface(_interfaceID);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./interfaces/IModuleHooks.sol";
import "./ModuleSelfAuth.sol";
import "./ModuleStorage.sol";
import "./ModuleERC165.sol";
import "../../interfaces/receivers/IERC1155Receiver.sol";
import "../../interfaces/receivers/IERC721Receiver.sol";
import "../../interfaces/receivers/IERC223Receiver.sol";
contract ModuleHooks is IERC1155Receiver, IERC721Receiver, IModuleHooks, ModuleERC165, ModuleSelfAuth {
// HOOKS_KEY = keccak256("org.arcadeum.module.hooks.hooks");
bytes32 private constant HOOKS_KEY = bytes32(0xbe27a319efc8734e89e26ba4bc95f5c788584163b959f03fa04e2d7ab4b9a120);
/**
* @notice Reads the implementation hook of a signature
* @param _signature Signature function
* @return The address of the implementation hook, address(0) if none
*/
function readHook(bytes4 _signature) external override virtual view returns (address) {
return _readHook(_signature);
}
/**
* @notice Adds a new hook to handle a given function selector
* @param _signature Signature function linked to the hook
* @param _implementation Hook implementation contract
* @dev Can't overwrite hooks that are part of the main module (those defined below)
*/
function addHook(bytes4 _signature, address _implementation) external override virtual onlySelf {
if (_readHook(_signature) != address(0)) revert HookAlreadyExists(_signature);
_writeHook(_signature, _implementation);
}
/**
* @notice Removes a registered hook
* @param _signature Signature function linked to the hook
* @dev Can't remove hooks that are part of the main module (those defined below)
* without upgrading the wallet
*/
function removeHook(bytes4 _signature) external override virtual onlySelf {
if (_readHook(_signature) == address(0)) revert HookDoesNotExist(_signature);
_writeHook(_signature, address(0));
}
/**
* @notice Reads the implementation hook of a signature
* @param _signature Signature function
* @return The address of the implementation hook, address(0) if none
*/
function _readHook(bytes4 _signature) private view returns (address) {
return address(uint160(uint256(ModuleStorage.readBytes32Map(HOOKS_KEY, _signature))));
}
/**
* @notice Writes the implementation hook of a signature
* @param _signature Signature function
* @param _implementation Hook implementation contract
*/
function _writeHook(bytes4 _signature, address _implementation) private {
ModuleStorage.writeBytes32Map(HOOKS_KEY, _signature, bytes32(uint256(uint160(_implementation))));
emit DefinedHook(_signature, _implementation);
}
/**
* @notice Handle the receipt of a single ERC1155 token type.
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
*/
function onERC1155Received(
address,
address,
uint256,
uint256,
bytes calldata
) external override virtual returns (bytes4) {
return ModuleHooks.onERC1155Received.selector;
}
/**
* @notice Handle the receipt of multiple ERC1155 token types.
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
*/
function onERC1155BatchReceived(
address,
address,
uint256[] calldata,
uint256[] calldata,
bytes calldata
) external override virtual returns (bytes4) {
return ModuleHooks.onERC1155BatchReceived.selector;
}
/**
* @notice Handle the receipt of a single ERC721 token.
* @return `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
*/
function onERC721Received(address, address, uint256, bytes calldata) external override virtual returns (bytes4) {
return ModuleHooks.onERC721Received.selector;
}
/**
* @notice Routes fallback calls through hooks
*/
fallback() external payable {
if (msg.data.length >= 4) {
address target = _readHook(msg.sig);
if (target != address(0)) {
(bool success, bytes memory result) = target.delegatecall(msg.data);
assembly {
if iszero(success) {
revert(add(result, 0x20), mload(result))
}
return(add(result, 0x20), mload(result))
}
}
}
}
/**
* @notice Allows the wallet to receive ETH
*/
receive() external payable { }
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(bytes4 _interfaceID) public override virtual pure returns (bool) {
if (
_interfaceID == type(IModuleHooks).interfaceId ||
_interfaceID == type(IERC1155Receiver).interfaceId ||
_interfaceID == type(IERC721Receiver).interfaceId ||
_interfaceID == type(IERC223Receiver).interfaceId
) {
return true;
}
return super.supportsInterface(_interfaceID);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./ModuleSelfAuth.sol";
import "./ModuleStorage.sol";
import "../../utils/LibString.sol";
contract ModuleIPFS is ModuleSelfAuth {
event IPFSRootUpdated(bytes32 _hash);
// IPFS_ROOT_KEY = keccak256("sequence.ipfs.root")
bytes32 private constant IPFS_ROOT_KEY = bytes32(0x0eecac93ced8722d209199364cda3bc33da3bc3a23daef6be49ebd780511d033);
function ipfsRootBytes32() public view returns (bytes32) {
return ModuleStorage.readBytes32(IPFS_ROOT_KEY);
}
function ipfsRoot() public view returns (string memory) {
return string(
abi.encodePacked(
"ipfs://",
LibString.prefixBase32(
LibString.bytesToBase32(
abi.encodePacked(
hex'01701220',
ipfsRootBytes32()
)
)
)
)
);
}
function updateIPFSRoot(bytes32 _hash) external onlySelf {
_updateIPFSRoot(_hash);
}
function _updateIPFSRoot(bytes32 _hash) internal {
ModuleStorage.writeBytes32(IPFS_ROOT_KEY, _hash);
emit IPFSRootUpdated(_hash);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./ModuleStorage.sol";
import "./submodules/nonce/SubModuleNonce.sol";
contract ModuleNonce {
// Events
event NonceChange(uint256 _space, uint256 _newNonce);
// Errors
error BadNonce(uint256 _space, uint256 _provided, uint256 _current);
// NONCE_KEY = keccak256("org.arcadeum.module.calls.nonce");
bytes32 private constant NONCE_KEY = bytes32(0x8d0bf1fd623d628c741362c1289948e57b3e2905218c676d3e69abee36d6ae2e);
/**
* @notice Returns the next nonce of the default nonce space
* @dev The default nonce space is 0x00
* @return The next nonce
*/
function nonce() external virtual view returns (uint256) {
return readNonce(0);
}
/**
* @notice Returns the next nonce of the given nonce space
* @param _space Nonce space, each space keeps an independent nonce count
* @return The next nonce
*/
function readNonce(uint256 _space) public virtual view returns (uint256) {
return uint256(ModuleStorage.readBytes32Map(NONCE_KEY, bytes32(_space)));
}
/**
* @notice Changes the next nonce of the given nonce space
* @param _space Nonce space, each space keeps an independent nonce count
* @param _nonce Nonce to write on the space
*/
function _writeNonce(uint256 _space, uint256 _nonce) internal {
ModuleStorage.writeBytes32Map(NONCE_KEY, bytes32(_space), bytes32(_nonce));
}
/**
* @notice Verify if a nonce is valid
* @param _rawNonce Nonce to validate (may contain an encoded space)
*/
function _validateNonce(uint256 _rawNonce) internal virtual {
// Retrieve current nonce for this wallet
(uint256 space, uint256 providedNonce) = SubModuleNonce.decodeNonce(_rawNonce);
uint256 currentNonce = readNonce(space);
if (currentNonce != providedNonce) {
revert BadNonce(space, providedNonce, currentNonce);
}
unchecked {
uint256 newNonce = providedNonce + 1;
_writeNonce(space, newNonce);
emit NonceChange(space, newNonce);
return;
}
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
contract ModuleOnlyDelegatecall {
address private immutable self;
error OnlyDelegatecall();
constructor() {
self = address(this);
}
/**
* @notice Modifier that only allows functions to be called via delegatecall.
*/
modifier onlyDelegatecall() {
if (address(this) == self) {
revert OnlyDelegatecall();
}
_;
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
contract ModuleSelfAuth {
error OnlySelfAuth(address _sender, address _self);
modifier onlySelf() {
if (msg.sender != address(this)) {
revert OnlySelfAuth(msg.sender, address(this));
}
_;
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
library ModuleStorage {
function writeBytes32(bytes32 _key, bytes32 _val) internal {
assembly { sstore(_key, _val) }
}
function readBytes32(bytes32 _key) internal view returns (bytes32 val) {
assembly { val := sload(_key) }
}
function writeBytes32Map(bytes32 _key, bytes32 _subKey, bytes32 _val) internal {
bytes32 key = keccak256(abi.encode(_key, _subKey));
assembly { sstore(key, _val) }
}
function readBytes32Map(bytes32 _key, bytes32 _subKey) internal view returns (bytes32 val) {
bytes32 key = keccak256(abi.encode(_key, _subKey));
assembly { val := sload(key) }
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./interfaces/IModuleUpdate.sol";
import "./Implementation.sol";
import "./ModuleSelfAuth.sol";
import "./ModuleERC165.sol";
import "../../utils/LibAddress.sol";
contract ModuleUpdate is IModuleUpdate, ModuleERC165, ModuleSelfAuth, Implementation {
using LibAddress for address;
event ImplementationUpdated(address newImplementation);
/**
* @notice Updates the implementation of the base wallet
* @param _implementation New main module implementation
* @dev WARNING Updating the implementation can brick the wallet
*/
function updateImplementation(address _implementation) external override virtual onlySelf {
_updateImplementation(_implementation);
}
/**
* @notice Updates the implementation of the base wallet, used internally.
* @param _implementation New main module implementation
* @dev WARNING Updating the implementation can brick the wallet
*/
function _updateImplementation(address _implementation) internal override virtual {
if (!_implementation.isContract()) revert InvalidImplementation(_implementation);
_setImplementation(_implementation);
emit ImplementationUpdated(_implementation);
}
/**
* @notice Query if a contract implements an interface
* @param _interfaceID The interface identifier, as specified in ERC-165
* @return `true` if the contract implements `_interfaceID`
*/
function supportsInterface(bytes4 _interfaceID) public override virtual pure returns (bool) {
if (_interfaceID == type(IModuleUpdate).interfaceId) {
return true;
}
return super.supportsInterface(_interfaceID);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "../../../../utils/SignatureValidator.sol";
import "../../../../utils/LibBytesPointer.sol";
import "../../../../utils/LibBytes.sol";
import "../../../../utils/LibOptim.sol";
/**
* @title SequenceBaseSig Library
* @author Agustin Aguilar (aa@horizon.io)
* @notice A Solidity implementation for handling signatures in the Sequence protocol.
*/
library SequenceBaseSig {
using LibBytesPointer for bytes;
uint256 private constant FLAG_SIGNATURE = 0;
uint256 private constant FLAG_ADDRESS = 1;
uint256 private constant FLAG_DYNAMIC_SIGNATURE = 2;
uint256 private constant FLAG_NODE = 3;
uint256 private constant FLAG_BRANCH = 4;
uint256 private constant FLAG_SUBDIGEST = 5;
uint256 private constant FLAG_NESTED = 6;
error InvalidNestedSignature(bytes32 _hash, address _addr, bytes _signature);
error InvalidSignatureFlag(uint256 _flag);
/**
* @notice Generates a subdigest for the input digest (unique for this wallet and network).
* @param _digest The input digest to generate the subdigest from.
* @return bytes32 The subdigest generated from the input digest.
*/
function subdigest(
bytes32 _digest
) internal view returns (bytes32) {
return keccak256(
abi.encodePacked(
"\x19\x01",
block.chainid,
address(this),
_digest
)
);
}
/**
* @notice Generates the leaf for an address and weight.
* @dev The leaf is generated by concatenating the address and weight.
*
* @param _addr The address to generate the leaf for.
* @param _weight The weight to generate the leaf for.
* @return bytes32 The leaf generated from the address and weight.
*/
function _leafForAddressAndWeight(
address _addr,
uint96 _weight
) internal pure returns (bytes32) {
unchecked {
return bytes32(uint256(_weight) << 160 | uint256(uint160(_addr)));
}
}
/**
* @notice Generates the leaf for a hardcoded subdigest.
* @dev The leaf is generated by hashing 'Sequence static digest:\n' and the subdigest.
* @param _subdigest The subdigest to generate the leaf for.
* @return bytes32 The leaf generated from the hardcoded subdigest.
*/
function _leafForHardcodedSubdigest(
bytes32 _subdigest
) internal pure returns (bytes32) {
return keccak256(abi.encodePacked('Sequence static digest:\n', _subdigest));
}
/**
* @notice Generates the leaf for a nested tree node.
* @dev The leaf is generated by hashing 'Sequence nested config:\n', the node, the threshold and the weight.
*
* @param _node The root of the node to generate the leaf for.
* @param _threshold The internal threshold of the tree.
* @param _weight The external weight of the tree.
* @return bytes32 The leaf generated from the nested tree.
*/
function _leafForNested(
bytes32 _node,
uint256 _threshold,
uint256 _weight
) internal pure returns (bytes32) {
return keccak256(abi.encodePacked('Sequence nested config:\n', _node, _threshold, _weight));
}
/**
* @notice Returns the weight and root of a signature branch.
* @dev If the signature contains a hardcoded subdigest, and it matches the input digest, then the weight is set to 2 ** 256 - 1.
*
* @param _subdigest The digest to verify the signature against.
* @param _signature The signature branch to recover.
* @return weight The total weight of the recovered signatures.
* @return root The root hash of the recovered configuration.
*/
function recoverBranch(
bytes32 _subdigest,
bytes calldata _signature
) internal view returns (
uint256 weight,
bytes32 root
) {
unchecked {
uint256 rindex;
// Iterate until the image is completed
while (rindex < _signature.length) {
// Read next item type
uint256 flag;
(flag, rindex) = _signature.readUint8(rindex);
if (flag == FLAG_ADDRESS) {
// Read plain address
uint8 addrWeight; address addr;
(addrWeight, addr, rindex) = _signature.readUint8Address(rindex);
// Write weight and address to image
bytes32 node = _leafForAddressAndWeight(addr, addrWeight);
root = root != bytes32(0) ? LibOptim.fkeccak256(root, node) : node;
continue;
}
if (flag == FLAG_SIGNATURE) {
// Read weight
uint8 addrWeight;
(addrWeight, rindex) = _signature.readUint8(rindex);
// Read single signature and recover signer
uint256 nrindex = rindex + 66;
address addr = SignatureValidator.recoverSigner(_subdigest, _signature[rindex:nrindex]);
rindex = nrindex;
// Acumulate total weight of the signature
weight += addrWeight;
// Write weight and address to image
bytes32 node = _leafForAddressAndWeight(addr, addrWeight);
root = root != bytes32(0) ? LibOptim.fkeccak256(root, node) : node;
continue;
}
if (flag == FLAG_DYNAMIC_SIGNATURE) {
// Read signer and weight
uint8 addrWeight; address addr;
(addrWeight, addr, rindex) = _signature.readUint8Address(rindex);
// Read signature size
uint256 size;
(size, rindex) = _signature.readUint24(rindex);
// Read dynamic size signature
uint256 nrindex = rindex + size;
if (!SignatureValidator.isValidSignature(_subdigest, addr, _signature[rindex:nrindex])) {
revert InvalidNestedSignature(_subdigest, addr, _signature[rindex:nrindex]);
}
rindex = nrindex;
// Acumulate total weight of the signature
weight += addrWeight;
// Write weight and address to image
bytes32 node = _leafForAddressAndWeight(addr, addrWeight);
root = root != bytes32(0) ? LibOptim.fkeccak256(root, node) : node;
continue;
}
if (flag == FLAG_NODE) {
// Read node hash
bytes32 node;
(node, rindex) = _signature.readBytes32(rindex);
root = root != bytes32(0) ? LibOptim.fkeccak256(root, node) : node;
continue;
}
if (flag == FLAG_BRANCH) {
// Enter a branch of the signature merkle tree
uint256 size;
(size, rindex) = _signature.readUint24(rindex);
uint256 nrindex = rindex + size;
uint256 nweight; bytes32 node;
(nweight, node) = recoverBranch(_subdigest, _signature[rindex:nrindex]);
weight += nweight;
root = LibOptim.fkeccak256(root, node);
rindex = nrindex;
continue;
}
if (flag == FLAG_NESTED) {
// Enter a branch of the signature merkle tree
// but with an internal threshold and an external fixed weight
uint256 externalWeight;
(externalWeight, rindex) = _signature.readUint8(rindex);
uint256 internalThreshold;
(internalThreshold, rindex) = _signature.readUint16(rindex);
uint256 size;
(size, rindex) = _signature.readUint24(rindex);
uint256 nrindex = rindex + size;
uint256 internalWeight; bytes32 internalRoot;
(internalWeight, internalRoot) = recoverBranch(_subdigest, _signature[rindex:nrindex]);
rindex = nrindex;
if (internalWeight >= internalThreshold) {
weight += externalWeight;
}
bytes32 node = _leafForNested(internalRoot, internalThreshold, externalWeight);
root = root != bytes32(0) ? LibOptim.fkeccak256(root, node) : node;
continue;
}
if (flag == FLAG_SUBDIGEST) {
// A hardcoded always accepted digest
// it pushes the weight to the maximum
bytes32 hardcoded;
(hardcoded, rindex) = _signature.readBytes32(rindex);
if (hardcoded == _subdigest) {
weight = type(uint256).max;
}
bytes32 node = _leafForHardcodedSubdigest(hardcoded);
root = root != bytes32(0) ? LibOptim.fkeccak256(root, node) : node;
continue;
}
revert InvalidSignatureFlag(flag);
}
}
}
/**
* @notice Returns the threshold, weight, root, and checkpoint of a signature.
* @dev To verify the signature, the weight must be greater than or equal to the threshold, and the root
* must match the expected `imageHash` of the wallet.
*
* @param _subdigest The digest to verify the signature against.
* @param _signature The signature to recover.
* @return threshold The minimum weight required for the signature to be valid.
* @return weight The total weight of the recovered signatures.
* @return imageHash The root hash of the recovered configuration
* @return checkpoint The checkpoint of the signature.
*/
function recover(
bytes32 _subdigest,
bytes calldata _signature
) internal view returns (
uint256 threshold,
uint256 weight,
bytes32 imageHash,
uint256 checkpoint
) {
unchecked {
(weight, imageHash) = recoverBranch(_subdigest, _signature[6:]);
// Threshold & checkpoint are the top nodes
// (but they are first on the signature)
threshold = LibBytes.readFirstUint16(_signature);
checkpoint = LibBytes.readUint32(_signature, 2);
imageHash = LibOptim.fkeccak256(imageHash, bytes32(threshold));
imageHash = LibOptim.fkeccak256(imageHash, bytes32(checkpoint));
}
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./SequenceBaseSig.sol";
import "../../interfaces/IModuleAuth.sol";
import "../../ModuleSelfAuth.sol";
import "../../ModuleStorage.sol";
import "../../../../utils/LibBytesPointer.sol";
import "../../../../utils/LibOptim.sol";
/**
* @title Sequence chained auth recovery submodule
* @author Agustin Aguilar (aa@horizon.io)
* @notice Defines Sequence signatures that work by delegating control to new configurations.
* @dev The delegations can be chained together, the first signature is the one that is used to validate
* the message, the last signature must match the current on-chain configuration of the wallet.
*/
abstract contract SequenceChainedSig is IModuleAuth, ModuleSelfAuth {
using LibBytesPointer for bytes;
bytes32 public constant SET_IMAGE_HASH_TYPE_HASH = keccak256("SetImageHash(bytes32 imageHash)");
error LowWeightChainedSignature(bytes _signature, uint256 threshold, uint256 _weight);
error WrongChainedCheckpointOrder(uint256 _current, uint256 _prev);
/**
* @notice Defined the special token that must be signed to delegate control to a new configuration.
* @param _imageHash The hash of the new configuration.
* @return bytes32 The message hash to be signed.
*/
function _hashSetImageHashStruct(bytes32 _imageHash) internal pure returns (bytes32) {
return LibOptim.fkeccak256(SET_IMAGE_HASH_TYPE_HASH, _imageHash);
}
/**
* @notice Returns the threshold, weight, root, and checkpoint of a (chained) signature.
*
* @dev This method return the `threshold`, `weight` and `imageHash` of the last signature in the chain.
* Intermediate signatures are validated directly in this method. The `subdigest` is the one of the
* first signature in the chain (since that's the one that is used to validate the message).
*
* @param _digest The digest to recover the signature from.
* @param _signature The signature to recover.
* @return threshold The threshold of the (last) signature.
* @return weight The weight of the (last) signature.
* @return imageHash The image hash of the (last) signature.
* @return subdigest The subdigest of the (first) signature in the chain.
* @return checkpoint The checkpoint of the (last) signature.
*/
function chainedRecover(
bytes32 _digest,
bytes calldata _signature
) internal view returns (
uint256 threshold,
uint256 weight,
bytes32 imageHash,
bytes32 subdigest,
uint256 checkpoint
) {
uint256 rindex = 1;
uint256 sigSize;
//
// First signature out of the loop
//
// First uint24 is the size of the signature
(sigSize, rindex) = _signature.readUint24(rindex);
uint256 nrindex = sigSize + rindex;
(
threshold,
weight,
imageHash,
subdigest,
checkpoint
) = signatureRecovery(
_digest,
_signature[rindex:nrindex]
);
if (weight < threshold) {
revert LowWeightChainedSignature(_signature[rindex:nrindex], threshold, weight);
}
rindex = nrindex;
// The following signatures are handled by this loop.
// This is done this way because the first signature does not have a
// checkpoint to be validated against.
while (rindex < _signature.length) {
// First uint24 is the size of the signature
(sigSize, rindex) = _signature.readUint24(rindex);
nrindex = sigSize + rindex;
uint256 nextCheckpoint;
(
threshold,
weight,
imageHash,,
// Do not change the subdigest;
// it should remain that of the first signature.
nextCheckpoint
) = signatureRecovery(
_hashSetImageHashStruct(imageHash),
_signature[rindex:nrindex]
);
// Validate signature
if (weight < threshold) {
revert LowWeightChainedSignature(_signature[rindex:nrindex], threshold, weight);
}
// Checkpoints must be provided in descending order
// since the first signature is the one that is used to validate the message
// and the last signature is the one that is used to validate the current configuration
if (nextCheckpoint >= checkpoint) {
revert WrongChainedCheckpointOrder(nextCheckpoint, checkpoint);
}
checkpoint = nextCheckpoint;
rindex = nrindex;
}
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "./SequenceBaseSig.sol";
library SequenceDynamicSig {
/**
* @notice Recover a "dynamically encoded" Sequence signature.
* @dev The Signature is stripped of the first byte, which is the encoding flag.
*
* @param _subdigest The digest of the signature.
* @param _signature The Sequence signature.
* @return threshold The threshold weight required to validate the signature.
* @return weight The weight of the signature.
* @return imageHash The hash of the recovered configuration.
* @return checkpoint The checkpoint of the configuration.
*/
function recover(
bytes32 _subdigest,
bytes calldata _signature
) internal view returns (
uint256 threshold,
uint256 weight,
bytes32 imageHash,
uint256 checkpoint
) {
return SequenceBaseSig.recover(_subdigest, _signature[1:]);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
library SequenceNoChainIdSig {
/**
* @notice Computes a subdigest for a Sequence signature that works on all chains.
* @dev The subdigest is computed by removing the chain ID from the digest (using 0 instead).
* @param _digest The digest of the chain of signatures.
* @return bytes32 The subdigest with no chain ID.
*/
function subdigest(bytes32 _digest) internal view returns (bytes32) {
return keccak256(
abi.encodePacked(
"\x19\x01",
uint256(0),
address(this),
_digest
)
);
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
library SubModuleNonce {
// Nonce schema
//
// - space[160]:nonce[96]
//
uint256 internal constant NONCE_BITS = 96;
bytes32 internal constant NONCE_MASK = bytes32(uint256(type(uint96).max));
/**
* @notice Decodes a raw nonce
* @dev Schema: space[160]:type[96]
* @param _rawNonce Nonce to be decoded
* @return _space The nonce space of the raw nonce
* @return _nonce The nonce of the raw nonce
*/
function decodeNonce(uint256 _rawNonce) internal pure returns (
uint256 _space,
uint256 _nonce
) {
unchecked {
// Decode nonce
_space = _rawNonce >> NONCE_BITS;
_nonce = uint256(bytes32(_rawNonce) & NONCE_MASK);
}
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
library LibAddress {
/**
* @notice Will return true if provided address is a contract
* @param account Address to verify if contract or not
* @dev This contract will return false if called within the constructor of
* a contract's deployment, as the code is not yet stored on-chain.
*/
function isContract(address account) internal view returns (bool) {
uint256 csize;
// solhint-disable-next-line no-inline-assembly
assembly { csize := extcodesize(account) }
return csize != 0;
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
/**
* @title Library for reading data from bytes arrays
* @author Agustin Aguilar (aa@horizon.io)
* @notice This library contains functions for reading data from bytes arrays.
*
* @dev These functions do not check if the input index is within the bounds of the data array.
* Reading out of bounds may return dirty values.
*/
library LibBytes {
/**
* @notice Returns the bytes32 value at the given index in the input data.
* @param data The input data.
* @param index The index of the value to retrieve.
* @return a The bytes32 value at the given index.
*/
function readBytes32(
bytes calldata data,
uint256 index
) internal pure returns (
bytes32 a
) {
assembly {
a := calldataload(add(data.offset, index))
}
}
/**
* @notice Returns the uint8 value at the given index in the input data.
* @param data The input data.
* @param index The index of the value to retrieve.
* @return a The uint8 value at the given index.
*/
function readUint8(
bytes calldata data,
uint256 index
) internal pure returns (
uint8 a
) {
assembly {
let word := calldataload(add(index, data.offset))
a := shr(248, word)
}
}
/**
* @notice Returns the first uint16 value in the input data.
* @param data The input data.
* @return a The first uint16 value in the input data.
*/
function readFirstUint16(
bytes calldata data
) internal pure returns (
uint16 a
) {
assembly {
let word := calldataload(data.offset)
a := shr(240, word)
}
}
/**
* @notice Returns the uint32 value at the given index in the input data.
* @param data The input data.
* @param index The index of the value to retrieve.
* @return a The uint32 value at the given index.
*/
function readUint32(
bytes calldata data,
uint256 index
) internal pure returns (
uint32 a
) {
assembly {
let word := calldataload(add(index, data.offset))
a := shr(224, word)
}
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
/**
* @title Library for reading data from bytes arrays with a pointer
* @author Agustin Aguilar (aa@horizon.io)
* @notice This library contains functions for reading data from bytes arrays with a pointer.
*
* @dev These functions do not check if the input index is within the bounds of the data array.
* Reading out of bounds may return dirty values.
*/
library LibBytesPointer {
/**
* @dev Returns the first uint16 value in the input data and updates the pointer.
* @param _data The input data.
* @return a The first uint16 value.
* @return newPointer The new pointer.
*/
function readFirstUint16(
bytes calldata _data
) internal pure returns (
uint16 a,
uint256 newPointer
) {
assembly {
let word := calldataload(_data.offset)
a := shr(240, word)
newPointer := 2
}
}
/**
* @notice Returns the uint8 value at the given index in the input data and updates the pointer.
* @param _data The input data.
* @param _index The index of the value to retrieve.
* @return a The uint8 value at the given index.
* @return newPointer The new pointer.
*/
function readUint8(
bytes calldata _data,
uint256 _index
) internal pure returns (
uint8 a,
uint256 newPointer
) {
assembly {
let word := calldataload(add(_index, _data.offset))
a := shr(248, word)
newPointer := add(_index, 1)
}
}
/**
* @notice Returns the uint8 value and the address at the given index in the input data and updates the pointer.
* @param _data The input data.
* @param _index The index of the value to retrieve.
* @return a The uint8 value at the given index.
* @return b The following address value.
* @return newPointer The new pointer.
*/
function readUint8Address(
bytes calldata _data,
uint256 _index
) internal pure returns (
uint8 a,
address b,
uint256 newPointer
) {
assembly {
let word := calldataload(add(_index, _data.offset))
a := shr(248, word)
b := and(shr(88, word), 0xffffffffffffffffffffffffffffffffffffffff)
newPointer := add(_index, 21)
}
}
/**
* @notice Returns the uint16 value at the given index in the input data and updates the pointer.
* @param _data The input data.
* @param _index The index of the value to retrieve.
* @return a The uint16 value at the given index.
* @return newPointer The new pointer.
*/
function readUint16(
bytes calldata _data,
uint256 _index
) internal pure returns (
uint16 a,
uint256 newPointer
) {
assembly {
let word := calldataload(add(_index, _data.offset))
a := and(shr(240, word), 0xffff)
newPointer := add(_index, 2)
}
}
/**
* @notice Returns the uint24 value at the given index in the input data and updates the pointer.
* @param _data The input data.
* @param _index The index of the value to retrieve.
* @return a The uint24 value at the given index.
* @return newPointer The new pointer.
*/
function readUint24(
bytes calldata _data,
uint256 _index
) internal pure returns (
uint24 a,
uint256 newPointer
) {
assembly {
let word := calldataload(add(_index, _data.offset))
a := and(shr(232, word), 0xffffff)
newPointer := add(_index, 3)
}
}
/**
* @notice Returns the uint64 value at the given index in the input data and updates the pointer.
* @param _data The input data.
* @param _index The index of the value to retrieve.
* @return a The uint64 value at the given index.
* @return newPointer The new pointer.
*/
function readUint64(
bytes calldata _data,
uint256 _index
) internal pure returns (
uint64 a,
uint256 newPointer
) {
assembly {
let word := calldataload(add(_index, _data.offset))
a := and(shr(192, word), 0xffffffffffffffff)
newPointer := add(_index, 8)
}
}
/**
* @notice Returns the bytes32 value at the given index in the input data and updates the pointer.
* @param _data The input data.
* @param _pointer The index of the value to retrieve.
* @return a The bytes32 value at the given index.
* @return newPointer The new pointer.
*/
function readBytes32(
bytes calldata _data,
uint256 _pointer
) internal pure returns (
bytes32 a,
uint256 newPointer
) {
assembly {
a := calldataload(add(_pointer, _data.offset))
newPointer := add(_pointer, 32)
}
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
/**
* @title Library for optimized EVM operations
* @author Agustin Aguilar (aa@horizon.io)
* @notice This library contains functions for optimizing certain EVM operations.
*/
library LibOptim {
/**
* @notice Computes the keccak256 hash of two 32-byte inputs.
* @dev It uses only scratch memory space.
* @param _a The first 32 bytes of the hash.
* @param _b The second 32 bytes of the hash.
* @return c The keccak256 hash of the two 32-byte inputs.
*/
function fkeccak256(
bytes32 _a,
bytes32 _b
) internal pure returns (bytes32 c) {
assembly {
mstore(0, _a)
mstore(32, _b)
c := keccak256(0, 64)
}
}
/**
* @notice Returns the return data from the last call.
* @return r The return data from the last call.
*/
function returnData() internal pure returns (bytes memory r) {
assembly {
let size := returndatasize()
r := mload(0x40)
let start := add(r, 32)
mstore(0x40, add(start, size))
mstore(r, size)
returndatacopy(start, 0, size)
}
}
/**
* @notice Calls another contract with the given parameters.
* @dev This method doesn't increase the memory pointer.
* @param _to The address of the contract to call.
* @param _val The value to send to the contract.
* @param _gas The amount of gas to provide for the call.
* @param _data The data to send to the contract.
* @return r The success status of the call.
*/
function call(
address _to,
uint256 _val,
uint256 _gas,
bytes calldata _data
) internal returns (bool r) {
assembly {
let tmp := mload(0x40)
calldatacopy(tmp, _data.offset, _data.length)
r := call(
_gas,
_to,
_val,
tmp,
_data.length,
0,
0
)
}
}
/**
* @notice Calls another contract with the given parameters, using delegatecall.
* @dev This method doesn't increase the memory pointer.
* @param _to The address of the contract to call.
* @param _gas The amount of gas to provide for the call.
* @param _data The data to send to the contract.
* @return r The success status of the call.
*/
function delegatecall(
address _to,
uint256 _gas,
bytes calldata _data
) internal returns (bool r) {
assembly {
let tmp := mload(0x40)
calldatacopy(tmp, _data.offset, _data.length)
r := delegatecall(
_gas,
_to,
tmp,
_data.length,
0,
0
)
}
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
/**
* @title Library for string manipulation operations
* @notice This library contains functions for manipulating strings in Solidity.
*/
library LibString {
bytes private constant ALPHABET_HEX_16 = '0123456789abcdef';
bytes private constant ALPHABET_32 = 'abcdefghijklmnopqrstuvwxyz234567';
/**
* @notice Prefixes a hexadecimal string with "0x".
* @param _hex The hexadecimal string to prefix.
* @return The prefixed hexadecimal string.
*/
function prefixHexadecimal(string memory _hex) internal pure returns (string memory) {
return string(abi.encodePacked('0x', _hex));
}
/**
* @notice Prefixes a base32 string with "b".
* @param _base32 The base32 string to prefix.
* @return The prefixed base32 string.
*/
function prefixBase32(string memory _base32) internal pure returns (string memory) {
return string(abi.encodePacked('b', _base32));
}
/**
* @notice Converts a byte array to a hexadecimal string.
* @param _bytes The byte array to convert.
* @return The resulting hexadecimal string.
*/
function bytesToHexadecimal(bytes memory _bytes) internal pure returns (string memory) {
uint256 bytesLength = _bytes.length;
bytes memory bytesArray = new bytes(bytesLength << 1);
unchecked {
for (uint256 i = 0; i < bytesLength; i++) {
uint256 word = uint8(_bytes[i]);
uint256 ib = i << 1;
bytesArray[ib] = bytes1(ALPHABET_HEX_16[word >> 4]);
bytesArray[ib + 1] = bytes1(ALPHABET_HEX_16[word & 0xf]);
}
}
return string(bytesArray);
}
/**
* @notice Converts a byte array to a base32 string.
* @param _bytes The byte array to convert.
* @return The resulting base32 string.
*/
function bytesToBase32(bytes memory _bytes) internal pure returns (string memory) {
uint256 bytesLength = _bytes.length;
uint256 t1 = bytesLength << 3;
unchecked {
// base32-encoded length = ceil(# of bits / 5)
bytes memory bytesArray = new bytes((t1 + 4) / 5);
uint256 bits = 0;
uint256 buffer = 0;
uint256 pointer = 0;
for (uint256 i = 0; i < bytesLength; i++) {
buffer = (buffer << 8) | uint8(_bytes[i]);
bits += 8;
while (bits >= 5) {
bits -= 5;
bytesArray[pointer] = bytes1(ALPHABET_32[(buffer >> bits) & 0x1f]);
pointer++;
}
}
if (bits > 0) {
bytesArray[pointer] = bytes1(ALPHABET_32[(buffer << (5 - bits)) & 0x1f]);
}
return string(bytesArray);
}
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.18;
import "../interfaces/IERC1271Wallet.sol";
import "./LibBytes.sol";
/**
* @dev Contains logic for signature validation.
* Signatures from wallet contracts assume ERC-1271 support (https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1271.md)
* Notes: Methods are strongly inspired by contracts in https://github.com/0xProject/0x-monorepo/blob/development/
*/
library SignatureValidator {
// Errors
error InvalidSignatureLength(bytes _signature);
error EmptySignature();
error InvalidSValue(bytes _signature, bytes32 _s);
error InvalidVValue(bytes _signature, uint256 _v);
error UnsupportedSignatureType(bytes _signature, uint256 _type, bool _recoverMode);
error SignerIsAddress0(bytes _signature);
using LibBytes for bytes;
/***********************************|
| Variables |
|__________________________________*/
// bytes4(keccak256("isValidSignature(bytes,bytes)"))
bytes4 constant internal ERC1271_MAGICVALUE = 0x20c13b0b;
// bytes4(keccak256("isValidSignature(bytes32,bytes)"))
bytes4 constant internal ERC1271_MAGICVALUE_BYTES32 = 0x1626ba7e;
// Allowed signature types.
uint256 private constant SIG_TYPE_EIP712 = 1;
uint256 private constant SIG_TYPE_ETH_SIGN = 2;
uint256 private constant SIG_TYPE_WALLET_BYTES32 = 3;
/***********************************|
| Signature Functions |
|__________________________________*/
/**
* @notice Recover the signer of hash, assuming it's an EOA account
* @dev Only for SignatureType.EIP712 and SignatureType.EthSign signatures
* @param _hash Hash that was signed
* encoded as (bytes32 r, bytes32 s, uint8 v, ... , SignatureType sigType)
*/
function recoverSigner(
bytes32 _hash,
bytes calldata _signature
) internal pure returns (address signer) {
if (_signature.length != 66) revert InvalidSignatureLength(_signature);
uint256 signatureType = _signature.readUint8(_signature.length - 1);
// Variables are not scoped in Solidity.
uint8 v = _signature.readUint8(64);
bytes32 r = _signature.readBytes32(0);
bytes32 s = _signature.readBytes32(32);
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
//
// Source OpenZeppelin
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/cryptography/ECDSA.sol
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
revert InvalidSValue(_signature, s);
}
if (v != 27 && v != 28) {
revert InvalidVValue(_signature, v);
}
// Signature using EIP712
if (signatureType == SIG_TYPE_EIP712) {
signer = ecrecover(_hash, v, r, s);
// Signed using web3.eth_sign() or Ethers wallet.signMessage()
} else if (signatureType == SIG_TYPE_ETH_SIGN) {
signer = ecrecover(
keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _hash)),
v,
r,
s
);
} else {
// We cannot recover the signer for any other signature type.
revert UnsupportedSignatureType(_signature, signatureType, true);
}
// Prevent signer from being 0x0
if (signer == address(0x0)) revert SignerIsAddress0(_signature);
return signer;
}
/**
* @notice Returns true if the provided signature is valid for the given signer.
* @dev Supports SignatureType.EIP712, SignatureType.EthSign, and ERC1271 signatures
* @param _hash Hash that was signed
* @param _signer Address of the signer candidate
* @param _signature Signature byte array
*/
function isValidSignature(
bytes32 _hash,
address _signer,
bytes calldata _signature
) internal view returns (bool valid) {
if (_signature.length == 0) {
revert EmptySignature();
}
uint256 signatureType = uint8(_signature[_signature.length - 1]);
if (signatureType == SIG_TYPE_EIP712 || signatureType == SIG_TYPE_ETH_SIGN) {
// Recover signer and compare with provided
valid = recoverSigner(_hash, _signature) == _signer;
} else if (signatureType == SIG_TYPE_WALLET_BYTES32) {
// Remove signature type before calling ERC1271, restore after call
valid = ERC1271_MAGICVALUE_BYTES32 == IERC1271Wallet(_signer).isValidSignature(_hash, _signature[0:_signature.length - 1]);
} else {
// We cannot validate any other signature type.
// We revert because we can say nothing about its validity.
revert UnsupportedSignatureType(_signature, signatureType, false);
}
}
}{
"optimizer": {
"enabled": true,
"runs": 500000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"_space","type":"uint256"},{"internalType":"uint256","name":"_provided","type":"uint256"},{"internalType":"uint256","name":"_current","type":"uint256"}],"name":"BadNonce","type":"error"},{"inputs":[{"internalType":"bytes","name":"_code","type":"bytes"}],"name":"CreateFailed","type":"error"},{"inputs":[],"name":"EmptySignature","type":"error"},{"inputs":[{"internalType":"bytes4","name":"_signature","type":"bytes4"}],"name":"HookAlreadyExists","type":"error"},{"inputs":[{"internalType":"bytes4","name":"_signature","type":"bytes4"}],"name":"HookDoesNotExist","type":"error"},{"inputs":[],"name":"ImageHashIsZero","type":"error"},{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"name":"InvalidImplementation","type":"error"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"InvalidNestedSignature","type":"error"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"InvalidSValue","type":"error"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"InvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"_flag","type":"uint256"}],"name":"InvalidSignatureFlag","type":"error"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"InvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes1","name":"_type","type":"bytes1"}],"name":"InvalidSignatureType","type":"error"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_v","type":"uint256"}],"name":"InvalidVValue","type":"error"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"threshold","type":"uint256"},{"internalType":"uint256","name":"_weight","type":"uint256"}],"name":"LowWeightChainedSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_requested","type":"uint256"},{"internalType":"uint256","name":"_available","type":"uint256"}],"name":"NotEnoughGas","type":"error"},{"inputs":[],"name":"OnlyDelegatecall","type":"error"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_self","type":"address"}],"name":"OnlySelfAuth","type":"error"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"SignerIsAddress0","type":"error"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_type","type":"uint256"},{"internalType":"bool","name":"_recoverMode","type":"bool"}],"name":"UnsupportedSignatureType","type":"error"},{"inputs":[{"internalType":"uint256","name":"_current","type":"uint256"},{"internalType":"uint256","name":"_prev","type":"uint256"}],"name":"WrongChainedCheckpointOrder","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_contract","type":"address"}],"name":"CreatedContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes4","name":"_signature","type":"bytes4"},{"indexed":false,"internalType":"address","name":"_implementation","type":"address"}],"name":"DefinedHook","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"IPFSRootUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"newImageHash","type":"bytes32"}],"name":"ImageHashUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newImplementation","type":"address"}],"name":"ImplementationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_space","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newNonce","type":"uint256"}],"name":"NonceChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_imageHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_expiration","type":"uint256"}],"name":"SetExtraImageHash","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_tx","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_index","type":"uint256"}],"name":"TxExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_tx","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_index","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"TxFailed","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"SET_IMAGE_HASH_TYPE_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_signature","type":"bytes4"},{"internalType":"address","name":"_implementation","type":"address"}],"name":"addHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_imageHashes","type":"bytes32[]"}],"name":"clearExtraImageHashes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_code","type":"bytes"}],"name":"createContract","outputs":[{"internalType":"address","name":"addr","type":"address"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"bool","name":"delegateCall","type":"bool"},{"internalType":"bool","name":"revertOnError","type":"bool"},{"internalType":"uint256","name":"gasLimit","type":"uint256"},{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct IModuleCalls.Transaction[]","name":"_txs","type":"tuple[]"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_imageHash","type":"bytes32"}],"name":"extraImageHash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsRoot","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsRootBytes32","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"_signatures","type":"bytes"}],"name":"isValidSignature","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"bytes","name":"_signatures","type":"bytes"}],"name":"isValidSignature","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_signature","type":"bytes4"}],"name":"readHook","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_space","type":"uint256"}],"name":"readNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_signature","type":"bytes4"}],"name":"removeHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bool","name":"delegateCall","type":"bool"},{"internalType":"bool","name":"revertOnError","type":"bool"},{"internalType":"uint256","name":"gasLimit","type":"uint256"},{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct IModuleCalls.Transaction[]","name":"_txs","type":"tuple[]"}],"name":"selfExecute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_imageHash","type":"bytes32"},{"internalType":"uint256","name":"_expiration","type":"uint256"}],"name":"setExtraImageHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_digest","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"signatureRecovery","outputs":[{"internalType":"uint256","name":"threshold","type":"uint256"},{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"bytes32","name":"imageHash","type":"bytes32"},{"internalType":"bytes32","name":"subdigest","type":"bytes32"},{"internalType":"uint256","name":"checkpoint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"updateIPFSRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_imageHash","type":"bytes32"}],"name":"updateImageHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_imageHash","type":"bytes32"},{"internalType":"bytes32","name":"_ipfsRoot","type":"bytes32"}],"name":"updateImageHashAndIPFS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"name":"updateImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.29
Net Worth in ETH
0.000146
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,006.22 | 0.0001464 | $0.293713 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.