Socket
Socket
Sign inDemoInstall

@biconomy-sdk-dev/node-client

Package Overview
Dependencies
5
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @biconomy-sdk-dev/node-client

Node Client that comminucates with indexer service to fetch necessary details for the Smart Account


Version published
Weekly downloads
6
increased by20%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

@biconomy-sdk-dev/node-client

Biconomy SDK Node Client

Node Client is the api client package that communicate with Biconomy SDK backend node to fetch needed smart contract wallet data i.e supported chains list, transaction history, balances e.t.c

Installation

yarn add @biconomy-sdk-dev/node-client

OR

npm install @biconomy-sdk-dev/node-client

Usage

// import package
import NodeClient from '@biconomy-sdk-dev/node-client'

// initialisation

const nodeClient = new NodeClient({ txServiceUrl: 'https://sdk-backend.staging.biconomy.io/v1' })

Fetch Supported Chains List

const supportedChainsList = await nodeClient.getAllSupportedChains()
console.log('supportedChainsList ', supportedChainsList)

Fetch Transactions By Address

const chainId = 80001
const address = '0xabc......'
const trxHistory = await nodeClient.getTransactionByAddress(chainId, address)
console.log('trxHistory ', trxHistory)

Get Transaction By Hash

const txHash = '0x........'
const trxDetail = await nodeClient.getTransactionByHash(txHash)
console.log('trxDetail ', trxDetail)

Get Smart Contract Wallet Balances

import { BalancesDto } from '@biconomy-sdk-dev/node-client'

import { ChainId } from '@biconomy-sdk-dev/core-types'

const address = '0xabc......'

const balanceParams: BalancesDto =
      {
          // if no chainId is supplied, SDK will automatically pick active one that
         //  is being supplied for initialization

        chainId: ChainId.MAINNET, // chainId of your choice
        eoaAddress: address,
        // If empty string you receive balances of all tokens watched by Indexer
        // you can only whitelist token addresses that are listed in token respository
        // specified above ^
        tokenAddresses: [], 
      };

const balFromSdk = await nodeClient.getAlltokenBalances(balanceParams);
console.info("balFromSdk ", balFromSdk);

const usdBalFromSdk = await nodeClient.getTotalBalanceInUsd(balanceParams);
console.info("usdBalFromSdk ", usdBalFromSdk)

Keywords

FAQs

Last updated on 21 Jun 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc