Skip to content
View sanjukurian's full-sized avatar

Organizations

@KingsLearning
Block or Report

Block or report sanjukurian

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. create bitcoin wallet, make a transa... create bitcoin wallet, make a transaction on bitcoin network using bitcoinjs-lib and blockcypher
    1
    var request = require('request');
    2
    const bitcoin = require('bitcoinjs-lib');
    3
    var buffer = require('buffer');
    4
    const bitcoinNetwork = bitcoin.networks.testnet;
    5
    
                  
  2. View balance, make a transaction and... View balance, make a transaction and see transaction details of erc20 tokens(TUSD in the code) and connected via infura
    1
    const config = require("../../config/config");
    2
    import path from 'path'
    3
    import Web3 from 'Web3'
    4
    import fs from 'fs'
    5
    const web3 = new Web3(`https://rinkeby.infura.io/v3/` + config.infura_api_key);
  3. Create ETH wallet, make transaction,... Create ETH wallet, make transaction, get balance etc using infura
    1
    import Web3 from 'Web3'
    2
    var Tx = require('ethereumjs-tx');
    3
    const web3 = new Web3(`https://rinkeby.infura.io/v3/` + config.infura_api_key);
    4
    
                  
    5
    const createWallet = async () => {