0.0.75 • Published 3 years ago

@streambird/rpc-provider v0.0.75

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Streambird RPC provider

Installation

Yarn

$ yarn add @streambird/rpc-provider

npm

$ npm install @streambird/rpc-provider

Initializing Provider

ES Modules/TypeScript

import { StreambirdRPCProvider } from '@streambird/rpc-provider'
import Web3 from 'web3'

const rpcProvider = new StreambirdRPCProvider({
  // Streambird server url
  endpoint: process.env.SECURED_STREAMBIRD_URL,
  // Node url e.g: https://rinkeby.infura.io/v3/<API_KEY>
  network: process.env.NODE_URL,
  privateKey: process.env.PRIVATE_KEY,
})

const web3 = new Web3(rpcProvider)

CommonJS

const { StreambirdRPCProvider } = require('@streambird/rpc-provider')
const Web3 = require('web3')

const rpcProvider = new StreambirdRPCProvider({
  // Streambird server url
  endpoint: process.env.SECURED_STREAMBIRD_URL,
  // Node url e.g: https://rinkeby.infura.io/v3/<API_KEY>
  network: process.env.NODE_URL,
  privateKey: process.env.PRIVATE_KEY,
})

const web3 = new Web3(rpcProvider)

Get User Info

const address = (await web3.eth.getAccounts())[0]
const balance = web3.utils.fromWei(await web3.eth.getBalance(address))
0.0.73

3 years ago

0.0.74

3 years ago

0.0.75

3 years ago

0.0.70

3 years ago

0.0.71

3 years ago

0.0.72

3 years ago

0.0.62

3 years ago

0.0.63

3 years ago

0.0.64

3 years ago

0.0.65

3 years ago

0.0.66

3 years ago

0.0.67

3 years ago

0.0.68

3 years ago

0.0.69

3 years ago

0.0.60

3 years ago

0.0.61

3 years ago

0.0.59

3 years ago

0.0.55

3 years ago

0.0.56

3 years ago

0.0.57

3 years ago

0.0.58

3 years ago

0.0.54

3 years ago

0.0.43

3 years ago

0.0.44

3 years ago

0.0.45

3 years ago

0.0.46

3 years ago

0.0.47

3 years ago

0.0.51

3 years ago

0.0.52

3 years ago

0.0.50

3 years ago

0.0.48

3 years ago

0.0.49

3 years ago

0.0.40

3 years ago

0.0.41

3 years ago

0.0.31

3 years ago

0.0.32

3 years ago

0.0.33

3 years ago

0.0.34

3 years ago

0.0.35

3 years ago

0.0.36

3 years ago

0.0.37

3 years ago

0.0.38

3 years ago

0.0.27

3 years ago

0.0.39

3 years ago

0.0.28

3 years ago

0.0.29

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.1

3 years ago