This package has been deprecated

Author message:

Deprecated in favor of @gnosis.pm/safe-apps-provider

@gnosis.pm/safe-apps-ethers-provider
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

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

Weekly Downloads

1

Version

0.3.0

License

MIT

Unpacked Size

41.9 kB

Total Files

18

Last publish

Collaborators

  • mikheevm
  • katspaugh
  • dasanra
  • germartinez