# Connect to Tron wallet
PW Core makes it very easy to receive and transfer CKB or UDT (User Defined Token) in CKB dApps.
Users don't need to install a new wallet or create a new CKB mnemonic, they can just open an existing cryptocurrency wallet and use the ETH / EOS / Tron addresses they are quite familiar with, to receive or send CKB and UDTs.
# Quick access
In your dApp, add the following js code:
import PWCore, {
PwCollector,
ChainID,
Address,
Amount,
AddressType,
TronProvider
} from '@lay2/pw-core'
// connect to CKB testnet: https://testnet.ckb.dev
// connect to CKB mainnet: https://mainnet.ckb.dev
const pwcore = await new PWCore('https://testnet.ckb.dev').init(
new TronProvider(), // a built-in Provider for Tron env.
new PwCollector('https://cellapitest.ckb.pw') // a custom Collector to retrive cells from cache server.
)
Note
You can choose to connect the CKB nodes provided by the Lay2 team below, or of course you can choose to connect your own CKB nodes.
- CKB Mainnet:https://mainnet.ckb.dev
- CKB Testnet:https://testnet.ckb.dev
There are limit for frequency:
- rate: 20 req / s
- burst: 20 req / s, you will receive 500 Error if the limit is exceeded.
# General Purpose Commands
# Get login address
Get the current Tron address which the user is logged in.
// get the login Tron address.
const tronAccount = PWCore.provider.address.addressString
# Get the corresponding CKB address
Get the corresponding CKB address based on the Tron address which the user is currently logged in.
// change the login Tron address to ckb address.
const ckbAddress = PWCore.provider.address.toCKBAddress()
# Get CKB balance
Get the CKB balance of the current address.
// get the balance of current address.
const ckbBalance = await PWCore.defaultCollector.getBalance(PWCore.provider.address)
More generically, we can get the CKB balance of any addresses.
// get balance of any CKB address.
const anyCkbAddress = new Address('Any CKB address', AddressType.ckb)
const ckbBalance = await PWCore.defaultCollector.getBalance(anyCkbAddress)
// get balance of any Tron address.
const anyTronAddress = new Address('Any Tron address', AddressType.tron)
const ckbBalance = await PWCore.defaultCollector.getBalance(anyTronAddress)
# Get SUDT balance
Get the SUDT balance of the current address.
const sudtBalance = await PWCore.defaultCollector.getSUDTBalance(new SUDT(SUDT_ISSURER_LOCKHASH), PWCore.provider.address);