Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tezbridge-network

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tezbridge-network

The TezBridge network library for Tezos blockchain in JavaScript with Flow type system

  • 1.0.39
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

TezBridge Network client

Build Status Known Vulnerabilities

npm npm bundle size

GitHub last commit

This library is compatible with the standard Tezos RPC protocol.

Installation

npm i tezbridge-network

Requirements

  • parcel-bundler is needed. (npm install -g parcel-bundler)
  • When the library is built for brower usage, setting the env value BROWSER_OPT=true can shrink the output file.

Test

npm run test

Documentation

Network client instance

network_client

create instance
import TezBridgeNetwork from 'tezbridge-network/Pt24m4xi'
// import TezBridgeNetwork from 'tezbridge-network/PsddFKi3'
const network_client = new TezBridgeNetwork({
  host: 'https://alphanet-node.tzscan.io'
})

API reference

network_client

network_client.fetch

network_client.fetch.custom(path)

Access content with the passing path

network_client.fetch.head(sub_path?)

Get the whole content of head block

network_client.fetch.hash()

Get head block hash in main chain

network_client.fetch.header()

Get the header of head block in main chain

network_client.fetch.protocol()

Get current protocol used in main chain

network_client.fetch.predecessor()

Get the predecessor of current head block

network_client.fetch.balance(address)

Get the balance of the passing address

network_client.fetch.contract(address)

Get the contract information of the padding address

network_client.fetch.contract_bytes(hash_url, sub_path?)

Get the contract raw bytes of the passing hash_url

hash_url: a special hex representation of contract hash. (eg: 3e/e2/31/36/6b/1336eb61419df8fc666056025929bf) You can generate such hash with the npm package tezbridge-crypto.

network_client.fetch.storage_bytes(hash_url)

Get the storage raw bytes of the contract

network_client.fetch.big_map_bytes(hash_url)

Get the big_map raw bytes of the contract

network_client.fetch.manager_key(address)

Get the manager key hash of the passing address

network_client.fetch.counter(address)

Get the counter value of the passing address

network_client.submit

network_client.submit.pack_data(data_json, type_json)

Get packed data of the passing JSON content from RPC node

data_json and type_json are all in Micheline type.

example:

data_json = { "prim": "Pair", "args": [ { "string": "abc" }, { "int": "34" } ] }
type_json = { "prim": "pair", "args": [ { "prim": "string" }, { "prim": "nat" } ] }
network_client.submit.forge_operation(head_hash, ops)

Forge operation to get bytes.

head_hash is the hash of head block and ops is the the Michline operations in array.

network_client.submit.preapply_operation(head_hash, ops, protocol, signature)

Preapply operations to get results.

network_client.submit.inject_operation(signed_op)

Inject signed operation.

network_client.mixed

network_client.mixed.makeOperationBytes(param, op_params)

Create operation bytes though remote RPC node.

Arguments types:

param: {
  source : string,
  public_key: string
}

op_params: Array<{
  kind : 'reveal' | 'origination' | 'transaction',
  ...any
}>
network_client.mixed.makeTransactionBytes(param, op_param)

Arguments types:

param: {
  source : string,
  public_key: string
}

op_param: {
  fee?: string,
  gas_limit?: string,
  storage_limit?: string,
  amount: string,
  destination: string,
  parameters?: Micheline
}
network_client.mixed.makeOriginationBytes(param, op_param)

Arguments types:

param: {
  source : string,
  public_key: string
}

op_param: {
  fee?: string,
  gas_limit?: string,
  storage_limit?: string,
  managerPubkey?: string,
  balance?: string,
  spendable?: boolean,
  delegatable?: boolean,
  delegate?: string,
  script?: Micheline
}
network_client.mixed.makeMinFeeOperation(TBC, source, param, op_param)

Arguments types:

TBC: TezBridgeCrypto package object

source: string | null

secret_key: string

op_param: {
  fee?: string,
  gas_limit?: string,
  storage_limit?: string,
  managerPubkey?: string,
  balance?: string,
  spendable?: boolean,
  delegatable?: boolean,
  delegate?: string,
  script?: Micheline
}

FAQs

Package last updated on 22 Aug 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc