Pirichain Smart Scenarios Documentation
  • ➰Pirichain Smart Scenario (PSce)
  • 🧿Which Industries can use easily PSces?
  • ♥️Full Support Interoperability!
  • ➰General Structure of Smart Scenarios
  • ➰PSce Working Principles And Limitations
  • ➰PSce Constants
  • ➰PSce Accumulator Object
  • ➰Simple Usage PSce
  • ➰Generating a new transaction though PSce
  • ➰What will i have if i execute a PCse
  • 💲Operation Costs
  • 🔐Double Protect! your client assets are in safe with addition authenticator code
  • 🛑Avoid these methods and situations in PSce
  • ➿PSce Functions
    • 🏁sendPIRI
    • 🏁sendToken
    • 🏁pushData
    • 🏁getBalance
    • 🏁getBalanceList
    • 🏁getPureTransaction
    • 🏁getTransaction
    • 🏁listPoolTransactions
    • 🏁findData
    • 🏁findDataWithAddress
    • 🏁findDataWithValue
      • 🏁findDataUpperThanValue
      • 🏁findDataLowerThanValue
    • 🏁getRandom
    • 🌏getData
    • 🌎postData
    • 🔓generateAuthenticator
    • 🔓verifyAuthenticator
    • 🔓getMyAuthenticatorToken
    • ❓Validators
    • 🔔Examples
      • 🍁Get PSce owner wallet balance
      • 🍁sendToken Example
      • 🍁EVM based similar approach- Token Management With PSDATA
      • 🍁Connect to EXTERNAL ENVIRONMENTS!
      • 🍁Time Based Inheritor Example
      • 🍁Token Example with Ticket Operation
      • 🍁A sample about token vesting
      • 🍁Asset Management Of Share Holders using with PSce
      • 🍁Double Protect your assets using with Pirichain Authenticator Factor
      • 🍁What an easy to build up your metaverse planet in Pirichain!
      • 🍁A new approach dependency factor using with PSce
      • 🍁Advanced Operation - Withdraw All Your Asset From PCse
      • 🍁Task Diversification and Transaction Proof (TDTP)
      • 🍁A Sample of using Origin Flag Integration on Binance Smart Chain Network.
      • 🍁Deposit/Withdraw from Foreign Chain (BSC) and Add Order , Buy and Sell Token, Just a 277 Code Lines!
      • 🍁Pirichain Decentralized Exchange (DEX) Sample Full Codes
Powered by GitBook
On this page
  1. PSce Functions

listPoolTransactions

Getting detailed tx record though Transaction Hash.

const result = await Transaction.listPoolTransactions();

To get detailed transaction infos using with above method.

Sample:

const result = await Transaction.listPoolTransactions();

Response Example:

[{
    "type":-1,
    "isFromScenario":false,
    "transactionHash":"fc837a22143456eba77b0637b2454f18434298b52bb376fda8a8021edc133de9","
    amount":0,
    "assetID":-1,
    "blockHeight":3957190,
    "fee":0.2575,
    "from":"PRTMPLGiRmUVuiaCcdFudXebEEDa4o2u61vGM3PbHZK",
    "pub":"0489981e828063c4f71c726920c96241cd969a5189574af9b75729c56f9e4c7e94b3c74ce825ecd9652b2d7871379b6c1790b3f96d342b504b85583c119ab9a08b",
    "signature":"3045022100a28e8bf084313fa17e3ddd136b15cd89c071c9ab2d5706ed9bfe9f0ead72411d02203bf8ba6a611aba55aae18c9c694b3905dc3473fcfe5de1ecdf5946e037c68b4b",
    "symbol":"PIRI",
    "timeStamp":1705185310589,
    "to":"PRTMRGAZ9XChpq32APAKbTiYZpeUiA3ZrP1PPuq48pR"
}
]
PreviousgetTransactionNextfindData

Last updated 1 year ago

➿
🏁