Skip to content

Latest commit

 

History

History
61 lines (47 loc) · 1.84 KB

README.md

File metadata and controls

61 lines (47 loc) · 1.84 KB

Authenticated relay

Solidity smart contract that verifies an authorisation signature before forwarding the call to the destination contract. Can be used for backend-gated minting.

Overview

The relay is deployed on-chain and is configured with an operator role (OPERATOR_ROLE) The backend signs an EIP-712 message of the following structure with an owner key:

struct RelayData {
    bytes32 nonce;
    address to;
    uint256 validityStart;
    uint256 validityEnd;
    uint256 chainId;
    bytes callData;
}

Where to is the destination contract, callData is the ABI-encoded calldata. The relay verifies that the recovered signature matches an owner role and executes the call on the destination contract.

The operator address can be updated by the admin (DEFAULT_ADMIN_ROLE)

Usage

This example uses a test agains Sequence's ERC721 contract library. See test/AuthenticatedRelay.t.sol for details.

Requirements

Build

forge install
# build sequence contracts dependencies:
pushd lib/contracts-library
yarn && yarn build
popd

forge build

Test

forge test

Example: mint an ERC721

Set the environment variables:

  • RELAY_CONTRACT: The authenticated relay address
  • OPERATOR_PRIVATE_KEY: The operator private key
  • ERC721_CONTRACT: The ERC721 contract address. It has a mint(address,uint256) function that can only be called by the authenticated relay
  • RECIPIENT: The NFT recipient
  • SENDER_PRIVATE_KEY: The key of the wallet that will broadcast the transaction
  • NONCE: A nonce to prevent replays

Then run the script:

forge script script/MinterWithRelay.s.sol:MintWithRelay --broadcast --private-key $SENDER_PRIVATE_KEY