New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

iw-trx

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iw-trx

>> This project provides a simple package to realize the core logic of the wallet. If you have any questions, please ask at the following website [icanwallet](https://github.com/icanwallet/icanwallet)

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

iw-trx

This project provides a simple package to realize the core logic of the wallet. If you have any questions, please ask at the following website icanwallet

use case

//install
npm i iw-trx -s


//from mnemonic
const ecc = require('iw-trx')
const wallet = ecc.fromMnemonic(mnemonic)
console.log(wallet)
//from privateKey
const wallet2 = ecc.fromPrivateKey(wallet.privateKey)
console.log(wallet2)
//check address
console.log(ecc.isAddress(wallet.address))

account

const testPrivatekey = '....'
const usdtToken = 'TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t'

const tokeninfo = await libs.tokenInfo(usdtToken)
console.log(tokeninfo);
const abiInfo = await libs.getAbi(usdtToken)
console.log(abiInfo);
			
const contracts = await libs.getContract(testPrivatekey, usdtToken, libs.defalutAbi);
console.log(contracts)

libs.config.nodeUrl = 'https://api.shasta.trongrid.io';
let  balance = await libs.balanceOf('TTfaBaMkqhWa36z9GzwncNmxY68XuZCxty')
console.log(balance)

let source = await libs.getAccountResources('TTfaBaMkqhWa36z9GzwncNmxY68XuZCxty')
console.log(source);

let deploy = await libs.deployContract(testPrivatekey)
console.log(deploy)

let freeze = await libs.freezeBalance(testPrivatekey,2);
console.log(freeze);

let rt = await libs.transfer(testPrivatekey, 'trx', 'TRVX2Kw7SdAkscke6Guv5RF933Chs1jHEp', 0.01)
console.log(rt)

let  logs = await libs.logs('TAUN6FwrnwwmaEqYcckffC7wYmbaS6cBiX', 'trx',1, 5)
console.log(logs)

let  logstrc = await libs.logs('TAUN6FwrnwwmaEqYcckffC7wYmbaS6cBiX', usdtToken,1, 5)
console.log(logstrc)

Keywords

crypto wallet

FAQs

Package last updated on 31 May 2022

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