This proposal introduces a smart contract wallet-based approach for managing tokens, focusing on utilizing the programmable features of smart contract wallets for asset management.
Additionally, it introduces functions such as tokenTransfer, tokenApprove, tokenApproveForAll, tokenIsApproveForAll and tokenAllowance, which provide enhanced control over token transactions. This approach seeks to enhance token management by utilizing the built-in features of smart contract wallets, thus offering a more adaptable, secure, and efficient method for managing token transactions.
An externally-owned account (EOA) wallet has no state and code storage, while the smart contract wallet does.
Account abstraction (AA) is a direction of the smart contract wallet, which works around abstract accounts. This ERC can also be an extension based on ERC-4337 or as a plug-in for wallets.
The smart contract wallet allows the user's own account to have state and code, bringing programmability to the wallet. We think there are more directions to expand. For example, token asset management, functional expansion of token transactions, etc.
The smart contract wallet interface of this ERC is for asset management and asset approval. It supports the simpletoken ERC-X, and ERC-20 is backward compatible with ERC-X, so it can be compatible with the management of all fungible tokens in the existing market.
The proposal aims to achieve the following goals:
approve and allowance, which are configured by the user’s contract wallet, rather than controlled by the token asset contract, to avoid some existing ERC-20 contract risks.tokenTransfer function, the transaction initiated by the non-smart wallet itself or will verify the allowance amount.tokenApprove, tokenAllowance, tokenApproveForAll, tokenIsApproveForAll functions. The user wallet itself supports approve and provides approve.
for single token assets and all token assets.tokenTransfer to increase the user's more playability.tokenReceive function.The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 and RFC 8174.
** Compliant contract must implement the ERC-165 interfaces**
the key technical decisions in this proposal are:
Improved Approve Mechanism
approve. The new tokenApprove and tokenApproveForAll functions in this proposed enable more precise control over token usage within a wallet contract, a significant improvement over the traditional method.tokenApproveForAll function specifically allows for a universal setting all tokens. these were not possible with traditional ERC-20 tokens.Optimized Transfer Process
tokenTransfer function streamlines the token transfer process, making transactions both more efficient and secure.Support for Batch Operations
approve or transfer operations, significantly boosting transaction efficiency.This ERC can be used as an extension of ERC-4337 and is backward compatible with ERC-4337.
No security considerations were found.
Copyright and related rights waived via CC0.