The Email Wallet SDK comprises smart contracts that enhance an email wallet's functionality. This SDK enables the creation of custom extensions that can interact with any DeFi protocol. It supports operations like token swapping via Uniswap, NFT minting from the email wallet, and more. Extensions also facilitate bulk sending, allowing users to dispatch varying amounts to multiple email addresses in a single email, subject to a 988-character limit in the email subject.
To create an extension using the Email Wallet SDK, follow these steps:
-
Create a new repository: Start by creating a new repository using our template in the repo.
-
Clone the repository: Once the repository is created, clone it to your local machine.
-
Install dependencies: Navigate to the cloned folder and execute yarn to install the necessary dependencies.
After setting up the repository, the next step is to modify the src/MemoExtension.sol
contract for your own implementation.
-
Rename the contract: Rename the src/MemoExtension.sol to any name that suits your extension.
-
Create your own extension implementation:
MomoExtension.sol is an abstract contract for extensions. Each developer will need to implement actual functionality using the interface as a guide.
These functions MUST be included in your contract.
execute(uint8 templateIndex, bytes[] subjectParams, address wallet, bool hasEmailRecipient, address recipientETHAddr, bytes32 emailNullifier) external virtual
- Description: Executes the extension logic based on specific parameters derived from the email subject.
- Parameters:
templateIndex
: Index of the subject template to which the subject was matched.subjectParams
: Array of parameters decoded from the email subject based on the template, in the same order as the matchers.wallet
: Address of the user’s wallet.hasEmailRecipient
: A flag indicating whether the email subject has an email address recipient.recipientETHAddr
: The ETH address of the recipient in the email whenhasEmailRecipient
isfalse
.emailNullifier
: Nullifier of the email.
- Notes:
- It is recommended to send tokens to the sender’s wallet by calling
EmailWalletCore.depositTokenToAccount
rather than directly callingtransfer
of the erc20 token. They have no different in our current spec, but it can be not true in the future spec. - The
{tokenAmount}
parameter in the template should be decoded usingabi.decode(uint256, string)
to extracttokenName
andtokenAmount
.
- It is recommended to send tokens to the sender’s wallet by calling
- Description: Registers an unclaimed state for a recipient email commitment.
- Parameters:
unclaimedState
: Unclaimed state that is being registered.isInternal
: A flag indicating whether the unclaimed state is registered fromregisterUnclaimedStateAsExtension
.
- Default Implementation: return a revert error.
- Description: Claims an unclaimed state for a recipient user.
- Parameters:
unclaimedState
: Unclaimed state that is being claimed.wallet
: Address of the user’s wallet.
- Default Implementation: return a revert error.
- Description: Reverts an expired unclaimed state.
- Parameters:
unclaimedState
: Unclaimed state that has expired.
- Default Implementation: return a revert error.
- Define Subject Templates: Subject templates are an array of string arrays, i.e., a two-dimensional string array. These are defined by an extension to declare the formats of the subject that will call the extension. Each format can use a fixed string (without spaces) and the following templates.
"{tokenAmount}"
: a combination of the decimal string of the token amount and the string of the token name. The corresponding parameter insubjectParams
is the bytes encoding(uint256,string)
. The decimal size of the amount depends on thedecimals
value of the ERC20 contract of the token name. For example, “1.5 ETH” ⇒abi.encode((1.5 * (10**18), "ETH"))
, “3.4 USDC” ⇒abi.encode((3.4 * (10**6), "USDC"))
."{amount}"
: a decimal string. The corresponding parameter insubjectParams
is the bytes encodinguint256
. The decimal size of the amount is fixed to 18. For example, “2.7” ⇒abi.encode(2.7 * (10**18))
."{string}"
: a string. The corresponding parameter insubjectParams
is the bytes encodingstring
."{uint}"
: a decimal string of the unsigned integer. The corresponding parameter insubjectParams
is the bytes encodinguint256
."{int}"
: a decimal string of the signed integer. The corresponding parameter insubjectParams
is the bytes encodingint256
."{address}"
: a hex string of the Ethereum address. The corresponding parameter insubjectParams
is the bytes encodingaddress
."{recipient}"
: either the recipient’s email address or a hex string of the recipient’s Ethereum address. The corresponding parameter insubjectParams
is the bytes encoding eitheruint256
of the byte size of the email address oraddress
of the Ethereum address.
- Compile the Contract: Compile the contract by running:
$ forge build
After modifying the extension contract, the next step is to modify the test codes.
-
Rename the test file: Rename the test/MemoExtension.t.sol to any name that suits your extension.
-
Modify the test codes: Update the test codes to test the functionality of your extension.
-
Run the tests: You can run the tests by running
$ forge test
publishExtension(string calldata name, address addr, string[][] memory subjectTemplates, uint256 maxExecutionGas) public
- Description: Publishes an extension with the provided name, address, subject templates, and maximum execution gas.
- Parameters:
name
: Name of the extension.addr
: Address of the extension.subjectTemplates
: Subject templates for the extension.maxExecutionGas
: Maximum gas that can be used for execution.
- Implementation:
- Check that extension name is already not in use by using this addressOfExtensionName[name] == address(0)
- Assert that
addr
is not the zero address. - Assert that
name
is not empty. - Assert that
maxExecutionGas
is greater than zero. - Assert that the
subjectTemplates
array is not empty and contains at least one template. - Verifies that the extension of
addr
has not been published. - Iterates through the
subjectTemplates
array to perform various checks and validations. - Maps the
name
to the providedaddr
in theaddressOfExtensionName
mapping. - Sets the
subjectTemplates
andmaxGas
foraddr
in thesubjectTemplatesOfExtension
andmaxGasOfExtension
mappings, respectively. - Emits an event to indicate the successful publication of the extension.
To publish your extension, run the following command:
PRIVATE_KEY=0x... EMAIL_WALLET_CORE=0x7A07f282Ebdc033da00EC46D602eCE742825C6dB forge script script/Deploy.s.sol --rpc-url https://arb1.arbitrum.io/rpc --chain-id 42161 --broadcast
Note: PRIVATE_KEY is the hex string of the private key used for the deployment.