RSS3 Documentation

Retrieve staking transaction by hash

Retrieve staking transaction details by its transaction hash. This endpoint provides comprehensive data about a single staking transaction, including staker address, Node address, value staked, associated chips, and related events.

GET
/nta/stakings/transactions/{transaction_hash}
/nta/stakings/transactions/{transaction_hash}

Path Parameters

transaction_hash
Required
string

The unique hash of the staking transaction

curl -X GET "https://gi.rss3.io/nta/stakings/transactions/string"

Staking transaction details fetched successfully

{
  "data": {
    "id": "0xcb4038576ed46c3913915435c7ccb7316cf83c626dfcf580d0b84b86702e76eb",
    "staker": "0xc8b960d09c0078c18dcbe7eb9ab9d816bcca8944",
    "node": "0x08d66b34054a174841e2361bd4746ff9f4905cc2",
    "value": "5000000000000000000000",
    "chip_ids": [
      1690,
      1691
    ],
    "event": {
      "deposit": {
        "deposited": {
          "block": {
            "hash": "0x200b26e118e51f23d052ef3aa92bc411dbd0a6ce811f511adb9f6049dc938614",
            "number": 726419,
            "timestamp": 1708337158
          },
          "transaction": {
            "hash": "0x6595192f1193c2584c28e7d4b50b9208242bf9b4538933f0081d3f4625373d2f",
            "index": 1
          }
        }
      },
      "withdraw": {
        "requested": {
          "block": {
            "hash": "0x200b26e118e51f23d052ef3aa92bc411dbd0a6ce811f511adb9f6049dc938614",
            "number": 726419,
            "timestamp": 1708337158
          },
          "transaction": {
            "hash": "0x6595192f1193c2584c28e7d4b50b9208242bf9b4538933f0081d3f4625373d2f",
            "index": 1
          }
        },
        "claimed": {
          "block": {
            "hash": "0x200b26e118e51f23d052ef3aa92bc411dbd0a6ce811f511adb9f6049dc938614",
            "number": 726419,
            "timestamp": 1708337158
          },
          "transaction": {
            "hash": "0x6595192f1193c2584c28e7d4b50b9208242bf9b4538933f0081d3f4625373d2f",
            "index": 1
          }
        }
      },
      "stake": {
        "staked": {
          "block": {
            "hash": "0x200b26e118e51f23d052ef3aa92bc411dbd0a6ce811f511adb9f6049dc938614",
            "number": 726419,
            "timestamp": 1708337158
          },
          "transaction": {
            "hash": "0x6595192f1193c2584c28e7d4b50b9208242bf9b4538933f0081d3f4625373d2f",
            "index": 1
          }
        }
      },
      "unstake": {
        "requested": {
          "block": {
            "hash": "0x200b26e118e51f23d052ef3aa92bc411dbd0a6ce811f511adb9f6049dc938614",
            "number": 726419,
            "timestamp": 1708337158
          },
          "transaction": {
            "hash": "0x6595192f1193c2584c28e7d4b50b9208242bf9b4538933f0081d3f4625373d2f",
            "index": 1
          }
        },
        "claimed": {
          "block": {
            "hash": "0x200b26e118e51f23d052ef3aa92bc411dbd0a6ce811f511adb9f6049dc938614",
            "number": 726419,
            "timestamp": 1708337158
          },
          "transaction": {
            "hash": "0x6595192f1193c2584c28e7d4b50b9208242bf9b4538933f0081d3f4625373d2f",
            "index": 1
          }
        }
      },
      "merge_chips": {
        "merged": {
          "block": {
            "hash": "0x200b26e118e51f23d052ef3aa92bc411dbd0a6ce811f511adb9f6049dc938614",
            "number": 726419,
            "timestamp": 1708337158
          },
          "transaction": {
            "hash": "0x6595192f1193c2584c28e7d4b50b9208242bf9b4538933f0081d3f4625373d2f",
            "index": 1
          }
        }
      }
    }
  }
}