@violetprotocol/ethereum-access-token-helpers
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

Ethereum Access Token Helpers

Utilities for the Ethereum Access Token smart contract system.

Use these tools to help you generate and sign your Ethereum Access Tokens (EATs). First ensure that your smart contracts follow appropriate EAT interfaces by ensuring all functions that intend to be modified with requiresAuth to use the following parameters prepended before your usual function parameters:

function yourFunction(uint8 v, bytes32 r, bytes32 s, uint256 expiry, ...) {}

where you insert your own function parameters in place of ....

Install

Using npm: npm install @violetprotocol/ethereum-access-token-helpers

Using yarn: yarn add @violetprotocol/ethereum-access-token-helpers

Usage

const { splitSignature } = require("@ethersproject/bytes");
const {
  signAccessToken,
  getSignerFromMnemonic, getSignerFromPrivateKey
  packParameters
} = require("@violetprotocol/ethereum-access-token-helpers/utils");

const INTERVAL: number = 100 // seconds
const FUNCTION_SIGNATURE = "0xabcdefgh";
const CONTRACT: ethers.Contract = ...; // for example an ERC20 token contract
const SIGNER: ethers.Signer = ...;
const CALLER: ethers.Signer = ...;
const VERIFIER = "0x..."; // AccessTokenVerifier contract address

const recipient = "0x123...";
const amount = 1;

// AccessToken domain for clear namespacing
const accessTokenDomain = {
  name: "Ethereum Access Token",
  version: "1",
  chainId: SIGNER.getChainId(),
  verifyingContract: VERIFIER,
};

// Construct AccessToken message with relevant data using ERC20 `transfer(address to, uint256 amount)` as the example tx
// In the AccessTokenConsumer case, the ERC20 transfer function actually looks like this:
// `transfer(uint8 v, bytes32 r, bytes32 s, uint256 expiry, address to, uint256 amount)`
// where we just augment the original function with the required parameters for auth
// the `parameters` property takes a packed, abi-encoded set of original function parameters
const accessTokenMessage = {
  expiry: Math.floor(new Date().getTime() / 1000) + interval,
  functionCall: {
    functionSignature:  FUNCTION_SIGNATURE,
    target:             CONTRACT.address.toLowerCase(),
    caller:             CALLER.address.toLowerCase(),
    parameters:         packParameters(CONTRACT.interface, "transfer", [recipient, amount]),
  },
};

// Sign the AccessToken using the Signer
const signature = splitSignature(await signAccessToken(SIGNER, accessTokenDomain, accessTokenMessage));

// Pass all signed data to a transaction function call
await CONTRACT.functionName(
  signature.v,
  signature.r,
  signature.s,
  accessTokenMessage.expiry,
  ...params
)

Package Sidebar

Install

npm i @violetprotocol/ethereum-access-token-helpers

Weekly Downloads

2

Version

0.2.0

License

MIT

Unpacked Size

222 kB

Total Files

94

Last publish

Collaborators

  • henrik-web3
  • jiliac
  • sudoferraz
  • pedroapfilho
  • ttollers
  • ra-phael-violet
  • roman-at-violet-co
  • papasmurfie
  • violet-protocol