Skip to main content
GET
/
v1
/
signatureAggregator
/
{network}
/
aggregateSignatures
/
{txHash}
JavaScript
import { Avalanche } from "@avalanche-sdk/chainkit";

const avalanche = new Avalanche({
  network: "mainnet",
});

async function run() {
  const result = await avalanche.data.signatureAggregator.get({
    txHash: "3P91K6nuDFvDodcRuJTsgdf9SvYe5pMiKk38HppsoeAiEztCP",
  });

  console.log(result);
}

run();
{
  "signedMessage": "<string>"
}

Authorizations

x-glacier-api-key
string
header
required

Api keys provide higher access to rate limits. To obtain an api key, sign up for an account at https://avacloud.io/.

Path Parameters

network
enum<string>
required

Either mainnet or testnet/fuji.

Available options:
mainnet,
fuji,
testnet
txHash
string
required

A primary network (P or X chain) transaction hash.

Response

Successful response

signedMessage
string
required