0.0.26 • Published 12 days ago

@0xgasless/0xgasless-aa-sdk v0.0.26

Weekly downloads
-
License
ISC
Repository
-
Last release
12 days ago

0xgasless Account Abstraction SDK

Account abstraction (ERC-4337) SDK layer

Overview

This documentation provides an explanation of the AA0xGasless SDK functionalities used for interacting with smart contracts, focusing on account abstraction in accordance with the ERC-4337 standard. The SDK is designed to simplify the process of executing transactions in a gasless manner and interacting with EVM contracts.

Prerequisites

Before implementing the SDK, ensure the following requirements are met:

  • Node.js installed.
  • AA0xGasless SDK installed.

Environment Variables

Set up the following environment variable:

  • API_KEY: Your unique API key for the AA0xGasless SDK. Get the API key from 0xGasless dashboard.

SDK Initialization

  1. Initializing the SDK:
    const apiKey = process.env.API_KEY;
    const sdk = new AA0xGasless(apiKey);
    const smartAccountAddress = await sdk.init(provider, options);
    Initialize the AA0xGasless SDK with your API key. Replace provider and options with your specific configurations to set up the SDK properly.

options

The ClientOptions interface for the SDK configuration includes:

  • chainId (number): The chain ID of the Ethereum network.
  • privateKey (string, optional): The private key for signing transactions.
  • rpcUrl (string, optional): The URL of the Ethereum RPC endpoint.
  • isSponsoredTrx (boolean, optional): Indicates if the transaction is sponsored.
  • paymasterEndpoint (string, optional): The endpoint URL for the paymaster.
  • paymaster (string, optional): Type of paymaster, options are "PIMLICO" or "STACKUP".
  • bundlerEndpoint (string, optional): The endpoint URL for the bundler.

Configure these options as per your application's requirements.

Example: Simple Counter Contract Transaction

  1. Setting up Smart Contract Interaction:
    const apiKey = process.env.API_KEY;
    const sdk = new AA0xGasless(apiKey);
    const smartAccountAddress = await sdk.init(provider, options);
    const contractAddress = "<contract_address>";
    const abi = COUNTER_CONTRACT_ABI;
    const counterContract = new ethers.Contract(contractAddress, abi);
    Define the contract address and ABI of the ERC-721 contract for interaction using the SDK.
  1. Creating a Transaction:

    const trx = {
        target: contractAddress,
        data: counterContract.interface.encodeFunctionData("increment") `
    };

    Formulate a transaction object for invoking the increment function on the Counter contract through the SDK.

  2. Executing the Transaction:

    const userOpHash = await sdk.sendUserOp(trx);
    console.log("userOpHash", userOpHash);

    Send the transaction using the AA0xGasless SDK and get the operation hash and transaction hash.

Conclusion

This guide covers the basic setup and interaction with an simple Counter smart contract for incremeting using the AA0xGasless SDK. The SDK facilitates gasless transactions and simplifies the implementation of account abstraction as per ERC-4337.

Refer to the AA0xGasless SDK and ERC-4337 documentation for more detailed information.

0.0.26

12 days ago

0.0.25

14 days ago

0.0.24

30 days ago

0.0.23

2 months ago

0.0.22

2 months ago

0.0.21

2 months ago

0.0.20

2 months ago

0.0.19

3 months ago

0.0.17

3 months ago

0.0.18

3 months ago

0.0.16

4 months ago

0.0.15

4 months ago

0.0.14

4 months ago

0.0.12

4 months ago

0.0.13

4 months ago

0.0.10

4 months ago

0.0.11

4 months ago

0.0.9

4 months ago

0.0.8

4 months ago

0.0.7

5 months ago

0.0.6

5 months ago

0.0.5

6 months ago

0.0.4

6 months ago

0.0.3

6 months ago

0.0.2

6 months ago

0.0.1

6 months ago