v2
Authentication
fetch(URL, { headers: { "X-API-KEY": "abc123" } }) Delegations by wallet
Get a list of incoming and outgoing delegations for a specific wallet.
Path Parameters
Name
Type
Description
Query Parameters
Name
Type
Description
type Delegation = {
type: "NONE" | "ALL" | "CONTRACT" | "TOKEN";
from: string;
to: string;
contract: string | null;
tokenId: number | null;
};
// returns Delegation[]Delegation Checks
Returns true if delegate is granted to act on the from's behalf
Query Parameters
Name
Type
Description
Returns true if delegate is granted to act on from's behalf for entire wallet or that specific contract
Query Parameters
Name
Type
Description
Returns true if delegate is granted to act on from's behalf for entire wallet, that contract, or that specific tokenId
Query Parameters
Name
Type
Description
Returns the delegated balance, which will be 0 if the delegation does not exist
Query Parameters
Name
Type
Description
Returns the delegated balance, which will be 0 if the delegation does not exist
Query Parameters
Name
Type
Description
Last updated