ao-js-sdk - v0.4.0
    Preparing search index...

    Interface IARNSClient

    Interface for ARNS (Arweave Name Service) client operations

    interface IARNSClient {
        getArNSRecords(
            params?: { cursor?: string; limit?: number },
        ): Promise<GetArNSRecordsResponse>;
        getProcessId(): string;
        getRecord(name: string): Promise<ARNSRecordResponse | undefined>;
    }

    Implemented by

    Index

    Methods

    • Retrieves paginated ARNS records

      Parameters

      • Optionalparams: { cursor?: string; limit?: number }

        Optional pagination parameters (cursor and limit)

        • Optionalcursor?: string

          Cursor for pagination

        • Optionallimit?: number

          Maximum number of records to retrieve

      Returns Promise<GetArNSRecordsResponse>

      Promise resolving to paginated ARNS records response