Skip to content
Embedded Wallet
Integrations
Ethers.js (Recommended)

Ethers.js is a popular typescript Ethereum library and is our recommended library when integrating with our wallet. Below is an example of how to use Simple Crypto's wallet with ethers.

import { ethers } from "ethers";
import SimpleCryptoSDK from "@simplecrypto/wallet-sdk";

const simpleCryptoWallet = new SimpleCryptoSDK();

const provider = new ethers.providers.Web3Provider(simpleCryptoWallet);
Last updated on February 4, 2023