/** * Cardano Wallet Backend API *
status: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Create Address * @param {Body16} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ createAddress: (body: Body16, walletId: string, options?: any) => Promisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Import Address * @param {string} walletId * @param {string} addressId * @param {*} [options] Override http request option. * @throws {RequiredError} */ importAddress: (walletId: string, addressId: string, options?: any) => Promisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Import Addresses * @param {Body15} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ importAddresses: (body: Body15, walletId: string, options?: any) => Promisestatus: stable
Return a list of known addresses, ordered from newest to oldest for sequential wallets. Arbitrarily ordered for random wallets. * @summary List * @param {string} walletId * @param {string} [state] An optional filter on the address state. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listByronAddresses: (walletId: string, state?: string, options?: any) => Promisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Create Address * @param {Body16} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ createAddress(body: Body16, walletId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Import Address * @param {string} walletId * @param {string} addressId * @param {*} [options] Override http request option. * @throws {RequiredError} */ importAddress(walletId: string, addressId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Import Addresses * @param {Body15} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ importAddresses(body: Body15, walletId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromisestatus: stable
Return a list of known addresses, ordered from newest to oldest for sequential wallets. Arbitrarily ordered for random wallets. * @summary List * @param {string} walletId * @param {string} [state] An optional filter on the address state. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listByronAddresses(walletId: string, state?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Create Address * @param {Body16} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ createAddress(body: Body16, walletId: string, options?: any): AxiosPromisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Import Address * @param {string} walletId * @param {string} addressId * @param {*} [options] Override http request option. * @throws {RequiredError} */ importAddress(walletId: string, addressId: string, options?: any): AxiosPromisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Import Addresses * @param {Body15} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ importAddresses(body: Body15, walletId: string, options?: any): AxiosPromisestatus: stable
Return a list of known addresses, ordered from newest to oldest for sequential wallets. Arbitrarily ordered for random wallets. * @summary List * @param {string} walletId * @param {string} [state] An optional filter on the address state. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listByronAddresses(walletId: string, state?: string, options?: any): AxiosPromisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Create Address * @param {Body16} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ByronAddressesApi */ createAddress(body: Body16, walletId: string, options?: any): Promisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Import Address * @param {string} walletId * @param {string} addressId * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ByronAddressesApi */ importAddress(walletId: string, addressId: string, options?: any): Promisestatus: stable
⚠️ This endpoint is available for `random` wallets only. Any attempt to call this endpoint on another type of wallet will result in a `403 Forbidden` error from the server. * @summary Import Addresses * @param {Body15} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ByronAddressesApi */ importAddresses(body: Body15, walletId: string, options?: any): Promisestatus: stable
Return a list of known addresses, ordered from newest to oldest for sequential wallets. Arbitrarily ordered for random wallets. * @summary List * @param {string} walletId * @param {string} [state] An optional filter on the address state. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ByronAddressesApi */ listByronAddresses(walletId: string, state?: string, options?: any): Promise