@ivancai/safe-ethers-lib
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

Safe Ethers Lib

NPM Version GitHub Release GitHub

Ethers.js wrapper that contains some utilities and the Safe contracts types (generated with typechain ethers-v5). It is used to initialize the Safe Core SDK.

Table of contents

Install the package with yarn or npm:

yarn install
npm install

Build the package with yarn or npm:

yarn build
npm build

If the app integrating the SDK is using Ethers v5, create an instance of the EthersAdapter, where signer is the Ethereum account we are connecting and the one who will sign the transactions.

import { ethers } from 'ethers'
import EthersAdapter from '@safe-global/safe-ethers-lib'

const web3Provider = // ...
const provider = new ethers.providers.Web3Provider(web3Provider)
const safeOwner = provider.getSigner(0)

const ethAdapter = new EthersAdapter({
  ethers,
  signerOrProvider: safeOwner
})

Depending on whether the ethAdapter instance is used to sign/execute transactions or just call read-only methods, the signerOrProvider property can be a Signer or a Provider.

This library is released under MIT.

Readme

Keywords

Package Sidebar

Install

npm i @ivancai/safe-ethers-lib

Weekly Downloads

1

Version

1.2.0

License

MIT

Unpacked Size

766 kB

Total Files

198

Last publish

Collaborators

  • ivancai