V2 Mining Contract

Contract Addresses

Name
Chain
Address

USDD_USDT LOCK V2 farm

TRON

TY1mxnpL18oDP8hsSrrxNZgUMj71pcyFS8

2pool LOCK farm

TRON

TJmn1bjmNfE2F1sw2x6P224i8sFQj5mnbg

USDDOLD 2pool LP ( USDDOLD + USDT )

Nile

TP8E1SCKdJbXardTxRMLzvj83FqR15pCxG

Interacting with Contracts

After initializing a TronWeb instance, it is very convenient to interact with contracts online.

Initialize TronWeb Example

const TronWeb = require("tronweb")
const privateKey = process.env.PRIVATE_KEY
const apiKey = process.env.API_KEY
var tronWeb = new TronWeb({
  fullHost: "https://api.trongrid.io",
  headers: { "TRON-PRO-API-KEY": apiKey },
  privateKey: privateKey,
})

Last updated