Socket
Socket
Sign inDemoInstall

@gnosis.pm/safe-apps-ethers-provider

Package Overview
Dependencies
Maintainers
17
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gnosis.pm/safe-apps-ethers-provider

An ethers.js provider wrapper of Safe Apps SDK


Version published
Maintainers
17
Created
Source

Safe Apps Ethers Provider

npm

This is an ethers.js provider and signer to use with ethers.js contract instances.

How to use

  • Add npm package
yarn add @gnosis.pm/safe-apps-ethers-provider

npm i @gnosis.pm/safe-apps-ethers-provider

SafeAppsSdkProvider (Read-only access)

From ethers.js documentation:

A Provider is an abstraction of a connection to the Ethereum network, providing a concise, consistent interface to standard Ethereum node functionality.

import React, { useMemo, useState } from 'react';
import { useSafeAppsSDK } from '@gnosis.pm/safe-apps-react-sdk';
import { ethers } from 'ethers';
import { SafeAppsSdkProvider } from '@gnosis.pm/safe-apps-ethers-provider';
import Contract from './contracts/DelayedTxModule.json';

const App = () => {
  const { sdk, safe } = useSafeAppsSDK();
  const contract = useMemo(() => ethers.Contract(Contract.address, Contract.abi, new SafeAppsSdkProvider(safe, sdk)), [
    sdk,
    safe,
  ]);

  // calling read methods
  const getSomething = async () => {
    const balance = await contract.getBalance('0x000');
  };

  // calling write methods
  const doSomething = async () => {
    const { safeTxHash } = await sdk.txs.send({
      txs: [
        {
          to: safe.safeAddress,
          value: '0',
          data: contract.interface.encodeFunctionData('someFunc', ['someArg']),
        },
      ],
    });
  };

  return;
};

export default App;

SafeAppsSdkSigner (Read/Write access)

From ethers.js documentation:

A Signer in ethers is an abstraction of an Ethereum Account, which can be used to sign messages and transactions and send signed transactions to the Ethereum Network to execute state changing operations.

import React, { useMemo, useState } from 'react';
import { useSafeAppsSDK } from '@gnosis.pm/safe-apps-react-sdk';
import { ethers } from 'ethers';
import { SafeAppsSdkSigner } from '@gnosis.pm/safe-apps-ethers-provider';
import Contract from './contracts/DelayedTxModule.json';

const App = () => {
  const { sdk, safe } = useSafeAppsSDK();
  const contract = useMemo(() => ethers.Contract(Contract.address, Contract.abi, new SafeAppsSdkSigner(safe, sdk)), [
    sdk,
    safe,
  ]);

  // calling read methods
  const getSomething = async () => {
    const balance = await contract.getBalance('0x000');
  };

  // calling write methods
  const doSomething = async () => {
    const { hash } = await contract.someFunc('someArg');
  };

  return;
};

export default App;
More scenarios

For the SDK overview documentation, please refer to the safe-apps-sdk documentation

FAQs

Package last updated on 29 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc