Transaction
What is it?
Methods
import { models } from '@multiplechain/evm-chains'
const tx = new models.Transaction('0x1234')
const transactionId = tx.getId()
const transactionData = await tx.getData()
const transactionType = await tx.getType()
const transactionUrl = tx.getUrl()
const signer = await tx.getSigner()
const fee = await tx.getFee()
const status2 = await tx.getStatus()
const status = await tx.wait(4000)
const blockNumber = await tx.getBlockNumber()
const confirmationCount = await tx.getBlockConfirmationCount()
const blockTimestamp = await tx.getBlockTimestamp()Last updated