npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ttc_web3_bridge

v0.0.1-beta.7

Published

TTC Blockchain JavaScript API wrapper repository based on web3

Downloads

21

Readme

TTC web3 bridge

TTC blockchain JavaScript API is simply bridged based on Web3.js

Basics

Requirements

You need to have Node.js 10.10.0+

Installation

Run the following commands in your project folder:

npm install ttc_web3_bridge
cd ./node_modules/ttc_web3_bridge // cd <YOUR_NODE_MODULES_LOCATION>/ttc_web3_bridge
npm install
npm run rebuild

Creating an Instance

var TTC_Web3_Bridge = require('ttc_web3_bridge');

Connect to TTC Blockchain

var ttc_web3_bridge = new TTC_Web3_Bridge(RPC_HOST)

TTC_Web3_Bridge.initWeb3() has been deprecated

You can use TTC Blockchain public rpc as the rpc host
Mainnet http://rpc-tokyo.ttcnet.io / http://rpc-us.ttcnet.io
Testnet http://rpc-testnet.ttcnet.io

Examples

Create account

var account = ttc_web3_bridge.createAccount();
console.log(account);

Create account by privateKey

var private_key = "<YOUR PRIVATEKEY>";
var address_info =  ttc_web3_bridge.privateKeyToAccount(privateKey);

Get TTC balance

var address = "<ADDRESS>";
ttc_web3_bridge.getBalance(address, function(error, balance){
	console.log(balance);
});

Send transaction

var private_key = "<YOUR PRIVATEKEY>";
var from = "<YOUR ADDRESS>";
var to = "<TO ADDRESS>";

var raw_tx = {
	"from": from,
	"to": to,
	"nonce": 104,
	"gasPrice": 10,
	"gasLimit": 100000,
	"value":1000000000000000000,
  	"data": "0x0"
}

ttc_web3_bridge.sendRawTransaction(raw_tx,private_key,function(error, result){
	console.log("tx sent:", result);
});

Sign transaction

var private_key = "<YOUR PRIVATEKEY>";
var from = "<YOUR ADDRESS>";
var to = "<TO ADDRESS>";

var raw_tx = {
	"from": from,
	"to": to,
	"nonce": 104,
	"gasPrice": 10,
	"gasLimit": 100000,
	"value":1000000000000000000,
  	"data": "0x0"
}

ttc_web3_bridge.signTransaction(raw_tx,private_key,function(result){
	console.log(result);
});

Send signed transaction

// eg: f86d428502540be400830186a0948f46586d7b9d28ab41eaed17feab7c0d403830f0880de0b6b3a7640000001ca08b2759a90cd6fd841cc827a688f7678a57ff0e4eb26412a3dc65e501a13ef398a0463c0bc41e9e3ec9780fd9fc071fa088958a4054593a7ab4fe85ac9d8a5306ae
var signed_data = "";
ttc_web3_bridge.sendSignedTransaction(signed_data,function(error, hash){
	console.log("tx sent:", hash);
});

Send vote transaction

var private_key = "<YOUR PRIVATEKEY>";
var from = "<YOUR ADDRESS>";
var to = "<Rpresentative Coinbase ADDRESS>";

// Voting data: ttc_web3.toHex("ufo:1:event:vote") = "0x75666f3a313a6576656e743a766f7465"
var raw_tx = {
	"from": from,
	"to": to,
	"nonce": 104,
	"gasPrice": 10,
	"gasLimit": 100000,
	"value":0,
  	"data": "0x75666f3a313a6576656e743a766f7465"
}

ttc_web3_bridge.sendRawTransaction(raw_tx,private_key,function(error, result){
	console.log("tx sent:", result);
});

Deploy contract

// compiled solidity source code
var bytecode = "<Byte Code>";
var contract_abi = <YOUR CONTRACT ABI>;

var private_key = "<YOUR PRIVATEKEY>";
var from = "<YOUR ADDRESS>";

var raw_tx = {
	"from": from,
	"nonce": 99,
	"gasPrice": 10,
	"gasLimit": 3000000,
	"value":0,
}
var args = [];
ttc_web3_bridge.deployContract(contract_abi, bytecode, args, raw_tx, private_key, function(error, hash){
	console.log(hash);
  // will also return the contract address if the contract was deployed
});

Call contract

Read data from contract

var contract_abi = <YOUR CONTRACT ABI>;
var contract_address = "<CONTRACT ADDRESS>";
var function_name = "<FUNCTION NAME>";
var args = [];
ttc_web3_bridge.callAndReadContract(contract_address, contract_abi,function_name, args, function(error, result){
  console.log(result);
});

Write data to contract

var private_key = "<YOUR PRIVATEKEY>";
var from = "<YOUR ADDRESS>";
var contract_address = "<CONTRACT ADDRESS>";
var contract_abi = <YOUR CONTRACT ABI>;
var function_name = "<FUNCTION NAME>";
var args = [];

var raw_tx = {
	"from": from,
	"to": contract_address,
	"nonce": 99,
	"gasPrice": 10,
	"gasLimit": 1000000,
	"value":0
}

ttc_web3_bridge.callAndWriteContract(raw_tx, private_key, contract_address, contract_abi, function_name, args, function(error,result){
   console.log(result);
});

Get transaction

var tx_hash = "<TX HASH>";
ttc_web3_bridge.getTransaction(tx_hash, function(error,result){
	console.log(result);
});

Get transaction receipt

var tx_hash = "<TX HASH>";
ttc_web3_bridge.getTransactionReceipt(tx_hash, function(error,result){
	console.log(result);
});

Get transaction count

// Get nonce, supports pending、latest
var address = "<ADDRESS>";
ttc_web3_bridge.getTransactionCount(address, function(error, nonce){
	console.log(nonce);
});

ttc_web3_bridge.getTransactionCount(address,"pending", function(error, nonce){
	console.log(nonce);
});

Get Block

Get block by block hash

var block_hash = "<BLOCK HASH>";
ttc_web3_bridge.getBlock(block_hash,function(error, result){
	console.log(result);
});

Get block by block height

var block_height = <BLOCK Height>;
ttc_web3_bridge.getBlock(block_height,function(error, result){
	console.log(result);
});

Contact

email: [email protected]