Single

The single operation endpoint provides information about a specific operation.

- ARGUMENT -

  • id required

    The ID number for this operation.

  • join optional

    Set to transactions to include the transactions which created each of the operations in the response.

var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Server("https://expansion-testnet.bantu.network");

server
  .operations()
  .operation("121692259040116737")
  .call()
  .then(function (resp) {
    console.log(resp);
  })
  .catch(function (err) {
    console.error(err);
  });

Last updated

Was this helpful?