elrondjs v2.7.0
elrond.js
Javascript SDK for the Elrond blockchain.
Features:
- Generate and load wallets (Ledger wallets too!)
- Sign and broadcast transactions
- Query the blockchain and work with smart contracts
- Cross-platform: Node.js, Browser, Web workers and React Native.
- Typescript definitions 🔥
- Full documentation
Installation
Note: Node 12 or above is required to use elrondjs
npm install --save elrondjsUsage
Example - Claiming rewards from the Mainnet delegation contract
import { Contract, ProxyProvider, BasicWallet } from 'elrondjs'
(async () => {
// create connection to network
const proxy = new ProxyProvider('https://api.elrond.com')
// load wallet
const wallet = BasicWallet.fromMnemonic('YOUR MNEMONIC HERE'),
// create contract interface
// and tell it to use our provider and wallet
const c = await Contract.at('erd1qqqqqqqqqqqqqpgqxwakt2g7u9atsnr03gqcgmhcv38pt7mkd94q6shuwt', {
provider: proxy,
signer: wallet,
})
// make the claim!
await c.invoke('claimRewards', [], {
gasLimit: 250000000
})
})()For usage and full documentation see https://elrondjs.erd.dev.
Contributors guide
To build the lib and watch for changes:
npm run devTo build the lib for production:
npm run buildTo build the docs:
npm run build-docsTo publish a new release:
npm run releaseTo run the tests, first run npm run devnet in a separate terminal to start a local test network. Then run:
npm testLicense
ISC
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago