Function listCreatedLinks
- listCreatedLinks(
__namedParameters: {
address: string;
claimApi?: string;
client?: SuiClient;
contract?: ZkBagContractOptions;
cursor?: string;
fetch?: {
(input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
(input: string | URL | Request, init?: RequestInit): Promise<Response>;
};
host?: string;
network?: "mainnet"
| "testnet";
path?: string;
},
): Promise<
{
cursor: null
| string;
hasNextPage: boolean;
links: {
assets: LinkAssets;
claimed: boolean;
createdAt: string;
digest: null | string;
link: ZkSendLink;
}[];
},
> Parameters
- __namedParameters: {
address: string;
claimApi?: string;
client?: SuiClient;
contract?: ZkBagContractOptions;
cursor?: string;
fetch?: {
(input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
(input: string | URL | Request, init?: RequestInit): Promise<Response>;
};
host?: string;
network?: "mainnet"
| "testnet";
path?: string;
}address: string
Optional
claimApi?: string
Optional
cursor?: string
Optional
fetch?: {
(input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
(input: string | URL | Request, init?: RequestInit): Promise<Response>;
}
Optional
host?: string
Optional
network?: "mainnet" | "testnet"
Optional
path?: string
Returns Promise<
{
cursor: null
| string;
hasNextPage: boolean;
links: {
assets: LinkAssets;
claimed: boolean;
createdAt: string;
digest: null | string;
link: ZkSendLink;
}[];
},
>