New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@orbs-network/contracts-js

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
c

@orbs-network/contracts-js

Provides easy to use JS (TS) interfaces to interact with the Orbs Ethereum contracts

0.0.36
latest
69

Supply Chain Security

100

Vulnerability

84

Quality

84

Maintenance

100

License

Version published
Weekly downloads
81
5.19%
Maintainers
12
Weekly downloads
 
Created
Issues
0

Orbs contracts js

npm version

Orbs contracts js is a library that provides easy to use interfaces to communicate with the Orbs contracts that are deployed on the Ethereum blockchain.

Installation

npm install @orbs-network/contracts-js

Usage

1.Initialize a web3 object (in this specific example we will use the 'ethereum provider' injected by MetaMask)

// MetaMask injects an ethereum provider straight to the window
import Web3 from "web3";

const ethereumProvider = (window as any).ethereum;
const web3 = new Web3(ethereumProvider as any);

2.Initialize an instance of a service (They all have the same constructor parameters)

import { IOrbsTokenService, OrbsTokenService } from '@orbs-network/contracts-js';

const orbsTokenService: IOrbsTokenService = new OrbsTokenService(web3);

3.Use the service to interact with the ethereum contracts in a js native way -- easy and convenient way to interact with the contracts that are deployed on Ethereum.

// Lets say this address holds 5,000 orbs
const myOrbsAccountAddress = '0x12BF4263560Ce9a3cADD20B0b36208d131b64f87';
const balance = await orbsTokenService.readBalance(myOrbsAccountAddress);

// will print "5000"
console.log(balance)

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

ISC

Keywords

FAQs

Package last updated on 24 Jan 2022

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