Function listCreatedLinks
- listCreatedLinks(__namedParameters): 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>;
}
- (input, init?): Promise<Response>
Parameters
- input: URL | RequestInfo
Optional
init: RequestInit
Returns Promise<Response>
- (input, init?): Promise<Response>
Parameters
- input: string | URL | Request
Optional
init: RequestInit
Returns 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;
}[];
}>
MDN Reference