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
OptionalclaimApi?: string
Optionalcursor?: string
Optionalfetch?: {
(input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
(input: string | URL | Request, init?: RequestInit): Promise<Response>;
}
- (input, init?): Promise<Response>
Parameters
- input: URL | RequestInfo
Optionalinit: RequestInit
Returns Promise<Response>
- (input, init?): Promise<Response>
Parameters
- input: string | URL | Request
Optionalinit: RequestInit
Returns Promise<Response>
Optionalhost?: string
Optionalnetwork?: "mainnet" | "testnet"
Optionalpath?: string
Returns Promise<{
cursor: null | string;
hasNextPage: boolean;
links: {
assets: LinkAssets;
claimed: boolean;
createdAt: string;
digest: null | string;
link: ZkSendLink;
}[];
}>
MDN Reference