author_pendingExtrinsics

Returns every outstanding extrinsic, maybe sorted by sender.

Example Request and Result for author_pendingExtrinsics method

In this section, we provide an illustrative example of a request made to retrieve details contents using the author_pendingExtrinsics method. Additionally, we present the resulting response containing information about all outstanding extrinsic.

Parameters

  • none

The example in this section uses a non-existing project id.

Make sure you replace it with your Vara Mainnet endpoint when issuing the API calls.

Don't have a project id? Here's a straightforward guide on how to obtain one!

Returns every outstanding extrinsic, maybe sorted by sender.

POST https://vara-mainnet.blastapi.io/<project-id>

{
    "jsonrpc": "2.0",
    "result": [
        "0x91028400f8b38f6e10e81d365db7349fe60ad1529047c27f0b5df2029178528561e37a56011a888b217bed6776564392dc90faf5890e00c613758a5072450bb2a28b2b383f4c1da3fd19b86a4b4a32167c6ae8c1c755938d0af98b29ac8c5db0576b8a3b85060104006803c05a8ac14d94c845a4a070129cc8449161f79b787f4193650229d46d401003400403004429353a0000000000000000000000000000000000000000",
        "0x950284000a314ad10a28ead1ed11a1452f2a2f72d4e1f9012dc67506435f18831a14a25401841576a52dcb809cade278ed58576d32f84109d26eba90bcb3e6d0830c3c62697c44cff68cbbe5a0aa4c46bcc00ba1dbc447d3eb532f1e788e198b783d7ff08126017c006803c05a8ac14d94c845a4a070129cc8449161f79b787f4193650229d46d40100340080500004429353a0000000000000000000000000000000000000000"
    ],
    "id": 1
}

Curl Request example

curl --location 'https://vara-mainnet.blastapi.io/<project-id>' \
--header 'Content-Type: application/json' \
--data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "author_pendingExtrinsics",
    "params": []
}'

Last updated