/** * Cardano Wallet Backend API *
status: stable
Return a public key for a given role and derivation index. Note: Only `Soft` indexes are supported by this endpoint. * @summary Get Public Key * @param {string} walletId * @param {string} role * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} */ getWalletKey: (walletId: string, role: string, index: string, options?: any) => Promisestatus: stable
Retrieve account public key from the wallet. Note: Only `Hard` indexes are supported by this endpoint. * @summary Create * @param {ApiPostAccountKeyData} body * @param {string} walletId * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} */ postAccountKey: (body: ApiPostAccountKeyData, walletId: string, index: string, options?: any) => Promisestatus: stable
Return a public key for a given role and derivation index. Note: Only `Soft` indexes are supported by this endpoint. * @summary Get Public Key * @param {string} walletId * @param {string} role * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} */ getWalletKey(walletId: string, role: string, index: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromisestatus: stable
Retrieve account public key from the wallet. Note: Only `Hard` indexes are supported by this endpoint. * @summary Create * @param {ApiPostAccountKeyData} body * @param {string} walletId * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} */ postAccountKey(body: ApiPostAccountKeyData, walletId: string, index: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromisestatus: stable
Return a public key for a given role and derivation index. Note: Only `Soft` indexes are supported by this endpoint. * @summary Get Public Key * @param {string} walletId * @param {string} role * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} */ getWalletKey(walletId: string, role: string, index: string, options?: any): AxiosPromisestatus: stable
Retrieve account public key from the wallet. Note: Only `Hard` indexes are supported by this endpoint. * @summary Create * @param {ApiPostAccountKeyData} body * @param {string} walletId * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} */ postAccountKey(body: ApiPostAccountKeyData, walletId: string, index: string, options?: any): AxiosPromisestatus: stable
Return a public key for a given role and derivation index. Note: Only `Soft` indexes are supported by this endpoint. * @summary Get Public Key * @param {string} walletId * @param {string} role * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof KeysApi */ getWalletKey(walletId: string, role: string, index: string, options?: any): Promisestatus: stable
Retrieve account public key from the wallet. Note: Only `Hard` indexes are supported by this endpoint. * @summary Create * @param {ApiPostAccountKeyData} body * @param {string} walletId * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof KeysApi */ postAccountKey(body: ApiPostAccountKeyData, walletId: string, index: string, options?: any): Promise