Endpoints for fetching Commitments. For more information see the Commitment API documentation on tzKT.
Fetches commitments from tzKT.
get commitment by blinded address.
Returns a commitment with the specified blinded address.
Fetches a number of commitments from tzKT.
get commitments count.
Fetch Commitment Count
let parameters: GetCommitmentParameters = {'activated': true, 'balance.gt': 100000000}; let commitmentCount: number = await Commitment.count(parameters);
Returns a number of commitments.
get commitments.
Fetch Commitments
let parameters: GetCommitmentParameters = {'activated': true, 'activationLevel.gt': 1500000}; let commitments: Commitment[] = await Commitment.get(parameters);
Returns a list of commitments.
Generated using TypeDoc
Endpoints for fetching Commitments. For more information see the Commitment API documentation on tzKT.