From 1f6a7c693d5442a3414a82250b558f1d61c0652e Mon Sep 17 00:00:00 2001 From: Filipe Azevedo Date: Wed, 18 Sep 2024 10:06:01 +0100 Subject: [PATCH 1/9] update rewards api to latest spec --- src/coinbase/historical_balance.ts | 2 +- src/coinbase/staking_reward.ts | 1 + src/examples/solana_list_rewards.ts | 18 +++++++++++++++++ src/tests/historical_balance_test.ts | 17 ++++++++++++++++ src/tests/staking_reward_test.ts | 30 ++++++++++++++++++++++++---- 5 files changed, 63 insertions(+), 5 deletions(-) create mode 100644 src/examples/solana_list_rewards.ts diff --git a/src/coinbase/historical_balance.ts b/src/coinbase/historical_balance.ts index 13c4b25f..693d7a51 100644 --- a/src/coinbase/historical_balance.ts +++ b/src/coinbase/historical_balance.ts @@ -35,7 +35,7 @@ export class HistoricalBalance { public static fromModel(model: HistoricalBalanceModel): HistoricalBalance { const asset = Asset.fromModel(model.asset); return new HistoricalBalance( - asset.fromAtomicAmount(new Decimal(model.amount)), + (model.amount != "") ? asset.fromAtomicAmount(new Decimal(model.amount)) : new Decimal(0), new Decimal(model.block_height), model.block_hash, asset, diff --git a/src/coinbase/staking_reward.ts b/src/coinbase/staking_reward.ts index e5c03bc1..db2e0800 100644 --- a/src/coinbase/staking_reward.ts +++ b/src/coinbase/staking_reward.ts @@ -85,6 +85,7 @@ export class StakingReward { * @returns The amount. */ public amount(): Amount { + if (this.model.amount == "") return 0; if (this.format == StakingRewardFormat.USD) { return new Decimal(this.model.amount).div(new Decimal("100")); } diff --git a/src/examples/solana_list_rewards.ts b/src/examples/solana_list_rewards.ts new file mode 100644 index 00000000..4e9b274d --- /dev/null +++ b/src/examples/solana_list_rewards.ts @@ -0,0 +1,18 @@ +import { StakingReward } from "../coinbase/staking_reward"; +import { Coinbase } from "../coinbase/coinbase"; +import { Address } from "../coinbase/address"; + +async function printStakingInfo() { + Coinbase.configureFromJson({ filePath: "~/Downloads/cdp_api_key.json" }); + + const startTime = new Date(2024, 5).toISOString(); + + const rewards = await StakingReward.list("solana-mainnet", Coinbase.assets.Sol, ["beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar"], startTime, new Date().toISOString()); + console.log(rewards); + + const addr = new Address("solana-mainnet", "beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar"); + const balances = await addr.historicalStakingBalances(Coinbase.assets.Sol, startTime, new Date().toISOString()); + console.log(balances); +} + +printStakingInfo(); diff --git a/src/tests/historical_balance_test.ts b/src/tests/historical_balance_test.ts index eb1397f4..24c09e09 100644 --- a/src/tests/historical_balance_test.ts +++ b/src/tests/historical_balance_test.ts @@ -27,5 +27,22 @@ describe("HistoricalBalance", () => { it("returns a new HistoricalBalance object with the correct asset_id", () => { expect(historicalBalance.asset.assetId).toBe(Coinbase.assets.Eth); }); + + it("returns a new HistoricalBalance object with the correct amount when empty", () => { + const historyModel: HistoricalBalanceModel = { + amount: "", + block_hash: "0x0dadd465fb063ceb78babbb30abbc6bfc0730d0c57a53e8f6dc778dafcea568f", + block_height: "11349306", + asset: { + asset_id: Coinbase.assets.Eth, + network_id: Coinbase.networks.BaseSepolia, + decimals: 18, + contract_address: "0x", + }, + }; + const historicalBalance = HistoricalBalance.fromModel(historyModel); + + expect(historicalBalance.amount).toEqual(new Decimal(0)); + }); }); }); diff --git a/src/tests/staking_reward_test.ts b/src/tests/staking_reward_test.ts index 03265303..442812d0 100644 --- a/src/tests/staking_reward_test.ts +++ b/src/tests/staking_reward_test.ts @@ -140,7 +140,7 @@ describe("StakingReward", () => { const reward = new StakingReward( { address_id: address.getId(), - date: "2024-05-03", + date: "2024-05-02T00:00:00Z", amount: "226", state: StakingRewardStateEnum.Pending, format: StakingRewardFormat.USD, @@ -164,7 +164,7 @@ describe("StakingReward", () => { const reward = new StakingReward( { address_id: address.getId(), - date: "2024-05-03", + date: "2024-05-02T00:00:00Z", amount: "726030823305604", state: StakingRewardStateEnum.Pending, format: StakingRewardFormat.NATIVE, @@ -181,6 +181,28 @@ describe("StakingReward", () => { const amount = reward.amount(); expect(amount).toEqual(0.000726030823305604); }); + + it("should return 0 when amount is empty", () => { + const reward = new StakingReward( + { + address_id: address.getId(), + date: "2024-05-03", + amount: "", + state: StakingRewardStateEnum.Pending, + format: StakingRewardFormat.NATIVE, + usd_value: { + amount: "179", + conversion_price: "2461.63", + conversion_time: "2024-05-02T00:00:00Z", + }, + }, + asset, + StakingRewardFormat.NATIVE, + ); + + const amount = reward.amount(); + expect(amount).toEqual(0); + }); }); describe(".date", () => { @@ -188,7 +210,7 @@ describe("StakingReward", () => { const reward = new StakingReward( { address_id: address.getId(), - date: "2024-05-03", + date: "2024-05-03T01:23:45Z", amount: "226", state: StakingRewardStateEnum.Pending, format: StakingRewardFormat.USD, @@ -204,7 +226,7 @@ describe("StakingReward", () => { const date = reward.date(); const conversionTime = reward.conversionTime(); - expect(date).toEqual(new Date("2024-05-03")); + expect(date).toEqual(new Date("2024-05-03T01:23:45Z")); expect(conversionTime).toEqual(new Date("2024-05-03T00:00:00Z")); }); }); From cd0bbe18f08b1ec63def4555e10120b338706141 Mon Sep 17 00:00:00 2001 From: Filipe Azevedo Date: Wed, 18 Sep 2024 10:06:22 +0100 Subject: [PATCH 2/9] update generated client --- src/coinbase/historical_balance.ts | 2 +- src/examples/solana_list_rewards.ts | 9 +++++---- src/tests/historical_balance_test.ts | 17 ----------------- 3 files changed, 6 insertions(+), 22 deletions(-) diff --git a/src/coinbase/historical_balance.ts b/src/coinbase/historical_balance.ts index 693d7a51..13c4b25f 100644 --- a/src/coinbase/historical_balance.ts +++ b/src/coinbase/historical_balance.ts @@ -35,7 +35,7 @@ export class HistoricalBalance { public static fromModel(model: HistoricalBalanceModel): HistoricalBalance { const asset = Asset.fromModel(model.asset); return new HistoricalBalance( - (model.amount != "") ? asset.fromAtomicAmount(new Decimal(model.amount)) : new Decimal(0), + asset.fromAtomicAmount(new Decimal(model.amount)), new Decimal(model.block_height), model.block_hash, asset, diff --git a/src/examples/solana_list_rewards.ts b/src/examples/solana_list_rewards.ts index 4e9b274d..9161e64a 100644 --- a/src/examples/solana_list_rewards.ts +++ b/src/examples/solana_list_rewards.ts @@ -1,18 +1,19 @@ import { StakingReward } from "../coinbase/staking_reward"; import { Coinbase } from "../coinbase/coinbase"; import { Address } from "../coinbase/address"; +import { NetworkIdentifier } from "../client"; -async function printStakingInfo() { +async function listSolanaStakingRewards() { Coinbase.configureFromJson({ filePath: "~/Downloads/cdp_api_key.json" }); const startTime = new Date(2024, 5).toISOString(); - const rewards = await StakingReward.list("solana-mainnet", Coinbase.assets.Sol, ["beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar"], startTime, new Date().toISOString()); + const rewards = await StakingReward.list(NetworkIdentifier.SolanaMainnet, Coinbase.assets.Sol, ["beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar"], startTime, new Date().toISOString()); console.log(rewards); - const addr = new Address("solana-mainnet", "beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar"); + const addr = new Address(NetworkIdentifier.SolanaMainnet, "beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar"); const balances = await addr.historicalStakingBalances(Coinbase.assets.Sol, startTime, new Date().toISOString()); console.log(balances); } -printStakingInfo(); +listSolanaStakingRewards(); diff --git a/src/tests/historical_balance_test.ts b/src/tests/historical_balance_test.ts index 24c09e09..eb1397f4 100644 --- a/src/tests/historical_balance_test.ts +++ b/src/tests/historical_balance_test.ts @@ -27,22 +27,5 @@ describe("HistoricalBalance", () => { it("returns a new HistoricalBalance object with the correct asset_id", () => { expect(historicalBalance.asset.assetId).toBe(Coinbase.assets.Eth); }); - - it("returns a new HistoricalBalance object with the correct amount when empty", () => { - const historyModel: HistoricalBalanceModel = { - amount: "", - block_hash: "0x0dadd465fb063ceb78babbb30abbc6bfc0730d0c57a53e8f6dc778dafcea568f", - block_height: "11349306", - asset: { - asset_id: Coinbase.assets.Eth, - network_id: Coinbase.networks.BaseSepolia, - decimals: 18, - contract_address: "0x", - }, - }; - const historicalBalance = HistoricalBalance.fromModel(historyModel); - - expect(historicalBalance.amount).toEqual(new Decimal(0)); - }); }); }); From cf4030a82b40c64ebc672d2bbb7768b57819be56 Mon Sep 17 00:00:00 2001 From: cb-howardatcb <86798563+howard-at-cb@users.noreply.github.com> Date: Fri, 20 Sep 2024 13:26:23 -0700 Subject: [PATCH 3/9] update SDK's listAddressTransaction (#260) * listAddressTransaction * Update coinbase.ts --- src/client/api.ts | 262 +++++++++++++++++++++++--------------- src/coinbase/address.ts | 2 +- src/coinbase/coinbase.ts | 6 + src/coinbase/types.ts | 40 +++--- src/tests/address_test.ts | 22 ++-- src/tests/utils.ts | 4 + 6 files changed, 200 insertions(+), 136 deletions(-) diff --git a/src/client/api.ts b/src/client/api.ts index ecea7604..c46570e4 100644 --- a/src/client/api.ts +++ b/src/client/api.ts @@ -5067,54 +5067,6 @@ export const ExternalAddressesApiAxiosParamCreator = function (configuration?: C - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * List all transactions that interact with the address. - * @summary List transactions for an address. - * @param {string} networkId The ID of the blockchain network - * @param {string} addressId The ID of the address to fetch the transactions for. - * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. - * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listAddressTransactions: async (networkId: string, addressId: string, limit?: number, page?: string, options: RawAxiosRequestConfig = {}): Promise => { - // verify required parameter 'networkId' is not null or undefined - assertParamExists('listAddressTransactions', 'networkId', networkId) - // verify required parameter 'addressId' is not null or undefined - assertParamExists('listAddressTransactions', 'addressId', addressId) - const localVarPath = `/v1/networks/{network_id}/addresses/{address_id}/transactions` - .replace(`{${"network_id"}}`, encodeURIComponent(String(networkId))) - .replace(`{${"address_id"}}`, encodeURIComponent(String(addressId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - if (limit !== undefined) { - localVarQueryParameter['limit'] = limit; - } - - if (page !== undefined) { - localVarQueryParameter['page'] = page; - } - - - setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; @@ -5235,22 +5187,6 @@ export const ExternalAddressesApiFp = function(configuration?: Configuration) { const localVarOperationServerBasePath = operationServerMap['ExternalAddressesApi.getExternalAddressBalance']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }, - /** - * List all transactions that interact with the address. - * @summary List transactions for an address. - * @param {string} networkId The ID of the blockchain network - * @param {string} addressId The ID of the address to fetch the transactions for. - * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. - * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async listAddressTransactions(networkId: string, addressId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.listAddressTransactions(networkId, addressId, limit, page, options); - const localVarOperationServerIndex = configuration?.serverIndex ?? 0; - const localVarOperationServerBasePath = operationServerMap['ExternalAddressesApi.listAddressTransactions']?.[localVarOperationServerIndex]?.url; - return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); - }, /** * List all of the balances of an external address * @summary Get the balances of an external address @@ -5303,19 +5239,6 @@ export const ExternalAddressesApiFactory = function (configuration?: Configurati getExternalAddressBalance(networkId: string, addressId: string, assetId: string, options?: RawAxiosRequestConfig): AxiosPromise { return localVarFp.getExternalAddressBalance(networkId, addressId, assetId, options).then((request) => request(axios, basePath)); }, - /** - * List all transactions that interact with the address. - * @summary List transactions for an address. - * @param {string} networkId The ID of the blockchain network - * @param {string} addressId The ID of the address to fetch the transactions for. - * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. - * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listAddressTransactions(networkId: string, addressId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.listAddressTransactions(networkId, addressId, limit, page, options).then((request) => request(axios, basePath)); - }, /** * List all of the balances of an external address * @summary Get the balances of an external address @@ -5361,19 +5284,6 @@ export interface ExternalAddressesApiInterface { */ getExternalAddressBalance(networkId: string, addressId: string, assetId: string, options?: RawAxiosRequestConfig): AxiosPromise; - /** - * List all transactions that interact with the address. - * @summary List transactions for an address. - * @param {string} networkId The ID of the blockchain network - * @param {string} addressId The ID of the address to fetch the transactions for. - * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. - * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ExternalAddressesApiInterface - */ - listAddressTransactions(networkId: string, addressId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig): AxiosPromise; - /** * List all of the balances of an external address * @summary Get the balances of an external address @@ -5421,21 +5331,6 @@ export class ExternalAddressesApi extends BaseAPI implements ExternalAddressesAp return ExternalAddressesApiFp(this.configuration).getExternalAddressBalance(networkId, addressId, assetId, options).then((request) => request(this.axios, this.basePath)); } - /** - * List all transactions that interact with the address. - * @summary List transactions for an address. - * @param {string} networkId The ID of the blockchain network - * @param {string} addressId The ID of the address to fetch the transactions for. - * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. - * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof ExternalAddressesApi - */ - public listAddressTransactions(networkId: string, addressId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig) { - return ExternalAddressesApiFp(this.configuration).listAddressTransactions(networkId, addressId, limit, page, options).then((request) => request(this.axios, this.basePath)); - } - /** * List all of the balances of an external address * @summary Get the balances of an external address @@ -5674,6 +5569,7 @@ export const ServerSignersApiAxiosParamCreator = function (configuration?: Confi * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. * @param {*} [options] Override http request option. + * @deprecated * @throws {RequiredError} */ listServerSignerEvents: async (serverSignerId: string, limit?: number, page?: string, options: RawAxiosRequestConfig = {}): Promise => { @@ -5870,6 +5766,7 @@ export const ServerSignersApiFp = function(configuration?: Configuration) { * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. * @param {*} [options] Override http request option. + * @deprecated * @throws {RequiredError} */ async listServerSignerEvents(serverSignerId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { @@ -5957,6 +5854,7 @@ export const ServerSignersApiFactory = function (configuration?: Configuration, * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. * @param {*} [options] Override http request option. + * @deprecated * @throws {RequiredError} */ listServerSignerEvents(serverSignerId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig): AxiosPromise { @@ -6031,6 +5929,7 @@ export interface ServerSignersApiInterface { * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. * @param {*} [options] Override http request option. + * @deprecated * @throws {RequiredError} * @memberof ServerSignersApiInterface */ @@ -6109,6 +6008,7 @@ export class ServerSignersApi extends BaseAPI implements ServerSignersApiInterfa * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. * @param {*} [options] Override http request option. + * @deprecated * @throws {RequiredError} * @memberof ServerSignersApi */ @@ -7583,6 +7483,158 @@ export class TradesApi extends BaseAPI implements TradesApiInterface { +/** + * TransactionHistoryApi - axios parameter creator + * @export + */ +export const TransactionHistoryApiAxiosParamCreator = function (configuration?: Configuration) { + return { + /** + * List all transactions that interact with the address. + * @summary List transactions for an address. + * @param {string} networkId The ID of the blockchain network + * @param {string} addressId The ID of the address to fetch the transactions for. + * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. + * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + listAddressTransactions: async (networkId: string, addressId: string, limit?: number, page?: string, options: RawAxiosRequestConfig = {}): Promise => { + // verify required parameter 'networkId' is not null or undefined + assertParamExists('listAddressTransactions', 'networkId', networkId) + // verify required parameter 'addressId' is not null or undefined + assertParamExists('listAddressTransactions', 'addressId', addressId) + const localVarPath = `/v1/networks/{network_id}/addresses/{address_id}/transactions` + .replace(`{${"network_id"}}`, encodeURIComponent(String(networkId))) + .replace(`{${"address_id"}}`, encodeURIComponent(String(addressId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + if (limit !== undefined) { + localVarQueryParameter['limit'] = limit; + } + + if (page !== undefined) { + localVarQueryParameter['page'] = page; + } + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + } +}; + +/** + * TransactionHistoryApi - functional programming interface + * @export + */ +export const TransactionHistoryApiFp = function(configuration?: Configuration) { + const localVarAxiosParamCreator = TransactionHistoryApiAxiosParamCreator(configuration) + return { + /** + * List all transactions that interact with the address. + * @summary List transactions for an address. + * @param {string} networkId The ID of the blockchain network + * @param {string} addressId The ID of the address to fetch the transactions for. + * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. + * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async listAddressTransactions(networkId: string, addressId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.listAddressTransactions(networkId, addressId, limit, page, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['TransactionHistoryApi.listAddressTransactions']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, + } +}; + +/** + * TransactionHistoryApi - factory interface + * @export + */ +export const TransactionHistoryApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { + const localVarFp = TransactionHistoryApiFp(configuration) + return { + /** + * List all transactions that interact with the address. + * @summary List transactions for an address. + * @param {string} networkId The ID of the blockchain network + * @param {string} addressId The ID of the address to fetch the transactions for. + * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. + * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + listAddressTransactions(networkId: string, addressId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig): AxiosPromise { + return localVarFp.listAddressTransactions(networkId, addressId, limit, page, options).then((request) => request(axios, basePath)); + }, + }; +}; + +/** + * TransactionHistoryApi - interface + * @export + * @interface TransactionHistoryApi + */ +export interface TransactionHistoryApiInterface { + /** + * List all transactions that interact with the address. + * @summary List transactions for an address. + * @param {string} networkId The ID of the blockchain network + * @param {string} addressId The ID of the address to fetch the transactions for. + * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. + * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof TransactionHistoryApiInterface + */ + listAddressTransactions(networkId: string, addressId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig): AxiosPromise; + +} + +/** + * TransactionHistoryApi - object-oriented interface + * @export + * @class TransactionHistoryApi + * @extends {BaseAPI} + */ +export class TransactionHistoryApi extends BaseAPI implements TransactionHistoryApiInterface { + /** + * List all transactions that interact with the address. + * @summary List transactions for an address. + * @param {string} networkId The ID of the blockchain network + * @param {string} addressId The ID of the address to fetch the transactions for. + * @param {number} [limit] A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. + * @param {string} [page] A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof TransactionHistoryApi + */ + public listAddressTransactions(networkId: string, addressId: string, limit?: number, page?: string, options?: RawAxiosRequestConfig) { + return TransactionHistoryApiFp(this.configuration).listAddressTransactions(networkId, addressId, limit, page, options).then((request) => request(this.axios, this.basePath)); + } +} + + + /** * TransfersApi - axios parameter creator * @export diff --git a/src/coinbase/address.ts b/src/coinbase/address.ts index 41ea5d72..15ffc4ea 100644 --- a/src/coinbase/address.ts +++ b/src/coinbase/address.ts @@ -170,7 +170,7 @@ export class Address { }: ListTransactionsOptions): Promise { const txnList: Transaction[] = []; - const response = await Coinbase.apiClients.externalAddress!.listAddressTransactions( + const response = await Coinbase.apiClients.transactionHistory!.listAddressTransactions( this.getNetworkId(), this.getId(), limit ? limit : undefined, diff --git a/src/coinbase/coinbase.ts b/src/coinbase/coinbase.ts index 90c02ebb..003c9860 100644 --- a/src/coinbase/coinbase.ts +++ b/src/coinbase/coinbase.ts @@ -18,6 +18,7 @@ import { ContractInvocationsApiFactory, BalanceHistoryApiFactory, SmartContractsApiFactory, + TransactionHistoryApiFactory, } from "../client"; import { BASE_PATH } from "./../client/base"; import { Configuration } from "./../client/configuration"; @@ -148,6 +149,11 @@ export class Coinbase { Coinbase.apiClients.balanceHistory = BalanceHistoryApiFactory(config, basePath, axiosInstance); Coinbase.apiClients.contractEvent = ContractEventsApiFactory(config, basePath, axiosInstance); Coinbase.apiClients.smartContract = SmartContractsApiFactory(config, basePath, axiosInstance); + Coinbase.apiClients.transactionHistory = TransactionHistoryApiFactory( + config, + basePath, + axiosInstance, + ); Coinbase.apiKeyPrivateKey = privateKey; Coinbase.useServerSigner = useServerSigner; } diff --git a/src/coinbase/types.ts b/src/coinbase/types.ts index db63235d..826edc41 100644 --- a/src/coinbase/types.ts +++ b/src/coinbase/types.ts @@ -407,25 +407,6 @@ export type ExternalAddressAPIClient = { options?: RawAxiosRequestConfig, ): AxiosPromise; - /** - * List the transactions of a specific address. - * - * @summary Get address transactions - * @param networkId - The ID of the blockchain network - * @param addressId - The ID of the address to fetch transactions for. - * @param limit - A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. - * @param page - A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. - * @param options - Override http request option. - * @throws {RequiredError} - */ - listAddressTransactions( - networkId: string, - addressId: string, - limit?: number, - page?: string, - options?: RawAxiosRequestConfig, - ): AxiosPromise; - /** * Request faucet funds to be sent to external address. * @@ -727,6 +708,7 @@ export type ApiClients = { contractEvent?: ExternalSmartContractAPIClient; contractInvocation?: ContractInvocationAPIClient; balanceHistory?: BalanceHistoryApiClient; + transactionHistory?: TransactionHistoryApiClient; smartContract?: SmartContractAPIClient; }; @@ -1105,6 +1087,26 @@ export interface BalanceHistoryApiClient { ): AxiosPromise; } +export interface TransactionHistoryApiClient { + /** + * List the transactions of a specific address. + * + * @summary Get address transactions + * @param networkId - The ID of the blockchain network + * @param addressId - The ID of the address to fetch transactions for. + * @param limit - A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. + * @param page - A cursor for pagination across multiple pages of results. Don\'t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results. + * @param options - Override http request option. + * @throws {RequiredError} + */ + listAddressTransactions( + networkId: string, + addressId: string, + limit?: number, + page?: string, + options?: RawAxiosRequestConfig, + ): AxiosPromise; +} /** * The domain for an EIP-712 typed data message payload. */ diff --git a/src/tests/address_test.ts b/src/tests/address_test.ts index a4e0fd52..3ea78b8a 100644 --- a/src/tests/address_test.ts +++ b/src/tests/address_test.ts @@ -5,8 +5,8 @@ import { VALID_ADDRESS_MODEL, mockReturnValue, newAddressModel, - externalAddressApiMock, balanceHistoryApiMock, + transactionHistoryApiMock, } from "./utils"; import Decimal from "decimal.js"; import { randomUUID } from "crypto"; @@ -61,8 +61,8 @@ describe("Address", () => { has_more: true, next_page: "pageToken", }; - Coinbase.apiClients.externalAddress = externalAddressApiMock; - Coinbase.apiClients.externalAddress!.listAddressTransactions = + Coinbase.apiClients.transactionHistory = transactionHistoryApiMock; + Coinbase.apiClients.transactionHistory!.listAddressTransactions = mockReturnValue(mockTransactionsResponse); }); @@ -70,8 +70,8 @@ describe("Address", () => { const result = await address.listTransactions({ limit: 2, page: "page" }); expect(result.transactions.length).toEqual(2); expect(result.transactions[0].blockHeight()).toEqual("12345"); - expect(Coinbase.apiClients.externalAddress!.listAddressTransactions).toHaveBeenCalledTimes(1); - expect(Coinbase.apiClients.externalAddress!.listAddressTransactions).toHaveBeenCalledWith( + expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledTimes(1); + expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledWith( address.getNetworkId(), address.getId(), 2, @@ -81,7 +81,7 @@ describe("Address", () => { }); it("should return results without param", async () => { - Coinbase.apiClients.externalAddress!.listAddressTransactions = mockReturnValue({ + Coinbase.apiClients.transactionHistory!.listAddressTransactions = mockReturnValue({ data: [ { network_id: "base-sepolia", @@ -98,8 +98,8 @@ describe("Address", () => { const result = await address.listTransactions({}); expect(result.transactions.length).toEqual(1); expect(result.transactions[0].blockHeight()).toEqual("12348"); - expect(Coinbase.apiClients.externalAddress!.listAddressTransactions).toHaveBeenCalledTimes(1); - expect(Coinbase.apiClients.externalAddress!.listAddressTransactions).toHaveBeenCalledWith( + expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledTimes(1); + expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledWith( address.getNetworkId(), address.getId(), undefined, @@ -109,15 +109,15 @@ describe("Address", () => { }); it("should return empty if no transactions found", async () => { - Coinbase.apiClients.externalAddress!.listAddressTransactions = mockReturnValue({ + Coinbase.apiClients.transactionHistory!.listAddressTransactions = mockReturnValue({ data: [], has_more: false, next_page: "", }); const result = await address.listTransactions({}); expect(result.transactions.length).toEqual(0); - expect(Coinbase.apiClients.externalAddress!.listAddressTransactions).toHaveBeenCalledTimes(1); - expect(Coinbase.apiClients.externalAddress!.listAddressTransactions).toHaveBeenCalledWith( + expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledTimes(1); + expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledWith( address.getNetworkId(), address.getId(), undefined, diff --git a/src/tests/utils.ts b/src/tests/utils.ts index b78e588c..4bf1b999 100644 --- a/src/tests/utils.ts +++ b/src/tests/utils.ts @@ -583,6 +583,10 @@ export const balanceHistoryApiMock = { listAddressHistoricalBalance: jest.fn(), }; +export const transactionHistoryApiMock = { + listAddressTransactions: jest.fn(), +}; + export const serverSignersApiMock = { listServerSigners: jest.fn(), }; From 67479666dc8133b956a08b0efed6ab3e1b06ef9e Mon Sep 17 00:00:00 2001 From: rohan-agarwal-coinbase Date: Mon, 23 Sep 2024 18:45:40 -0400 Subject: [PATCH 4/9] [Hotfix] Ensure all types are exported in index.ts (#264) (#266) (cherry picked from commit e74faca7f2cf7fff30b7e46223860eb6a121a8fe) --- CHANGELOG.md | 5 ++++ package-lock.json | 4 +-- package.json | 2 +- quickstart-template/package.json | 2 +- src/index.ts | 47 ++++++++++++++++++-------------- src/tests/index_test.ts | 39 ++++++++++++++++++++++++++ 6 files changed, 74 insertions(+), 25 deletions(-) create mode 100644 src/tests/index_test.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index df18c889..e896d954 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## [0.6.1] - 2024-09-23 + +### Added +- Export all missing types in `src/index` + ## [0.6.0] - 2024-09-18 ### Added diff --git a/package-lock.json b/package-lock.json index 40926156..493b8853 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@coinbase/coinbase-sdk", - "version": "0.6.0", + "version": "0.6.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@coinbase/coinbase-sdk", - "version": "0.6.0", + "version": "0.6.1", "license": "ISC", "dependencies": { "@scure/bip32": "^1.4.0", diff --git a/package.json b/package.json index a23db515..e3d368b1 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "license": "ISC", "description": "Coinbase Platform SDK", "repository": "https://github.com/coinbase/coinbase-sdk-nodejs", - "version": "0.6.0", + "version": "0.6.1", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { diff --git a/quickstart-template/package.json b/quickstart-template/package.json index 8d39fdef..c21421dc 100644 --- a/quickstart-template/package.json +++ b/quickstart-template/package.json @@ -15,7 +15,7 @@ "license": "ISC", "type": "module", "dependencies": { - "@coinbase/coinbase-sdk": "^0.6.0", + "@coinbase/coinbase-sdk": "^0.6.1", "csv-parse": "^5.5.6", "csv-writer": "^1.6.0", "viem": "^2.21.6" diff --git a/src/index.ts b/src/index.ts index 485f509e..52995d59 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,24 +1,29 @@ -export * from "./coinbase/coinbase"; -export * from "./coinbase/wallet"; export * from "./coinbase/address"; -export * from "./coinbase/asset"; -export * from "./coinbase/balance"; -export * from "./coinbase/balance_map"; -export * from "./coinbase/constants"; -export * from "./coinbase/errors"; -export * from "./coinbase/faucet_transaction"; -export * from "./coinbase/server_signer"; -export * from "./coinbase/trade"; -export * from "./coinbase/transaction"; -export * from "./coinbase/transfer"; -export * from "./coinbase/types"; export * from "./coinbase/address/external_address"; export * from "./coinbase/address/wallet_address"; -export * from "./coinbase/staking_operation"; -export * from "./coinbase/staking_reward"; -export * from "./coinbase/staking_balance"; -export * from "./coinbase/validator"; -export * from "./coinbase/webhook"; -export * from "./coinbase/smart_contract"; -export * from "./coinbase/payload_signature"; -export * from "./coinbase/hash"; +export * from './coinbase/api_error'; +export * from './coinbase/asset'; +export * from './coinbase/authenticator'; +export * from './coinbase/balance'; +export * from './coinbase/balance_map'; +export * from './coinbase/coinbase'; +export * from './coinbase/constants'; +export * from './coinbase/contract_event'; +export * from './coinbase/contract_invocation'; +export * from './coinbase/errors'; +export * from './coinbase/faucet_transaction'; +export * from './coinbase/hash'; +export * from './coinbase/historical_balance'; +export * from './coinbase/payload_signature'; +export * from './coinbase/server_signer'; +export * from './coinbase/smart_contract'; +export * from './coinbase/staking_balance'; +export * from './coinbase/staking_operation'; +export * from './coinbase/staking_reward'; +export * from './coinbase/trade'; +export * from './coinbase/transaction'; +export * from './coinbase/transfer'; +export * from './coinbase/types'; +export * from './coinbase/validator'; +export * from './coinbase/wallet'; +export * from './coinbase/webhook'; \ No newline at end of file diff --git a/src/tests/index_test.ts b/src/tests/index_test.ts new file mode 100644 index 00000000..29f73fac --- /dev/null +++ b/src/tests/index_test.ts @@ -0,0 +1,39 @@ +// test/index.test.ts +import * as index from "../index"; + +describe('Index file exports', () => { + it('should export all modules correctly', () => { + expect(index).toBeDefined(); + expect(index).toHaveProperty('Address'); + expect(index).toHaveProperty('APIError'); + expect(index).toHaveProperty('Asset'); + expect(index).toHaveProperty('Balance'); + expect(index).toHaveProperty('BalanceMap'); + expect(index).toHaveProperty('Coinbase'); + expect(index).toHaveProperty('ContractEvent'); + expect(index).toHaveProperty('ContractInvocation'); + expect(index).toHaveProperty('ExternalAddress'); + expect(index).toHaveProperty('FaucetTransaction'); + expect(index).toHaveProperty('GWEI_DECIMALS'); + expect(index).toHaveProperty('HistoricalBalance'); + expect(index).toHaveProperty('InvalidAPIKeyFormatError'); + expect(index).toHaveProperty('PayloadSignature'); + expect(index).toHaveProperty('ServerSigner'); + expect(index).toHaveProperty('SmartContract'); + expect(index).toHaveProperty('SponsoredSendStatus'); + expect(index).toHaveProperty('StakeOptionsMode'); + expect(index).toHaveProperty('StakingBalance'); + expect(index).toHaveProperty('StakingOperation'); + expect(index).toHaveProperty('StakingReward'); + expect(index).toHaveProperty('Trade'); + expect(index).toHaveProperty('Transaction'); + expect(index).toHaveProperty('TransactionStatus'); + expect(index).toHaveProperty('Transfer'); + expect(index).toHaveProperty('TransferStatus'); + expect(index).toHaveProperty('Validator'); + expect(index).toHaveProperty('Wallet'); + expect(index).toHaveProperty('WalletAddress'); + expect(index).toHaveProperty('Webhook'); + }); +}); + From af721ee7848b1672eaad6cd652d63d722ac002dc Mon Sep 17 00:00:00 2001 From: rohan-agarwal-coinbase Date: Tue, 24 Sep 2024 16:21:09 -0400 Subject: [PATCH 5/9] Added support to deployNFT and fixes smart_contract getOptions function (#268) --- CHANGELOG.md | 3 + src/client/api.ts | 6 + src/coinbase/address/wallet_address.ts | 56 ++++- src/coinbase/smart_contract.ts | 31 ++- src/coinbase/types.ts | 10 + src/coinbase/wallet.ts | 15 ++ src/examples/solana_list_rewards.ts | 19 +- src/index.ts | 52 ++--- src/tests/address_test.ts | 12 +- src/tests/index_test.ts | 69 +++--- src/tests/smart_contract_test.ts | 86 ++++--- src/tests/utils.ts | 27 +++ src/tests/wallet_address_test.ts | 300 +++++++++++++++++++++++++ src/tests/wallet_test.ts | 31 +++ 14 files changed, 615 insertions(+), 102 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e896d954..e3239f4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +### Added +- Add `deployNFT` method to `WalletAddress` and `Wallet` to deploy an ERC721, updated `SmartContract` class to support deployment and fetching contract details + ## [0.6.1] - 2024-09-23 ### Added diff --git a/src/client/api.ts b/src/client/api.ts index c46570e4..796be622 100644 --- a/src/client/api.ts +++ b/src/client/api.ts @@ -1596,6 +1596,12 @@ export interface NFTContractOptions { * @memberof NFTContractOptions */ 'symbol': string; + /** + * The base URI for the NFT metadata + * @type {string} + * @memberof NFTContractOptions + */ + 'base_uri': string; } /** * diff --git a/src/coinbase/address/wallet_address.ts b/src/coinbase/address/wallet_address.ts index 791f663f..4cbc5bfa 100644 --- a/src/coinbase/address/wallet_address.ts +++ b/src/coinbase/address/wallet_address.ts @@ -16,6 +16,7 @@ import { Destination, StakeOptionsMode, CreateERC20Options, + CreateERC721Options, } from "../types"; import { delay } from "../utils"; import { Wallet as WalletClass } from "../wallet"; @@ -332,7 +333,7 @@ export class WalletAddress extends Address { * @param options.symbol - The symbol of the ERC20 token. * @param options.totalSupply - The total supply of the ERC20 token. * @returns A Promise that resolves to the deployed SmartContract object. - * @throws {Error} If the private key is not loaded when not using server signer. + * @throws {APIError} If the API request to create a smart contract fails. */ public async deployToken(options: CreateERC20Options): Promise { if (!Coinbase.useServerSigner && !this.key) { @@ -351,6 +352,33 @@ export class WalletAddress extends Address { return smartContract; } + /** + * Deploys an ERC721 token contract. + * + * @param options - The options for creating the ERC721 token. + * @param options.name - The name of the ERC721 token. + * @param options.symbol - The symbol of the ERC721 token. + * @param options.baseURI - The base URI of the ERC721 token. + * @returns A Promise that resolves to the deployed SmartContract object. + * @throws {APIError} If the API request to create a smart contract fails. + */ + public async deployNFT(options: CreateERC721Options): Promise { + if (!Coinbase.useServerSigner && !this.key) { + throw new Error("Cannot deploy ERC721 without private key loaded"); + } + + const smartContract = await this.createERC721(options); + + if (Coinbase.useServerSigner) { + return smartContract; + } + + await smartContract.sign(this.getSigner()); + await smartContract.broadcast(); + + return smartContract; + } + /** * Creates an ERC20 token contract. * @@ -378,6 +406,32 @@ export class WalletAddress extends Address { return SmartContract.fromModel(resp?.data); } + /** + * Creates an ERC721 token contract. + * + * @param options - The options for creating the ERC721 token. + * @param options.name - The name of the ERC721 token. + * @param options.symbol - The symbol of the ERC721 token. + * @param options.baseURI - The base URI of the ERC721 token. + * @returns A Promise that resolves to the deployed SmartContract object. + * @throws {APIError} If the private key is not loaded when not using server signer. + */ + private async createERC721(options: CreateERC721Options): Promise { + const resp = await Coinbase.apiClients.smartContract!.createSmartContract( + this.getWalletId(), + this.getId(), + { + type: SmartContractType.Erc721, + options: { + name: options.name, + symbol: options.symbol, + base_uri: options.baseURI, + }, + }, + ); + return SmartContract.fromModel(resp?.data); + } + /** * Creates a contract invocation with the given data. * diff --git a/src/coinbase/smart_contract.ts b/src/coinbase/smart_contract.ts index 68afab96..1f943fa0 100644 --- a/src/coinbase/smart_contract.ts +++ b/src/coinbase/smart_contract.ts @@ -3,6 +3,8 @@ import { DeploySmartContractRequest, SmartContract as SmartContractModel, SmartContractType as SmartContractTypeModel, + SmartContractOptions as SmartContractOptionsModel, + TokenContractOptions as TokenContractOptionsModel, } from "../client/api"; import { Transaction } from "./transaction"; import { @@ -164,10 +166,19 @@ export class SmartContract { * @returns The Smart Contract Options. */ public getOptions(): SmartContractOptions { - if (this.getType() === SmartContractType.ERC20) { - return this.model.options as TokenContractOptions; + if (this.isERC20(this.getType(), this.model.options)) { + return { + name: this.model.options.name, + symbol: this.model.options.symbol, + totalSupply: this.model.options.total_supply, + } as TokenContractOptions; + } else { + return { + name: this.model.options.name, + symbol: this.model.options.symbol, + baseURI: this.model.options.base_uri, + } as NFTContractOptions; } - return this.model.options as NFTContractOptions; } /** @@ -279,4 +290,18 @@ export class SmartContract { `type: '${this.getType()}'}` ); } + + /** + * Type guard for checking if the smart contract is an ERC20. + * + * @param type - The type of the smart contract. + * @param options - The options of the smart contract. + * @returns True if the smart contract is an ERC20, false otherwise. + */ + private isERC20( + type: SmartContractType, + options: SmartContractOptionsModel, + ): options is TokenContractOptionsModel { + return type === SmartContractType.ERC20; + } } diff --git a/src/coinbase/types.ts b/src/coinbase/types.ts index 826edc41..caf11b03 100644 --- a/src/coinbase/types.ts +++ b/src/coinbase/types.ts @@ -920,6 +920,7 @@ export enum SmartContractType { export type NFTContractOptions = { name: string; symbol: string; + baseURI: string; }; /** @@ -976,6 +977,15 @@ export type CreateERC20Options = { totalSupply: Amount; }; +/** + * Options for creating a ERC721. + */ +export type CreateERC721Options = { + name: string; + symbol: string; + baseURI: string; +}; + /** * Options for listing historical balances of an address. */ diff --git a/src/coinbase/wallet.ts b/src/coinbase/wallet.ts index 4d1a4b32..c1ab5365 100644 --- a/src/coinbase/wallet.ts +++ b/src/coinbase/wallet.ts @@ -29,6 +29,7 @@ import { WalletCreateOptions, WalletData, CreateERC20Options, + CreateERC721Options, } from "./types"; import { convertStringToHex, delay, formatDate, getWeekBackDate } from "./utils"; import { StakingOperation } from "./staking_operation"; @@ -783,6 +784,20 @@ export class Wallet { return (await this.getDefaultAddress()).deployToken(options); } + /** + * Deploys an ERC721 token contract. + * + * @param options - The options for creating the ERC721 token. + * @param options.name - The name of the ERC721 token. + * @param options.symbol - The symbol of the ERC721 token. + * @param options.baseURI - The base URI of the ERC721 token. + * @returns A Promise that resolves to the deployed SmartContract object. + * @throws {APIError} If the private key is not loaded when not using server signer. + */ + public async deployNFT(options: CreateERC721Options): Promise { + return (await this.getDefaultAddress()).deployNFT(options); + } + /** * Returns a String representation of the Wallet. * diff --git a/src/examples/solana_list_rewards.ts b/src/examples/solana_list_rewards.ts index 9161e64a..0459fa11 100644 --- a/src/examples/solana_list_rewards.ts +++ b/src/examples/solana_list_rewards.ts @@ -8,11 +8,24 @@ async function listSolanaStakingRewards() { const startTime = new Date(2024, 5).toISOString(); - const rewards = await StakingReward.list(NetworkIdentifier.SolanaMainnet, Coinbase.assets.Sol, ["beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar"], startTime, new Date().toISOString()); + const rewards = await StakingReward.list( + NetworkIdentifier.SolanaMainnet, + Coinbase.assets.Sol, + ["beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar"], + startTime, + new Date().toISOString(), + ); console.log(rewards); - const addr = new Address(NetworkIdentifier.SolanaMainnet, "beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar"); - const balances = await addr.historicalStakingBalances(Coinbase.assets.Sol, startTime, new Date().toISOString()); + const addr = new Address( + NetworkIdentifier.SolanaMainnet, + "beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar", + ); + const balances = await addr.historicalStakingBalances( + Coinbase.assets.Sol, + startTime, + new Date().toISOString(), + ); console.log(balances); } diff --git a/src/index.ts b/src/index.ts index 52995d59..e8ff2c43 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,29 +1,29 @@ export * from "./coinbase/address"; export * from "./coinbase/address/external_address"; export * from "./coinbase/address/wallet_address"; -export * from './coinbase/api_error'; -export * from './coinbase/asset'; -export * from './coinbase/authenticator'; -export * from './coinbase/balance'; -export * from './coinbase/balance_map'; -export * from './coinbase/coinbase'; -export * from './coinbase/constants'; -export * from './coinbase/contract_event'; -export * from './coinbase/contract_invocation'; -export * from './coinbase/errors'; -export * from './coinbase/faucet_transaction'; -export * from './coinbase/hash'; -export * from './coinbase/historical_balance'; -export * from './coinbase/payload_signature'; -export * from './coinbase/server_signer'; -export * from './coinbase/smart_contract'; -export * from './coinbase/staking_balance'; -export * from './coinbase/staking_operation'; -export * from './coinbase/staking_reward'; -export * from './coinbase/trade'; -export * from './coinbase/transaction'; -export * from './coinbase/transfer'; -export * from './coinbase/types'; -export * from './coinbase/validator'; -export * from './coinbase/wallet'; -export * from './coinbase/webhook'; \ No newline at end of file +export * from "./coinbase/api_error"; +export * from "./coinbase/asset"; +export * from "./coinbase/authenticator"; +export * from "./coinbase/balance"; +export * from "./coinbase/balance_map"; +export * from "./coinbase/coinbase"; +export * from "./coinbase/constants"; +export * from "./coinbase/contract_event"; +export * from "./coinbase/contract_invocation"; +export * from "./coinbase/errors"; +export * from "./coinbase/faucet_transaction"; +export * from "./coinbase/hash"; +export * from "./coinbase/historical_balance"; +export * from "./coinbase/payload_signature"; +export * from "./coinbase/server_signer"; +export * from "./coinbase/smart_contract"; +export * from "./coinbase/staking_balance"; +export * from "./coinbase/staking_operation"; +export * from "./coinbase/staking_reward"; +export * from "./coinbase/trade"; +export * from "./coinbase/transaction"; +export * from "./coinbase/transfer"; +export * from "./coinbase/types"; +export * from "./coinbase/validator"; +export * from "./coinbase/wallet"; +export * from "./coinbase/webhook"; diff --git a/src/tests/address_test.ts b/src/tests/address_test.ts index 3ea78b8a..88af24cd 100644 --- a/src/tests/address_test.ts +++ b/src/tests/address_test.ts @@ -70,7 +70,9 @@ describe("Address", () => { const result = await address.listTransactions({ limit: 2, page: "page" }); expect(result.transactions.length).toEqual(2); expect(result.transactions[0].blockHeight()).toEqual("12345"); - expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledTimes(1); + expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledTimes( + 1, + ); expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledWith( address.getNetworkId(), address.getId(), @@ -98,7 +100,9 @@ describe("Address", () => { const result = await address.listTransactions({}); expect(result.transactions.length).toEqual(1); expect(result.transactions[0].blockHeight()).toEqual("12348"); - expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledTimes(1); + expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledTimes( + 1, + ); expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledWith( address.getNetworkId(), address.getId(), @@ -116,7 +120,9 @@ describe("Address", () => { }); const result = await address.listTransactions({}); expect(result.transactions.length).toEqual(0); - expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledTimes(1); + expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledTimes( + 1, + ); expect(Coinbase.apiClients.transactionHistory!.listAddressTransactions).toHaveBeenCalledWith( address.getNetworkId(), address.getId(), diff --git a/src/tests/index_test.ts b/src/tests/index_test.ts index 29f73fac..a3902854 100644 --- a/src/tests/index_test.ts +++ b/src/tests/index_test.ts @@ -1,39 +1,38 @@ // test/index.test.ts import * as index from "../index"; -describe('Index file exports', () => { - it('should export all modules correctly', () => { - expect(index).toBeDefined(); - expect(index).toHaveProperty('Address'); - expect(index).toHaveProperty('APIError'); - expect(index).toHaveProperty('Asset'); - expect(index).toHaveProperty('Balance'); - expect(index).toHaveProperty('BalanceMap'); - expect(index).toHaveProperty('Coinbase'); - expect(index).toHaveProperty('ContractEvent'); - expect(index).toHaveProperty('ContractInvocation'); - expect(index).toHaveProperty('ExternalAddress'); - expect(index).toHaveProperty('FaucetTransaction'); - expect(index).toHaveProperty('GWEI_DECIMALS'); - expect(index).toHaveProperty('HistoricalBalance'); - expect(index).toHaveProperty('InvalidAPIKeyFormatError'); - expect(index).toHaveProperty('PayloadSignature'); - expect(index).toHaveProperty('ServerSigner'); - expect(index).toHaveProperty('SmartContract'); - expect(index).toHaveProperty('SponsoredSendStatus'); - expect(index).toHaveProperty('StakeOptionsMode'); - expect(index).toHaveProperty('StakingBalance'); - expect(index).toHaveProperty('StakingOperation'); - expect(index).toHaveProperty('StakingReward'); - expect(index).toHaveProperty('Trade'); - expect(index).toHaveProperty('Transaction'); - expect(index).toHaveProperty('TransactionStatus'); - expect(index).toHaveProperty('Transfer'); - expect(index).toHaveProperty('TransferStatus'); - expect(index).toHaveProperty('Validator'); - expect(index).toHaveProperty('Wallet'); - expect(index).toHaveProperty('WalletAddress'); - expect(index).toHaveProperty('Webhook'); - }); +describe("Index file exports", () => { + it("should export all modules correctly", () => { + expect(index).toBeDefined(); + expect(index).toHaveProperty("Address"); + expect(index).toHaveProperty("APIError"); + expect(index).toHaveProperty("Asset"); + expect(index).toHaveProperty("Balance"); + expect(index).toHaveProperty("BalanceMap"); + expect(index).toHaveProperty("Coinbase"); + expect(index).toHaveProperty("ContractEvent"); + expect(index).toHaveProperty("ContractInvocation"); + expect(index).toHaveProperty("ExternalAddress"); + expect(index).toHaveProperty("FaucetTransaction"); + expect(index).toHaveProperty("GWEI_DECIMALS"); + expect(index).toHaveProperty("HistoricalBalance"); + expect(index).toHaveProperty("InvalidAPIKeyFormatError"); + expect(index).toHaveProperty("PayloadSignature"); + expect(index).toHaveProperty("ServerSigner"); + expect(index).toHaveProperty("SmartContract"); + expect(index).toHaveProperty("SponsoredSendStatus"); + expect(index).toHaveProperty("StakeOptionsMode"); + expect(index).toHaveProperty("StakingBalance"); + expect(index).toHaveProperty("StakingOperation"); + expect(index).toHaveProperty("StakingReward"); + expect(index).toHaveProperty("Trade"); + expect(index).toHaveProperty("Transaction"); + expect(index).toHaveProperty("TransactionStatus"); + expect(index).toHaveProperty("Transfer"); + expect(index).toHaveProperty("TransferStatus"); + expect(index).toHaveProperty("Validator"); + expect(index).toHaveProperty("Wallet"); + expect(index).toHaveProperty("WalletAddress"); + expect(index).toHaveProperty("Webhook"); + }); }); - diff --git a/src/tests/smart_contract_test.ts b/src/tests/smart_contract_test.ts index af2eb33f..617ab61f 100644 --- a/src/tests/smart_contract_test.ts +++ b/src/tests/smart_contract_test.ts @@ -7,6 +7,13 @@ import { VALID_SMART_CONTRACT_ERC20_MODEL, mockReturnRejectedValue, contractEventApiMock, + ERC20_NAME, + ERC20_TOTAL_SUPPLY, + ERC20_SYMBOL, + VALID_SMART_CONTRACT_ERC721_MODEL, + ERC721_NAME, + ERC721_SYMBOL, + ERC721_BASE_URI, } from "./utils"; import { SmartContract } from "../coinbase/smart_contract"; import { ContractEvent } from "../coinbase/contract_event"; @@ -19,16 +26,17 @@ import { AxiosError } from "axios"; import { TimeoutError } from "../coinbase/errors"; describe("SmartContract", () => { - let smartContractModel: SmartContractModel = VALID_SMART_CONTRACT_ERC20_MODEL; - let smartContract: SmartContract = SmartContract.fromModel(smartContractModel); - + let erc20Model: SmartContractModel = VALID_SMART_CONTRACT_ERC20_MODEL; + let erc721Model: SmartContractModel = VALID_SMART_CONTRACT_ERC721_MODEL; + let erc20SmartContract: SmartContract = SmartContract.fromModel(erc20Model); + let erc721SmartContract: SmartContract = SmartContract.fromModel(erc721Model); afterEach(() => { jest.clearAllMocks(); }); describe("Constructor", () => { it("initializes a new SmartContract", () => { - expect(smartContract).toBeInstanceOf(SmartContract); + expect(erc20SmartContract).toBeInstanceOf(SmartContract); }); it("raises an error when the smartContract model is empty", () => { @@ -40,19 +48,23 @@ describe("SmartContract", () => { describe("#getId", () => { it("returns the smart contract ID", () => { - expect(smartContract.getId()).toEqual(VALID_SMART_CONTRACT_ERC20_MODEL.smart_contract_id); + expect(erc20SmartContract.getId()).toEqual( + VALID_SMART_CONTRACT_ERC20_MODEL.smart_contract_id, + ); }); }); describe("#getNetworkId", () => { it("returns the smart contract network ID", () => { - expect(smartContract.getNetworkId()).toEqual(VALID_SMART_CONTRACT_ERC20_MODEL.network_id); + expect(erc20SmartContract.getNetworkId()).toEqual( + VALID_SMART_CONTRACT_ERC20_MODEL.network_id, + ); }); }); describe("#getContractAddress", () => { it("returns the smart contract contract address", () => { - expect(smartContract.getContractAddress()).toEqual( + expect(erc20SmartContract.getContractAddress()).toEqual( VALID_SMART_CONTRACT_ERC20_MODEL.contract_address, ); }); @@ -60,7 +72,7 @@ describe("SmartContract", () => { describe("#getDeployerAddress", () => { it("returns the smart contract deployer address", () => { - expect(smartContract.getDeployerAddress()).toEqual( + expect(erc20SmartContract.getDeployerAddress()).toEqual( VALID_SMART_CONTRACT_ERC20_MODEL.deployer_address, ); }); @@ -68,25 +80,37 @@ describe("SmartContract", () => { describe("#getType", () => { it("returns the smart contract type", () => { - expect(smartContract.getType()).toEqual(VALID_SMART_CONTRACT_ERC20_MODEL.type); + expect(erc20SmartContract.getType()).toEqual(VALID_SMART_CONTRACT_ERC20_MODEL.type); }); }); describe("#getOptions", () => { it("returns the smart contract options", () => { - expect(smartContract.getOptions()).toEqual(VALID_SMART_CONTRACT_ERC20_MODEL.options); + expect(erc20SmartContract.getOptions()).toEqual({ + name: ERC20_NAME, + symbol: ERC20_SYMBOL, + totalSupply: ERC20_TOTAL_SUPPLY.toString(), + }); + }); + + it("returns the smart contract options for ERC721", () => { + expect(erc721SmartContract.getOptions()).toEqual({ + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + baseURI: ERC721_BASE_URI, + }); }); }); describe("#getAbi", () => { it("returns the smart contract ABI", () => { - expect(smartContract.getAbi()).toEqual(JSON.parse(VALID_SMART_CONTRACT_ERC20_MODEL.abi)); + expect(erc20SmartContract.getAbi()).toEqual(JSON.parse(VALID_SMART_CONTRACT_ERC20_MODEL.abi)); }); }); describe("#getTransaction", () => { it("returns the smart contract transaction", () => { - expect(smartContract.getTransaction()).toEqual( + expect(erc20SmartContract.getTransaction()).toEqual( new Transaction(VALID_SMART_CONTRACT_ERC20_MODEL.transaction), ); }); @@ -117,7 +141,7 @@ describe("SmartContract", () => { Coinbase.apiClients.smartContract = smartContractApiMock; // Ensure signed payload is present. - smartContract = SmartContract.fromModel({ + erc20SmartContract = SmartContract.fromModel({ ...VALID_SMART_CONTRACT_ERC20_MODEL, transaction: { ...VALID_SMART_CONTRACT_ERC20_MODEL.transaction!, @@ -139,7 +163,7 @@ describe("SmartContract", () => { }, }); - broadcastedSmartContract = await smartContract.broadcast(); + broadcastedSmartContract = await erc20SmartContract.broadcast(); }); it("returns the broadcasted smart contract", async () => { @@ -151,9 +175,9 @@ describe("SmartContract", () => { it("broadcasts the smart contract", async () => { expect(Coinbase.apiClients.smartContract!.deploySmartContract).toHaveBeenCalledWith( - smartContract.getWalletId(), - smartContract.getDeployerAddress(), - smartContract.getId(), + erc20SmartContract.getWalletId(), + erc20SmartContract.getDeployerAddress(), + erc20SmartContract.getId(), { signed_payload: signedPayload.slice(2), }, @@ -165,11 +189,11 @@ describe("SmartContract", () => { describe("when the transaction is not signed", () => { beforeEach(() => { - smartContract = SmartContract.fromModel(VALID_SMART_CONTRACT_ERC20_MODEL); + erc20SmartContract = SmartContract.fromModel(VALID_SMART_CONTRACT_ERC20_MODEL); }); it("throws an error", async () => { - expect(smartContract.broadcast()).rejects.toThrow( + expect(erc20SmartContract.broadcast()).rejects.toThrow( "Cannot broadcast unsigned SmartContract deployment", ); }); @@ -191,7 +215,7 @@ describe("SmartContract", () => { }); it("throws an error", async () => { - expect(smartContract.broadcast()).rejects.toThrow(APIError); + expect(erc20SmartContract.broadcast()).rejects.toThrow(APIError); }); }); }); @@ -209,7 +233,7 @@ describe("SmartContract", () => { }); it("successfully waits and returns", async () => { - const completedSmartContract = await smartContract.wait(); + const completedSmartContract = await erc20SmartContract.wait(); expect(completedSmartContract).toBeInstanceOf(SmartContract); expect(completedSmartContract.getTransaction().getStatus()).toEqual( TransactionStatus.COMPLETE, @@ -229,7 +253,7 @@ describe("SmartContract", () => { }); it("successfully waits and returns a failed invocation", async () => { - const completedSmartContract = await smartContract.wait(); + const completedSmartContract = await erc20SmartContract.wait(); expect(completedSmartContract).toBeInstanceOf(SmartContract); expect(completedSmartContract.getTransaction().getStatus()).toEqual( TransactionStatus.FAILED, @@ -249,9 +273,9 @@ describe("SmartContract", () => { }); it("throws a timeout error", async () => { - expect(smartContract.wait({ timeoutSeconds: 0.05, intervalSeconds: 0.05 })).rejects.toThrow( - new TimeoutError("SmartContract deployment timed out"), - ); + expect( + erc20SmartContract.wait({ timeoutSeconds: 0.05, intervalSeconds: 0.05 }), + ).rejects.toThrow(new TimeoutError("SmartContract deployment timed out")); }); }); }); @@ -265,18 +289,18 @@ describe("SmartContract", () => { status: TransactionStatus.COMPLETE, }, }); - await smartContract.reload(); - expect(smartContract.getTransaction().getStatus()).toEqual(TransactionStatus.COMPLETE); + await erc20SmartContract.reload(); + expect(erc20SmartContract.getTransaction().getStatus()).toEqual(TransactionStatus.COMPLETE); expect(Coinbase.apiClients.smartContract!.getSmartContract).toHaveBeenCalledTimes(1); }); }); describe("#toString", () => { it("returns the same value as toString", () => { - expect(smartContract.toString()).toEqual( - `SmartContract{id: '${smartContract.getId()}', networkId: '${smartContract.getNetworkId()}', ` + - `contractAddress: '${smartContract.getContractAddress()}', deployerAddress: '${smartContract.getDeployerAddress()}', ` + - `type: '${smartContract.getType()}'}`, + expect(erc20SmartContract.toString()).toEqual( + `SmartContract{id: '${erc20SmartContract.getId()}', networkId: '${erc20SmartContract.getNetworkId()}', ` + + `contractAddress: '${erc20SmartContract.getContractAddress()}', deployerAddress: '${erc20SmartContract.getDeployerAddress()}', ` + + `type: '${erc20SmartContract.getType()}'}`, ); }); }); diff --git a/src/tests/utils.ts b/src/tests/utils.ts index 4bf1b999..e7aae8ff 100644 --- a/src/tests/utils.ts +++ b/src/tests/utils.ts @@ -23,6 +23,8 @@ import { FeatureSet, TransactionStatusEnum, ValidatorStatus, + NFTContractOptions as NFTContractOptionsModel, + TokenContractOptions as TokenContractOptionsModel, } from "../client"; import { BASE_PATH } from "../client/base"; import { Coinbase } from "../coinbase/coinbase"; @@ -293,7 +295,32 @@ export const VALID_SMART_CONTRACT_ERC20_MODEL: SmartContractModel = { name: ERC20_NAME, symbol: ERC20_SYMBOL, total_supply: ERC20_TOTAL_SUPPLY.toString(), + } as TokenContractOptionsModel, + abi: JSON.stringify("some-abi"), + transaction: { + network_id: Coinbase.networks.BaseSepolia, + from_address_id: "0xdeadbeef", + unsigned_payload: + "7b2274797065223a22307832222c22636861696e4964223a2230783134613334222c226e6f6e6365223a22307830222c22746f223a22307861383261623835303466646562326461646161336234663037356539363762626533353036356239222c22676173223a22307865623338222c226761735072696365223a6e756c6c2c226d61785072696f72697479466565506572476173223a2230786634323430222c226d6178466565506572476173223a2230786634333638222c2276616c7565223a22307830222c22696e707574223a223078366136323738343230303030303030303030303030303030303030303030303034373564343164653761383132393862613236333138343939363830306362636161643733633062222c226163636573734c697374223a5b5d2c2276223a22307830222c2272223a22307830222c2273223a22307830222c2279506172697479223a22307830222c2268617368223a22307865333131636632303063643237326639313566656433323165663065376431653965353362393761346166623737336638653935646431343630653665326163227d", + status: TransactionStatusEnum.Pending, }, +}; + +export const ERC721_NAME = "Test NFT"; +export const ERC721_SYMBOL = "TEST"; +export const ERC721_BASE_URI = "https://example.com/metadata/"; +export const VALID_SMART_CONTRACT_ERC721_MODEL: SmartContractModel = { + smart_contract_id: "test-smart-contract-1", + network_id: Coinbase.networks.BaseSepolia, + wallet_id: walletId, + contract_address: "0xcontract-address", + deployer_address: "0xdeployer-address", + type: SmartContractType.Erc721, + options: { + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + base_uri: ERC721_BASE_URI, + } as NFTContractOptionsModel, abi: JSON.stringify("some-abi"), transaction: { network_id: Coinbase.networks.BaseSepolia, diff --git a/src/tests/wallet_address_test.ts b/src/tests/wallet_address_test.ts index 49e7c6d4..70899276 100644 --- a/src/tests/wallet_address_test.ts +++ b/src/tests/wallet_address_test.ts @@ -53,6 +53,10 @@ import { ERC20_NAME, ERC20_SYMBOL, ERC20_TOTAL_SUPPLY, + VALID_SMART_CONTRACT_ERC721_MODEL, + ERC721_NAME, + ERC721_SYMBOL, + ERC721_BASE_URI, } from "./utils"; import { Transfer } from "../coinbase/transfer"; import { TransactionStatus } from "../coinbase/types"; @@ -1796,6 +1800,302 @@ describe("WalletAddress", () => { }); }); + describe("#deployNFT", () => { + let key = ethers.Wallet.createRandom(); + let addressModel: AddressModel; + let walletAddress: WalletAddress; + let expectedSignedPayload: string; + + beforeAll(() => { + Coinbase.apiClients.smartContract = smartContractApiMock; + }); + + beforeEach(() => { + jest.clearAllMocks(); + + addressModel = newAddressModel(randomUUID(), randomUUID(), Coinbase.networks.BaseSepolia); + }); + + describe("when not using a server-signer", () => { + beforeEach(async () => { + Coinbase.useServerSigner = false; + + walletAddress = new WalletAddress(addressModel, key as unknown as ethers.Wallet); + + const tx = new Transaction(VALID_SMART_CONTRACT_ERC721_MODEL.transaction); + expectedSignedPayload = await tx.sign(key as unknown as ethers.Wallet); + }); + + describe("when it is successful", () => { + let smartContract; + + beforeEach(async () => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC721_MODEL, + deployer_address: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + Coinbase.apiClients.smartContract!.deploySmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC721_MODEL, + address_id: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + smartContract = await walletAddress.deployNFT({ + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + baseURI: ERC721_BASE_URI, + }); + }); + + it("returns a smart contract", async () => { + expect(smartContract).toBeInstanceOf(SmartContract); + expect(smartContract.getId()).toBe(VALID_SMART_CONTRACT_ERC721_MODEL.smart_contract_id); + }); + + it("creates the smart contract", async () => { + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + { + type: SmartContractType.Erc721, + options: { + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + base_uri: ERC721_BASE_URI, + }, + }, + ); + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledTimes(1); + }); + + it("broadcasts the smart contract", async () => { + expect(Coinbase.apiClients.smartContract!.deploySmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + VALID_SMART_CONTRACT_ERC721_MODEL.smart_contract_id, + { + signed_payload: expectedSignedPayload, + }, + ); + + expect(Coinbase.apiClients.smartContract!.deploySmartContract).toHaveBeenCalledTimes(1); + }); + }); + + describe("when it is successful deploying a smart contract", () => { + let smartContract; + + beforeEach(async () => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC721_MODEL, + deployer_address: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + Coinbase.apiClients.smartContract!.deploySmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC721_MODEL, + deployer_address: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + Coinbase.apiClients.smartContract!.getSmartContract = mockReturnValue( + VALID_SMART_CONTRACT_ERC721_MODEL, + ); + + smartContract = await walletAddress.deployNFT({ + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + baseURI: ERC721_BASE_URI, + }); + }); + + it("returns a smart contract", async () => { + expect(smartContract).toBeInstanceOf(SmartContract); + expect(smartContract.getId()).toBe(VALID_SMART_CONTRACT_ERC721_MODEL.smart_contract_id); + }); + + it("creates the smart contract", async () => { + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + { + type: SmartContractType.Erc721, + options: { + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + base_uri: ERC721_BASE_URI, + }, + }, + ); + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledTimes(1); + }); + + it("broadcasts the smart contract", async () => { + expect(Coinbase.apiClients.smartContract!.deploySmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + VALID_SMART_CONTRACT_ERC721_MODEL.smart_contract_id, + { + signed_payload: expectedSignedPayload, + }, + ); + + expect(Coinbase.apiClients.smartContract!.deploySmartContract).toHaveBeenCalledTimes(1); + }); + }); + + describe("when no key is loaded", () => { + beforeEach(() => { + walletAddress = new WalletAddress(addressModel); + }); + + it("throws an error", async () => { + await expect( + walletAddress.deployNFT({ + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + baseURI: ERC721_BASE_URI, + }), + ).rejects.toThrow(Error); + }); + }); + + describe("when it fails to create a smart contract", () => { + beforeEach(() => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnRejectedValue( + new APIError({ + response: { + status: 400, + data: { + code: "malformed_request", + message: "failed to create smart contract: invalid abi", + }, + }, + } as AxiosError), + ); + }); + + it("throws an error", async () => { + await expect( + walletAddress.deployNFT({ + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + baseURI: ERC721_BASE_URI, + }), + ).rejects.toThrow(APIError); + }); + }); + + describe("when it fails to broadcast a smart contract", () => { + beforeEach(() => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnValue({ + ...VALID_CONTRACT_INVOCATION_MODEL, + address_id: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + Coinbase.apiClients.smartContract!.deploySmartContract = mockReturnRejectedValue( + new APIError({ + response: { + status: 400, + data: { + code: "invalid_signed_payload", + message: "failed to broadcast smart contract: invalid signed payload", + }, + }, + } as AxiosError), + ); + }); + + it("throws an error", async () => { + await expect( + walletAddress.deployNFT({ + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + baseURI: ERC721_BASE_URI, + }), + ).rejects.toThrow(APIError); + }); + }); + }); + + describe("when using a server-signer", () => { + let smartContract; + + beforeEach(async () => { + Coinbase.useServerSigner = true; + + walletAddress = new WalletAddress(addressModel); + }); + + describe("when it is successful", () => { + beforeEach(async () => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC721_MODEL, + address_id: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + smartContract = await walletAddress.deployNFT({ + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + baseURI: ERC721_BASE_URI, + }); + }); + + it("returns a pending contract invocation", async () => { + expect(smartContract).toBeInstanceOf(SmartContract); + expect(smartContract.getId()).toBe(VALID_SMART_CONTRACT_ERC721_MODEL.smart_contract_id); + expect(smartContract.getTransaction().getStatus()).toBe(TransactionStatus.PENDING); + }); + + it("creates a contract invocation", async () => { + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + { + type: SmartContractType.Erc721, + options: { + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + base_uri: ERC721_BASE_URI, + }, + }, + ); + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledTimes(1); + }); + }); + + describe("when creating a contract invocation fails", () => { + beforeEach(() => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnRejectedValue( + new APIError({ + response: { + status: 400, + data: { + code: "malformed_request", + message: "failed to create contract invocation: invalid abi", + }, + }, + } as AxiosError), + ); + }); + + it("throws an error", async () => { + await expect( + walletAddress.deployNFT({ + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + baseURI: ERC721_BASE_URI, + }), + ).rejects.toThrow(APIError); + }); + }); + }); + }); + describe("#createPayloadSignature", () => { let key = ethers.Wallet.createRandom(); let addressModel: AddressModel; diff --git a/src/tests/wallet_test.ts b/src/tests/wallet_test.ts index 7454fb5c..eeadab5e 100644 --- a/src/tests/wallet_test.ts +++ b/src/tests/wallet_test.ts @@ -53,6 +53,10 @@ import { ERC20_NAME, ERC20_SYMBOL, ERC20_TOTAL_SUPPLY, + ERC721_NAME, + ERC721_SYMBOL, + ERC721_BASE_URI, + VALID_SMART_CONTRACT_ERC721_MODEL, } from "./utils"; import { Trade } from "../coinbase/trade"; import { WalletAddress } from "../coinbase/address/wallet_address"; @@ -615,6 +619,33 @@ describe("Wallet Class", () => { }); }); + describe("#deployNFT", () => { + let expectedSmartContract; + let options = { + name: ERC721_NAME, + symbol: ERC721_SYMBOL, + baseURI: ERC721_BASE_URI, + }; + + beforeEach(async () => { + expectedSmartContract = SmartContract.fromModel(VALID_SMART_CONTRACT_ERC721_MODEL); + + (await wallet.getDefaultAddress()).deployNFT = jest + .fn() + .mockResolvedValue(expectedSmartContract); + }); + + it("successfully deploys an ERC721 contract on the default address", async () => { + const smartContract = await wallet.deployNFT(options); + + expect((await wallet.getDefaultAddress()).deployNFT).toHaveBeenCalledTimes(1); + expect((await wallet.getDefaultAddress()).deployNFT).toHaveBeenCalledWith(options); + + expect(smartContract).toBeInstanceOf(SmartContract); + expect(smartContract).toEqual(expectedSmartContract); + }); + }); + describe("#createPayloadSignature", () => { let unsignedPayload = VALID_SIGNED_PAYLOAD_SIGNATURE_MODEL.unsigned_payload; let signature = From 923eaf8b4f9af9c677654f46a5d6d5b555c45609 Mon Sep 17 00:00:00 2001 From: rohan-agarwal-coinbase Date: Wed, 25 Sep 2024 11:04:02 -0400 Subject: [PATCH 6/9] Add support for ERC1155 contract deployments (#269) --- CHANGELOG.md | 1 + src/client/api.ts | 18 +- src/coinbase/address/wallet_address.ts | 49 +++++ src/coinbase/smart_contract.ts | 24 ++- src/coinbase/types.ts | 20 +- src/coinbase/wallet.ts | 17 +- src/tests/smart_contract_test.ts | 22 +- src/tests/utils.ts | 22 ++ src/tests/wallet_address_test.ts | 278 +++++++++++++++++++++++++ 9 files changed, 444 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3239f4b..e7788de4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Added - Add `deployNFT` method to `WalletAddress` and `Wallet` to deploy an ERC721, updated `SmartContract` class to support deployment and fetching contract details +- Add `deployMultiToken` method to `WalletAddress` and `Wallet` to deploy an ERC1155, updated `SmartContract` class to support deployment and fetching contract details ## [0.6.1] - 2024-09-23 diff --git a/src/client/api.ts b/src/client/api.ts index 796be622..b879471d 100644 --- a/src/client/api.ts +++ b/src/client/api.ts @@ -1578,6 +1578,19 @@ export interface ModelError { */ 'correlation_id'?: string; } +/** + * Options for multi-token contract creation + * @export + * @interface MultiTokenContractOptions + */ +export interface MultiTokenContractOptions { + /** + * The URI for all token metadata + * @type {string} + * @memberof MultiTokenContractOptions + */ + 'uri': string; +} /** * Options for NFT contract creation * @export @@ -2151,7 +2164,7 @@ export interface SmartContractList { * Options for smart contract creation * @export */ -export type SmartContractOptions = NFTContractOptions | TokenContractOptions; +export type SmartContractOptions = MultiTokenContractOptions | NFTContractOptions | TokenContractOptions; /** * The type of the smart contract @@ -2161,7 +2174,8 @@ export type SmartContractOptions = NFTContractOptions | TokenContractOptions; export const SmartContractType = { Erc20: 'erc20', - Erc721: 'erc721' + Erc721: 'erc721', + Erc1155: 'erc1155' } as const; export type SmartContractType = typeof SmartContractType[keyof typeof SmartContractType]; diff --git a/src/coinbase/address/wallet_address.ts b/src/coinbase/address/wallet_address.ts index 4cbc5bfa..022f1c65 100644 --- a/src/coinbase/address/wallet_address.ts +++ b/src/coinbase/address/wallet_address.ts @@ -17,6 +17,7 @@ import { StakeOptionsMode, CreateERC20Options, CreateERC721Options, + CreateERC1155Options, } from "../types"; import { delay } from "../utils"; import { Wallet as WalletClass } from "../wallet"; @@ -379,6 +380,31 @@ export class WalletAddress extends Address { return smartContract; } + /** + * Deploys an ERC1155 multi-token contract. + * + * @param options - The options for creating the ERC1155 token. + * @param options.uri - The URI for all token metadata. + * @returns A Promise that resolves to the deployed SmartContract object. + * @throws {APIError} If the API request to create a smart contract fails. + */ + public async deployMultiToken(options: CreateERC1155Options): Promise { + if (!Coinbase.useServerSigner && !this.key) { + throw new Error("Cannot deploy ERC1155 without private key loaded"); + } + + const smartContract = await this.createERC1155(options); + + if (Coinbase.useServerSigner) { + return smartContract; + } + + await smartContract.sign(this.getSigner()); + await smartContract.broadcast(); + + return smartContract; + } + /** * Creates an ERC20 token contract. * @@ -432,6 +458,29 @@ export class WalletAddress extends Address { return SmartContract.fromModel(resp?.data); } + /** + * Creates an ERC1155 multi-token contract. + * + * @private + * @param {CreateERC1155Options} options - The options for creating the ERC1155 token. + * @param {string} options.uri - The URI for all token metadata. + * @returns {Promise} A Promise that resolves to the created SmartContract. + * @throws {APIError} If the API request to create a smart contract fails. + */ + private async createERC1155(options: CreateERC1155Options): Promise { + const resp = await Coinbase.apiClients.smartContract!.createSmartContract( + this.getWalletId(), + this.getId(), + { + type: SmartContractType.Erc1155, + options: { + uri: options.uri, + }, + }, + ); + return SmartContract.fromModel(resp?.data); + } + /** * Creates a contract invocation with the given data. * diff --git a/src/coinbase/smart_contract.ts b/src/coinbase/smart_contract.ts index 1f943fa0..fe124d9d 100644 --- a/src/coinbase/smart_contract.ts +++ b/src/coinbase/smart_contract.ts @@ -5,6 +5,7 @@ import { SmartContractType as SmartContractTypeModel, SmartContractOptions as SmartContractOptionsModel, TokenContractOptions as TokenContractOptionsModel, + NFTContractOptions as NFTContractOptionsModel, } from "../client/api"; import { Transaction } from "./transaction"; import { @@ -12,6 +13,7 @@ import { SmartContractType, NFTContractOptions, TokenContractOptions, + MultiTokenContractOptions, TransactionStatus, } from "./types"; import { Coinbase } from "./coinbase"; @@ -155,6 +157,8 @@ export class SmartContract { return SmartContractType.ERC20; case SmartContractTypeModel.Erc721: return SmartContractType.ERC721; + case SmartContractTypeModel.Erc1155: + return SmartContractType.ERC1155; default: throw new Error(`Unknown smart contract type: ${this.model.type}`); } @@ -172,12 +176,16 @@ export class SmartContract { symbol: this.model.options.symbol, totalSupply: this.model.options.total_supply, } as TokenContractOptions; - } else { + } else if (this.isERC721(this.getType(), this.model.options)) { return { name: this.model.options.name, symbol: this.model.options.symbol, baseURI: this.model.options.base_uri, } as NFTContractOptions; + } else { + return { + uri: this.model.options.uri, + } as MultiTokenContractOptions; } } @@ -304,4 +312,18 @@ export class SmartContract { ): options is TokenContractOptionsModel { return type === SmartContractType.ERC20; } + + /** + * Type guard for checking if the smart contract is an ERC721. + * + * @param type - The type of the smart contract. + * @param options - The options of the smart contract. + * @returns True if the smart contract is an ERC721, false otherwise. + */ + private isERC721( + type: SmartContractType, + options: SmartContractOptionsModel, + ): options is NFTContractOptionsModel { + return type === SmartContractType.ERC721; + } } diff --git a/src/coinbase/types.ts b/src/coinbase/types.ts index caf11b03..226f1021 100644 --- a/src/coinbase/types.ts +++ b/src/coinbase/types.ts @@ -912,6 +912,7 @@ export enum StakeOptionsMode { export enum SmartContractType { ERC20 = "erc20", ERC721 = "erc721", + ERC1155 = "erc1155", } /** @@ -932,10 +933,20 @@ export type TokenContractOptions = { totalSupply: string; }; +/** + * Multi-Token Contract Options + */ +export type MultiTokenContractOptions = { + uri: string; +}; + /** * Smart Contract Options */ -export type SmartContractOptions = NFTContractOptions | TokenContractOptions; +export type SmartContractOptions = + | NFTContractOptions + | TokenContractOptions + | MultiTokenContractOptions; /** * Options for creating a Transfer. @@ -986,6 +997,13 @@ export type CreateERC721Options = { baseURI: string; }; +/** + * Options for creating a ERC1155. + */ +export type CreateERC1155Options = { + uri: string; +}; + /** * Options for listing historical balances of an address. */ diff --git a/src/coinbase/wallet.ts b/src/coinbase/wallet.ts index c1ab5365..f9ab7f5e 100644 --- a/src/coinbase/wallet.ts +++ b/src/coinbase/wallet.ts @@ -30,6 +30,7 @@ import { WalletData, CreateERC20Options, CreateERC721Options, + CreateERC1155Options, } from "./types"; import { convertStringToHex, delay, formatDate, getWeekBackDate } from "./utils"; import { StakingOperation } from "./staking_operation"; @@ -792,12 +793,26 @@ export class Wallet { * @param options.symbol - The symbol of the ERC721 token. * @param options.baseURI - The base URI of the ERC721 token. * @returns A Promise that resolves to the deployed SmartContract object. - * @throws {APIError} If the private key is not loaded when not using server signer. + * @throws {Error} If the private key is not loaded when not using server signer. */ public async deployNFT(options: CreateERC721Options): Promise { return (await this.getDefaultAddress()).deployNFT(options); } + /** + * Deploys an ERC1155 token contract. + * + * @param options - The options for creating the ERC1155 token. + * @param options.name - The name of the ERC1155 token. + * @param options.symbol - The symbol of the ERC1155 token. + * @param options.baseURI - The base URI of the ERC1155 token. + * @returns A Promise that resolves to the deployed SmartContract object. + * @throws {Error} If the private key is not loaded when not using server signer. + */ + public async deployMultiToken(options: CreateERC1155Options): Promise { + return (await this.getDefaultAddress()).deployMultiToken(options); + } + /** * Returns a String representation of the Wallet. * diff --git a/src/tests/smart_contract_test.ts b/src/tests/smart_contract_test.ts index 617ab61f..2df83a61 100644 --- a/src/tests/smart_contract_test.ts +++ b/src/tests/smart_contract_test.ts @@ -14,6 +14,8 @@ import { ERC721_NAME, ERC721_SYMBOL, ERC721_BASE_URI, + VALID_SMART_CONTRACT_ERC1155_MODEL, + ERC1155_URI, } from "./utils"; import { SmartContract } from "../coinbase/smart_contract"; import { ContractEvent } from "../coinbase/contract_event"; @@ -30,6 +32,8 @@ describe("SmartContract", () => { let erc721Model: SmartContractModel = VALID_SMART_CONTRACT_ERC721_MODEL; let erc20SmartContract: SmartContract = SmartContract.fromModel(erc20Model); let erc721SmartContract: SmartContract = SmartContract.fromModel(erc721Model); + let erc1155Model: SmartContractModel = VALID_SMART_CONTRACT_ERC1155_MODEL; + let erc1155SmartContract: SmartContract = SmartContract.fromModel(erc1155Model); afterEach(() => { jest.clearAllMocks(); }); @@ -79,13 +83,21 @@ describe("SmartContract", () => { }); describe("#getType", () => { - it("returns the smart contract type", () => { + it("returns the smart contract type for ERC20", () => { expect(erc20SmartContract.getType()).toEqual(VALID_SMART_CONTRACT_ERC20_MODEL.type); }); + + it("returns the smart contract type for ERC721", () => { + expect(erc721SmartContract.getType()).toEqual(VALID_SMART_CONTRACT_ERC721_MODEL.type); + }); + + it("returns the smart contract type for ERC1155", () => { + expect(erc1155SmartContract.getType()).toEqual(VALID_SMART_CONTRACT_ERC1155_MODEL.type); + }); }); describe("#getOptions", () => { - it("returns the smart contract options", () => { + it("returns the smart contract options for ERC20", () => { expect(erc20SmartContract.getOptions()).toEqual({ name: ERC20_NAME, symbol: ERC20_SYMBOL, @@ -100,6 +112,12 @@ describe("SmartContract", () => { baseURI: ERC721_BASE_URI, }); }); + + it("returns the smart contract options for ERC1155", () => { + expect(erc1155SmartContract.getOptions()).toEqual({ + uri: ERC1155_URI, + }); + }); }); describe("#getAbi", () => { diff --git a/src/tests/utils.ts b/src/tests/utils.ts index e7aae8ff..7b85001e 100644 --- a/src/tests/utils.ts +++ b/src/tests/utils.ts @@ -25,6 +25,7 @@ import { ValidatorStatus, NFTContractOptions as NFTContractOptionsModel, TokenContractOptions as TokenContractOptionsModel, + MultiTokenContractOptions as MultiTokenContractOptionsModel, } from "../client"; import { BASE_PATH } from "../client/base"; import { Coinbase } from "../coinbase/coinbase"; @@ -331,6 +332,27 @@ export const VALID_SMART_CONTRACT_ERC721_MODEL: SmartContractModel = { }, }; +export const ERC1155_URI = "https://example.com/{id}.json"; +export const VALID_SMART_CONTRACT_ERC1155_MODEL: SmartContractModel = { + smart_contract_id: "test-smart-contract-1", + network_id: Coinbase.networks.BaseSepolia, + wallet_id: walletId, + contract_address: "0xcontract-address", + deployer_address: "0xdeployer-address", + type: SmartContractType.Erc1155, + options: { + uri: ERC1155_URI, + } as MultiTokenContractOptionsModel, + abi: JSON.stringify("some-abi"), + transaction: { + network_id: Coinbase.networks.BaseSepolia, + from_address_id: "0xdeadbeef", + unsigned_payload: + "7b2274797065223a22307832222c22636861696e4964223a2230783134613334222c226e6f6e6365223a22307830222c22746f223a22307861383261623835303466646562326461646161336234663037356539363762626533353036356239222c22676173223a22307865623338222c226761735072696365223a6e756c6c2c226d61785072696f72697479466565506572476173223a2230786634323430222c226d6178466565506572476173223a2230786634333638222c2276616c7565223a22307830222c22696e707574223a223078366136323738343230303030303030303030303030303030303030303030303034373564343164653761383132393862613236333138343939363830306362636161643733633062222c226163636573734c697374223a5b5d2c2276223a22307830222c2272223a22307830222c2273223a22307830222c2279506172697479223a22307830222c2268617368223a22307865333131636632303063643237326639313566656433323165663065376431653965353362393761346166623737336638653935646431343630653665326163227d", + status: TransactionStatusEnum.Pending, + }, +}; + /** * mockStakingOperation returns a mock StakingOperation object with the provided status. * diff --git a/src/tests/wallet_address_test.ts b/src/tests/wallet_address_test.ts index 70899276..3aa97f04 100644 --- a/src/tests/wallet_address_test.ts +++ b/src/tests/wallet_address_test.ts @@ -57,6 +57,8 @@ import { ERC721_NAME, ERC721_SYMBOL, ERC721_BASE_URI, + VALID_SMART_CONTRACT_ERC1155_MODEL, + ERC1155_URI, } from "./utils"; import { Transfer } from "../coinbase/transfer"; import { TransactionStatus } from "../coinbase/types"; @@ -2096,6 +2098,282 @@ describe("WalletAddress", () => { }); }); + describe("#deployMultiToken", () => { + let key = ethers.Wallet.createRandom(); + let addressModel: AddressModel; + let walletAddress: WalletAddress; + let expectedSignedPayload: string; + + beforeAll(() => { + Coinbase.apiClients.smartContract = smartContractApiMock; + }); + + beforeEach(() => { + jest.clearAllMocks(); + + addressModel = newAddressModel(randomUUID(), randomUUID(), Coinbase.networks.BaseSepolia); + }); + + describe("when not using a server-signer", () => { + beforeEach(async () => { + Coinbase.useServerSigner = false; + + walletAddress = new WalletAddress(addressModel, key as unknown as ethers.Wallet); + + const tx = new Transaction(VALID_SMART_CONTRACT_ERC1155_MODEL.transaction); + expectedSignedPayload = await tx.sign(key as unknown as ethers.Wallet); + }); + + describe("when it is successful", () => { + let smartContract; + + beforeEach(async () => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC1155_MODEL, + deployer_address: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + Coinbase.apiClients.smartContract!.deploySmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC1155_MODEL, + address_id: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + smartContract = await walletAddress.deployMultiToken({ + uri: ERC1155_URI, + }); + }); + + it("returns a smart contract", async () => { + expect(smartContract).toBeInstanceOf(SmartContract); + expect(smartContract.getId()).toBe(VALID_SMART_CONTRACT_ERC1155_MODEL.smart_contract_id); + }); + + it("creates the smart contract", async () => { + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + { + type: SmartContractType.Erc1155, + options: { + uri: ERC1155_URI, + }, + }, + ); + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledTimes(1); + }); + + it("broadcasts the smart contract", async () => { + expect(Coinbase.apiClients.smartContract!.deploySmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + VALID_SMART_CONTRACT_ERC1155_MODEL.smart_contract_id, + { + signed_payload: expectedSignedPayload, + }, + ); + + expect(Coinbase.apiClients.smartContract!.deploySmartContract).toHaveBeenCalledTimes(1); + }); + }); + + describe("when it is successful deploying a smart contract", () => { + let smartContract; + + beforeEach(async () => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC1155_MODEL, + deployer_address: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + Coinbase.apiClients.smartContract!.deploySmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC1155_MODEL, + deployer_address: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + Coinbase.apiClients.smartContract!.getSmartContract = mockReturnValue( + VALID_SMART_CONTRACT_ERC1155_MODEL, + ); + + smartContract = await walletAddress.deployMultiToken({ + uri: ERC1155_URI, + }); + }); + + it("returns a smart contract", async () => { + expect(smartContract).toBeInstanceOf(SmartContract); + expect(smartContract.getId()).toBe(VALID_SMART_CONTRACT_ERC1155_MODEL.smart_contract_id); + }); + + it("creates the smart contract", async () => { + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + { + type: SmartContractType.Erc1155, + options: { + uri: ERC1155_URI, + }, + }, + ); + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledTimes(1); + }); + + it("broadcasts the smart contract", async () => { + expect(Coinbase.apiClients.smartContract!.deploySmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + VALID_SMART_CONTRACT_ERC1155_MODEL.smart_contract_id, + { + signed_payload: expectedSignedPayload, + }, + ); + + expect(Coinbase.apiClients.smartContract!.deploySmartContract).toHaveBeenCalledTimes(1); + }); + }); + + describe("when no key is loaded", () => { + beforeEach(() => { + walletAddress = new WalletAddress(addressModel); + }); + + it("throws an error", async () => { + await expect( + walletAddress.deployMultiToken({ + uri: ERC1155_URI, + }), + ).rejects.toThrow(Error); + }); + }); + + describe("when it fails to create a smart contract", () => { + beforeEach(() => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnRejectedValue( + new APIError({ + response: { + status: 400, + data: { + code: "malformed_request", + message: "failed to create smart contract: invalid abi", + }, + }, + } as AxiosError), + ); + }); + + it("throws an error", async () => { + await expect( + walletAddress.deployMultiToken({ + uri: ERC1155_URI, + }), + ).rejects.toThrow(APIError); + }); + }); + + describe("when it fails to broadcast a smart contract", () => { + beforeEach(() => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnValue({ + ...VALID_CONTRACT_INVOCATION_MODEL, + address_id: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + Coinbase.apiClients.smartContract!.deploySmartContract = mockReturnRejectedValue( + new APIError({ + response: { + status: 400, + data: { + code: "invalid_signed_payload", + message: "failed to broadcast smart contract: invalid signed payload", + }, + }, + } as AxiosError), + ); + }); + + it("throws an error", async () => { + await expect( + walletAddress.deployMultiToken({ + uri: ERC1155_URI, + }), + ).rejects.toThrow(APIError); + }); + }); + }); + + describe("when using a server-signer", () => { + let smartContract; + + beforeEach(async () => { + Coinbase.useServerSigner = true; + + walletAddress = new WalletAddress(addressModel); + }); + + describe("when it is successful", () => { + beforeEach(async () => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnValue({ + ...VALID_SMART_CONTRACT_ERC1155_MODEL, + address_id: walletAddress.getId(), + wallet_id: walletAddress.getWalletId(), + }); + + smartContract = await walletAddress.deployMultiToken({ + uri: ERC1155_URI, + }); + }); + + it("returns a pending contract invocation", async () => { + expect(smartContract).toBeInstanceOf(SmartContract); + expect(smartContract.getId()).toBe(VALID_SMART_CONTRACT_ERC1155_MODEL.smart_contract_id); + expect(smartContract.getTransaction().getStatus()).toBe(TransactionStatus.PENDING); + }); + + it("creates a contract invocation", async () => { + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledWith( + walletAddress.getWalletId(), + walletAddress.getId(), + { + type: SmartContractType.Erc1155, + options: { + uri: ERC1155_URI, + }, + }, + ); + expect(Coinbase.apiClients.smartContract!.createSmartContract).toHaveBeenCalledTimes(1); + }); + }); + + describe("when creating a contract invocation fails", () => { + beforeEach(() => { + Coinbase.apiClients.smartContract!.createSmartContract = mockReturnRejectedValue( + new APIError({ + response: { + status: 400, + data: { + code: "malformed_request", + message: "failed to create contract invocation: invalid abi", + }, + }, + } as AxiosError), + ); + }); + + it("throws an error", async () => { + await expect( + walletAddress.deployMultiToken({ + uri: ERC1155_URI, + }), + ).rejects.toThrow(APIError); + }); + }); + }); + }); + describe("#createPayloadSignature", () => { let key = ethers.Wallet.createRandom(); let addressModel: AddressModel; From a9a9864ed769a9ae22a31610daf799a8e702ee33 Mon Sep 17 00:00:00 2001 From: cb-howardatcb <86798563+howard-at-cb@users.noreply.github.com> Date: Wed, 25 Sep 2024 12:28:58 -0700 Subject: [PATCH 7/9] Enable wallet activity events support for webhooks at wallet level (#245) * add eventTypeFilter * Update types.ts * Update webhook_test.ts * Update webhook.ts * Update webhook_test.ts * Update webhook.ts * Update webhook_test.ts * Update webhook_test.ts * Update webhook_test.ts * Update webhook_test.ts * Update webhook_test.ts * wallet.create_webhook * Changelog * Update wallet.ts * Update wallet.ts * Update wallet_test.ts * Update wallet_test.ts * Update wallet_test.ts * Update wallet_test.ts * Update wallet_test.ts * fmt * Update wallet_test.ts * Update wallet_test.ts * Update webhook.ts * Update wallet_test.ts * Update wallet_test.ts * address comments * fix test * Update wallet_test.ts * Update wallet_test.ts * Update wallet_test.ts * Update wallet_test.ts * Update jest.config.js * add sol, lamport asset suppport * Fix Asset toAtomicAmount to not return scientific notation (#250) * Fix merge conflicts between master and v0.6.0 (#255) * fix arb * update version * remove network check logic from sdk * fix coverage * fix lint * [PSDK-443] Quickstart Basenames Registration (#243) * base names quickstart * [PSDK-443] Quickstart Register Basenames for MPC Wallet * [hotfix] Fix L2 Resolver Address on Register Basenames Quickstart (#244) --------- Co-authored-by: Jayasudha Jayakumaran Co-authored-by: Jayasudha Jayakumaran <121061531+jazz-cb@users.noreply.github.com> Co-authored-by: John Peterson <98187317+John-peterson-coinbase@users.noreply.github.com> * address comments * Update api.ts * Update CHANGELOG.md * apply new changes * fix tests * Update wallet.ts * Update CHANGELOG.md * Update CHANGELOG.md * Update jest.config.js --------- Co-authored-by: Rohan Agarwal Co-authored-by: Rohit Durvasula Co-authored-by: Jayasudha Jayakumaran Co-authored-by: Jayasudha Jayakumaran <121061531+jazz-cb@users.noreply.github.com> Co-authored-by: John Peterson <98187317+John-peterson-coinbase@users.noreply.github.com> --- CHANGELOG.md | 2 + jest.config.js | 4 +- src/client/api.ts | 106 ++++++++++++++++++++++++++++++++++++++ src/coinbase/types.ts | 18 +++++++ src/coinbase/wallet.ts | 16 ++++++ src/coinbase/webhook.ts | 24 +++++++-- src/tests/wallet_test.ts | 79 ++++++++++++++++++++++++++++ src/tests/webhook_test.ts | 23 ++++----- 8 files changed, 253 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7788de4..d7fcb51d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ ## Unreleased +## [0.7.0] - 2024-09-24 ### Added - Add `deployNFT` method to `WalletAddress` and `Wallet` to deploy an ERC721, updated `SmartContract` class to support deployment and fetching contract details - Add `deployMultiToken` method to `WalletAddress` and `Wallet` to deploy an ERC1155, updated `SmartContract` class to support deployment and fetching contract details +- Add `createWebhook` method to `Wallet` to deploy a wallet activity webhook, updated `Webhook` class to disallow users from specifying webhook signature. Webhook signature is now generated by the API. ## [0.6.1] - 2024-09-23 diff --git a/jest.config.js b/jest.config.js index 17790c6a..2642a5f3 100644 --- a/jest.config.js +++ b/jest.config.js @@ -11,9 +11,9 @@ module.exports = { coverageThreshold: { "./src/coinbase/**": { branches: 77, - functions: 90, + functions: 85, statements: 85, - lines: 87, + lines: 85, }, }, }; diff --git a/src/client/api.ts b/src/client/api.ts index b879471d..477ff9c0 100644 --- a/src/client/api.ts +++ b/src/client/api.ts @@ -783,6 +783,25 @@ export interface CreateWalletRequestWallet { */ 'use_server_signer'?: boolean; } +/** + * + * @export + * @interface CreateWalletWebhookRequest + */ +export interface CreateWalletWebhookRequest { + /** + * The URL to which the notifications will be sent + * @type {string} + * @memberof CreateWalletWebhookRequest + */ + 'notification_uri': string; + /** + * The custom header to be used for x-webhook-signature header on callbacks, so developers can verify the requests are coming from Coinbase. + * @type {string} + * @memberof CreateWalletWebhookRequest + */ + 'signature_header'?: string; +} /** * * @export @@ -9288,6 +9307,44 @@ export class WalletsApi extends BaseAPI implements WalletsApiInterface { */ export const WebhooksApiAxiosParamCreator = function (configuration?: Configuration) { return { + /** + * Create a new webhook scoped to a wallet + * @summary Create a new webhook scoped to a wallet + * @param {string} walletId The ID of the wallet to create the webhook for. + * @param {CreateWalletWebhookRequest} [createWalletWebhookRequest] + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createWalletWebhook: async (walletId: string, createWalletWebhookRequest?: CreateWalletWebhookRequest, options: RawAxiosRequestConfig = {}): Promise => { + // verify required parameter 'walletId' is not null or undefined + assertParamExists('createWalletWebhook', 'walletId', walletId) + const localVarPath = `/v1/wallets/{wallet_id}/webhooks` + .replace(`{${"wallet_id"}}`, encodeURIComponent(String(walletId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = serializeDataIfNeeded(createWalletWebhookRequest, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * Create a new webhook * @summary Create a new webhook @@ -9444,6 +9501,20 @@ export const WebhooksApiAxiosParamCreator = function (configuration?: Configurat export const WebhooksApiFp = function(configuration?: Configuration) { const localVarAxiosParamCreator = WebhooksApiAxiosParamCreator(configuration) return { + /** + * Create a new webhook scoped to a wallet + * @summary Create a new webhook scoped to a wallet + * @param {string} walletId The ID of the wallet to create the webhook for. + * @param {CreateWalletWebhookRequest} [createWalletWebhookRequest] + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async createWalletWebhook(walletId: string, createWalletWebhookRequest?: CreateWalletWebhookRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createWalletWebhook(walletId, createWalletWebhookRequest, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['WebhooksApi.createWalletWebhook']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, /** * Create a new webhook * @summary Create a new webhook @@ -9508,6 +9579,17 @@ export const WebhooksApiFp = function(configuration?: Configuration) { export const WebhooksApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { const localVarFp = WebhooksApiFp(configuration) return { + /** + * Create a new webhook scoped to a wallet + * @summary Create a new webhook scoped to a wallet + * @param {string} walletId The ID of the wallet to create the webhook for. + * @param {CreateWalletWebhookRequest} [createWalletWebhookRequest] + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createWalletWebhook(walletId: string, createWalletWebhookRequest?: CreateWalletWebhookRequest, options?: RawAxiosRequestConfig): AxiosPromise { + return localVarFp.createWalletWebhook(walletId, createWalletWebhookRequest, options).then((request) => request(axios, basePath)); + }, /** * Create a new webhook * @summary Create a new webhook @@ -9559,6 +9641,17 @@ export const WebhooksApiFactory = function (configuration?: Configuration, baseP * @interface WebhooksApi */ export interface WebhooksApiInterface { + /** + * Create a new webhook scoped to a wallet + * @summary Create a new webhook scoped to a wallet + * @param {string} walletId The ID of the wallet to create the webhook for. + * @param {CreateWalletWebhookRequest} [createWalletWebhookRequest] + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof WebhooksApiInterface + */ + createWalletWebhook(walletId: string, createWalletWebhookRequest?: CreateWalletWebhookRequest, options?: RawAxiosRequestConfig): AxiosPromise; + /** * Create a new webhook * @summary Create a new webhook @@ -9610,6 +9703,19 @@ export interface WebhooksApiInterface { * @extends {BaseAPI} */ export class WebhooksApi extends BaseAPI implements WebhooksApiInterface { + /** + * Create a new webhook scoped to a wallet + * @summary Create a new webhook scoped to a wallet + * @param {string} walletId The ID of the wallet to create the webhook for. + * @param {CreateWalletWebhookRequest} [createWalletWebhookRequest] + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof WebhooksApi + */ + public createWalletWebhook(walletId: string, createWalletWebhookRequest?: CreateWalletWebhookRequest, options?: RawAxiosRequestConfig) { + return WebhooksApiFp(this.configuration).createWalletWebhook(walletId, createWalletWebhookRequest, options).then((request) => request(this.axios, this.basePath)); + } + /** * Create a new webhook * @summary Create a new webhook diff --git a/src/coinbase/types.ts b/src/coinbase/types.ts index 226f1021..abf830db 100644 --- a/src/coinbase/types.ts +++ b/src/coinbase/types.ts @@ -52,6 +52,8 @@ import { CreateSmartContractRequest, SmartContract as SmartContractModel, DeploySmartContractRequest, + WebhookEventTypeFilter, + CreateWalletWebhookRequest, } from "./../client/api"; import { Address } from "./address"; import { Wallet } from "./wallet"; @@ -1038,6 +1040,21 @@ export type ListHistoricalBalancesResult = { }; export interface WebhookApiClient { + /** + * Create a new webhook for a wallet + * + * @summary Create a new webhook for a wallet + * @param {string} [walletId] + * @param {CreateWalletWebhookRequest} [createWalletWebhookRequest] + * @param {*} [options] - Override http request option. + * @throws {RequiredError} + */ + createWalletWebhook( + walletId?: string, + createWalletWebhookRequest?: CreateWalletWebhookRequest, + options?: RawAxiosRequestConfig, + ): AxiosPromise; + /** * Create a new webhook * @@ -1187,6 +1204,7 @@ export type CreateWebhookOptions = { networkId: string; notificationUri: string; eventType: WebhookEventType; + eventTypeFilter?: WebhookEventTypeFilter; eventFilters?: Array; signatureHeader?: string; }; diff --git a/src/coinbase/wallet.ts b/src/coinbase/wallet.ts index f9ab7f5e..bd9c1baf 100644 --- a/src/coinbase/wallet.ts +++ b/src/coinbase/wallet.ts @@ -39,6 +39,7 @@ import { StakingBalance } from "./staking_balance"; import { PayloadSignature } from "./payload_signature"; import { ContractInvocation } from "../coinbase/contract_invocation"; import { SmartContract } from "./smart_contract"; +import { Webhook } from "./webhook"; /** * A representation of a Wallet. Wallets come with a single default Address, but can expand to have a set of Addresses, @@ -750,6 +751,21 @@ export class Wallet { return (await this.getDefaultAddress()).createPayloadSignature(unsignedPayload); } + /** + * Creates a Webhook for a wallet, monitors all wallet addresses for onchain events. + * + * @param notificationUri - The URI to which the webhook notifications will be sent. + * + * @returns The newly created webhook instance. + */ + public async createWebhook(notificationUri: string): Promise { + const result = await Coinbase.apiClients.webhook!.createWalletWebhook(this.getId(), { + notification_uri: notificationUri, + }); + + return Webhook.init(result.data); + } + /** * Invokes a contract with the given data. * diff --git a/src/coinbase/webhook.ts b/src/coinbase/webhook.ts index d6cb2638..bbaf1252 100644 --- a/src/coinbase/webhook.ts +++ b/src/coinbase/webhook.ts @@ -1,4 +1,9 @@ -import { Webhook as WebhookModel, WebhookEventType, WebhookEventFilter } from "../client/api"; +import { + Webhook as WebhookModel, + WebhookEventType, + WebhookEventFilter, + WebhookEventTypeFilter, +} from "../client/api"; import { Coinbase } from "./coinbase"; import { CreateWebhookOptions } from "./types"; @@ -40,24 +45,23 @@ export class Webhook { * @param options.networkId - The network ID for which the webhook is created. * @param options.notificationUri - The URI where notifications should be sent. * @param options.eventType - The type of event for the webhook. + * @param options.eventTypeFilter - Filter for wallet activity event type. * @param options.eventFilters - Filters applied to the events that determine which specific events trigger the webhook. - * @param options.signatureHeader - The custom header to be used for x-webhook-signature header on callbacks, - * so developers can verify the requests are coming from Coinbase. * @returns A promise that resolves to a new instance of Webhook. */ public static async create({ networkId, notificationUri, eventType, + eventTypeFilter, eventFilters = [], - signatureHeader = "", }: CreateWebhookOptions): Promise { const result = await Coinbase.apiClients.webhook!.createWebhook({ network_id: networkId, notification_uri: notificationUri, event_type: eventType, + event_type_filter: eventTypeFilter, event_filters: eventFilters, - signature_header: signatureHeader, }); return new Webhook(result.data); @@ -131,6 +135,15 @@ export class Webhook { return this.model?.event_type; } + /** + * Returns the event type filter of the webhook. + * + * @returns The filter which will be used to filter for events of a certain event type + */ + public getEventTypeFilter(): WebhookEventTypeFilter | undefined { + return this.model?.event_type_filter; + } + /** * Returns the event filters applied to the webhook. * @@ -186,6 +199,7 @@ export class Webhook { return ( `Webhook { id: '${this.getId()}', networkId: '${this.getNetworkId()}', ` + `eventType: '${this.getEventType()}', eventFilter: ${JSON.stringify(this.getEventFilters())}, ` + + `eventTypeFilter: ${JSON.stringify(this.getEventTypeFilter())}, ` + `notificationUri: '${this.getNotificationURI()}', signatureHeader: '${this.getSignatureHeader()}' }` ); } diff --git a/src/tests/wallet_test.ts b/src/tests/wallet_test.ts index eeadab5e..82ce573d 100644 --- a/src/tests/wallet_test.ts +++ b/src/tests/wallet_test.ts @@ -16,6 +16,7 @@ import { TransactionStatusEnum, Wallet as WalletModel, Trade as TradeModel, + Webhook as WebhookModel, StakingOperation as StakingOperationModel, StakingOperationStatusEnum, StakingContext as StakingContextModel, @@ -66,6 +67,7 @@ import { StakingBalance } from "../coinbase/staking_balance"; import { PayloadSignature } from "../coinbase/payload_signature"; import { ContractInvocation } from "../coinbase/contract_invocation"; import { SmartContract } from "../coinbase/smart_contract"; +import { Webhook } from "../coinbase/webhook"; describe("Wallet Class", () => { let wallet: Wallet; @@ -1335,4 +1337,81 @@ describe("Wallet Class", () => { expect(trades.length).toBe(2); }); }); + + describe("#createWebhook", () => { + let wallet: Wallet; + let addressList: AddressModel[]; + let walletModel: WalletModel; + const existingSeed = "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f"; + const { address1, address2, address3, wallet1PrivateKey, wallet2PrivateKey } = + generateWalletFromSeed(existingSeed, 3); + + beforeEach(async () => { + jest.clearAllMocks(); + addressList = [ + { + address_id: address1, + network_id: Coinbase.networks.BaseSepolia, + public_key: wallet1PrivateKey, + wallet_id: "w1", + index: 0, + }, + { + address_id: address2, + network_id: Coinbase.networks.BaseSepolia, + public_key: wallet2PrivateKey, + wallet_id: "w1", + index: 1, + }, + ]; + walletModel = { + id: "w1", + network_id: Coinbase.networks.BaseSepolia, + default_address: addressList[0], + feature_set: {} as FeatureSet, + }; + wallet = Wallet.init(walletModel, existingSeed); + }); + + const mockModel: WebhookModel = { + id: "test-id", + network_id: "test-network", + notification_uri: "https://example.com/callback", + event_type: "wallet_activity", + event_type_filter: { addresses: [address1], wallet_id: "w1" }, + }; + + Coinbase.apiClients.webhook = { + createWalletWebhook: jest.fn().mockResolvedValue({ data: mockModel }), + createWebhook: jest.fn().mockResolvedValue({ data: mockModel }), + listWebhooks: jest.fn().mockResolvedValue({ + data: { + data: [mockModel], + has_more: false, + next_page: null, + }, + }), + updateWebhook: jest.fn().mockImplementation((id, updateRequest) => { + return Promise.resolve({ + data: { + ...mockModel, + notification_uri: updateRequest.notification_uri, + }, + }); + }), + deleteWebhook: jest.fn().mockResolvedValue({}), + }; + + it("should create a webhook for the default address", async () => { + const webhookObject = Webhook.init(mockModel); + + const wh = Promise.resolve(webhookObject); + jest.spyOn(Wallet.prototype, "createWebhook").mockReturnValue(wh); + const result = await wallet.createWebhook("https://example.com/callback"); + expect(result).toBeInstanceOf(Webhook); + expect(result.getEventTypeFilter()?.wallet_id).toBe(walletModel.id); + expect(result.getEventTypeFilter()?.addresses).toStrictEqual([address1]); + expect(result.getEventType()).toBe("wallet_activity"); + }); + }); }); diff --git a/src/tests/webhook_test.ts b/src/tests/webhook_test.ts index 68982a9b..90dc79e3 100644 --- a/src/tests/webhook_test.ts +++ b/src/tests/webhook_test.ts @@ -1,5 +1,5 @@ -import { Webhook } from "./../coinbase/webhook"; -import { Coinbase } from "./../coinbase/coinbase"; +import { Webhook } from "../coinbase/webhook"; +import { Coinbase } from "../coinbase/coinbase"; import { Webhook as WebhookModel } from "../client/api"; describe("Webhook", () => { @@ -8,12 +8,16 @@ describe("Webhook", () => { network_id: "test-network", notification_uri: "https://example.com/callback", event_type: "erc20_transfer", + event_type_filter: { + addresses: ["0xa55C5950F7A3C42Fa5799B2Cac0e455774a07382"], + wallet_id: "w1", + }, event_filters: [{ contract_address: "0x...", from_address: "0x...", to_address: "0x..." }], - signature_header: "example_header", }; beforeEach(() => { Coinbase.apiClients.webhook = { + createWalletWebhook: jest.fn().mockResolvedValue({ data: mockModel }), createWebhook: jest.fn().mockResolvedValue({ data: mockModel }), listWebhooks: jest.fn().mockResolvedValue({ data: { @@ -128,12 +132,7 @@ describe("Webhook", () => { }); describe("#getSignatureHeader", () => { - it("should return the signature header of the webhook", () => { - const webhook = Webhook.init(mockModel); - expect(webhook.getSignatureHeader()).toBe("example_header"); - }); - - it("should return undefined if the signature header is not set", () => { + it("should return undefined since the signature header can not be set via SDK", () => { const modelWithoutSignatureHeader: WebhookModel = { ...mockModel, signature_header: undefined, @@ -149,16 +148,16 @@ describe("Webhook", () => { networkId: "test-network", notificationUri: "https://example.com/callback", eventType: "erc20_transfer", + eventTypeFilter: { addresses: ["0x1..", "0x2.."] }, eventFilters: [{ contract_address: "0x...", from_address: "0x...", to_address: "0x..." }], - signatureHeader: "example_header", }); expect(Coinbase.apiClients.webhook!.createWebhook).toHaveBeenCalledWith({ network_id: "test-network", notification_uri: "https://example.com/callback", event_type: "erc20_transfer", + event_type_filter: { addresses: ["0x1..", "0x2.."] }, event_filters: [{ contract_address: "0x...", from_address: "0x...", to_address: "0x..." }], - signature_header: "example_header", }); expect(webhook).toBeInstanceOf(Webhook); expect(webhook.getId()).toBe("test-id"); @@ -242,7 +241,7 @@ describe("Webhook", () => { const webhook = Webhook.init(mockModel); const stringRepresentation = webhook.toString(); expect(stringRepresentation).toBe( - `Webhook { id: 'test-id', networkId: 'test-network', eventType: 'erc20_transfer', eventFilter: [{"contract_address":"0x...","from_address":"0x...","to_address":"0x..."}], notificationUri: 'https://example.com/callback', signatureHeader: 'example_header' }`, + `Webhook { id: 'test-id', networkId: 'test-network', eventType: 'erc20_transfer', eventFilter: [{"contract_address":"0x...","from_address":"0x...","to_address":"0x..."}], eventTypeFilter: {"addresses":["0xa55C5950F7A3C42Fa5799B2Cac0e455774a07382"],"wallet_id":"w1"}, notificationUri: 'https://example.com/callback', signatureHeader: 'undefined' }`, ); }); }); From 922f0c15f4edb58e9d796c2db0ff4a5627646983 Mon Sep 17 00:00:00 2001 From: rohan-agarwal-coinbase Date: Thu, 26 Sep 2024 13:28:10 -0400 Subject: [PATCH 8/9] Updating docs (#273) --- docs/assets/navigation.js | 2 +- docs/assets/search.js | 2 +- docs/classes/client_api.AddressesApi.html | 22 ++-- docs/classes/client_api.AssetsApi.html | 6 +- .../classes/client_api.BalanceHistoryApi.html | 6 +- .../classes/client_api.ContractEventsApi.html | 6 +- .../client_api.ContractInvocationsApi.html | 12 +- .../client_api.ExternalAddressesApi.html | 19 +-- docs/classes/client_api.NetworksApi.html | 6 +- docs/classes/client_api.ServerSignersApi.html | 20 ++-- .../classes/client_api.SmartContractsApi.html | 12 +- docs/classes/client_api.StakeApi.html | 14 +-- docs/classes/client_api.TradesApi.html | 12 +- .../client_api.TransactionHistoryApi.html | 16 +++ docs/classes/client_api.TransfersApi.html | 12 +- docs/classes/client_api.UsersApi.html | 6 +- docs/classes/client_api.ValidatorsApi.html | 8 +- docs/classes/client_api.WalletStakeApi.html | 10 +- docs/classes/client_api.WalletsApi.html | 14 +-- docs/classes/client_api.WebhooksApi.html | 20 ++-- docs/classes/client_base.BaseAPI.html | 4 +- docs/classes/client_base.RequiredError.html | 4 +- .../client_configuration.Configuration.html | 22 ++-- docs/classes/coinbase_address.Address.html | 40 +++---- ...ress_external_address.ExternalAddress.html | 46 ++++---- ..._address_wallet_address.WalletAddress.html | 110 +++++++++++------- docs/classes/coinbase_api_error.APIError.html | 8 +- ...coinbase_api_error.AlreadyExistsError.html | 8 +- ...ase_api_error.FaucetLimitReachedError.html | 8 +- .../coinbase_api_error.InternalError.html | 8 +- ...oinbase_api_error.InvalidAddressError.html | 8 +- ...nbase_api_error.InvalidAddressIDError.html | 8 +- ...coinbase_api_error.InvalidAmountError.html | 8 +- ...oinbase_api_error.InvalidAssetIDError.html | 8 +- ...ase_api_error.InvalidDestinationError.html | 8 +- .../coinbase_api_error.InvalidLimitError.html | 8 +- ...nbase_api_error.InvalidNetworkIDError.html | 8 +- .../coinbase_api_error.InvalidPageError.html | 8 +- ...e_api_error.InvalidSignedPayloadError.html | 8 +- ...base_api_error.InvalidTransferIDError.html | 8 +- ..._api_error.InvalidTransferStatusError.html | 8 +- ...coinbase_api_error.InvalidWalletError.html | 8 +- ...inbase_api_error.InvalidWalletIDError.html | 8 +- ...nbase_api_error.MalformedRequestError.html | 8 +- ..._error.NetworkFeatureUnsupportedError.html | 8 +- .../coinbase_api_error.NotFoundError.html | 8 +- ...base_api_error.ResourceExhaustedError.html | 8 +- .../coinbase_api_error.UnauthorizedError.html | 8 +- ...coinbase_api_error.UnimplementedError.html | 8 +- ...nbase_api_error.UnsupportedAssetError.html | 8 +- docs/classes/coinbase_asset.Asset.html | 20 ++-- ...e_authenticator.CoinbaseAuthenticator.html | 14 +-- docs/classes/coinbase_balance.Balance.html | 8 +- .../coinbase_balance_map.BalanceMap.html | 8 +- docs/classes/coinbase_coinbase.Coinbase.html | 20 ++-- ...coinbase_contract_event.ContractEvent.html | 32 ++--- ...ontract_invocation.ContractInvocation.html | 44 +++---- .../coinbase_errors.AlreadySignedError.html | 4 +- .../coinbase_errors.ArgumentError.html | 4 +- ...nbase_errors.InvalidAPIKeyFormatError.html | 4 +- ...base_errors.InvalidConfigurationError.html | 4 +- ...se_errors.InvalidUnsignedPayloadError.html | 4 +- .../coinbase_errors.NotSignedError.html | 4 +- .../classes/coinbase_errors.TimeoutError.html | 4 +- ..._faucet_transaction.FaucetTransaction.html | 10 +- ..._historical_balance.HistoricalBalance.html | 6 +- ...se_payload_signature.PayloadSignature.html | 24 ++-- .../coinbase_server_signer.ServerSigner.html | 12 +- ...coinbase_smart_contract.SmartContract.html | 46 +++++--- ...coinbase_sponsored_send.SponsoredSend.html | 22 ++-- ...inbase_staking_balance.StakingBalance.html | 18 +-- ...se_staking_operation.StakingOperation.html | 36 +++--- ...coinbase_staking_reward.StakingReward.html | 20 ++-- docs/classes/coinbase_trade.Trade.html | 38 +++--- .../coinbase_transaction.Transaction.html | 36 +++--- docs/classes/coinbase_transfer.Transfer.html | 44 +++---- .../classes/coinbase_validator.Validator.html | 16 +-- docs/classes/coinbase_wallet.Wallet.html | 106 +++++++++-------- docs/classes/coinbase_webhook.Webhook.html | 31 ++--- docs/enums/client_api.NetworkIdentifier.html | 4 +- docs/enums/client_api.SmartContractType.html | 5 +- .../enums/client_api.StakingRewardFormat.html | 4 +- docs/enums/client_api.TransactionType.html | 4 +- docs/enums/client_api.ValidatorStatus.html | 4 +- docs/enums/client_api.WebhookEventType.html | 4 +- ...coinbase_types.PayloadSignatureStatus.html | 4 +- .../coinbase_types.ServerSignerStatus.html | 4 +- .../coinbase_types.SmartContractType.html | 5 +- .../coinbase_types.SponsoredSendStatus.html | 4 +- .../coinbase_types.StakeOptionsMode.html | 8 +- .../coinbase_types.StakingRewardFormat.html | 4 +- .../coinbase_types.TransactionStatus.html | 4 +- docs/enums/coinbase_types.TransferStatus.html | 4 +- .../enums/coinbase_types.ValidatorStatus.html | 4 +- ...ent_api.AddressesApiAxiosParamCreator.html | 2 +- .../client_api.AddressesApiFactory.html | 18 +-- docs/functions/client_api.AddressesApiFp.html | 18 +-- ...client_api.AssetsApiAxiosParamCreator.html | 2 +- .../client_api.AssetsApiFactory.html | 2 +- docs/functions/client_api.AssetsApiFp.html | 2 +- ...pi.BalanceHistoryApiAxiosParamCreator.html | 2 +- .../client_api.BalanceHistoryApiFactory.html | 2 +- .../client_api.BalanceHistoryApiFp.html | 2 +- ...pi.ContractEventsApiAxiosParamCreator.html | 2 +- .../client_api.ContractEventsApiFactory.html | 2 +- .../client_api.ContractEventsApiFp.html | 2 +- ...ntractInvocationsApiAxiosParamCreator.html | 2 +- ...ent_api.ContractInvocationsApiFactory.html | 8 +- .../client_api.ContractInvocationsApiFp.html | 8 +- ...ExternalAddressesApiAxiosParamCreator.html | 17 +-- ...lient_api.ExternalAddressesApiFactory.html | 17 +-- .../client_api.ExternalAddressesApiFp.html | 17 +-- ...ient_api.NetworksApiAxiosParamCreator.html | 2 +- .../client_api.NetworksApiFactory.html | 2 +- docs/functions/client_api.NetworksApiFp.html | 2 +- ...api.ServerSignersApiAxiosParamCreator.html | 4 +- .../client_api.ServerSignersApiFactory.html | 12 +- .../client_api.ServerSignersApiFp.html | 12 +- ...pi.SmartContractsApiAxiosParamCreator.html | 2 +- .../client_api.SmartContractsApiFactory.html | 8 +- .../client_api.SmartContractsApiFp.html | 8 +- .../client_api.StakeApiAxiosParamCreator.html | 2 +- .../functions/client_api.StakeApiFactory.html | 10 +- docs/functions/client_api.StakeApiFp.html | 10 +- ...client_api.TradesApiAxiosParamCreator.html | 2 +- .../client_api.TradesApiFactory.html | 8 +- docs/functions/client_api.TradesApiFp.html | 8 +- ...ransactionHistoryApiAxiosParamCreator.html | 9 ++ ...ient_api.TransactionHistoryApiFactory.html | 9 ++ .../client_api.TransactionHistoryApiFp.html | 9 ++ ...ent_api.TransfersApiAxiosParamCreator.html | 2 +- .../client_api.TransfersApiFactory.html | 8 +- docs/functions/client_api.TransfersApiFp.html | 8 +- .../client_api.UsersApiAxiosParamCreator.html | 2 +- .../functions/client_api.UsersApiFactory.html | 2 +- docs/functions/client_api.UsersApiFp.html | 2 +- ...nt_api.ValidatorsApiAxiosParamCreator.html | 2 +- .../client_api.ValidatorsApiFactory.html | 4 +- .../functions/client_api.ValidatorsApiFp.html | 4 +- ...t_api.WalletStakeApiAxiosParamCreator.html | 2 +- .../client_api.WalletStakeApiFactory.html | 6 +- .../client_api.WalletStakeApiFp.html | 6 +- ...lient_api.WalletsApiAxiosParamCreator.html | 2 +- .../client_api.WalletsApiFactory.html | 10 +- docs/functions/client_api.WalletsApiFp.html | 10 +- ...ient_api.WebhooksApiAxiosParamCreator.html | 18 +-- .../client_api.WebhooksApiFactory.html | 16 ++- docs/functions/client_api.WebhooksApiFp.html | 16 ++- .../client_common.assertParamExists.html | 2 +- .../client_common.createRequestFunction.html | 2 +- .../client_common.serializeDataIfNeeded.html | 2 +- .../client_common.setApiKeyToObject.html | 2 +- .../client_common.setBasicAuthToObject.html | 2 +- .../client_common.setBearerAuthToObject.html | 2 +- .../client_common.setOAuthToObject.html | 2 +- .../client_common.setSearchParams.html | 2 +- .../functions/client_common.toPathString.html | 2 +- docs/functions/coinbase_hash.hashMessage.html | 2 +- .../coinbase_hash.hashTypedDataMessage.html | 2 +- .../coinbase_utils.convertStringToHex.html | 2 +- docs/functions/coinbase_utils.delay.html | 2 +- docs/functions/coinbase_utils.formatDate.html | 2 +- .../coinbase_utils.getWeekBackDate.html | 2 +- .../coinbase_utils.logApiResponse.html | 2 +- .../coinbase_utils.parseUnsignedPayload.html | 2 +- ...nbase_utils.registerAxiosInterceptors.html | 2 +- docs/hierarchy.html | 2 +- docs/interfaces/client_api.Address.html | 12 +- .../client_api.AddressBalanceList.html | 10 +- ...ient_api.AddressHistoricalBalanceList.html | 8 +- docs/interfaces/client_api.AddressList.html | 10 +- .../client_api.AddressTransactionList.html | 8 +- .../client_api.AddressesApiInterface.html | 20 ++-- docs/interfaces/client_api.Asset.html | 10 +- .../client_api.AssetsApiInterface.html | 4 +- docs/interfaces/client_api.Balance.html | 6 +- ...client_api.BalanceHistoryApiInterface.html | 4 +- ...pi.BroadcastContractInvocationRequest.html | 4 +- ..._api.BroadcastStakingOperationRequest.html | 6 +- .../client_api.BroadcastTradeRequest.html | 6 +- .../client_api.BroadcastTransferRequest.html | 4 +- ...ient_api.BuildStakingOperationRequest.html | 12 +- docs/interfaces/client_api.ContractEvent.html | 28 ++--- .../client_api.ContractEventList.html | 8 +- ...client_api.ContractEventsApiInterface.html | 4 +- .../client_api.ContractInvocation.html | 22 ++-- .../client_api.ContractInvocationList.html | 10 +- ...t_api.ContractInvocationsApiInterface.html | 10 +- .../client_api.CreateAddressRequest.html | 8 +- ...t_api.CreateContractInvocationRequest.html | 12 +- ...ent_api.CreatePayloadSignatureRequest.html | 6 +- .../client_api.CreateServerSignerRequest.html | 8 +- ...client_api.CreateSmartContractRequest.html | 6 +- ...ent_api.CreateStakingOperationRequest.html | 10 +- .../client_api.CreateTradeRequest.html | 8 +- .../client_api.CreateTransferRequest.html | 12 +- .../client_api.CreateWalletRequest.html | 4 +- .../client_api.CreateWalletRequestWallet.html | 6 +- ...client_api.CreateWalletWebhookRequest.html | 8 ++ .../client_api.CreateWebhookRequest.html | 14 +-- ...client_api.DeploySmartContractRequest.html | 4 +- .../client_api.ERC20TransferEvent.html | 28 ++--- .../client_api.ERC721TransferEvent.html | 28 ++--- .../client_api.EthereumTransaction.html | 36 +++--- .../client_api.EthereumTransactionAccess.html | 6 +- ...ent_api.EthereumTransactionAccessList.html | 4 +- ...api.EthereumTransactionFlattenedTrace.html | 40 +++---- .../client_api.EthereumValidatorMetadata.html | 20 ++-- ...ent_api.ExternalAddressesApiInterface.html | 17 +-- .../client_api.FaucetTransaction.html | 6 +- docs/interfaces/client_api.FeatureSet.html | 14 +-- ...hHistoricalStakingBalances200Response.html | 8 +- ...nt_api.FetchStakingRewards200Response.html | 8 +- ...client_api.FetchStakingRewardsRequest.html | 14 +-- .../client_api.GetStakingContextRequest.html | 10 +- .../client_api.HistoricalBalance.html | 10 +- docs/interfaces/client_api.ModelError.html | 8 +- .../client_api.MultiTokenContractOptions.html | 6 + .../client_api.NFTContractOptions.html | 11 +- docs/interfaces/client_api.Network.html | 18 +-- .../client_api.NetworksApiInterface.html | 4 +- .../client_api.PayloadSignature.html | 14 +-- .../client_api.PayloadSignatureList.html | 10 +- .../client_api.SeedCreationEvent.html | 6 +- .../client_api.SeedCreationEventResult.html | 10 +- docs/interfaces/client_api.ServerSigner.html | 8 +- .../client_api.ServerSignerEvent.html | 6 +- .../client_api.ServerSignerEventList.html | 10 +- .../client_api.ServerSignerList.html | 10 +- .../client_api.ServerSignersApiInterface.html | 18 +-- .../client_api.SignatureCreationEvent.html | 18 +-- ...ient_api.SignatureCreationEventResult.html | 14 +-- ...pi.SignedVoluntaryExitMessageMetadata.html | 8 +- docs/interfaces/client_api.SmartContract.html | 20 ++-- .../client_api.SmartContractList.html | 8 +- ...client_api.SmartContractsApiInterface.html | 10 +- docs/interfaces/client_api.SponsoredSend.html | 16 +-- .../client_api.StakeApiInterface.html | 12 +- .../interfaces/client_api.StakingBalance.html | 12 +- .../interfaces/client_api.StakingContext.html | 4 +- .../client_api.StakingContextContext.html | 8 +- .../client_api.StakingOperation.html | 16 +-- docs/interfaces/client_api.StakingReward.html | 14 +-- .../client_api.StakingRewardUSDValue.html | 8 +- .../client_api.TokenContractOptions.html | 8 +- docs/interfaces/client_api.Trade.html | 22 ++-- docs/interfaces/client_api.TradeList.html | 10 +- .../client_api.TradesApiInterface.html | 10 +- docs/interfaces/client_api.Transaction.html | 24 ++-- ...nt_api.TransactionHistoryApiInterface.html | 12 ++ docs/interfaces/client_api.Transfer.html | 32 ++--- docs/interfaces/client_api.TransferList.html | 10 +- .../client_api.TransfersApiInterface.html | 10 +- .../client_api.UpdateWebhookRequest.html | 8 +- docs/interfaces/client_api.User.html | 6 +- .../client_api.UsersApiInterface.html | 4 +- docs/interfaces/client_api.Validator.html | 12 +- docs/interfaces/client_api.ValidatorList.html | 8 +- .../client_api.ValidatorsApiInterface.html | 6 +- docs/interfaces/client_api.Wallet.html | 12 +- docs/interfaces/client_api.WalletList.html | 10 +- .../client_api.WalletStakeApiInterface.html | 8 +- .../client_api.WalletsApiInterface.html | 12 +- docs/interfaces/client_api.Webhook.html | 20 ++-- .../client_api.WebhookEventFilter.html | 8 +- docs/interfaces/client_api.WebhookList.html | 8 +- ...lient_api.WebhookWalletActivityFilter.html | 6 +- .../client_api.WebhooksApiInterface.html | 18 ++- docs/interfaces/client_base.RequestArgs.html | 4 +- ...configuration.ConfigurationParameters.html | 4 +- ...oinbase_types.BalanceHistoryApiClient.html | 4 +- ...coinbase_types.SmartContractAPIClient.html | 10 +- ...ase_types.TransactionHistoryApiClient.html | 9 ++ .../coinbase_types.WebhookApiClient.html | 16 ++- docs/modules/client.html | 11 +- docs/modules/client_api.html | 9 +- docs/modules/client_base.html | 2 +- docs/modules/client_common.html | 2 +- docs/modules/client_configuration.html | 2 +- docs/modules/coinbase_address.html | 2 +- .../coinbase_address_external_address.html | 2 +- .../coinbase_address_wallet_address.html | 2 +- docs/modules/coinbase_api_error.html | 2 +- docs/modules/coinbase_asset.html | 2 +- docs/modules/coinbase_authenticator.html | 2 +- docs/modules/coinbase_balance.html | 2 +- docs/modules/coinbase_balance_map.html | 2 +- docs/modules/coinbase_coinbase.html | 2 +- docs/modules/coinbase_constants.html | 2 +- docs/modules/coinbase_contract_event.html | 2 +- .../modules/coinbase_contract_invocation.html | 2 +- docs/modules/coinbase_errors.html | 2 +- docs/modules/coinbase_faucet_transaction.html | 2 +- docs/modules/coinbase_hash.html | 2 +- docs/modules/coinbase_historical_balance.html | 2 +- docs/modules/coinbase_payload_signature.html | 2 +- docs/modules/coinbase_server_signer.html | 2 +- docs/modules/coinbase_smart_contract.html | 2 +- docs/modules/coinbase_sponsored_send.html | 2 +- docs/modules/coinbase_staking_balance.html | 2 +- docs/modules/coinbase_staking_operation.html | 2 +- docs/modules/coinbase_staking_reward.html | 2 +- docs/modules/coinbase_trade.html | 2 +- docs/modules/coinbase_transaction.html | 2 +- docs/modules/coinbase_transfer.html | 2 +- docs/modules/coinbase_types.html | 6 +- docs/modules/coinbase_utils.html | 2 +- docs/modules/coinbase_validator.html | 2 +- docs/modules/coinbase_wallet.html | 2 +- docs/modules/coinbase_webhook.html | 2 +- .../modules/examples_solana_list_rewards.html | 1 + docs/modules/index.html | 36 +++++- .../client_api.NetworkProtocolFamilyEnum.html | 2 +- ...client_api.PayloadSignatureStatusEnum.html | 2 +- .../client_api.ServerSignerEventEvent.html | 2 +- .../client_api.SmartContractOptions.html | 2 +- .../client_api.SponsoredSendStatusEnum.html | 2 +- .../client_api.StakingOperationMetadata.html | 2 +- ...client_api.StakingOperationStatusEnum.html | 2 +- .../client_api.StakingRewardStateEnum.html | 2 +- docs/types/client_api.TransactionContent.html | 2 +- .../client_api.TransactionStatusEnum.html | 2 +- docs/types/client_api.TransferStatusEnum.html | 2 +- docs/types/client_api.ValidatorDetails.html | 2 +- ...ient_api.WalletServerSignerStatusEnum.html | 2 +- .../client_api.WebhookEventTypeFilter.html | 2 +- .../coinbase_types.AddressAPIClient.html | 18 +-- docs/types/coinbase_types.Amount.html | 2 +- docs/types/coinbase_types.ApiClients.html | 4 +- docs/types/coinbase_types.AssetAPIClient.html | 2 +- ...ypes.CoinbaseConfigureFromJsonOptions.html | 2 +- .../types/coinbase_types.CoinbaseOptions.html | 2 +- ...ase_types.ContractInvocationAPIClient.html | 8 +- ...types.CreateContractInvocationOptions.html | 2 +- .../coinbase_types.CreateERC1155Options.html | 2 + .../coinbase_types.CreateERC20Options.html | 2 +- .../coinbase_types.CreateERC721Options.html | 2 + .../coinbase_types.CreateTradeOptions.html | 2 +- .../coinbase_types.CreateTransferOptions.html | 2 +- .../coinbase_types.CreateWebhookOptions.html | 4 +- docs/types/coinbase_types.Destination.html | 2 +- ...inbase_types.ExternalAddressAPIClient.html | 15 +-- ..._types.ExternalSmartContractAPIClient.html | 2 +- ...e_types.ListHistoricalBalancesOptions.html | 2 +- ...se_types.ListHistoricalBalancesResult.html | 2 +- ...oinbase_types.ListTransactionsOptions.html | 2 +- ...coinbase_types.ListTransactionsResult.html | 2 +- ...nbase_types.MultiTokenContractOptions.html | 2 + .../coinbase_types.NFTContractOptions.html | 4 +- docs/types/coinbase_types.SeedData.html | 2 +- .../coinbase_types.ServerSignerAPIClient.html | 2 +- .../coinbase_types.SmartContractOptions.html | 4 +- docs/types/coinbase_types.StakeAPIClient.html | 10 +- .../coinbase_types.TokenContractOptions.html | 2 +- .../types/coinbase_types.TradeApiClients.html | 8 +- .../coinbase_types.TransferAPIClient.html | 8 +- .../types/coinbase_types.TypedDataDomain.html | 2 +- docs/types/coinbase_types.TypedDataField.html | 2 +- .../coinbase_types.ValidatorAPIClient.html | 4 +- .../types/coinbase_types.WalletAPIClient.html | 8 +- .../coinbase_types.WalletCreateOptions.html | 2 +- docs/types/coinbase_types.WalletData.html | 2 +- .../coinbase_types.WalletStakeAPIClient.html | 2 +- ...lient_api.NetworkProtocolFamilyEnum-1.html | 2 +- ...ient_api.PayloadSignatureStatusEnum-1.html | 2 +- .../client_api.SponsoredSendStatusEnum-1.html | 2 +- ...ient_api.StakingOperationStatusEnum-1.html | 2 +- .../client_api.StakingRewardStateEnum-1.html | 2 +- .../client_api.TransactionStatusEnum-1.html | 2 +- .../client_api.TransferStatusEnum-1.html | 2 +- ...nt_api.WalletServerSignerStatusEnum-1.html | 2 +- docs/variables/client_base.BASE_PATH.html | 2 +- .../client_base.COLLECTION_FORMATS.html | 2 +- .../client_base.operationServerMap.html | 2 +- .../client_common.DUMMY_BASE_URL.html | 2 +- .../coinbase_constants.GWEI_DECIMALS.html | 2 +- 376 files changed, 1723 insertions(+), 1554 deletions(-) create mode 100644 docs/classes/client_api.TransactionHistoryApi.html create mode 100644 docs/functions/client_api.TransactionHistoryApiAxiosParamCreator.html create mode 100644 docs/functions/client_api.TransactionHistoryApiFactory.html create mode 100644 docs/functions/client_api.TransactionHistoryApiFp.html create mode 100644 docs/interfaces/client_api.CreateWalletWebhookRequest.html create mode 100644 docs/interfaces/client_api.MultiTokenContractOptions.html create mode 100644 docs/interfaces/client_api.TransactionHistoryApiInterface.html create mode 100644 docs/interfaces/coinbase_types.TransactionHistoryApiClient.html create mode 100644 docs/modules/examples_solana_list_rewards.html create mode 100644 docs/types/coinbase_types.CreateERC1155Options.html create mode 100644 docs/types/coinbase_types.CreateERC721Options.html create mode 100644 docs/types/coinbase_types.MultiTokenContractOptions.html diff --git a/docs/assets/navigation.js b/docs/assets/navigation.js index 9c829e2f..7a2b48eb 100644 --- a/docs/assets/navigation.js +++ b/docs/assets/navigation.js @@ -1 +1 @@ -window.navigationData = "data:application/octet-stream;base64,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" \ No newline at end of file +window.navigationData = "data:application/octet-stream;base64,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" \ No newline at end of file diff --git a/docs/assets/search.js b/docs/assets/search.js index 8e2099be..003cef93 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file +window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file diff --git a/docs/classes/client_api.AddressesApi.html b/docs/classes/client_api.AddressesApi.html index d3b34c36..0d779bc3 100644 --- a/docs/classes/client_api.AddressesApi.html +++ b/docs/classes/client_api.AddressesApi.html @@ -1,6 +1,6 @@ AddressesApi | @coinbase/coinbase-sdk

AddressesApi - object-oriented interface

Export

AddressesApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Create a new address scoped to the wallet.

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Create a new address scoped to the wallet.

    Parameters

    • walletId: string

      The ID of the wallet to create the address in.

    • Optional createAddressRequest: CreateAddressRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Address, any>>

    Summary

    Create a new address

    Throws

    Memberof

    AddressesApi

    -
  • Create a new payload signature with an address.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The onchain address of the address to sign the payload with.

    • Optional createPayloadSignatureRequest: CreatePayloadSignatureRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<PayloadSignature, any>>

    Summary

    Create a new payload signature.

    Throws

    Memberof

    AddressesApi

    -
  • Get address

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The onchain address of the address that is being fetched.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Address, any>>

    Summary

    Get address by onchain address

    Throws

    Memberof

    AddressesApi

    -
  • Get address balance

    Parameters

    • walletId: string

      The ID of the wallet to fetch the balance for

    • addressId: string

      The onchain address of the address that is being fetched.

    • assetId: string

      The symbol of the asset to fetch the balance for

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Balance, any>>

    Summary

    Get address balance for asset

    Throws

    Memberof

    AddressesApi

    -
  • Get payload signature.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The onchain address of the address that signed the payload.

    • payloadSignatureId: string

      The ID of the payload signature to fetch.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<PayloadSignature, any>>

    Summary

    Get payload signature.

    Throws

    Memberof

    AddressesApi

    -
  • Get address balances

    Parameters

    • walletId: string

      The ID of the wallet to fetch the balances for

    • addressId: string

      The onchain address of the address that is being fetched.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<AddressBalanceList, any>>

    Summary

    Get all balances for address

    Throws

    Memberof

    AddressesApi

    -
  • List addresses in the wallet.

    Parameters

    • walletId: string

      The ID of the wallet whose addresses to fetch

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<AddressList, any>>

    Summary

    List addresses in a wallet.

    Throws

    Memberof

    AddressesApi

    -
  • List payload signatures for an address.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The onchain address of the address whose payload signatures to fetch.

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      @@ -66,11 +66,11 @@

      Throws

      Memberof

      AddressesApi

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<PayloadSignatureList, any>>

    Summary

    List payload signatures for an address.

    Throws

    Memberof

    AddressesApi

    -
  • Request faucet funds to be sent to onchain address.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The onchain address of the address that is being fetched.

    • Optional assetId: string

      The ID of the asset to transfer from the faucet.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<FaucetTransaction, any>>

    Summary

    Request faucet funds for onchain address.

    Throws

    Memberof

    AddressesApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.AssetsApi.html b/docs/classes/client_api.AssetsApi.html index 715c7347..8685804f 100644 --- a/docs/classes/client_api.AssetsApi.html +++ b/docs/classes/client_api.AssetsApi.html @@ -1,14 +1,14 @@ AssetsApi | @coinbase/coinbase-sdk

AssetsApi - object-oriented interface

Export

AssetsApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

Methods

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get the asset for the specified asset ID.

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get the asset for the specified asset ID.

    Parameters

    • networkId: string

      The ID of the blockchain network

    • assetId: string

      The ID of the asset to fetch. This could be a symbol or an ERC20 contract address.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Asset, any>>

    Summary

    Get the asset for the specified asset ID.

    Throws

    Memberof

    AssetsApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.BalanceHistoryApi.html b/docs/classes/client_api.BalanceHistoryApi.html index 8a740078..2bca9d90 100644 --- a/docs/classes/client_api.BalanceHistoryApi.html +++ b/docs/classes/client_api.BalanceHistoryApi.html @@ -1,11 +1,11 @@ BalanceHistoryApi | @coinbase/coinbase-sdk

BalanceHistoryApi - object-oriented interface

Export

BalanceHistoryApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • List the historical balance of an asset in a specific address.

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • List the historical balance of an asset in a specific address.

    Parameters

    • networkId: string

      The ID of the blockchain network

    • addressId: string

      The ID of the address to fetch the historical balance for.

    • assetId: string

      The symbol of the asset to fetch the historical balance for.

      @@ -14,4 +14,4 @@
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<AddressHistoricalBalanceList, any>>

    Summary

    Get address balance history for asset

    Throws

    Memberof

    BalanceHistoryApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.ContractEventsApi.html b/docs/classes/client_api.ContractEventsApi.html index 7e56c1b3..ba00c646 100644 --- a/docs/classes/client_api.ContractEventsApi.html +++ b/docs/classes/client_api.ContractEventsApi.html @@ -1,11 +1,11 @@ ContractEventsApi | @coinbase/coinbase-sdk

ContractEventsApi - object-oriented interface

Export

ContractEventsApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Retrieve events for a specific contract

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Retrieve events for a specific contract

    Parameters

    • networkId: string

      Unique identifier for the blockchain network

    • protocolName: string

      Case-sensitive name of the blockchain protocol

    • contractAddress: string

      EVM address of the smart contract (42 characters, including &#39;0x&#39;, in lowercase)

      @@ -17,4 +17,4 @@
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<ContractEventList, any>>

    Summary

    List contract events

    Throws

    Memberof

    ContractEventsApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.ContractInvocationsApi.html b/docs/classes/client_api.ContractInvocationsApi.html index 02dcf458..a4d8d758 100644 --- a/docs/classes/client_api.ContractInvocationsApi.html +++ b/docs/classes/client_api.ContractInvocationsApi.html @@ -1,6 +1,6 @@ ContractInvocationsApi | @coinbase/coinbase-sdk

ContractInvocationsApi - object-oriented interface

Export

ContractInvocationsApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Broadcast a contract invocation.

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Broadcast a contract invocation.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The ID of the address the contract invocation belongs to.

    • contractInvocationId: string

      The ID of the contract invocation to broadcast.

    • broadcastContractInvocationRequest: BroadcastContractInvocationRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<ContractInvocation, any>>

    Summary

    Broadcast a contract invocation.

    Throws

    Memberof

    ContractInvocationsApi

    -
  • Get a contract invocation by ID.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The ID of the address the contract invocation belongs to.

    • contractInvocationId: string

      The ID of the contract invocation to fetch.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<ContractInvocation, any>>

    Summary

    Get a contract invocation by ID.

    Throws

    Memberof

    ContractInvocationsApi

    -
  • List contract invocations for an address.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The ID of the address to list contract invocations for.

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      @@ -36,4 +36,4 @@

      Throws

      Memberof

      ContractInvocationsApi

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<ContractInvocationList, any>>

    Summary

    List contract invocations for an address.

    Throws

    Memberof

    ContractInvocationsApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.ExternalAddressesApi.html b/docs/classes/client_api.ExternalAddressesApi.html index c2c404bd..4d8a937f 100644 --- a/docs/classes/client_api.ExternalAddressesApi.html +++ b/docs/classes/client_api.ExternalAddressesApi.html @@ -1,40 +1,31 @@ ExternalAddressesApi | @coinbase/coinbase-sdk

ExternalAddressesApi - object-oriented interface

Export

ExternalAddressesApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get the balance of an asset in an external address

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get the balance of an asset in an external address

    Parameters

    • networkId: string

      The ID of the blockchain network

    • addressId: string

      The ID of the address to fetch the balance for

    • assetId: string

      The ID of the asset to fetch the balance for

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Balance, any>>

    Summary

    Get the balance of an asset in an external address

    Throws

    Memberof

    ExternalAddressesApi

    -
  • List all transactions that interact with the address.

    -

    Parameters

    • networkId: string

      The ID of the blockchain network

      -
    • addressId: string

      The ID of the address to fetch the transactions for.

      -
    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      -
    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      -
    • Optional options: RawAxiosRequestConfig

      Override http request option.

      -

    Returns Promise<AxiosResponse<AddressTransactionList, any>>

    Summary

    List transactions for an address.

    -

    Throws

    Memberof

    ExternalAddressesApi

    -
  • List all of the balances of an external address

    Parameters

    • networkId: string

      The ID of the blockchain network

    • addressId: string

      The ID of the address to fetch the balance for

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<AddressBalanceList, any>>

    Summary

    Get the balances of an external address

    Throws

    Memberof

    ExternalAddressesApi

    -
  • Request faucet funds to be sent to external address.

    Parameters

    • networkId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The onchain address of the address that is being fetched.

    • Optional assetId: string

      The ID of the asset to transfer from the faucet.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<FaucetTransaction, any>>

    Summary

    Request faucet funds for external address.

    Throws

    Memberof

    ExternalAddressesApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.NetworksApi.html b/docs/classes/client_api.NetworksApi.html index 4dfeda0e..bbcea2e8 100644 --- a/docs/classes/client_api.NetworksApi.html +++ b/docs/classes/client_api.NetworksApi.html @@ -1,13 +1,13 @@ NetworksApi | @coinbase/coinbase-sdk

NetworksApi - object-oriented interface

Export

NetworksApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

Methods

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get network

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get network

    Parameters

    • networkId: string

      The ID of the network to fetch.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Network, any>>

    Summary

    Get network by ID

    Throws

    Memberof

    NetworksApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.ServerSignersApi.html b/docs/classes/client_api.ServerSignersApi.html index c79ad52c..c6eb323a 100644 --- a/docs/classes/client_api.ServerSignersApi.html +++ b/docs/classes/client_api.ServerSignersApi.html @@ -1,45 +1,45 @@ ServerSignersApi | @coinbase/coinbase-sdk

ServerSignersApi - object-oriented interface

Export

ServerSignersApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Create a new Server-Signer

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get a server signer by ID

    Parameters

    • serverSignerId: string

      The ID of the server signer to fetch

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<ServerSigner, any>>

    Summary

    Get a server signer by ID

    Throws

    Memberof

    ServerSignersApi

    -
  • List events for a server signer

    Parameters

    • serverSignerId: string

      The ID of the server signer to fetch events for

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<ServerSignerEventList, any>>

    Summary

    List events for a server signer

    -

    Throws

    Memberof

    ServerSignersApi

    -
  • List server signers for the current project

    Parameters

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<ServerSignerList, any>>

    Summary

    List server signers for the current project

    Throws

    Memberof

    ServerSignersApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.SmartContractsApi.html b/docs/classes/client_api.SmartContractsApi.html index 8e59b963..11198bdc 100644 --- a/docs/classes/client_api.SmartContractsApi.html +++ b/docs/classes/client_api.SmartContractsApi.html @@ -1,6 +1,6 @@ SmartContractsApi | @coinbase/coinbase-sdk

SmartContractsApi - object-oriented interface

Export

SmartContractsApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Create a new smart contract

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Create a new smart contract

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The ID of the address to deploy the smart contract from.

    • createSmartContractRequest: CreateSmartContractRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<SmartContract, any>>

    Summary

    Create a new smart contract

    Throws

    Memberof

    SmartContractsApi

    -
  • Deploys a smart contract, by broadcasting the transaction to the network.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The ID of the address to broadcast the transaction from.

    • smartContractId: string

      The UUID of the smart contract to broadcast the transaction to.

    • deploySmartContractRequest: DeploySmartContractRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<SmartContract, any>>

    Summary

    Deploy a smart contract

    Throws

    Memberof

    SmartContractsApi

    -
  • Get a specific smart contract deployed by address.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The ID of the address to fetch the smart contract for.

    • smartContractId: string

      The UUID of the smart contract to fetch.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<SmartContract, any>>

    Summary

    Get a specific smart contract deployed by address

    Throws

    Memberof

    SmartContractsApi

    -
  • List all smart contracts deployed by address.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The ID of the address to fetch the smart contracts for.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<SmartContractList, any>>

    Summary

    List smart contracts deployed by address

    Throws

    Memberof

    SmartContractsApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.StakeApi.html b/docs/classes/client_api.StakeApi.html index 517bce7f..f4ac0445 100644 --- a/docs/classes/client_api.StakeApi.html +++ b/docs/classes/client_api.StakeApi.html @@ -1,6 +1,6 @@ StakeApi | @coinbase/coinbase-sdk

StakeApi - object-oriented interface

Export

StakeApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Build a new staking operation

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Fetch historical staking balances for given address.

    Parameters

    • networkId: string

      The ID of the blockchain network.

    • assetId: string

      The ID of the asset for which the historical staking balances are being fetched.

    • addressId: string

      The onchain address for which the historical staking balances are being fetched.

      @@ -24,21 +24,21 @@

      Throws

      Memberof

      StakeApi

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<FetchHistoricalStakingBalances200Response, any>>

    Summary

    Fetch historical staking balances

    Throws

    Memberof

    StakeApi

    -
  • Fetch staking rewards for a list of addresses

    Parameters

    • fetchStakingRewardsRequest: FetchStakingRewardsRequest
    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<FetchStakingRewards200Response, any>>

    Summary

    Fetch staking rewards

    Throws

    Memberof

    StakeApi

    -
  • Get the latest state of a staking operation

    Parameters

    • networkId: string

      The ID of the blockchain network

    • addressId: string

      The ID of the address to fetch the staking operation for

    • stakingOperationId: string

      The ID of the staking operation

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<StakingOperation, any>>

    Summary

    Get the latest state of a staking operation

    Throws

    Memberof

    StakeApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.TradesApi.html b/docs/classes/client_api.TradesApi.html index 9745e08f..581fbbc8 100644 --- a/docs/classes/client_api.TradesApi.html +++ b/docs/classes/client_api.TradesApi.html @@ -1,6 +1,6 @@ TradesApi | @coinbase/coinbase-sdk

TradesApi - object-oriented interface

Export

TradesApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Broadcast a trade

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Broadcast a trade

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to

    • addressId: string

      The ID of the address the trade belongs to

    • tradeId: string

      The ID of the trade to broadcast

    • broadcastTradeRequest: BroadcastTradeRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Trade, any>>

    Summary

    Broadcast a trade

    Throws

    Memberof

    TradesApi

    -
  • Create a new trade

    Parameters

    • walletId: string

      The ID of the wallet the source address belongs to

    • addressId: string

      The ID of the address to conduct the trade from

    • createTradeRequest: CreateTradeRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Trade, any>>

    Summary

    Create a new trade for an address

    Throws

    Memberof

    TradesApi

    -
  • Get a trade by ID

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to

    • addressId: string

      The ID of the address the trade belongs to

    • tradeId: string

      The ID of the trade to fetch

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Trade, any>>

    Summary

    Get a trade by ID

    Throws

    Memberof

    TradesApi

    -
  • List trades for an address.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to

    • addressId: string

      The ID of the address to list trades for

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      @@ -36,4 +36,4 @@

      Throws

      Memberof

      TradesApi

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<TradeList, any>>

    Summary

    List trades for an address.

    Throws

    Memberof

    TradesApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.TransactionHistoryApi.html b/docs/classes/client_api.TransactionHistoryApi.html new file mode 100644 index 00000000..c2073610 --- /dev/null +++ b/docs/classes/client_api.TransactionHistoryApi.html @@ -0,0 +1,16 @@ +TransactionHistoryApi | @coinbase/coinbase-sdk

TransactionHistoryApi - object-oriented interface

+

Export

TransactionHistoryApi

+

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • List all transactions that interact with the address.

    +

    Parameters

    • networkId: string

      The ID of the blockchain network

      +
    • addressId: string

      The ID of the address to fetch the transactions for.

      +
    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      +
    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      +
    • Optional options: RawAxiosRequestConfig

      Override http request option.

      +

    Returns Promise<AxiosResponse<AddressTransactionList, any>>

    Summary

    List transactions for an address.

    +

    Throws

    Memberof

    TransactionHistoryApi

    +
\ No newline at end of file diff --git a/docs/classes/client_api.TransfersApi.html b/docs/classes/client_api.TransfersApi.html index 77fe7839..ca8cc7bf 100644 --- a/docs/classes/client_api.TransfersApi.html +++ b/docs/classes/client_api.TransfersApi.html @@ -1,6 +1,6 @@ TransfersApi | @coinbase/coinbase-sdk

TransfersApi - object-oriented interface

Export

TransfersApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Broadcast a transfer

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Broadcast a transfer

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to

    • addressId: string

      The ID of the address the transfer belongs to

    • transferId: string

      The ID of the transfer to broadcast

    • broadcastTransferRequest: BroadcastTransferRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Transfer, any>>

    Summary

    Broadcast a transfer

    Throws

    Memberof

    TransfersApi

    -
  • Create a new transfer

    Parameters

    • walletId: string

      The ID of the wallet the source address belongs to

    • addressId: string

      The ID of the address to transfer from

    • createTransferRequest: CreateTransferRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Transfer, any>>

    Summary

    Create a new transfer for an address

    Throws

    Memberof

    TransfersApi

    -
  • Get a transfer by ID

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to

    • addressId: string

      The ID of the address the transfer belongs to

    • transferId: string

      The ID of the transfer to fetch

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Transfer, any>>

    Summary

    Get a transfer by ID

    Throws

    Memberof

    TransfersApi

    -
  • List transfers for an address.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to

    • addressId: string

      The ID of the address to list transfers for

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      @@ -36,4 +36,4 @@

      Throws

      Memberof

      TransfersApi

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<TransferList, any>>

    Summary

    List transfers for an address.

    Throws

    Memberof

    TransfersApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.UsersApi.html b/docs/classes/client_api.UsersApi.html index a9091151..67529aee 100644 --- a/docs/classes/client_api.UsersApi.html +++ b/docs/classes/client_api.UsersApi.html @@ -1,12 +1,12 @@ UsersApi | @coinbase/coinbase-sdk

UsersApi - object-oriented interface

Export

UsersApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

Methods

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get current user

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get current user

    Parameters

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<User, any>>

    Summary

    Get current user

    Throws

    Memberof

    UsersApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.ValidatorsApi.html b/docs/classes/client_api.ValidatorsApi.html index 43bf0cf0..f13e8d7f 100644 --- a/docs/classes/client_api.ValidatorsApi.html +++ b/docs/classes/client_api.ValidatorsApi.html @@ -1,19 +1,19 @@ ValidatorsApi | @coinbase/coinbase-sdk

ValidatorsApi - object-oriented interface

Export

ValidatorsApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get a validator belonging to the user for a given network, asset and id.

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Get a validator belonging to the user for a given network, asset and id.

    Parameters

    • networkId: string

      The ID of the blockchain network.

    • assetId: string

      The symbol of the asset to get the validator for.

    • validatorId: string

      The unique id of the validator to fetch details for.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Validator, any>>

    Summary

    Get a validator belonging to the CDP project

    Throws

    Memberof

    ValidatorsApi

    -
  • List validators belonging to the user for a given network and asset.

    Parameters

    • networkId: string

      The ID of the blockchain network.

    • assetId: string

      The symbol of the asset to get the validators for.

    • Optional status: ValidatorStatus

      A filter to list validators based on a status.

      @@ -22,4 +22,4 @@

      Throws

      Memberof

      ValidatorsApi

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<ValidatorList, any>>

    Summary

    List validators belonging to the CDP project

    Throws

    Memberof

    ValidatorsApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.WalletStakeApi.html b/docs/classes/client_api.WalletStakeApi.html index 2a7f87c8..cbdfc832 100644 --- a/docs/classes/client_api.WalletStakeApi.html +++ b/docs/classes/client_api.WalletStakeApi.html @@ -1,30 +1,30 @@ WalletStakeApi | @coinbase/coinbase-sdk

WalletStakeApi - object-oriented interface

Export

WalletStakeApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Broadcast a staking operation.

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Broadcast a staking operation.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The ID of the address the staking operation belongs to.

    • stakingOperationId: string

      The ID of the staking operation to broadcast.

    • broadcastStakingOperationRequest: BroadcastStakingOperationRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<StakingOperation, any>>

    Summary

    Broadcast a staking operation

    Throws

    Memberof

    WalletStakeApi

    -
  • Create a new staking operation.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to.

    • addressId: string

      The ID of the address to create the staking operation for.

    • createStakingOperationRequest: CreateStakingOperationRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<StakingOperation, any>>

    Summary

    Create a new staking operation for an address

    Throws

    Memberof

    WalletStakeApi

    -
  • Get the latest state of a staking operation.

    Parameters

    • walletId: string

      The ID of the wallet the address belongs to

    • addressId: string

      The ID of the address to fetch the staking operation for.

    • stakingOperationId: string

      The ID of the staking operation.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<StakingOperation, any>>

    Summary

    Get the latest state of a staking operation

    Throws

    Memberof

    WalletStakeApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.WalletsApi.html b/docs/classes/client_api.WalletsApi.html index a2f88658..86b16425 100644 --- a/docs/classes/client_api.WalletsApi.html +++ b/docs/classes/client_api.WalletsApi.html @@ -1,6 +1,6 @@ WalletsApi | @coinbase/coinbase-sdk

WalletsApi - object-oriented interface

Export

WalletsApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Create a new wallet scoped to the user.

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Create a new wallet scoped to the user.

    Parameters

    • Optional createWalletRequest: CreateWalletRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Wallet, any>>

    Summary

    Create a new wallet

    Throws

    Memberof

    WalletsApi

    -
  • Get wallet

    Parameters

    • walletId: string

      The ID of the wallet to fetch

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Wallet, any>>

    Summary

    Get wallet by ID

    Throws

    Memberof

    WalletsApi

    -
  • Get the aggregated balance of an asset across all of the addresses in the wallet.

    Parameters

    • walletId: string

      The ID of the wallet to fetch the balance for

    • assetId: string

      The symbol of the asset to fetch the balance for

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Balance, any>>

    Summary

    Get the balance of an asset in the wallet

    Throws

    Memberof

    WalletsApi

    -
  • List the balances of all of the addresses in the wallet aggregated by asset.

    Parameters

    • walletId: string

      The ID of the wallet to fetch the balances for

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<AddressBalanceList, any>>

    Summary

    List wallet balances

    Throws

    Memberof

    WalletsApi

    -
  • List wallets belonging to the user.

    Parameters

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<WalletList, any>>

    Summary

    List wallets

    Throws

    Memberof

    WalletsApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_api.WebhooksApi.html b/docs/classes/client_api.WebhooksApi.html index e8d6426a..099ee3a2 100644 --- a/docs/classes/client_api.WebhooksApi.html +++ b/docs/classes/client_api.WebhooksApi.html @@ -1,31 +1,37 @@ WebhooksApi | @coinbase/coinbase-sdk

WebhooksApi - object-oriented interface

Export

WebhooksApi

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Create a new webhook

    +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration

Methods

  • Create a new webhook scoped to a wallet

    +

    Parameters

    • walletId: string

      The ID of the wallet to create the webhook for.

      +
    • Optional createWalletWebhookRequest: CreateWalletWebhookRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

      +

    Returns Promise<AxiosResponse<Webhook, any>>

    Summary

    Create a new webhook scoped to a wallet

    +

    Throws

    Memberof

    WebhooksApi

    +
  • Delete a webhook

    Parameters

    • webhookId: string

      The Webhook uuid that needs to be deleted

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<void, any>>

    Summary

    Delete a webhook

    Throws

    Memberof

    WebhooksApi

    -
  • List webhooks, optionally filtered by event type.

    Parameters

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<WebhookList, any>>

    Summary

    List webhooks

    Throws

    Memberof

    WebhooksApi

    -
  • Update a webhook

    Parameters

    • webhookId: string

      The Webhook id that needs to be updated

    • Optional updateWebhookRequest: UpdateWebhookRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<AxiosResponse<Webhook, any>>

    Summary

    Update a webhook

    Throws

    Memberof

    WebhooksApi

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/client_base.BaseAPI.html b/docs/classes/client_base.BaseAPI.html index ac1e22b8..4c555ee0 100644 --- a/docs/classes/client_base.BaseAPI.html +++ b/docs/classes/client_base.BaseAPI.html @@ -1,6 +1,6 @@ BaseAPI | @coinbase/coinbase-sdk

Export

BaseAPI

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration
\ No newline at end of file +

Constructors

Properties

axios: AxiosInstance = globalAxios
basePath: string = BASE_PATH
configuration: undefined | Configuration
\ No newline at end of file diff --git a/docs/classes/client_base.RequiredError.html b/docs/classes/client_base.RequiredError.html index 13cda638..9dad618c 100644 --- a/docs/classes/client_base.RequiredError.html +++ b/docs/classes/client_base.RequiredError.html @@ -1,5 +1,5 @@ RequiredError | @coinbase/coinbase-sdk

Export

RequiredError

-

Hierarchy

  • Error
    • RequiredError

Constructors

Hierarchy

  • Error
    • RequiredError

Constructors

Properties

Methods

Constructors

Properties

field: string
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Constructors

Properties

field: string
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

\ No newline at end of file diff --git a/docs/classes/client_configuration.Configuration.html b/docs/classes/client_configuration.Configuration.html index 5a217d1f..5ed2ee23 100644 --- a/docs/classes/client_configuration.Configuration.html +++ b/docs/classes/client_configuration.Configuration.html @@ -1,4 +1,4 @@ -Configuration | @coinbase/coinbase-sdk

Constructors

constructor +Configuration | @coinbase/coinbase-sdk

Constructors

Properties

Methods

Constructors

Properties

accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>)

parameter for oauth2 security

+

Constructors

Properties

accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>)

parameter for oauth2 security

Type declaration

    • (name?, scopes?): string
    • Parameters

      • Optional name: string
      • Optional scopes: string[]

      Returns string

Type declaration

    • (name?, scopes?): Promise<string>
    • Parameters

      • Optional name: string
      • Optional scopes: string[]

      Returns Promise<string>

Param: name

security name

Param: scopes

oauth2 scope

Memberof

Configuration

-
apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>)

parameter for apiKey security

+
apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>)

parameter for apiKey security

Type declaration

    • (name): string
    • Parameters

      • name: string

      Returns string

Type declaration

    • (name): Promise<string>
    • Parameters

      • name: string

      Returns Promise<string>

Param: name

security name

Memberof

Configuration

-
baseOptions?: any

base options for axios calls

+
baseOptions?: any

base options for axios calls

Memberof

Configuration

-
basePath?: string

override base path

+
basePath?: string

override base path

Memberof

Configuration

-
formDataCtor?: (new () => any)

The FormData constructor that will be used to create multipart form data +

formDataCtor?: (new () => any)

The FormData constructor that will be used to create multipart form data requests. You can inject this here so that execution environments that do not support the FormData class can still run the generated client.

-

Type declaration

    • new (): any
    • Returns any

password?: string

parameter for basic security

+

Type declaration

    • new (): any
    • Returns any

password?: string

parameter for basic security

Memberof

Configuration

-
serverIndex?: number

override server index

+
serverIndex?: number

override server index

Memberof

Configuration

-
username?: string

parameter for basic security

+
username?: string

parameter for basic security

Memberof

Configuration

-

Methods

Methods

  • Check if the given MIME is a JSON MIME. JSON MIME examples: application/json application/json; charset=UTF8 @@ -36,4 +36,4 @@

    Memberof

    Configuration

    application/vnd.company+json

    Parameters

    • mime: string

      MIME (Multipurpose Internet Mail Extensions)

    Returns boolean

    True if the given MIME is JSON, false otherwise.

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_address.Address.html b/docs/classes/coinbase_address.Address.html index 8c715599..9d5f495c 100644 --- a/docs/classes/coinbase_address.Address.html +++ b/docs/classes/coinbase_address.Address.html @@ -1,5 +1,5 @@ Address | @coinbase/coinbase-sdk

A representation of a blockchain address, which is a user-controlled account on a network.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

id networkId MAX_HISTORICAL_BALANCE @@ -24,59 +24,59 @@

Constructors

  • Initializes a new Address instance.

    Parameters

    • networkId: string

      The network id.

    • id: string

      The onchain address id.

      -

    Returns Address

Properties

id: string
networkId: string
MAX_HISTORICAL_BALANCE: number = 1000

Methods

  • Get the claimable balance for the supplied asset.

    +

Returns Address

Properties

id: string
networkId: string
MAX_HISTORICAL_BALANCE: number = 1000

Methods

  • Get the claimable balance for the supplied asset.

    Parameters

    • asset_id: string

      The asset to check claimable balance for.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      } = {}

      Additional options for getting the claimable balance.

      • [key: string]: string

    Returns Promise<Decimal>

    The claimable balance.

    -
  • Private

    Create a shallow copy of given options.

    +
  • Private

    Create a shallow copy of given options.

    Parameters

    • Optional options: {
          [key: string]: string;
      }

      The supplied options to be copied

      • [key: string]: string

    Returns {
        [key: string]: string;
    }

    A copy of the options.

    -
    • [key: string]: string
  • Requests faucet funds for the address. Only supported on testnet networks.

    Parameters

    • Optional assetId: string

      The ID of the asset to transfer from the faucet.

    Returns Promise<FaucetTransaction>

    The faucet transaction object.

    Throws

    If the request does not return a transaction hash.

    Throws

    If the request fails.

    -
  • Returns the balance of the provided asset.

    Parameters

    • assetId: string

      The asset ID.

    Returns Promise<Decimal>

    The balance of the asset.

    -
  • Private

    Get the different staking balance types for the supplied asset.

    +
  • Private

    Get the different staking balance types for the supplied asset.

    Parameters

    • assetId: string

      The asset to lookup balances for.

    • Optional mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • Optional options: {
          [key: string]: string;
      }

      Additional options for the balance lookup.

      • [key: string]: string

    Returns Promise<{
        [key: string]: Decimal;
    }>

    The different balance types.

    -
  • Lists the historical staking balances for the address.

    Parameters

    • assetId: string

      The asset ID.

    • startTime: string = ...

      The start time.

    • endTime: string = ...

      The end time.

    Returns Promise<StakingBalance[]>

    The staking balances.

    -
  • Get the stakeable balance for the supplied asset.

    +
  • Get the stakeable balance for the supplied asset.

    Parameters

    • asset_id: string

      The asset to check the stakeable balance for.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      } = {}

      Additional options for getting the stakeable balance.

      • [key: string]: string

    Returns Promise<Decimal>

    The stakeable balance.

    -
  • Lists the staking rewards for the address.

    Parameters

    • assetId: string

      The asset ID.

    • startTime: string = ...

      The start time.

    • endTime: string = ...

      The end time.

    • format: StakingRewardFormat = StakingRewardFormat.USD

      The format to return the rewards in. (usd, native). Defaults to usd.

    Returns Promise<StakingReward[]>

    The staking rewards.

    -
  • Returns a string representation of the address.

    Returns string

    A string representing the address.

    -
  • Get the unstakeable balance for the supplied asset.

    +
  • Get the unstakeable balance for the supplied asset.

    Parameters

    • asset_id: string

      The asset to check the unstakeable balance for.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      } = {}

      Additional options for getting the unstakeable balance. @@ -85,22 +85,22 @@

      Throws

      If the request fails.

    • validator_pub_keys (optional): List of comma separated validator public keys to retrieve unstakeable balance for. Defaults to all validators.
    • [key: string]: string

Returns Promise<Decimal>

The unstakeable balance.

-
  • Private

    Validate if the operation is able to claim stake with the supplied input.

    +
  • Private

    Validate if the operation is able to claim stake with the supplied input.

    Parameters

    • amount: Amount

      The amount of the asset to claim stake.

    • assetId: string

      The asset to claim stake.

    • mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      }

      Additional options for the claim stake operation.

      • [key: string]: string

    Returns Promise<void>

    Throws

    If the supplied input is not able to create a claim stake operation.

    -
  • Private

    Validate if the operation is able to stake with the supplied input.

    +
  • Private

    Validate if the operation is able to stake with the supplied input.

    Parameters

    • amount: Amount

      The amount of the asset to stake.

    • assetId: string

      The asset to stake.

    • mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      }

      Additional options for the stake operation.

      • [key: string]: string

    Returns Promise<void>

    Throws

    If the supplied input is not able to create a stake operation.

    -
  • Private

    Validate if the operation is able to unstake with the supplied input.

    +
  • Private

    Validate if the operation is able to unstake with the supplied input.

    Parameters

    • amount: Amount

      The amount of the asset to unstake.

    • assetId: string

      The asset to unstake.

    • mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      }

      Additional options for the unstake operation.

      • [key: string]: string

    Returns Promise<void>

    Throws

    If the supplied input is not able to create an unstake operation.

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_address_external_address.ExternalAddress.html b/docs/classes/coinbase_address_external_address.ExternalAddress.html index f5ff16c9..513e1078 100644 --- a/docs/classes/coinbase_address_external_address.ExternalAddress.html +++ b/docs/classes/coinbase_address_external_address.ExternalAddress.html @@ -1,7 +1,7 @@ ExternalAddress | @coinbase/coinbase-sdk

A representation of a blockchain Address, which is a user-controlled account on a Network. Addresses are used to send and receive Assets. An ExternalAddress is an Address that is not controlled by the developer, but is instead controlled by the user.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

Methods

buildClaimStakeOperation @@ -28,7 +28,7 @@

Constructors

Properties

id: string
networkId: string

Methods

  • Builds a claim stake operation for the supplied asset.

    +

Returns ExternalAddress

Properties

id: string
networkId: string

Methods

  • Builds a claim stake operation for the supplied asset.

    Parameters

    • amount: Amount

      The amount of the asset to claim stake.

    • assetId: string

      The asset to claim stake.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

      @@ -38,7 +38,7 @@
    • integrator_contract_address (optional): The contract address to which the claim stake operation is directed to. Defaults to the integrator contract address associated with CDP account (if available) or else defaults to a shared integrator contract address for that network.
    • [key: string]: string

Returns Promise<StakingOperation>

The claim stake operation.

-
  • Builds a stake operation for the supplied asset. The stake operation may take a few minutes to complete in the case when infrastructure is spun up.

    Parameters

    • amount: Amount

      The amount of the asset to stake.

    • assetId: string

      The asset to stake.

      @@ -55,7 +55,7 @@
    • fee_recipient_address (optional): Ethereum address for receiving transaction fees. Defaults to the address initiating the stake operation.
    • [key: string]: string

Returns Promise<StakingOperation>

The stake operation.

-
  • Private

    Builds the staking operation based on the supplied input.

    Parameters

    • amount: Amount

      The amount for the staking operation.

    • assetId: string

      The asset for the staking operation.

    • action: string

      The specific action for the staking operation. e.g. stake, unstake, claim_stake

      @@ -63,7 +63,7 @@
    • options: {
          [key: string]: string;
      }

      Additional options to build a stake operation.

      • [key: string]: string

    Returns Promise<StakingOperation>

    The staking operation.

    Throws

    If the supplied input cannot build a valid staking operation.

    -
  • Builds an unstake operation for the supplied asset.

    Parameters

    • amount: Amount

      The amount of the asset to unstake.

    • assetId: string

      The asset to unstake.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

      @@ -78,54 +78,54 @@
    • validator_pub_keys (optional): List of comma separated validator public keys to unstake. Defaults to validators being picked up on your behalf corresponding to the unstake amount.
    • [key: string]: string

Returns Promise<StakingOperation>

The unstake operation.

-
  • Get the claimable balance for the supplied asset.

    Parameters

    • asset_id: string

      The asset to check claimable balance for.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      } = {}

      Additional options for getting the claimable balance.

      • [key: string]: string

    Returns Promise<Decimal>

    The claimable balance.

    -
  • Private

    Create a shallow copy of given options.

    Parameters

    • Optional options: {
          [key: string]: string;
      }

      The supplied options to be copied

      • [key: string]: string

    Returns {
        [key: string]: string;
    }

    A copy of the options.

    -
    • [key: string]: string
  • Requests faucet funds for the address. Only supported on testnet networks.

    Parameters

    • Optional assetId: string

      The ID of the asset to transfer from the faucet.

    Returns Promise<FaucetTransaction>

    The faucet transaction object.

    Throws

    If the request does not return a transaction hash.

    Throws

    If the request fails.

    -
  • Returns the balance of the provided asset.

    Parameters

    • assetId: string

      The asset ID.

    Returns Promise<Decimal>

    The balance of the asset.

    -
  • Get the stakeable balance for the supplied asset.

    Parameters

    • asset_id: string

      The asset to check the stakeable balance for.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      } = {}

      Additional options for getting the stakeable balance.

      • [key: string]: string

    Returns Promise<Decimal>

    The stakeable balance.

    -
  • Lists the staking rewards for the address.

    Parameters

    • assetId: string

      The asset ID.

    • startTime: string = ...

      The start time.

    • endTime: string = ...

      The end time.

    • format: StakingRewardFormat = StakingRewardFormat.USD

      The format to return the rewards in. (usd, native). Defaults to usd.

    Returns Promise<StakingReward[]>

    The staking rewards.

    -
  • Get the unstakeable balance for the supplied asset.

    Parameters

    • asset_id: string

      The asset to check the unstakeable balance for.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      } = {}

      Additional options for getting the unstakeable balance. @@ -134,22 +134,22 @@

      Throws

      If the request fails.

    • validator_pub_keys (optional): List of comma separated validator public keys to retrieve unstakeable balance for. Defaults to all validators.
    • [key: string]: string

Returns Promise<Decimal>

The unstakeable balance.

-
  • Private

    Validate if the operation is able to claim stake with the supplied input.

    Parameters

    • amount: Amount

      The amount of the asset to claim stake.

    • assetId: string

      The asset to claim stake.

    • mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      }

      Additional options for the claim stake operation.

      • [key: string]: string

    Returns Promise<void>

    Throws

    If the supplied input is not able to create a claim stake operation.

    -
  • Private

    Validate if the operation is able to stake with the supplied input.

    Parameters

    • amount: Amount

      The amount of the asset to stake.

    • assetId: string

      The asset to stake.

    • mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      }

      Additional options for the stake operation.

      • [key: string]: string

    Returns Promise<void>

    Throws

    If the supplied input is not able to create a stake operation.

    -
  • Private

    Validate if the operation is able to unstake with the supplied input.

    Parameters

    • amount: Amount

      The amount of the asset to unstake.

    • assetId: string

      The asset to unstake.

    • mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      }

      Additional options for the unstake operation.

      • [key: string]: string

    Returns Promise<void>

    Throws

    If the supplied input is not able to create an unstake operation.

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_address_wallet_address.WalletAddress.html b/docs/classes/coinbase_address_wallet_address.WalletAddress.html index 99260337..fd4b45fd 100644 --- a/docs/classes/coinbase_address_wallet_address.WalletAddress.html +++ b/docs/classes/coinbase_address_wallet_address.WalletAddress.html @@ -1,5 +1,5 @@ WalletAddress | @coinbase/coinbase-sdk

A representation of a blockchain address, which is a wallet-controlled account on a network.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

Parameters

  • model: Address

    The address model data.

  • Optional key: Wallet

    The ethers.js SigningKey the Address uses to sign data.

Returns WalletAddress

Throws

If the address model is empty.

-

Properties

id: string
key?: Wallet
model: Address
networkId: string

Methods

Properties

id: string
key?: Wallet
model: Address
networkId: string

Methods

  • Private

    A helper function that broadcasts the signed payload.

    Parameters

    • stakingOperationID: string

      The staking operation id related to the signed payload.

    • signedPayload: string

      The payload that's being broadcasted.

    • transactionIndex: number

      The index of the transaction in the array from the staking operation.

    Returns Promise<StakingOperation>

    An updated staking operation with the broadcasted transaction.

    -
  • Returns whether the Address has a private key backing it to sign transactions.

    Returns boolean

    Whether the Address has a private key backing it to sign transactions.

    -
  • Get the claimable balance for the supplied asset.

    Parameters

    • asset_id: string

      The asset to check claimable balance for.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      } = {}

      Additional options for getting the claimable balance.

      • [key: string]: string

    Returns Promise<Decimal>

    The claimable balance.

    -
  • Private

    Create a shallow copy of given options.

    Parameters

    • Optional options: {
          [key: string]: string;
      }

      The supplied options to be copied

      • [key: string]: string

    Returns {
        [key: string]: string;
    }

    A copy of the options.

    -
    • [key: string]: string
  • Creates a staking operation to claim stake.

    Parameters

    • amount: Amount

      The amount to claim stake.

    • assetId: string

      The asset to claim stake.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

      @@ -77,7 +81,7 @@
      • [key: string]: string
    • timeoutSeconds: number = 600

      The amount to wait for the transaction to complete when broadcasted.

    • intervalSeconds: number = 0.2

      The amount to check each time for a successful broadcast.

    Returns Promise<StakingOperation>

    The staking operation after it's completed successfully.

    -
  • Creates a contract invocation with the given data.

    Parameters

    • contractAddress: string

      The address of the contract the method will be invoked on.

    • method: string

      The method to invoke on the contract.

    • abi: object

      The ABI of the contract.

      @@ -86,16 +90,24 @@
    • Optional atomicAmount: string

      The atomic amount of the native asset to send to a payable contract method.

    Returns Promise<ContractInvocation>

    The ContractInvocation object.

    Throws

    if the API request to create a contract invocation fails.

    -
  • Creates a Payload Signature.

    Parameters

    • unsignedPayload: string

      The Unsigned Payload to sign.

    Returns Promise<PayloadSignature>

    A promise that resolves to the Payload Signature object.

    Throws

    if the API request to create a Payload Signature fails.

    Throws

    if the address does not have a private key loaded or an associated Server-Signer.

    -
  • Creates a staking operation to stake.

    Parameters

    • amount: Amount

      The amount to stake.

    • assetId: string

      The asset to stake.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

      @@ -113,7 +125,7 @@

      Throws

      if the address does not have a private key loaded or an associ

      • [key: string]: string
    • timeoutSeconds: number = 600

      The amount to wait for the transaction to complete when broadcasted.

    • intervalSeconds: number = 0.2

      The amount to check each time for a successful broadcast.

    Returns Promise<StakingOperation>

    The staking operation after it's completed successfully.

    -
  • Creates a staking operation to stake, signs it, and broadcasts it on the blockchain.

    Parameters

    • amount: Amount

      The amount for the staking operation.

    • assetId: string

      The asset to the staking operation.

    • action: string

      The type of staking action to perform.

      @@ -124,7 +136,7 @@

      Throws

      if the address does not have a private key loaded or an associ

    Returns Promise<StakingOperation>

    The staking operation after it's completed fully.

    Throws

    if the API request to create or broadcast staking operation fails.

    Throws

    if the amount is less than zero.

    -
  • Private

    A helper function that creates the staking operation.

    Parameters

    • amount: Amount

      The amount for the staking operation.

    • assetId: string

      The asset for the staking operation.

    • action: string

      The type of staking action to perform.

      @@ -132,17 +144,17 @@

      Throws

      if the amount is less than zero.

    • options: {
          [key: string]: string;
      } = {}

      Additional options such as setting the mode for the staking action.

      • [key: string]: string

    Returns Promise<StakingOperation>

    The created staking operation.

    Throws

    if the API request to create staking operation fails.

    -
  • Trades the given amount of the given Asset for another Asset. Only same-network Trades are supported.

    Parameters

    Returns Promise<Trade>

    The Trade object.

    Throws

    if the API request to create or broadcast a Trade fails.

    Throws

    if the Trade times out.

    -
  • Creates a trade model for the specified amount and assets.

    Parameters

    • amount: Amount

      The amount of the Asset to send.

    • fromAsset: Asset

      The Asset to trade from.

    • toAsset: Asset

      The Asset to trade to.

    Returns Promise<Trade>

    A promise that resolves to a Trade object representing the new trade.

    -
  • Transfers the given amount of the given Asset to the given address. Only same-Network Transfers are supported. This returns a Transfer object that has been signed and broadcasted, you can wait for this to land on-chain (or fail) by calling transfer.wait().

    @@ -150,7 +162,7 @@

    Throws

    if the Trade times out.

Returns Promise<Transfer>

The transfer object.

Throws

if the API request to create a Transfer fails.

Throws

if the API request to broadcast a Transfer fails.

-
  • Creates a staking operation to unstake.

    Parameters

    • amount: Amount

      The amount to unstake.

    • assetId: string

      The asset to unstake.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

      @@ -167,80 +179,88 @@

      Throws

      if the API request to broadcast a Transfer fails.

      • [key: string]: string
    • timeoutSeconds: number = 600

      The amount to wait for the transaction to complete when broadcasted.

    • intervalSeconds: number = 0.2

      The amount to check each time for a successful broadcast.

    Returns Promise<StakingOperation>

    The staking operation after it's completed successfully.

    -
  • Requests faucet funds for the address. Only supported on testnet networks.

    Parameters

    • Optional assetId: string

      The ID of the asset to transfer from the faucet.

    Returns Promise<FaucetTransaction>

    The faucet transaction object.

    Throws

    If the request does not return a transaction hash.

    Throws

    If the request fails.

    -
  • Returns the balance of the provided asset.

    Parameters

    • assetId: string

      The asset ID.

    Returns Promise<Decimal>

    The balance of the asset.

    -
  • Returns the address and network ID of the given destination.

    Parameters

    • destination: Destination

      The destination to get the address and network ID of.

    Returns Promise<[string, string]>

    The address and network ID of the destination.

    -
  • Gets a Payload Signature.

    Parameters

    • payloadSignatureId: string

      The ID of the Payload Signature to fetch.

    Returns Promise<PayloadSignature>

    A promise that resolves to the Payload Signature object.

    Throws

    if the API request to get the Payload Signature fails.

    -
  • Sets the private key.

    Parameters

    • key: Wallet

      The ethers.js SigningKey the Address uses to sign data.

    Returns void

    Throws

    If the private key is already set.

    -
  • Get the stakeable balance for the supplied asset.

    Parameters

    • asset_id: string

      The asset to check the stakeable balance for.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      } = {}

      Additional options for getting the stakeable balance.

      • [key: string]: string

    Returns Promise<Decimal>

    The stakeable balance.

    -
  • Lists the staking rewards for the address.

    Parameters

    • assetId: string

      The asset ID.

    • startTime: string = ...

      The start time.

    • endTime: string = ...

      The end time.

    • format: StakingRewardFormat = StakingRewardFormat.USD

      The format to return the rewards in. (usd, native). Defaults to usd.

    Returns Promise<StakingReward[]>

    The staking rewards.

    -
  • Get the unstakeable balance for the supplied asset.

    Parameters

    • asset_id: string

      The asset to check the unstakeable balance for.

    • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      } = {}

      Additional options for getting the unstakeable balance. @@ -249,26 +269,26 @@

      Throws

      if the address does not have sufficient balance.

    • validator_pub_keys (optional): List of comma separated validator public keys to retrieve unstakeable balance for. Defaults to all validators.
    • [key: string]: string

Returns Promise<Decimal>

The unstakeable balance.

-
  • Private

    Validate if the operation is able to claim stake with the supplied input.

    Parameters

    • amount: Amount

      The amount of the asset to claim stake.

    • assetId: string

      The asset to claim stake.

    • mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      }

      Additional options for the claim stake operation.

      • [key: string]: string

    Returns Promise<void>

    Throws

    If the supplied input is not able to create a claim stake operation.

    -
  • Private

    Validate if the operation is able to stake with the supplied input.

    Parameters

    • amount: Amount

      The amount of the asset to stake.

    • assetId: string

      The asset to stake.

    • mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      }

      Additional options for the stake operation.

      • [key: string]: string

    Returns Promise<void>

    Throws

    If the supplied input is not able to create a stake operation.

    -
  • Checks if trading is possible and raises an error if not.

    Parameters

    • amount: Amount

      The amount of the Asset to send.

    • fromAssetId: string

      The ID of the Asset to trade from. For Ether, eth, gwei, and wei are supported.

    Returns Promise<void>

    Throws

    If the private key is not loaded, or if the asset IDs are unsupported, or if there are insufficient funds.

    -
  • Private

    Validate if the operation is able to unstake with the supplied input.

    Parameters

    • amount: Amount

      The amount of the asset to unstake.

    • assetId: string

      The asset to unstake.

    • mode: StakeOptionsMode

      The staking mode. Defaults to DEFAULT.

    • options: {
          [key: string]: string;
      }

      Additional options for the unstake operation.

      • [key: string]: string

    Returns Promise<void>

    Throws

    If the supplied input is not able to create an unstake operation.

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.APIError.html b/docs/classes/coinbase_api_error.APIError.html index 323105a7..7ae76aa6 100644 --- a/docs/classes/coinbase_api_error.APIError.html +++ b/docs/classes/coinbase_api_error.APIError.html @@ -1,5 +1,5 @@ APIError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns APIError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Returns a String representation of the APIError.

    Returns string

    a String representation of the APIError

    -
  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

  • Creates a specific APIError based on the API error code.

    Parameters

    • error: AxiosError<unknown, any>

      The underlying error object.

    Returns APIError

    A specific APIError instance.

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.AlreadyExistsError.html b/docs/classes/coinbase_api_error.AlreadyExistsError.html index bb649fee..6264e980 100644 --- a/docs/classes/coinbase_api_error.AlreadyExistsError.html +++ b/docs/classes/coinbase_api_error.AlreadyExistsError.html @@ -1,5 +1,5 @@ AlreadyExistsError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns AlreadyExistsError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.FaucetLimitReachedError.html b/docs/classes/coinbase_api_error.FaucetLimitReachedError.html index b2149e07..1c4a629f 100644 --- a/docs/classes/coinbase_api_error.FaucetLimitReachedError.html +++ b/docs/classes/coinbase_api_error.FaucetLimitReachedError.html @@ -1,5 +1,5 @@ FaucetLimitReachedError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns FaucetLimitReachedError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InternalError.html b/docs/classes/coinbase_api_error.InternalError.html index 48539aaf..7cead417 100644 --- a/docs/classes/coinbase_api_error.InternalError.html +++ b/docs/classes/coinbase_api_error.InternalError.html @@ -1,5 +1,5 @@ InternalError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InternalError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidAddressError.html b/docs/classes/coinbase_api_error.InvalidAddressError.html index dc3e02b7..3a88dd86 100644 --- a/docs/classes/coinbase_api_error.InvalidAddressError.html +++ b/docs/classes/coinbase_api_error.InvalidAddressError.html @@ -1,5 +1,5 @@ InvalidAddressError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidAddressError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidAddressIDError.html b/docs/classes/coinbase_api_error.InvalidAddressIDError.html index f6fabf65..ecee7f54 100644 --- a/docs/classes/coinbase_api_error.InvalidAddressIDError.html +++ b/docs/classes/coinbase_api_error.InvalidAddressIDError.html @@ -1,5 +1,5 @@ InvalidAddressIDError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidAddressIDError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidAmountError.html b/docs/classes/coinbase_api_error.InvalidAmountError.html index 53e1ad34..78c40873 100644 --- a/docs/classes/coinbase_api_error.InvalidAmountError.html +++ b/docs/classes/coinbase_api_error.InvalidAmountError.html @@ -1,5 +1,5 @@ InvalidAmountError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidAmountError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidAssetIDError.html b/docs/classes/coinbase_api_error.InvalidAssetIDError.html index 91955a1c..395b9328 100644 --- a/docs/classes/coinbase_api_error.InvalidAssetIDError.html +++ b/docs/classes/coinbase_api_error.InvalidAssetIDError.html @@ -1,5 +1,5 @@ InvalidAssetIDError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidAssetIDError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidDestinationError.html b/docs/classes/coinbase_api_error.InvalidDestinationError.html index e3de39a7..dec9b36b 100644 --- a/docs/classes/coinbase_api_error.InvalidDestinationError.html +++ b/docs/classes/coinbase_api_error.InvalidDestinationError.html @@ -1,5 +1,5 @@ InvalidDestinationError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidDestinationError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidLimitError.html b/docs/classes/coinbase_api_error.InvalidLimitError.html index c9e81a06..1a8f88c6 100644 --- a/docs/classes/coinbase_api_error.InvalidLimitError.html +++ b/docs/classes/coinbase_api_error.InvalidLimitError.html @@ -1,5 +1,5 @@ InvalidLimitError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidLimitError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidNetworkIDError.html b/docs/classes/coinbase_api_error.InvalidNetworkIDError.html index e9b06349..e27a97ea 100644 --- a/docs/classes/coinbase_api_error.InvalidNetworkIDError.html +++ b/docs/classes/coinbase_api_error.InvalidNetworkIDError.html @@ -1,5 +1,5 @@ InvalidNetworkIDError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidNetworkIDError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidPageError.html b/docs/classes/coinbase_api_error.InvalidPageError.html index 4b857a53..8ae60083 100644 --- a/docs/classes/coinbase_api_error.InvalidPageError.html +++ b/docs/classes/coinbase_api_error.InvalidPageError.html @@ -1,5 +1,5 @@ InvalidPageError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidPageError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidSignedPayloadError.html b/docs/classes/coinbase_api_error.InvalidSignedPayloadError.html index a540a1e6..880319d3 100644 --- a/docs/classes/coinbase_api_error.InvalidSignedPayloadError.html +++ b/docs/classes/coinbase_api_error.InvalidSignedPayloadError.html @@ -1,5 +1,5 @@ InvalidSignedPayloadError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidSignedPayloadError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidTransferIDError.html b/docs/classes/coinbase_api_error.InvalidTransferIDError.html index 0e1b2d25..7c684995 100644 --- a/docs/classes/coinbase_api_error.InvalidTransferIDError.html +++ b/docs/classes/coinbase_api_error.InvalidTransferIDError.html @@ -1,5 +1,5 @@ InvalidTransferIDError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidTransferIDError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidTransferStatusError.html b/docs/classes/coinbase_api_error.InvalidTransferStatusError.html index 0f50d602..3e96f617 100644 --- a/docs/classes/coinbase_api_error.InvalidTransferStatusError.html +++ b/docs/classes/coinbase_api_error.InvalidTransferStatusError.html @@ -1,5 +1,5 @@ InvalidTransferStatusError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidTransferStatusError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidWalletError.html b/docs/classes/coinbase_api_error.InvalidWalletError.html index 460a626b..a331a6a6 100644 --- a/docs/classes/coinbase_api_error.InvalidWalletError.html +++ b/docs/classes/coinbase_api_error.InvalidWalletError.html @@ -1,5 +1,5 @@ InvalidWalletError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidWalletError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.InvalidWalletIDError.html b/docs/classes/coinbase_api_error.InvalidWalletIDError.html index c7e0d0c2..41cafff1 100644 --- a/docs/classes/coinbase_api_error.InvalidWalletIDError.html +++ b/docs/classes/coinbase_api_error.InvalidWalletIDError.html @@ -1,5 +1,5 @@ InvalidWalletIDError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns InvalidWalletIDError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.MalformedRequestError.html b/docs/classes/coinbase_api_error.MalformedRequestError.html index 870a73b0..8844efcc 100644 --- a/docs/classes/coinbase_api_error.MalformedRequestError.html +++ b/docs/classes/coinbase_api_error.MalformedRequestError.html @@ -1,5 +1,5 @@ MalformedRequestError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns MalformedRequestError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.NetworkFeatureUnsupportedError.html b/docs/classes/coinbase_api_error.NetworkFeatureUnsupportedError.html index 9c9dfbad..18e34a8a 100644 --- a/docs/classes/coinbase_api_error.NetworkFeatureUnsupportedError.html +++ b/docs/classes/coinbase_api_error.NetworkFeatureUnsupportedError.html @@ -1,5 +1,5 @@ NetworkFeatureUnsupportedError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns NetworkFeatureUnsupportedError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.NotFoundError.html b/docs/classes/coinbase_api_error.NotFoundError.html index 8bd11c18..4884697b 100644 --- a/docs/classes/coinbase_api_error.NotFoundError.html +++ b/docs/classes/coinbase_api_error.NotFoundError.html @@ -1,5 +1,5 @@ NotFoundError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns NotFoundError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.ResourceExhaustedError.html b/docs/classes/coinbase_api_error.ResourceExhaustedError.html index 519a28d4..f94c8699 100644 --- a/docs/classes/coinbase_api_error.ResourceExhaustedError.html +++ b/docs/classes/coinbase_api_error.ResourceExhaustedError.html @@ -1,5 +1,5 @@ ResourceExhaustedError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns ResourceExhaustedError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.UnauthorizedError.html b/docs/classes/coinbase_api_error.UnauthorizedError.html index 1d531777..546d075b 100644 --- a/docs/classes/coinbase_api_error.UnauthorizedError.html +++ b/docs/classes/coinbase_api_error.UnauthorizedError.html @@ -1,5 +1,5 @@ UnauthorizedError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns UnauthorizedError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.UnimplementedError.html b/docs/classes/coinbase_api_error.UnimplementedError.html index 35c865ed..3e07dfec 100644 --- a/docs/classes/coinbase_api_error.UnimplementedError.html +++ b/docs/classes/coinbase_api_error.UnimplementedError.html @@ -1,5 +1,5 @@ UnimplementedError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns UnimplementedError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_api_error.UnsupportedAssetError.html b/docs/classes/coinbase_api_error.UnsupportedAssetError.html index e72b8fa3..1fac2b90 100644 --- a/docs/classes/coinbase_api_error.UnsupportedAssetError.html +++ b/docs/classes/coinbase_api_error.UnsupportedAssetError.html @@ -1,5 +1,5 @@ UnsupportedAssetError | @coinbase/coinbase-sdk

A wrapper for API errors to provide more context.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

apiCode apiMessage cause? @@ -35,12 +35,12 @@ fromError

Constructors

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Returns UnsupportedAssetError

Properties

apiCode: null | string
apiMessage: null | string
cause?: Error
code?: string
config?: InternalAxiosRequestConfig<any>
correlationId: null | string
httpCode: null | number
isAxiosError: boolean
message: string
name: string
request?: any
response?: AxiosResponse<unknown, any>
stack?: string
status?: number
toJSON: (() => object)

Type declaration

    • (): object
    • Returns object

ECONNABORTED: "ECONNABORTED" = "ECONNABORTED"
ERR_BAD_OPTION: "ERR_BAD_OPTION" = "ERR_BAD_OPTION"
ERR_BAD_OPTION_VALUE: "ERR_BAD_OPTION_VALUE" = "ERR_BAD_OPTION_VALUE"
ERR_BAD_REQUEST: "ERR_BAD_REQUEST" = "ERR_BAD_REQUEST"
ERR_BAD_RESPONSE: "ERR_BAD_RESPONSE" = "ERR_BAD_RESPONSE"
ERR_CANCELED: "ERR_CANCELED" = "ERR_CANCELED"
ERR_DEPRECATED: "ERR_DEPRECATED" = "ERR_DEPRECATED"
ERR_FR_TOO_MANY_REDIRECTS: "ERR_FR_TOO_MANY_REDIRECTS" = "ERR_FR_TOO_MANY_REDIRECTS"
ERR_INVALID_URL: "ERR_INVALID_URL" = "ERR_INVALID_URL"
ERR_NETWORK: "ERR_NETWORK" = "ERR_NETWORK"
ERR_NOT_SUPPORT: "ERR_NOT_SUPPORT" = "ERR_NOT_SUPPORT"
ETIMEDOUT: "ETIMEDOUT" = "ETIMEDOUT"
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

  • Type Parameters

    • T = unknown
    • D = any

    Parameters

    • error: unknown
    • Optional code: string
    • Optional config: InternalAxiosRequestConfig<D>
    • Optional request: any
    • Optional response: AxiosResponse<T, D>
    • Optional customProps: object

    Returns AxiosError<T, D>

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/coinbase_asset.Asset.html b/docs/classes/coinbase_asset.Asset.html index d0064745..673bd89b 100644 --- a/docs/classes/coinbase_asset.Asset.html +++ b/docs/classes/coinbase_asset.Asset.html @@ -1,5 +1,5 @@ Asset | @coinbase/coinbase-sdk

A representation of an Asset.

-

Constructors

Constructors

Properties

assetId contractAddress decimals @@ -17,31 +17,31 @@
  • assetId: string

    The asset ID.

  • contractAddress: string

    The address ID.

  • decimals: number

    The number of decimals.

    -
  • Returns Asset

    Properties

    assetId: string
    contractAddress: string
    decimals: number
    networkId: string

    Methods

    • Converts the amount of the Asset from atomic to whole units.

      +

    Returns Asset

    Properties

    assetId: string
    contractAddress: string
    decimals: number
    networkId: string

    Methods

    • Converts the amount of the Asset from atomic to whole units.

      Parameters

      • atomicAmount: Decimal

        The atomic amount to convert to whole units.

      Returns Decimal

      The amount in atomic units

      -
    • Returns the primary denomination for the Asset.

      Returns string

      The primary denomination for the Asset.

      -
    • Converts the amount of the Asset from whole to atomic units.

      +
    • Converts the amount of the Asset from whole to atomic units.

      Parameters

      • wholeAmount: Decimal

        The whole amount to convert to atomic units.

      Returns bigint

      The amount in atomic units

      -
    • Returns a string representation of the Asset.

      Returns string

      a string representation of the Asset

      -
    • Fetches the Asset with the provided Asset ID.

      Parameters

      • networkId: string

        The network ID.

      • assetId: string

        The asset ID.

      Returns Promise<Asset>

      The Asset Class.

      Throws

      If the Asset cannot be fetched.

      -
    • Creates an Asset from an Asset Model.

      Parameters

      • model: Asset

        The Asset Model.

      • Optional assetId: string

        The Asset ID.

      Returns Asset

      The Asset Class.

      Throws

      If the Asset Model is invalid.

      -
    • Returns the primary denomination for the provided Asset ID. +

    • Returns the primary denomination for the provided Asset ID. For gwei and wei the primary denomination is eth. For all other assets, the primary denomination is the same asset ID.

      Parameters

      • assetId: string

        The Asset ID.

      Returns string

      The primary denomination for the Asset ID.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_authenticator.CoinbaseAuthenticator.html b/docs/classes/coinbase_authenticator.CoinbaseAuthenticator.html index df38f0ce..1e5d7577 100644 --- a/docs/classes/coinbase_authenticator.CoinbaseAuthenticator.html +++ b/docs/classes/coinbase_authenticator.CoinbaseAuthenticator.html @@ -1,5 +1,5 @@ CoinbaseAuthenticator | @coinbase/coinbase-sdk

    A class that builds JWTs for authenticating with the Coinbase Platform APIs.

    -

    Constructors

    Constructors

    Properties

    Methods

    authenticateRequest @@ -10,22 +10,22 @@

    Constructors

    Properties

    apiKey: string
    privateKey: string

    Methods

    • Middleware to intercept requests and add JWT to Authorization header.

      +

    Returns CoinbaseAuthenticator

    Properties

    apiKey: string
    privateKey: string

    Methods

    • Middleware to intercept requests and add JWT to Authorization header.

      Parameters

      • config: InternalAxiosRequestConfig<any>

        The request configuration.

      • debugging: boolean = false

        Flag to enable debugging.

      Returns Promise<InternalAxiosRequestConfig<any>>

      The request configuration with the Authorization header added.

      Throws

      If JWT could not be built.

      -
    • Builds the JWT for the given API endpoint URL.

      Parameters

      • url: string

        URL of the API endpoint.

      • method: string = "GET"

        HTTP method of the request.

      Returns Promise<string>

      JWT token.

      Throws

      If the private key is not in the correct format.

      -
    • Extracts the PEM key from the given private key string.

      Parameters

      • privateKeyString: string

        The private key string.

      Returns string

      The PEM key.

      Throws

      If the private key string is not in the correct format.

      -
    • Returns encoded correlation data including the SDK version and language.

      Returns string

      Encoded correlation data.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_balance.Balance.html b/docs/classes/coinbase_balance.Balance.html index 99f877b1..954833c4 100644 --- a/docs/classes/coinbase_balance.Balance.html +++ b/docs/classes/coinbase_balance.Balance.html @@ -1,14 +1,14 @@ Balance | @coinbase/coinbase-sdk

    A representation of a balance.

    -

    Properties

    Properties

    amount: Decimal
    asset?: Asset
    assetId: string

    Methods

    • Converts a BalanceModel into a Balance object.

      +

    Properties

    amount: Decimal
    asset?: Asset
    assetId: string

    Methods

    • Converts a BalanceModel and asset ID into a Balance object.

      Parameters

      • model: Balance

        The balance model object.

      • assetId: string

        The asset ID.

      Returns Balance

      The Balance object.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_balance_map.BalanceMap.html b/docs/classes/coinbase_balance_map.BalanceMap.html index 7a1f8d80..b562be06 100644 --- a/docs/classes/coinbase_balance_map.BalanceMap.html +++ b/docs/classes/coinbase_balance_map.BalanceMap.html @@ -1,5 +1,5 @@ BalanceMap | @coinbase/coinbase-sdk

    A convenience class for storing and manipulating Asset balances in a human-readable format.

    -

    Hierarchy

    • Map<string, Decimal>
      • BalanceMap

    Constructors

    Hierarchy

    • Map<string, Decimal>
      • BalanceMap

    Constructors

    Properties

    [toStringTag] size [species] @@ -20,7 +20,7 @@
    [species]: MapConstructor

    Methods

    • Returns an iterable of entries in the map.

      Returns IterableIterator<[string, Decimal]>

    • Returns void

    • Parameters

      • key: string

      Returns boolean

      true if an element in the Map existed and has been removed, or false if the element does not exist.

      +

    Returns void

    • Returns void

    • Parameters

      • key: string

      Returns boolean

      true if an element in the Map existed and has been removed, or false if the element does not exist.

    • Returns an iterable of key, value pairs for every entry in the map.

      Returns IterableIterator<[string, Decimal]>

    • Executes a provided function once per each key/value pair in the Map, in insertion order.

      Parameters

      • callbackfn: ((value, key, map) => void)
          • (value, key, map): void
          • Parameters

            • value: Decimal
            • key: string
            • map: Map<string, Decimal>

            Returns void

      • Optional thisArg: any

      Returns void

    • Returns a specified element from the Map object. If the value that is associated to the provided key is an object, then you will get a reference to that object and any change made to that object will effectively modify it inside the Map.

      @@ -30,8 +30,8 @@

      Returns IterableIterator<string>

    • Adds a new element with a specified key and value to the Map. If an element with the same key already exists, the element will be updated.

      Parameters

      • key: string
      • value: Decimal

      Returns this

    • Returns a string representation of the balance map.

      Returns string

      The string representation of the balance map.

      -
    • Returns an iterable of values in the map

      Returns IterableIterator<Decimal>

    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_coinbase.Coinbase.html b/docs/classes/coinbase_coinbase.Coinbase.html index d084b12d..2ab8adf6 100644 --- a/docs/classes/coinbase_coinbase.Coinbase.html +++ b/docs/classes/coinbase_coinbase.Coinbase.html @@ -1,5 +1,5 @@ Coinbase | @coinbase/coinbase-sdk

    The Coinbase SDK.

    -

    Constructors

    Constructors

    Properties

    apiClients apiKeyPrivateKey assets @@ -14,25 +14,25 @@

    Returns Coinbase

    Deprecated

    as of v0.5.0, use configure or configureFromJson instead.

    Throws

    If the configuration is invalid.

    Throws

    If not able to create JWT token.

    -

    Properties

    apiClients: ApiClients = {}
    apiKeyPrivateKey: string

    The CDP API key Private Key.

    -

    Constant

    assets: {
        Eth: string;
        Gwei: string;
        Lamport: string;
        Sol: string;
        Usdc: string;
        Wei: string;
        Weth: string;
    } = ...

    The list of supported assets.

    -

    Type declaration

    • Eth: string
    • Gwei: string
    • Lamport: string
    • Sol: string
    • Usdc: string
    • Wei: string
    • Weth: string

    Constant

    networks: {
        ArbitrumMainnet: "arbitrum-mainnet";
        BaseMainnet: "base-mainnet";
        BaseSepolia: "base-sepolia";
        EthereumHolesky: "ethereum-holesky";
        EthereumMainnet: "ethereum-mainnet";
        PolygonMainnet: "polygon-mainnet";
        SolanaDevnet: "solana-devnet";
        SolanaMainnet: "solana-mainnet";
    } = NetworkIdentifier

    The map of supported networks to network ID. Generated from the OpenAPI spec.

    +

    Properties

    apiClients: ApiClients = {}
    apiKeyPrivateKey: string

    The CDP API key Private Key.

    +

    Constant

    assets: {
        Eth: string;
        Gwei: string;
        Lamport: string;
        Sol: string;
        Usdc: string;
        Wei: string;
        Weth: string;
    } = ...

    The list of supported assets.

    +

    Type declaration

    • Eth: string
    • Gwei: string
    • Lamport: string
    • Sol: string
    • Usdc: string
    • Wei: string
    • Weth: string

    Constant

    networks: {
        ArbitrumMainnet: "arbitrum-mainnet";
        BaseMainnet: "base-mainnet";
        BaseSepolia: "base-sepolia";
        EthereumHolesky: "ethereum-holesky";
        EthereumMainnet: "ethereum-mainnet";
        PolygonMainnet: "polygon-mainnet";
        SolanaDevnet: "solana-devnet";
        SolanaMainnet: "solana-mainnet";
    } = NetworkIdentifier

    The map of supported networks to network ID. Generated from the OpenAPI spec.

    Type declaration

    • Readonly ArbitrumMainnet: "arbitrum-mainnet"
    • Readonly BaseMainnet: "base-mainnet"
    • Readonly BaseSepolia: "base-sepolia"
    • Readonly EthereumHolesky: "ethereum-holesky"
    • Readonly EthereumMainnet: "ethereum-mainnet"
    • Readonly PolygonMainnet: "polygon-mainnet"
    • Readonly SolanaDevnet: "solana-devnet"
    • Readonly SolanaMainnet: "solana-mainnet"

    Constant

    Example

    Coinbase.networks.BaseMainnet
     
    -
    useServerSigner: boolean

    Whether to use a server signer or not.

    -

    Constant

    Methods

    useServerSigner: boolean

    Whether to use a server signer or not.

    +

    Constant

    Methods

    • Reads the API key and private key from a JSON file and initializes the Coinbase SDK.

      Parameters

      Returns Coinbase

      A new instance of the Coinbase SDK.

      Throws

      If the file does not exist or the configuration values are missing/invalid.

      Throws

      If the configuration is invalid.

      Throws

      If not able to create JWT token.

      -
    • Converts a network symbol to a string, replacing underscores with hyphens.

      +
    • Converts a network symbol to a string, replacing underscores with hyphens.

      Parameters

      • network: string

        The network symbol to convert

      Returns string

      the converted string

      -
    • Converts a string to a symbol, replacing hyphens with underscores.

      Parameters

      • asset: string

        The string to convert

      Returns string

      the converted symbol

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_contract_event.ContractEvent.html b/docs/classes/coinbase_contract_event.ContractEvent.html index 68e09c73..4b5c11c5 100644 --- a/docs/classes/coinbase_contract_event.ContractEvent.html +++ b/docs/classes/coinbase_contract_event.ContractEvent.html @@ -1,5 +1,5 @@ ContractEvent | @coinbase/coinbase-sdk

    A representation of a single contract event.

    -

    Constructors

    Constructors

    Properties

    Methods

    blockHeight blockTime @@ -17,32 +17,32 @@ txIndex

    Constructors

    Properties

    Methods

    • Returns the block height of the ContractEvent.

      +

    Returns ContractEvent

    Properties

    Methods

    • Returns the four bytes of the Keccak hash of the event signature.

      Returns string

      The four bytes of the event signature hash.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_contract_invocation.ContractInvocation.html b/docs/classes/coinbase_contract_invocation.ContractInvocation.html index 28c852ac..29345615 100644 --- a/docs/classes/coinbase_contract_invocation.ContractInvocation.html +++ b/docs/classes/coinbase_contract_invocation.ContractInvocation.html @@ -1,6 +1,6 @@ ContractInvocation | @coinbase/coinbase-sdk

    A representation of a ContractInvocation, which calls a smart contract method onchain. The fee is assumed to be paid in the native Asset of the Network.

    -

    Properties

    Properties

    Methods

    Properties

    Methods

    • Broadcasts the ContractInvocation to the Network.

      +

    Properties

    Methods

    • Returns the ABI of the ContractInvocation, if specified.

      Returns undefined | object

      The ABI as an object, or undefined if not available.

      -
    • Returns the amount of the native asset sent to a payable contract method, if applicable.

      Returns Decimal

      The amount in atomic units of the native asset.

      -
    • Returns the Arguments of the ContractInvocation.

      Returns object

      The arguments object passed to the contract invocation. The key is the argument name and the value is the argument value.

      -
    • Returns the Transaction of the ContractInvocation.

      Returns Transaction

      The ethers.js Transaction object.

      Throws

      (InvalidUnsignedPayload) If the Unsigned Payload is invalid.

      -
    • Returns the Transaction Hash of the ContractInvocation.

      Returns undefined | string

      The Transaction Hash as a Hex string, or undefined if not yet available.

      -
    • Returns the link to the Transaction on the blockchain explorer.

      Returns string

      The link to the Transaction on the blockchain explorer.

      -
    • Reloads the ContractInvocation model with the latest data from the server.

      Returns Promise<void>

      Throws

      if the API request to get a ContractInvocation fails.

      -
    • Signs the ContractInvocation with the provided key and returns the hex signature required for broadcasting the ContractInvocation.

      Parameters

      • key: Wallet

        The key to sign the ContractInvocation with

      Returns Promise<string>

      The hex-encoded signed payload

      -
    • Returns a string representation of the ContractInvocation.

      Returns string

      The string representation of the ContractInvocation.

      -
    • Waits for the ContractInvocation to be confirmed on the Network or fail on chain. Waits until the ContractInvocation is completed or failed on-chain by polling at the given interval. Raises an error if the ContractInvocation takes longer than the given timeout.

      Parameters

      • options: {
            intervalSeconds: undefined | number;
            timeoutSeconds: undefined | number;
        } = {}

        The options to configure the wait function.

        @@ -70,7 +70,7 @@
      • timeoutSeconds: undefined | number

        The maximum time to wait for the ContractInvocation to be confirmed.

    Returns Promise<ContractInvocation>

    The ContractInvocation object in a terminal state.

    Throws

    if the ContractInvocation times out.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_errors.AlreadySignedError.html b/docs/classes/coinbase_errors.AlreadySignedError.html index ab747710..ecf451ea 100644 --- a/docs/classes/coinbase_errors.AlreadySignedError.html +++ b/docs/classes/coinbase_errors.AlreadySignedError.html @@ -1,5 +1,5 @@ AlreadySignedError | @coinbase/coinbase-sdk

    AlreadySignedError is thrown when a resource is already signed.

    -

    Hierarchy

    • Error
      • AlreadySignedError

    Constructors

    Hierarchy

    • Error
      • AlreadySignedError

    Constructors

    Properties

    message name stack? @@ -9,7 +9,7 @@

    Methods

    Constructors

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Resource already signed"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Returns AlreadySignedError

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Resource already signed"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/docs/classes/coinbase_errors.ArgumentError.html b/docs/classes/coinbase_errors.ArgumentError.html index 6430718e..6a4621dc 100644 --- a/docs/classes/coinbase_errors.ArgumentError.html +++ b/docs/classes/coinbase_errors.ArgumentError.html @@ -1,5 +1,5 @@ ArgumentError | @coinbase/coinbase-sdk

    ArgumentError is thrown when an argument is invalid.

    -

    Hierarchy

    • Error
      • ArgumentError

    Constructors

    Hierarchy

    • Error
      • ArgumentError

    Constructors

    Properties

    message name stack? @@ -9,7 +9,7 @@

    Methods

    Constructors

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Argument Error"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Returns ArgumentError

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Argument Error"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/docs/classes/coinbase_errors.InvalidAPIKeyFormatError.html b/docs/classes/coinbase_errors.InvalidAPIKeyFormatError.html index 03465d15..168d430d 100644 --- a/docs/classes/coinbase_errors.InvalidAPIKeyFormatError.html +++ b/docs/classes/coinbase_errors.InvalidAPIKeyFormatError.html @@ -1,5 +1,5 @@ InvalidAPIKeyFormatError | @coinbase/coinbase-sdk

    InvalidAPIKeyFormatError error is thrown when the API key format is invalid.

    -

    Hierarchy

    • Error
      • InvalidAPIKeyFormatError

    Constructors

    Hierarchy

    • Error
      • InvalidAPIKeyFormatError

    Constructors

    Properties

    message name stack? @@ -9,7 +9,7 @@

    Methods

    Constructors

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Invalid API key format"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Returns InvalidAPIKeyFormatError

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Invalid API key format"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/docs/classes/coinbase_errors.InvalidConfigurationError.html b/docs/classes/coinbase_errors.InvalidConfigurationError.html index 96ea52b5..9ced01e7 100644 --- a/docs/classes/coinbase_errors.InvalidConfigurationError.html +++ b/docs/classes/coinbase_errors.InvalidConfigurationError.html @@ -1,5 +1,5 @@ InvalidConfigurationError | @coinbase/coinbase-sdk

    InvalidConfigurationError error is thrown when apikey/privateKey configuration is invalid.

    -

    Hierarchy

    • Error
      • InvalidConfigurationError

    Constructors

    Hierarchy

    • Error
      • InvalidConfigurationError

    Constructors

    Properties

    message name stack? @@ -9,7 +9,7 @@

    Methods

    Constructors

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Invalid configuration"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Returns InvalidConfigurationError

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Invalid configuration"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/docs/classes/coinbase_errors.InvalidUnsignedPayloadError.html b/docs/classes/coinbase_errors.InvalidUnsignedPayloadError.html index a35d0509..a85f5007 100644 --- a/docs/classes/coinbase_errors.InvalidUnsignedPayloadError.html +++ b/docs/classes/coinbase_errors.InvalidUnsignedPayloadError.html @@ -1,5 +1,5 @@ InvalidUnsignedPayloadError | @coinbase/coinbase-sdk

    InvalidUnsignedPayload error is thrown when the unsigned payload is invalid.

    -

    Hierarchy

    • Error
      • InvalidUnsignedPayloadError

    Constructors

    Hierarchy

    • Error
      • InvalidUnsignedPayloadError

    Constructors

    Properties

    message name stack? @@ -9,7 +9,7 @@

    Methods

    Constructors

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Invalid unsigned payload"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Returns InvalidUnsignedPayloadError

    Properties

    message: string
    name: string
    stack?: string
    DEFAULT_MESSAGE: string = "Invalid unsigned payload"
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/docs/classes/coinbase_errors.NotSignedError.html b/docs/classes/coinbase_errors.NotSignedError.html index 6eef7004..7043ea79 100644 --- a/docs/classes/coinbase_errors.NotSignedError.html +++ b/docs/classes/coinbase_errors.NotSignedError.html @@ -1,5 +1,5 @@ NotSignedError | @coinbase/coinbase-sdk

    NotSignedError is thrown when a resource is not signed.

    -

    Hierarchy

    • Error
      • NotSignedError

    Constructors

    Hierarchy

    • Error
      • NotSignedError

    Constructors

    Properties

    message name stack? @@ -8,7 +8,7 @@

    Methods

    Constructors

    Properties

    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Returns NotSignedError

    Properties

    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/docs/classes/coinbase_errors.TimeoutError.html b/docs/classes/coinbase_errors.TimeoutError.html index b3cb09bd..f62c6baa 100644 --- a/docs/classes/coinbase_errors.TimeoutError.html +++ b/docs/classes/coinbase_errors.TimeoutError.html @@ -1,5 +1,5 @@ TimeoutError | @coinbase/coinbase-sdk

    TimeoutError is thrown when an operation times out.

    -

    Hierarchy

    • Error
      • TimeoutError

    Constructors

    Hierarchy

    • Error
      • TimeoutError

    Constructors

    Properties

    message name stack? @@ -8,7 +8,7 @@

    Methods

    Constructors

    Properties

    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Returns TimeoutError

    Properties

    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/docs/classes/coinbase_faucet_transaction.FaucetTransaction.html b/docs/classes/coinbase_faucet_transaction.FaucetTransaction.html index b929c8ec..05b99336 100644 --- a/docs/classes/coinbase_faucet_transaction.FaucetTransaction.html +++ b/docs/classes/coinbase_faucet_transaction.FaucetTransaction.html @@ -1,5 +1,5 @@ FaucetTransaction | @coinbase/coinbase-sdk

    Represents a transaction from a faucet.

    -

    Constructors

    Constructors

    Properties

    Methods

    getTransactionHash getTransactionLink @@ -8,10 +8,10 @@ Do not use this method directly - instead, use Address.faucet().

    Parameters

    Returns FaucetTransaction

    Throws

    If the model does not exist.

    -

    Properties

    Methods

    Properties

    Methods

    • Returns the link to the transaction on the blockchain explorer.

      Returns string

      The link to the transaction on the blockchain explorer

      -
    • Returns a string representation of the FaucetTransaction.

      Returns string

      A string representation of the FaucetTransaction.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_historical_balance.HistoricalBalance.html b/docs/classes/coinbase_historical_balance.HistoricalBalance.html index 0b1b4a36..db7ce854 100644 --- a/docs/classes/coinbase_historical_balance.HistoricalBalance.html +++ b/docs/classes/coinbase_historical_balance.HistoricalBalance.html @@ -1,10 +1,10 @@ HistoricalBalance | @coinbase/coinbase-sdk

    A representation of historical balance.

    -

    Properties

    Properties

    amount: Decimal
    asset: Asset
    blockHash: string
    blockHeight: Decimal

    Methods

    • Converts a HistoricalBalanceModel into a HistoricalBalance object.

      +

    Properties

    amount: Decimal
    asset: Asset
    blockHash: string
    blockHeight: Decimal

    Methods

    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_payload_signature.PayloadSignature.html b/docs/classes/coinbase_payload_signature.PayloadSignature.html index 3d02ad63..9036485b 100644 --- a/docs/classes/coinbase_payload_signature.PayloadSignature.html +++ b/docs/classes/coinbase_payload_signature.PayloadSignature.html @@ -1,5 +1,5 @@ PayloadSignature | @coinbase/coinbase-sdk

    A representation of a Payload Signature.

    -

    Constructors

    Constructors

    Properties

    Methods

    getAddressId getId @@ -13,28 +13,28 @@ wait

    Constructors

    Properties

    Methods

    • Returns the Address ID of the Payload Signature.

      +

    Returns PayloadSignature

    Properties

    Methods

    • Returns whether the Payload Signature is in a terminal State.

      Returns boolean

      Whether the Payload Signature is in a terminal State

      -
    • Reloads the Payload Signature model with the latest data from the server.

      Returns Promise<void>

      Throws

      if the API request to get a Payload Signature fails.

      -
    • Returns a string representation of the Payload Signature.

      Returns string

      A string representation of the Payload Signature.

      -
    • Waits for the Payload Signature to be signed or for the signature operation to fail.

      Parameters

      • options: {
            intervalSeconds: undefined | number;
            timeoutSeconds: undefined | number;
        } = {}

        The options to configure the wait function.

        • intervalSeconds: undefined | number

          The interval to check the status of the Payload Signature.

        • timeoutSeconds: undefined | number

          The maximum time to wait for the Payload Signature to be confirmed.

      Returns Promise<PayloadSignature>

      The Payload Signature object in a terminal state.

      Throws

      if the Payload Signature times out.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_server_signer.ServerSigner.html b/docs/classes/coinbase_server_signer.ServerSigner.html index e1eb6e09..d71ba815 100644 --- a/docs/classes/coinbase_server_signer.ServerSigner.html +++ b/docs/classes/coinbase_server_signer.ServerSigner.html @@ -1,17 +1,17 @@ ServerSigner | @coinbase/coinbase-sdk

    A representation of a Server-Signer. Server-Signers are assigned to sign transactions for a Wallet.

    -

    Properties

    Properties

    Methods

    • Returns the ID of the Server-Signer.

      +

    Properties

    Methods

    • Returns the IDs of the Wallet's the Server-Signer can sign for.

      Returns undefined | string[]

      The Wallet IDs.

      -
    • Returns a String representation of the Server-Signer.

      Returns string

      a String representation of the Server-Signer.

      -
    • Returns the default Server-Signer for the CDP Project.

      Returns Promise<ServerSigner>

      The default Server-Signer.

      Throws

      if the API request to list Server-Signers fails.

      Throws

      if there is no Server-Signer associated with the CDP Project.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_smart_contract.SmartContract.html b/docs/classes/coinbase_smart_contract.SmartContract.html index 32d7252c..4ac8edfb 100644 --- a/docs/classes/coinbase_smart_contract.SmartContract.html +++ b/docs/classes/coinbase_smart_contract.SmartContract.html @@ -1,5 +1,5 @@ SmartContract | @coinbase/coinbase-sdk

    A representation of a SmartContract on the blockchain.

    -

    Constructors

    Constructors

    Properties

    Methods

    Constructors

    Properties

    Methods

    • Broadcasts the SmartContract deployment to the Network.

      +

    Returns SmartContract

    Properties

    Methods

    • Reloads the SmartContract model with the latest data from the server.

      Returns Promise<void>

      Throws

      if the API request to get a SmartContract fails.

      -
    • Signs the SmartContract deployment with the provided key and returns the hex signature required for broadcasting the SmartContract deployment.

      Parameters

      • key: Wallet

        The key to sign the SmartContract deployment with

      Returns Promise<string>

      The hex-encoded signed payload

      -
    • Returns a string representation of the SmartContract.

      Returns string

      The string representation of the SmartContract.

      -
    • Waits for the SmartContract deployment to be confirmed on the Network or fail on chain. Waits until the SmartContract deployment is completed or failed on-chain by polling at the given interval. Raises an error if the SmartContract deployment takes longer than the given timeout.

      Parameters

      • options: {
            intervalSeconds: undefined | number;
            timeoutSeconds: undefined | number;
        } = {}

        The options to configure the wait function.

        @@ -56,10 +66,10 @@
      • timeoutSeconds: undefined | number

        The maximum time to wait for the SmartContract deployment to be confirmed.

    Returns Promise<SmartContract>

    The SmartContract object in a terminal state.

    Throws

    if the SmartContract deployment times out.

    -
    • Returns a list of ContractEvents for the provided network, contract, and event details.

      +
    • Returns a list of ContractEvents for the provided network, contract, and event details.

      Parameters

      • networkId: string

        The network ID.

      • protocolName: string

        The protocol name.

      • contractAddress: string

        The contract address.

        @@ -68,4 +78,4 @@
      • fromBlockHeight: number

        The start block height.

      • toBlockHeight: number

        The end block height.

      Returns Promise<ContractEvent[]>

      The contract events.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_sponsored_send.SponsoredSend.html b/docs/classes/coinbase_sponsored_send.SponsoredSend.html index 05c71b0b..106b2803 100644 --- a/docs/classes/coinbase_sponsored_send.SponsoredSend.html +++ b/docs/classes/coinbase_sponsored_send.SponsoredSend.html @@ -1,5 +1,5 @@ SponsoredSend | @coinbase/coinbase-sdk

    A representation of an onchain Sponsored Send.

    -

    Constructors

    Constructors

    Properties

    Methods

    getSignature getStatus @@ -12,24 +12,24 @@ toString

    Constructors

    Properties

    Methods

    • Returns the signature of the typed data.

      +

    Returns SponsoredSend

    Properties

    Methods

    • Returns the signature of the typed data.

      Returns undefined | string

      The hash of the typed data signature.

      -
    • Returns the Transaction Hash of the Sponsored Send.

      Returns undefined | string

      The Transaction Hash

      -
    • Returns the link to the Sponsored Send on the blockchain explorer.

      Returns undefined | string

      The link to the Sponsored Send on the blockchain explorer

      -
    • Returns the Keccak256 hash of the typed data. This payload must be signed by the sender to be used as an approval in the EIP-3009 transaction.

      Returns string

      The Keccak256 hash of the typed data.

      -
    • Returns whether the Sponsored Send has been signed.

      Returns boolean

      if the Sponsored Send has been signed.

      -
    • Returns whether the Sponsored Send is in a terminal State.

      Returns boolean

      Whether the Sponsored Send is in a terminal State

      -
    • Signs the Sponsored Send with the provided key and returns the hex signature.

      Parameters

      • key: Wallet

        The key to sign the Sponsored Send with

      Returns Promise<string>

      The hex-encoded signature

      -
    • Returns a string representation of the Sponsored Send.

      Returns string

      A string representation of the Sponsored Send

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_staking_balance.StakingBalance.html b/docs/classes/coinbase_staking_balance.StakingBalance.html index 59c4961a..9574867e 100644 --- a/docs/classes/coinbase_staking_balance.StakingBalance.html +++ b/docs/classes/coinbase_staking_balance.StakingBalance.html @@ -1,5 +1,5 @@ StakingBalance | @coinbase/coinbase-sdk

    A representation of the staking balance for a given asset on a specific date.

    -

    Constructors

    Constructors

    Properties

    Methods

    address bondedStake @@ -10,23 +10,23 @@ list

    Constructors

    Properties

    Methods

    • Returns the onchain address of the StakingBalance.

      +

    Returns StakingBalance

    Properties

    Methods

    • Returns a list of StakingBalances for the provided network, asset, and address.

      Parameters

      • networkId: string

        The network ID.

      • assetId: string

        The asset ID.

      • addressId: string

        The address ID.

      • startTime: string

        The start time.

      • endTime: string

        The end time.

      Returns Promise<StakingBalance[]>

      The staking balances.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_staking_operation.StakingOperation.html b/docs/classes/coinbase_staking_operation.StakingOperation.html index 46cefb4b..41af78f3 100644 --- a/docs/classes/coinbase_staking_operation.StakingOperation.html +++ b/docs/classes/coinbase_staking_operation.StakingOperation.html @@ -1,6 +1,6 @@ StakingOperation | @coinbase/coinbase-sdk

    A representation of a staking operation (stake, unstake, claim stake, etc.). It may have multiple steps with some being transactions to sign, and others to wait.

    -

    Constructors

    Constructors

    Properties

    Methods

    getAddressID @@ -21,53 +21,53 @@ fetch

    Constructors

    Properties

    transactions: Transaction[]

    Methods

    • Returns the Address ID.

      +

    Returns StakingOperation

    Properties

    transactions: Transaction[]

    Methods

    • Get signed voluntary exit messages for native eth unstaking

      Returns string[]

      The signed voluntary exit messages for a native eth unstaking operation.

      -
    • Returns whether the Staking operation is in a complete state.

      Returns boolean

      Whether the Staking operation is in a complete state.

      -
    • Returns whether the Staking operation is in a failed state.

      Returns boolean

      Whether the Staking operation is in a failed state.

      -
    • Returns whether the Staking operation is in a terminal State.

      Returns boolean

      Whether the Staking operation is in a terminal State

      -
    • loadTransactionsFromModel loads new unsigned transactions from the model into the transactions array. Note: For External Address model since tx signing and broadcast status happens by the end user and not our backend we need to be careful to not overwrite the transactions array with the response from the API. Ex: End user could have used stakingOperation.sign() method to sign the transactions, and we should not overwrite them with the response from the API. This however is ok to do so for the Wallet Address model since the transactions states are maintained by our backend. This method attempts to be safe for both address models, and only adds newly created unsigned transactions that are not already in the transactions array.

      -

      Returns void

    • Reloads the StakingOperation model with the latest data from the server. If the StakingOperation object was created by an ExternalAddress then it will not have a wallet ID.

      Returns Promise<void>

      Throws

      if the API request to get the StakingOperation fails.

      Throws

      if this function is called on a StakingOperation without a wallet ID.

      -
    • Sign the transactions in the StakingOperation object.

      Parameters

      • key: Wallet

        The key used to sign the transactions.

        -

      Returns Promise<void>

    • Return a human-readable string representation of the StakingOperation object.

      +

    Returns Promise<void>

    • Return a human-readable string representation of the StakingOperation object.

      Returns string

      The string representation of the StakingOperation object.

      -
    • Waits until the Staking Operation is completed or failed by polling its status at the given interval.

      Parameters

      • options: {
            intervalSeconds: undefined | number;
            timeoutSeconds: undefined | number;
        } = {}

        The options to configure the wait function.

        • intervalSeconds: undefined | number

          The interval at which to poll, in seconds

        • timeoutSeconds: undefined | number

          The maximum amount of time to wait for the StakingOperation to complete, in seconds

      Returns Promise<StakingOperation>

      The completed StakingOperation object.

      Throws

      If the StakingOperation takes longer than the given timeout.

      -
    • Get the staking operation for the given ID.

      Parameters

      • networkId: string

        The network ID.

      • addressId: string

        The address ID.

      • id: string

        The staking operation ID.

      • Optional walletId: string

        The wallet ID of the staking operation.

      Returns Promise<StakingOperation>

      The staking operation object.

      Throws

      If the wallet id is defined but empty.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_staking_reward.StakingReward.html b/docs/classes/coinbase_staking_reward.StakingReward.html index d1dd94c6..ddaebd43 100644 --- a/docs/classes/coinbase_staking_reward.StakingReward.html +++ b/docs/classes/coinbase_staking_reward.StakingReward.html @@ -1,5 +1,5 @@ StakingReward | @coinbase/coinbase-sdk

    A representation of a staking reward earned on a network for a given asset.

    -

    Constructors

    Constructors

    Properties

    asset format model @@ -15,21 +15,21 @@

    Parameters

    • model: StakingReward

      The underlying staking reward object.

    • asset: Asset

      The asset for the staking reward.

    • format: StakingRewardFormat

      The format to return the rewards in. (usd, native). Defaults to usd.

      -

    Returns StakingReward

    Properties

    asset: Asset

    Methods

    • Returns the onchain address of the StakingReward.

      +

    Returns StakingReward

    Properties

    asset: Asset

    Methods

    • Returns a list of StakingRewards for the provided network, asset, and addresses.

      Parameters

      • networkId: string

        The network ID.

      • assetId: string

        The asset ID.

      • addressIds: string[]

        The address ID.

        @@ -37,4 +37,4 @@
      • endTime: string

        The end time.

      • format: StakingRewardFormat = StakingRewardFormat.USD

        The format to return the rewards in. (usd, native). Defaults to usd.

      Returns Promise<StakingReward[]>

      The staking rewards.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_trade.Trade.html b/docs/classes/coinbase_trade.Trade.html index 7d3748a4..7e991f17 100644 --- a/docs/classes/coinbase_trade.Trade.html +++ b/docs/classes/coinbase_trade.Trade.html @@ -1,6 +1,6 @@ Trade | @coinbase/coinbase-sdk

    A representation of a Trade, which trades an amount of an Asset to another Asset on a Network. The fee is assumed to be paid in the native Asset of the Network.

    -

    Constructors

    Constructors

    Properties

    Returns Trade

    Throws

    • If the Trade model is empty.
    -

    Properties

    approveTransaction?: Transaction
    model: Trade
    transaction?: Transaction

    Methods

    Properties

    approveTransaction?: Transaction
    model: Trade
    transaction?: Transaction

    Methods

    • Broadcasts the Trade to the Network.

      Returns Promise<Trade>

      The Trade object

      Throws

      if the API request to broadcast a Trade fails.

      -
    • Returns the Address ID of the Trade.

      Returns string

      The Address ID.

      -
    • Returns the amount of the from asset for the Trade.

      Returns Decimal

      The amount of the from asset.

      -
    • Returns the From Asset ID of the Trade.

      Returns string

      The From Asset ID.

      -
    • Returns the Network ID of the Trade.

      Returns string

      The Network ID.

      -
    • Returns the amount of the to asset for the Trade.

      Returns Decimal

      The amount of the to asset.

      -
    • Returns the To Asset ID of the Trade.

      Returns string

      The To Asset ID.

      -
    • Returns the Wallet ID of the Trade.

      Returns string

      The Wallet ID.

      -
    • Reloads the Trade model with the latest version from the server side.

      Returns Promise<Trade>

      The most recent version of Trade from the server.

      -
    • Resets the trade model with the specified data from the server.

      Parameters

      • model: Trade

        The Trade model

      Returns Trade

      The updated Trade object

      -
    • Signs the Trade with the provided key. This signs the transfer transaction and will sign the approval transaction if present.

      Parameters

      • key: Wallet

        The key to sign the Transfer with

        -

      Returns Promise<void>

    • Returns a String representation of the Trade.

      +

    Returns Promise<void>

    • Returns a String representation of the Trade.

      Returns string

      A String representation of the Trade.

      -
    • Waits until the Trade is completed or failed by polling the Network at the given interval. +

    • Waits until the Trade is completed or failed by polling the Network at the given interval. Raises an error if the Trade takes longer than the given timeout.

      Parameters

      • options: {
            intervalSeconds: undefined | number;
            timeoutSeconds: undefined | number;
        } = {}

        The options to configure the wait function.

        • intervalSeconds: undefined | number

          The interval at which to poll the Network, in seconds

          @@ -69,4 +69,4 @@

      Returns Promise<Trade>

      The completed Trade object.

      Throws

      If the Trade takes longer than the given timeout.

      Throws

      If the request fails.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_transaction.Transaction.html b/docs/classes/coinbase_transaction.Transaction.html index c95d58cb..9d20c9e6 100644 --- a/docs/classes/coinbase_transaction.Transaction.html +++ b/docs/classes/coinbase_transaction.Transaction.html @@ -1,5 +1,5 @@ Transaction | @coinbase/coinbase-sdk

    A representation of an onchain Transaction.

    -

    Constructors

    Constructors

    Properties

    Methods

    blockHash @@ -20,38 +20,38 @@ toString

    Constructors

    Properties

    raw?: Transaction

    Methods

    • Returns the Block Hash where the Transaction is recorded.

      +

    Returns Transaction

    Properties

    raw?: Transaction

    Methods

    • Returns the Block Hash where the Transaction is recorded.

      Returns undefined | string

      The Block Hash

      -
    • Returns the Block Height where the Transaction is recorded.

      Returns undefined | string

      The Block Height

      -
    • Returns the Signed Payload of the Transaction.

      Returns undefined | string

      The Signed Payload

      -
    • Returns the Signed Payload of the Transaction.

      Returns undefined | string

      The Signed Payload

      -
    • Returns the Transaction Hash of the Transaction.

      Returns undefined | string

      The Transaction Hash

      -
    • Returns the link to the Transaction on the blockchain explorer.

      Returns string

      The link to the Transaction on the blockchain explorer

      -
    • Returns the Unsigned Payload of the Transaction.

      Returns string

      The Unsigned Payload

      -
    • Returns whether the transaction has been signed.

      Returns boolean

      if the transaction has been signed.

      -
    • Returns whether the Transaction is in a terminal State.

      Returns boolean

      Whether the Transaction is in a terminal State

      -
    • Returns the underlying raw transaction.

      Returns Transaction

      The ethers.js Transaction object

      Throws

      If the Unsigned Payload is invalid.

      -
    • Signs the Transaction with the provided key and returns the hex signing payload.

      Parameters

      • key: Wallet

        The key to sign the transaction with

      Returns Promise<string>

      The hex-encoded signed payload

      -
    • Returns the To Address ID for the Transaction if it's available.

      Returns undefined | string

      The To Address ID

      -
    • Returns a string representation of the Transaction.

      Returns string

      A string representation of the Transaction.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_transfer.Transfer.html b/docs/classes/coinbase_transfer.Transfer.html index f3aa9aee..7c03181c 100644 --- a/docs/classes/coinbase_transfer.Transfer.html +++ b/docs/classes/coinbase_transfer.Transfer.html @@ -1,7 +1,7 @@ Transfer | @coinbase/coinbase-sdk

    A representation of a Transfer, which moves an Amount of an Asset from a user-controlled Wallet to another Address. The fee is assumed to be paid in the native Asset of the Network.

    -

    Properties

    Properties

    Methods

    Properties

    model: Transfer

    Methods

    • Broadcasts the Transfer to the Network.

      +

    Properties

    model: Transfer

    Methods

    • Returns the Destination Address ID of the Transfer.

      Returns string

      The Destination Address ID.

      -
    • Returns the From Address ID of the Transfer.

      Returns string

      The From Address ID.

      -
    • Returns the Transaction of the Transfer.

      Returns undefined | Transaction

      The ethers.js Transaction object.

      Throws

      (InvalidUnsignedPayload) If the Unsigned Payload is invalid.

      -
    • Returns the Transaction Hash of the Transfer.

      Returns undefined | string

      The Transaction Hash as a Hex string, or undefined if not yet available.

      -
    • Returns the link to the Transaction on the blockchain explorer.

      +
    • Returns the link to the Transaction on the blockchain explorer.

      Returns undefined | string

      The link to the Transaction on the blockchain explorer.

      -
    • Reloads the Transfer model with the latest data from the server.

      Returns Promise<void>

      Throws

      if the API request to get a Transfer fails.

      -
    • Signs the Transfer with the provided key and returns the hex signature required for broadcasting the Transfer.

      Parameters

      • key: Wallet

        The key to sign the Transfer with

      Returns Promise<string>

      The hex-encoded signed payload

      -
    • Returns a string representation of the Transfer.

      Returns string

      The string representation of the Transfer.

      -
    • Waits for the Transfer to be confirmed on the Network or fail on chain. Waits until the Transfer is completed or failed on-chain by polling at the given interval. Raises an error if the Trade takes longer than the given timeout.

      Parameters

      • options: {
            intervalSeconds: undefined | number;
            timeoutSeconds: undefined | number;
        } = {}

        The options to configure the wait function.

        @@ -70,7 +70,7 @@
      • timeoutSeconds: undefined | number

        The maximum time to wait for the Transfer to be confirmed.

    Returns Promise<Transfer>

    The Transfer object in a terminal state.

    Throws

    if the Transfer times out.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_validator.Validator.html b/docs/classes/coinbase_validator.Validator.html index 958a5d02..bab39d20 100644 --- a/docs/classes/coinbase_validator.Validator.html +++ b/docs/classes/coinbase_validator.Validator.html @@ -1,5 +1,5 @@ Validator | @coinbase/coinbase-sdk

    A representation of a validator onchain.

    -

    Constructors

    Constructors

    Properties

    Methods

    getStatus getValidatorId @@ -12,23 +12,23 @@

    Returns Validator

    Throws

    • If the Validator model is empty.
    -

    Properties

    model: Validator

    Methods

    Properties

    model: Validator

    Methods

    • Returns the string representation of the Validator.

      Returns string

      The string representation of the Validator.

      -
    • Returns the details of a specific validator.

      Parameters

      • networkId: string

        The network ID.

      • assetId: string

        The asset ID.

      • id: string

        The unique publicly identifiable id of the validator for which to fetch the data.

      Returns Promise<Validator>

      The requested validator details.

      -
    • Returns the list of Validators.

      Parameters

      • networkId: string

        The network ID.

      • assetId: string

        The asset ID.

      • Optional status: ValidatorStatus

        The status to filter by.

      Returns Promise<Validator[]>

      The list of Validators.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_wallet.Wallet.html b/docs/classes/coinbase_wallet.Wallet.html index 0f8f7e3d..db0e734d 100644 --- a/docs/classes/coinbase_wallet.Wallet.html +++ b/docs/classes/coinbase_wallet.Wallet.html @@ -4,7 +4,7 @@ Wallets should be created using Wallet.create, imported using Wallet.import, or fetched using Wallet.fetch. Existing wallets can be imported with a seed using Wallet.import. Wallets backed by a Server Signer can be fetched with Wallet.fetch and used for signing operations immediately.

    -

    Properties

    Properties

    addressPathPrefix: "m/44'/60'/0'/0" = "m/44'/60'/0'/0"
    addresses: WalletAddress[] = []
    master?: HDKey
    model: Wallet
    seed?: string
    MAX_ADDRESSES: number = 20

    Methods

    • Returns a WalletAddress object for the given AddressModel.

      +

    Properties

    addressPathPrefix: "m/44'/60'/0'/0" = "m/44'/60'/0'/0"
    addresses: WalletAddress[] = []
    master?: HDKey
    model: Wallet
    seed?: string
    MAX_ADDRESSES: number = 20

    Methods

    • Returns a WalletAddress object for the given AddressModel.

      Parameters

      • addressModel: Address

        The AddressModel to build the WalletAddress from.

      • index: number

        The index of the AddressModel.

      Returns WalletAddress

      The WalletAddress object.

      -
    • Returns whether the Wallet has a seed with which to derive keys and sign transactions.

      +
    • Returns whether the Wallet has a seed with which to derive keys and sign transactions.

      Returns boolean

      Whether the Wallet has a seed with which to derive keys and sign transactions.

      -
    • Get the claimable balance for the supplied asset.

      +
    • Get the claimable balance for the supplied asset.

      Parameters

      • asset_id: string

        The asset to check claimable balance for.

      • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

        The staking mode. Defaults to DEFAULT.

      • options: {
            [key: string]: string;
        } = {}

        Additional options for getting the claimable balance.

        • [key: string]: string

      Returns Promise<Decimal>

      The claimable balance.

      Throws

      if the default address is not found.

      -
    • Creates an attestation for the Address currently being created.

      +
    • Creates an attestation for the Address currently being created.

      Parameters

      • key: HDKey

        The key of the Wallet.

      Returns string

      The attestation.

      -
    • Creates a staking operation to claim stake, signs it, and broadcasts it on the blockchain.

      +
    • Creates a staking operation to claim stake, signs it, and broadcasts it on the blockchain.

      Parameters

      • amount: Amount

        The amount for the staking operation.

      • assetId: string

        The asset for the staking operation.

      • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

        The staking mode. Defaults to DEFAULT.

        @@ -83,12 +86,12 @@
      • intervalSeconds: number = 0.2

        The amount to check each time for a successful broadcast.

      Returns Promise<StakingOperation>

      The staking operation after it's completed fully.

      Throws

      if the default address is not found.

      -
    • Creates a Payload Signature.

      Parameters

      • unsignedPayload: string

        The Unsigned Payload to sign.

      Returns Promise<PayloadSignature>

      A promise that resolves to the Payload Signature object.

      Throws

      if the API request to create a Payload Signature fails.

      Throws

      if the default address is not found.

      -
    • Creates a staking operation to stake, signs it, and broadcasts it on the blockchain.

      +
    • Creates a staking operation to stake, signs it, and broadcasts it on the blockchain.

      Parameters

      • amount: Amount

        The amount for the staking operation.

      • assetId: string

        The asset for the staking operation.

      • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

        The staking mode. Defaults to DEFAULT.

        @@ -97,19 +100,19 @@

        Throws

        if the default address is not found.

      • intervalSeconds: number = 0.2

        The amount to check each time for a successful broadcast.

      Returns Promise<StakingOperation>

      The staking operation after it's completed fully.

      Throws

      if the default address is not found.

      -
    • Trades the given amount of the given Asset for another Asset. Currently only the default address is used to source the Trade.

      Parameters

      Returns Promise<Trade>

      The created Trade object.

      Throws

      If the default address is not found.

      Throws

      If the private key is not loaded, or if the asset IDs are unsupported, or if there are insufficient funds.

      -
    • Transfers the given amount of the given Asset to the given address. Only same-Network Transfers are supported. +

    • Transfers the given amount of the given Asset to the given address. Only same-Network Transfers are supported. Currently only the default_address is used to source the Transfer.

      Parameters

      Returns Promise<Transfer>

      The created Transfer object.

      Throws

      if the API request to create a Transfer fails.

      Throws

      if the API request to broadcast a Transfer fails.

      -
    • Creates a staking operation to unstake, signs it, and broadcasts it on the blockchain.

      +
    • Creates a staking operation to unstake, signs it, and broadcasts it on the blockchain.

      Parameters

      • amount: Amount

        The amount for the staking operation.

      • assetId: string

        The asset for the staking operation.

      • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

        The staking mode. Defaults to DEFAULT.

        @@ -118,69 +121,80 @@

        Throws

        if the API request to broadcast a Transfer fails.

      • intervalSeconds: number = 0.2

        The amount to check each time for a successful broadcast.

      Returns Promise<StakingOperation>

      The staking operation after it's completed successfully.

      Throws

      if the default address is not found.

      -
    • Creates a Webhook for a wallet, monitors all wallet addresses for onchain events.

      +

      Parameters

      • notificationUri: string

        The URI to which the webhook notifications will be sent.

        +

      Returns Promise<Webhook>

      The newly created webhook instance.

      +
    • Deploys an ERC1155 token contract.

      +

      Parameters

      Returns Promise<SmartContract>

      A Promise that resolves to the deployed SmartContract object.

      +

      Throws

      If the private key is not loaded when not using server signer.

      +
    • Deploys an ERC721 token contract.

      +

      Parameters

      Returns Promise<SmartContract>

      A Promise that resolves to the deployed SmartContract object.

      +

      Throws

      If the private key is not loaded when not using server signer.

      +
    • Deploys an ERC20 token contract.

      Parameters

      Returns Promise<SmartContract>

      A Promise that resolves to the deployed SmartContract object.

      Throws

      If the private key is not loaded when not using server signer.

      -
    • Derives a key for an already registered Address in the Wallet.

      Parameters

      • index: number

        The index of the Address to derive.

      Returns HDKey

      The derived key.

      Throws

      • If the key derivation fails.
      -
    • Requests funds from the faucet for the Wallet's default address and returns the faucet transaction. This is only supported on testnet networks.

      Parameters

      • Optional assetId: string

        The ID of the Asset to request from the faucet.

      Returns Promise<FaucetTransaction>

      The successful faucet transaction

      Throws

      If the default address is not found.

      Throws

      If the request fails.

      -
    • Returns the WalletAddress with the given ID.

      Parameters

      • addressId: string

        The ID of the WalletAddress to retrieve.

      Returns Promise<undefined | WalletAddress>

      The WalletAddress.

      -
    • Returns the balance of the provided Asset. Balances are aggregated across all Addresses in the Wallet.

      +
    • Returns the balance of the provided Asset. Balances are aggregated across all Addresses in the Wallet.

      Parameters

      • assetId: string

        The ID of the Asset to retrieve the balance for.

      Returns Promise<Decimal>

      The balance of the Asset.

      -
    • Gets the key for encrypting seed data.

      Returns Buffer

      The encryption key.

      -
    • Loads the seed data from the given file.

      Parameters

      • filePath: string

        The path of the file to load the seed data from

      Returns Record<string, SeedData>

      The seed data

      -
    • Lists the historical staking balances for the address.

      Parameters

      • assetId: string

        The asset ID.

      • startTime: string = ...

        The start time.

      • endTime: string = ...

        The end time.

      Returns Promise<StakingBalance[]>

      The staking balances.

      Throws

      if the default address is not found.

      -
    • Returns the list of balances of this Wallet. Balances are aggregated across all Addresses in the Wallet.

      Returns Promise<BalanceMap>

      The list of balances. The key is the Asset ID, and the value is the balance.

      -
    • Loads the seed of the Wallet from the given file.

      Parameters

      • filePath: string

        The path of the file to load the seed from

      Returns Promise<string>

      A string indicating the success of the operation

      -
    • Reloads the Wallet model with the latest data from the server.

      Returns Promise<void>

      Throws

      if the API request to get a Wallet fails.

      -
    • Saves the seed of the Wallet to the given file. Wallets whose seeds are saved this way can be +

    • Saves the seed of the Wallet to the given file. Wallets whose seeds are saved this way can be rehydrated using load_seed. A single file can be used for multiple Wallet seeds. This is an insecure method of storing Wallet seeds and should only be used for development purposes.

      Parameters

      • filePath: string

        The path of the file to save the seed to

        @@ -188,43 +202,43 @@

        Throws

        If the request fails.

        encrypted or not. Data is unencrypted by default.

      Returns string

      A string indicating the success of the operation

      Throws

      If the Wallet does not have a seed

      -
    • Sets the master node for the given seed, if valid. If the seed is undefined it will set the master node using a random seed.

      +
    • Sets the master node for the given seed, if valid. If the seed is undefined it will set the master node using a random seed.

      Parameters

      • seed: undefined | string

        The seed to use for the Wallet.

      Returns undefined | HDKey

      The master node for the given seed.

      -
    • Set the seed for the Wallet.

      Parameters

      • seed: string

        The seed to use for the Wallet. Expects a 32-byte hexadecimal with no 0x prefix.

      Returns void

      Throws

      If the seed is empty.

      Throws

      If the seed is already set.

      -
    • Get the stakeable balance for the supplied asset.

      +
    • Get the stakeable balance for the supplied asset.

      Parameters

      • asset_id: string

        The asset to check the stakeable balance for.

      • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

        The staking mode. Defaults to DEFAULT.

      • options: {
            [key: string]: string;
        } = {}

        Additional options for getting the stakeable balance.

        • [key: string]: string

      Returns Promise<Decimal>

      The stakeable balance.

      Throws

      if the default address is not found.

      -
    • Lists the staking rewards for the address.

      Parameters

      • assetId: string

        The asset ID.

      • startTime: string = ...

        The start time.

      • endTime: string = ...

        The end time.

      • format: StakingRewardFormat = StakingRewardFormat.USD

        The format to return the rewards in. (usd, native). Defaults to usd.

      Returns Promise<StakingReward[]>

      The staking rewards.

      Throws

      if the default address is not found.

      -
    • Returns a String representation of the Wallet.

      Returns string

      a String representation of the Wallet

      -
    • Get the unstakeable balance for the supplied asset.

      +
    • Get the unstakeable balance for the supplied asset.

      Parameters

      • asset_id: string

        The asset to check the unstakeable balance for.

      • mode: StakeOptionsMode = StakeOptionsMode.DEFAULT

        The staking mode. Defaults to DEFAULT.

      • options: {
            [key: string]: string;
        } = {}

        Additional options for getting the unstakeable balance.

        • [key: string]: string

      Returns Promise<Decimal>

      The unstakeable balance.

      Throws

      if the default address is not found.

      -
    • Validates the seed and address models passed to the constructor.

      Parameters

      • seed: undefined | string

        The seed to use for the Wallet

        -

      Returns void

    • Waits until the ServerSigner has created a seed for the Wallet.

      +

    Returns void

    • Waits until the ServerSigner has created a seed for the Wallet.

      Parameters

      • walletId: string

        The ID of the Wallet that is awaiting seed creation.

      • intervalSeconds: number = 0.2

        The interval at which to poll the CDPService, in seconds.

      • timeoutSeconds: number = 20

        The maximum amount of time to wait for the ServerSigner to create a seed, in seconds.

      Returns Promise<void>

      Throws

      if the API request to get a Wallet fails.

      Throws

      if the ServerSigner times out.

      -
    • Returns a newly created Wallet object.

      Parameters

      Returns Promise<Wallet>

      A promise that resolves with the new Wallet object.

      Constructs

      Wallet

      @@ -235,17 +249,17 @@

      Throws

        Throws

        • If the request fails.
        -
    • Fetches a Wallet by its ID. The returned wallet can be immediately used for signing operations if backed by a server signer. +

    • Fetches a Wallet by its ID. The returned wallet can be immediately used for signing operations if backed by a server signer. If the wallet is not backed by a server signer, the wallet's seed will need to be set before it can be used for signing operations.

      Parameters

      • wallet_id: string

        The ID of the Wallet to fetch

      Returns Promise<Wallet>

      The fetched Wallet

      -
    • Imports a Wallet for the given Wallet data.

      Parameters

      Returns Promise<Wallet>

      The imported Wallet.

      Throws

      If the Wallet ID is not provided.

      Throws

      If the seed is not provided.

      Throws

      If the request fails.

      -
    • Returns a new Wallet object. Do not use this method directly. Instead, use one of:

      • Wallet.create (Create a new Wallet),
      • Wallet.import (Import a Wallet with seed),
      • @@ -263,6 +277,6 @@

        Throws

          Throws

          • If the request fails.
          -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/classes/coinbase_webhook.Webhook.html b/docs/classes/coinbase_webhook.Webhook.html index 93f24030..7be2e0cf 100644 --- a/docs/classes/coinbase_webhook.Webhook.html +++ b/docs/classes/coinbase_webhook.Webhook.html @@ -1,10 +1,11 @@ Webhook | @coinbase/coinbase-sdk

    A representation of a Webhook, which provides methods to create, list, update, and delete webhooks that are used to receive notifications of specific events.

    -

    Constructors

    Constructors

    Properties

    model: null | Webhook

    Methods

    Properties

    model: null | Webhook

    Methods

    • Deletes the webhook.

      Returns Promise<void>

      A promise that resolves when the webhook is deleted and its attributes are set to null.

      -
    • Returns the ID of the webhook.

      Returns undefined | string

      The ID of the webhook, or undefined if the model is null.

      -
    • Returns the network ID associated with the webhook.

      Returns undefined | string

      The network ID of the webhook, or undefined if the model is null.

      -
    • Returns the notification URI of the webhook.

      Returns undefined | string

      The URI where notifications are sent, or undefined if the model is null.

      -
    • Returns the signature header of the webhook.

      Returns undefined | string

      The signature header which will be set on the callback requests, or undefined if the model is null.

      -
    • Returns a String representation of the Webhook.

      Returns string

      A String representation of the Webhook.

      -
    • Updates the webhook with a new notification URI.

      Parameters

      • notificationUri: string

        The new URI for webhook notifications.

      Returns Promise<Webhook>

      A promise that resolves to the updated Webhook object.

      -
    • Returns a new Webhook object. Do not use this method directly. Instead, Webhook.create(...)

      Parameters

      • model: Webhook

        The underlying Webhook model object

      Returns Webhook

      A Webhook object.

      Constructs

      Webhook

      -
    • Enumerates the webhooks. The result is an array that contains all webhooks.

      Returns Promise<Webhook[]>

      A promise that resolves to an array of Webhook instances.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/enums/client_api.NetworkIdentifier.html b/docs/enums/client_api.NetworkIdentifier.html index d187b4c3..9e00bb11 100644 --- a/docs/enums/client_api.NetworkIdentifier.html +++ b/docs/enums/client_api.NetworkIdentifier.html @@ -1,5 +1,5 @@ NetworkIdentifier | @coinbase/coinbase-sdk

    The ID of the blockchain network. This is unique across all networks, and takes the form of <blockchain>-<network>.

    -

    Export

    Enumeration Members

    Export

    Enumeration Members

    ArbitrumMainnet: "arbitrum-mainnet"
    BaseMainnet: "base-mainnet"
    BaseSepolia: "base-sepolia"
    EthereumHolesky: "ethereum-holesky"
    EthereumMainnet: "ethereum-mainnet"
    PolygonMainnet: "polygon-mainnet"
    SolanaDevnet: "solana-devnet"
    SolanaMainnet: "solana-mainnet"
    \ No newline at end of file +

    Enumeration Members

    ArbitrumMainnet: "arbitrum-mainnet"
    BaseMainnet: "base-mainnet"
    BaseSepolia: "base-sepolia"
    EthereumHolesky: "ethereum-holesky"
    EthereumMainnet: "ethereum-mainnet"
    PolygonMainnet: "polygon-mainnet"
    SolanaDevnet: "solana-devnet"
    SolanaMainnet: "solana-mainnet"
    \ No newline at end of file diff --git a/docs/enums/client_api.SmartContractType.html b/docs/enums/client_api.SmartContractType.html index 7790c778..3b195136 100644 --- a/docs/enums/client_api.SmartContractType.html +++ b/docs/enums/client_api.SmartContractType.html @@ -1,4 +1,5 @@ SmartContractType | @coinbase/coinbase-sdk

    The type of the smart contract

    -

    Export

    Enumeration Members

    Export

    Enumeration Members

    Enumeration Members

    Erc20: "erc20"
    Erc721: "erc721"
    \ No newline at end of file +

    Enumeration Members

    Erc1155: "erc1155"
    Erc20: "erc20"
    Erc721: "erc721"
    \ No newline at end of file diff --git a/docs/enums/client_api.StakingRewardFormat.html b/docs/enums/client_api.StakingRewardFormat.html index 102aa97a..a0b1a3c8 100644 --- a/docs/enums/client_api.StakingRewardFormat.html +++ b/docs/enums/client_api.StakingRewardFormat.html @@ -1,4 +1,4 @@ StakingRewardFormat | @coinbase/coinbase-sdk

    The format in which the rewards are to be fetched i.e native or in equivalent USD

    -

    Export

    Enumeration Members

    Export

    Enumeration Members

    Enumeration Members

    Native: "native"
    Usd: "usd"
    \ No newline at end of file +

    Enumeration Members

    Native: "native"
    Usd: "usd"
    \ No newline at end of file diff --git a/docs/enums/client_api.TransactionType.html b/docs/enums/client_api.TransactionType.html index 9e9df2df..b1ba741a 100644 --- a/docs/enums/client_api.TransactionType.html +++ b/docs/enums/client_api.TransactionType.html @@ -1,2 +1,2 @@ -TransactionType | @coinbase/coinbase-sdk

    Export

    Enumeration Members

    Enumeration Members

    Transfer: "transfer"
    \ No newline at end of file +TransactionType | @coinbase/coinbase-sdk

    Export

    Enumeration Members

    Enumeration Members

    Transfer: "transfer"
    \ No newline at end of file diff --git a/docs/enums/client_api.ValidatorStatus.html b/docs/enums/client_api.ValidatorStatus.html index 1cc220b2..e71ef7f3 100644 --- a/docs/enums/client_api.ValidatorStatus.html +++ b/docs/enums/client_api.ValidatorStatus.html @@ -1,5 +1,5 @@ ValidatorStatus | @coinbase/coinbase-sdk

    The status of the validator.

    -

    Export

    Enumeration Members

    Export

    Enumeration Members

    Active: "active"
    ActiveSlashed: "active_slashed"
    Deposited: "deposited"
    Exited: "exited"
    ExitedSlashed: "exited_slashed"
    Exiting: "exiting"
    PendingActivation: "pending_activation"
    Provisioned: "provisioned"
    Provisioning: "provisioning"
    Reaped: "reaped"
    Unknown: "unknown"
    WithdrawalAvailable: "withdrawal_available"
    WithdrawalComplete: "withdrawal_complete"
    \ No newline at end of file +

    Enumeration Members

    Active: "active"
    ActiveSlashed: "active_slashed"
    Deposited: "deposited"
    Exited: "exited"
    ExitedSlashed: "exited_slashed"
    Exiting: "exiting"
    PendingActivation: "pending_activation"
    Provisioned: "provisioned"
    Provisioning: "provisioning"
    Reaped: "reaped"
    Unknown: "unknown"
    WithdrawalAvailable: "withdrawal_available"
    WithdrawalComplete: "withdrawal_complete"
    \ No newline at end of file diff --git a/docs/enums/client_api.WebhookEventType.html b/docs/enums/client_api.WebhookEventType.html index c914a6d1..e1c0c233 100644 --- a/docs/enums/client_api.WebhookEventType.html +++ b/docs/enums/client_api.WebhookEventType.html @@ -1,5 +1,5 @@ -WebhookEventType | @coinbase/coinbase-sdk

    Export

    Enumeration Members

    Erc20Transfer +WebhookEventType | @coinbase/coinbase-sdk

    Export

    Enumeration Members

    Erc20Transfer: "erc20_transfer"
    Erc721Transfer: "erc721_transfer"
    Unspecified: "unspecified"
    WalletActivity: "wallet_activity"
    \ No newline at end of file +

    Enumeration Members

    Erc20Transfer: "erc20_transfer"
    Erc721Transfer: "erc721_transfer"
    Unspecified: "unspecified"
    WalletActivity: "wallet_activity"
    \ No newline at end of file diff --git a/docs/enums/coinbase_types.PayloadSignatureStatus.html b/docs/enums/coinbase_types.PayloadSignatureStatus.html index 54536528..ef67b7c1 100644 --- a/docs/enums/coinbase_types.PayloadSignatureStatus.html +++ b/docs/enums/coinbase_types.PayloadSignatureStatus.html @@ -1,5 +1,5 @@ PayloadSignatureStatus | @coinbase/coinbase-sdk

    Payload Signature status type definition.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    FAILED: "failed"
    PENDING: "pending"
    SIGNED: "signed"
    \ No newline at end of file +

    Enumeration Members

    FAILED: "failed"
    PENDING: "pending"
    SIGNED: "signed"
    \ No newline at end of file diff --git a/docs/enums/coinbase_types.ServerSignerStatus.html b/docs/enums/coinbase_types.ServerSignerStatus.html index dec32e2f..6456351c 100644 --- a/docs/enums/coinbase_types.ServerSignerStatus.html +++ b/docs/enums/coinbase_types.ServerSignerStatus.html @@ -1,4 +1,4 @@ ServerSignerStatus | @coinbase/coinbase-sdk

    ServerSigner status type definition.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    ACTIVE: "active_seed"
    PENDING: "pending_seed_creation"
    \ No newline at end of file +

    Enumeration Members

    ACTIVE: "active_seed"
    PENDING: "pending_seed_creation"
    \ No newline at end of file diff --git a/docs/enums/coinbase_types.SmartContractType.html b/docs/enums/coinbase_types.SmartContractType.html index 1820f232..69e972d3 100644 --- a/docs/enums/coinbase_types.SmartContractType.html +++ b/docs/enums/coinbase_types.SmartContractType.html @@ -1,4 +1,5 @@ SmartContractType | @coinbase/coinbase-sdk

    Smart Contract Type

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    ERC20: "erc20"
    ERC721: "erc721"
    \ No newline at end of file +

    Enumeration Members

    ERC1155: "erc1155"
    ERC20: "erc20"
    ERC721: "erc721"
    \ No newline at end of file diff --git a/docs/enums/coinbase_types.SponsoredSendStatus.html b/docs/enums/coinbase_types.SponsoredSendStatus.html index 192a44a2..18093bfa 100644 --- a/docs/enums/coinbase_types.SponsoredSendStatus.html +++ b/docs/enums/coinbase_types.SponsoredSendStatus.html @@ -1,7 +1,7 @@ SponsoredSendStatus | @coinbase/coinbase-sdk

    Sponsored Send status type definition.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    COMPLETE: "complete"
    FAILED: "failed"
    PENDING: "pending"
    SIGNED: "signed"
    SUBMITTED: "submitted"
    \ No newline at end of file +

    Enumeration Members

    COMPLETE: "complete"
    FAILED: "failed"
    PENDING: "pending"
    SIGNED: "signed"
    SUBMITTED: "submitted"
    \ No newline at end of file diff --git a/docs/enums/coinbase_types.StakeOptionsMode.html b/docs/enums/coinbase_types.StakeOptionsMode.html index ecd93c81..e0af0672 100644 --- a/docs/enums/coinbase_types.StakeOptionsMode.html +++ b/docs/enums/coinbase_types.StakeOptionsMode.html @@ -1,8 +1,8 @@ StakeOptionsMode | @coinbase/coinbase-sdk

    StakeOptionsMode type definition.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    DEFAULT: "default"

    Defaults to the mode specific to the asset.

    -
    NATIVE: "native"

    Native represents Native Ethereum Staking mode.

    -
    PARTIAL: "partial"

    Partial represents Partial Ethereum Staking mode.

    -
    \ No newline at end of file +
    NATIVE: "native"

    Native represents Native Ethereum Staking mode.

    +
    PARTIAL: "partial"

    Partial represents Partial Ethereum Staking mode.

    +
    \ No newline at end of file diff --git a/docs/enums/coinbase_types.StakingRewardFormat.html b/docs/enums/coinbase_types.StakingRewardFormat.html index a08cafe0..1dca7b96 100644 --- a/docs/enums/coinbase_types.StakingRewardFormat.html +++ b/docs/enums/coinbase_types.StakingRewardFormat.html @@ -1,5 +1,5 @@ StakingRewardFormat | @coinbase/coinbase-sdk

    Staking reward format type definition. Represents the format in which staking rewards can be queried.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    NATIVE: "native"
    USD: "usd"
    \ No newline at end of file +

    Enumeration Members

    NATIVE: "native"
    USD: "usd"
    \ No newline at end of file diff --git a/docs/enums/coinbase_types.TransactionStatus.html b/docs/enums/coinbase_types.TransactionStatus.html index 6a86a013..fea57419 100644 --- a/docs/enums/coinbase_types.TransactionStatus.html +++ b/docs/enums/coinbase_types.TransactionStatus.html @@ -1,6 +1,6 @@ TransactionStatus | @coinbase/coinbase-sdk

    Transaction status type definition.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    BROADCAST: "broadcast"
    COMPLETE: "complete"
    FAILED: "failed"
    PENDING: "pending"
    \ No newline at end of file +

    Enumeration Members

    BROADCAST: "broadcast"
    COMPLETE: "complete"
    FAILED: "failed"
    PENDING: "pending"
    \ No newline at end of file diff --git a/docs/enums/coinbase_types.TransferStatus.html b/docs/enums/coinbase_types.TransferStatus.html index 1b48ec62..0524e91e 100644 --- a/docs/enums/coinbase_types.TransferStatus.html +++ b/docs/enums/coinbase_types.TransferStatus.html @@ -1,6 +1,6 @@ TransferStatus | @coinbase/coinbase-sdk

    Transfer status type definition.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    BROADCAST: "broadcast"
    COMPLETE: "complete"
    FAILED: "failed"
    PENDING: "pending"
    \ No newline at end of file +

    Enumeration Members

    BROADCAST: "broadcast"
    COMPLETE: "complete"
    FAILED: "failed"
    PENDING: "pending"
    \ No newline at end of file diff --git a/docs/enums/coinbase_types.ValidatorStatus.html b/docs/enums/coinbase_types.ValidatorStatus.html index b09ca78a..39c6644a 100644 --- a/docs/enums/coinbase_types.ValidatorStatus.html +++ b/docs/enums/coinbase_types.ValidatorStatus.html @@ -1,6 +1,6 @@ ValidatorStatus | @coinbase/coinbase-sdk

    Validator status type definition. Represents the various states a validator can be in.

    -

    Enumeration Members

    Enumeration Members

    ACTIVE: "active"
    ACTIVE_SLASHED: "active_slashed"
    DEPOSITED: "deposited"
    EXITED: "exited"
    EXITED_SLASHED: "exited_slashed"
    EXITING: "exiting"
    PENDING_ACTIVATION: "pending_activation"
    PROVISIONED: "provisioned"
    PROVISIONING: "provisioning"
    REAPED: "reaped"
    UNKNOWN: "unknown"
    WITHDRAWAL_AVAILABLE: "withdrawal_available"
    WITHDRAWAL_COMPLETE: "withdrawal_complete"
    \ No newline at end of file +

    Enumeration Members

    ACTIVE: "active"
    ACTIVE_SLASHED: "active_slashed"
    DEPOSITED: "deposited"
    EXITED: "exited"
    EXITED_SLASHED: "exited_slashed"
    EXITING: "exiting"
    PENDING_ACTIVATION: "pending_activation"
    PROVISIONED: "provisioned"
    PROVISIONING: "provisioning"
    REAPED: "reaped"
    UNKNOWN: "unknown"
    WITHDRAWAL_AVAILABLE: "withdrawal_available"
    WITHDRAWAL_COMPLETE: "withdrawal_complete"
    \ No newline at end of file diff --git a/docs/functions/client_api.AddressesApiAxiosParamCreator.html b/docs/functions/client_api.AddressesApiAxiosParamCreator.html index 863b5f40..40c36d93 100644 --- a/docs/functions/client_api.AddressesApiAxiosParamCreator.html +++ b/docs/functions/client_api.AddressesApiAxiosParamCreator.html @@ -50,4 +50,4 @@

    Throws

    • addressId: string

      The onchain address of the address that is being fetched.

    • Optional assetId: string

      The ID of the asset to transfer from the faucet.

    • Optional options: RawAxiosRequestConfig = {}

      Override http request option.

      -

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.AddressesApiFactory.html b/docs/functions/client_api.AddressesApiFactory.html index 7d599e19..aa284fef 100644 --- a/docs/functions/client_api.AddressesApiFactory.html +++ b/docs/functions/client_api.AddressesApiFactory.html @@ -3,51 +3,51 @@

    Parameters

    • walletId: string

      The ID of the wallet to create the address in.

    • Optional createAddressRequest: CreateAddressRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns AxiosPromise<Address>

    Summary

    Create a new address

    -

    Throws

  • createPayloadSignature:function
    • Create a new payload signature with an address.

      +

      Throws

  • createPayloadSignature:function
    • Create a new payload signature with an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address to sign the payload with.

      • Optional createPayloadSignatureRequest: CreatePayloadSignatureRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<PayloadSignature>

      Summary

      Create a new payload signature.

      -

      Throws

  • getAddress:function
  • getAddress:function
    • Get address

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Address>

      Summary

      Get address by onchain address

      -

      Throws

  • getAddressBalance:function
  • getAddressBalance:function
    • Get address balance

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balance for

      • addressId: string

        The onchain address of the address that is being fetched.

      • assetId: string

        The symbol of the asset to fetch the balance for

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Balance>

      Summary

      Get address balance for asset

      -

      Throws

  • getPayloadSignature:function
  • getPayloadSignature:function
    • Get payload signature.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that signed the payload.

      • payloadSignatureId: string

        The ID of the payload signature to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<PayloadSignature>

      Summary

      Get payload signature.

      -

      Throws

  • listAddressBalances:function
  • listAddressBalances:function
    • Get address balances

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balances for

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressBalanceList>

      Summary

      Get all balances for address

      -

      Throws

  • listAddresses:function
  • listAddresses:function
    • List addresses in the wallet.

      Parameters

      • walletId: string

        The ID of the wallet whose addresses to fetch

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressList>

      Summary

      List addresses in a wallet.

      -

      Throws

  • listPayloadSignatures:function
  • listPayloadSignatures:function
    • List payload signatures for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address whose payload signatures to fetch.

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<PayloadSignatureList>

      Summary

      List payload signatures for an address.

      -

      Throws

  • requestFaucetFunds:function
  • requestFaucetFunds:function
    • Request faucet funds to be sent to onchain address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional assetId: string

        The ID of the asset to transfer from the faucet.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<FaucetTransaction>

      Summary

      Request faucet funds for onchain address.

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.AddressesApiFp.html b/docs/functions/client_api.AddressesApiFp.html index 67f2e528..efd44b7e 100644 --- a/docs/functions/client_api.AddressesApiFp.html +++ b/docs/functions/client_api.AddressesApiFp.html @@ -3,51 +3,51 @@

    Parameters

    • walletId: string

      The ID of the wallet to create the address in.

    • Optional createAddressRequest: CreateAddressRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<((axios?, basePath?) => AxiosPromise<Address>)>

    Summary

    Create a new address

    -

    Throws

  • createPayloadSignature:function
    • Create a new payload signature with an address.

      +

      Throws

  • createPayloadSignature:function
    • Create a new payload signature with an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address to sign the payload with.

      • Optional createPayloadSignatureRequest: CreatePayloadSignatureRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<PayloadSignature>)>

      Summary

      Create a new payload signature.

      -

      Throws

  • getAddress:function
    • Get address

      +

      Throws

  • getAddress:function
    • Get address

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<Address>)>

      Summary

      Get address by onchain address

      -

      Throws

  • getAddressBalance:function
    • Get address balance

      +

      Throws

  • getAddressBalance:function
    • Get address balance

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balance for

      • addressId: string

        The onchain address of the address that is being fetched.

      • assetId: string

        The symbol of the asset to fetch the balance for

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<Balance>)>

      Summary

      Get address balance for asset

      -

      Throws

  • getPayloadSignature:function
    • Get payload signature.

      +

      Throws

  • getPayloadSignature:function
    • Get payload signature.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that signed the payload.

      • payloadSignatureId: string

        The ID of the payload signature to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<PayloadSignature>)>

      Summary

      Get payload signature.

      -

      Throws

  • listAddressBalances:function
  • listAddressBalances:function
    • Get address balances

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balances for

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<AddressBalanceList>)>

      Summary

      Get all balances for address

      -

      Throws

  • listAddresses:function
    • List addresses in the wallet.

      +

      Throws

  • listAddresses:function
    • List addresses in the wallet.

      Parameters

      • walletId: string

        The ID of the wallet whose addresses to fetch

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<AddressList>)>

      Summary

      List addresses in a wallet.

      -

      Throws

  • listPayloadSignatures:function
    • List payload signatures for an address.

      +

      Throws

  • listPayloadSignatures:function
    • List payload signatures for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address whose payload signatures to fetch.

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<PayloadSignatureList>)>

      Summary

      List payload signatures for an address.

      -

      Throws

  • requestFaucetFunds:function
    • Request faucet funds to be sent to onchain address.

      +

      Throws

  • requestFaucetFunds:function
    • Request faucet funds to be sent to onchain address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional assetId: string

        The ID of the asset to transfer from the faucet.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<FaucetTransaction>)>

      Summary

      Request faucet funds for onchain address.

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.AssetsApiAxiosParamCreator.html b/docs/functions/client_api.AssetsApiAxiosParamCreator.html index 5c2916c9..94d8c92f 100644 --- a/docs/functions/client_api.AssetsApiAxiosParamCreator.html +++ b/docs/functions/client_api.AssetsApiAxiosParamCreator.html @@ -4,4 +4,4 @@

    Throws

      • (networkId, assetId, options?): Promise<RequestArgs>
      • Parameters

        • networkId: string

          The ID of the blockchain network

        • assetId: string

          The ID of the asset to fetch. This could be a symbol or an ERC20 contract address.

        • Optional options: RawAxiosRequestConfig = {}

          Override http request option.

          -

        Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.AssetsApiFactory.html b/docs/functions/client_api.AssetsApiFactory.html index 5d37ec18..bcff7041 100644 --- a/docs/functions/client_api.AssetsApiFactory.html +++ b/docs/functions/client_api.AssetsApiFactory.html @@ -4,4 +4,4 @@
  • assetId: string

    The ID of the asset to fetch. This could be a symbol or an ERC20 contract address.

  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Asset>

    Summary

    Get the asset for the specified asset ID.

    -

    Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.AssetsApiFp.html b/docs/functions/client_api.AssetsApiFp.html index dc6bfeb4..a8a3a14c 100644 --- a/docs/functions/client_api.AssetsApiFp.html +++ b/docs/functions/client_api.AssetsApiFp.html @@ -4,4 +4,4 @@
  • assetId: string

    The ID of the asset to fetch. This could be a symbol or an ERC20 contract address.

  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns Promise<((axios?, basePath?) => AxiosPromise<Asset>)>

    Summary

    Get the asset for the specified asset ID.

    -

    Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.BalanceHistoryApiAxiosParamCreator.html b/docs/functions/client_api.BalanceHistoryApiAxiosParamCreator.html index 96dc79a0..35666445 100644 --- a/docs/functions/client_api.BalanceHistoryApiAxiosParamCreator.html +++ b/docs/functions/client_api.BalanceHistoryApiAxiosParamCreator.html @@ -7,4 +7,4 @@

    Throws

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig = {}

      Override http request option.

      -

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.BalanceHistoryApiFactory.html b/docs/functions/client_api.BalanceHistoryApiFactory.html index 2f260a4f..e749983e 100644 --- a/docs/functions/client_api.BalanceHistoryApiFactory.html +++ b/docs/functions/client_api.BalanceHistoryApiFactory.html @@ -7,4 +7,4 @@
  • Optional page: string

    A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<AddressHistoricalBalanceList>

    Summary

    Get address balance history for asset

    -

    Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.BalanceHistoryApiFp.html b/docs/functions/client_api.BalanceHistoryApiFp.html index ef78164f..e6cdceb8 100644 --- a/docs/functions/client_api.BalanceHistoryApiFp.html +++ b/docs/functions/client_api.BalanceHistoryApiFp.html @@ -7,4 +7,4 @@
  • Optional page: string

    A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns Promise<((axios?, basePath?) => AxiosPromise<AddressHistoricalBalanceList>)>

    Summary

    Get address balance history for asset

    -

    Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ContractEventsApiAxiosParamCreator.html b/docs/functions/client_api.ContractEventsApiAxiosParamCreator.html index 21b4873a..b8ea313d 100644 --- a/docs/functions/client_api.ContractEventsApiAxiosParamCreator.html +++ b/docs/functions/client_api.ContractEventsApiAxiosParamCreator.html @@ -10,4 +10,4 @@

    Throws

    • toBlockHeight: number

      Upper bound of the block range to query (inclusive)

    • Optional nextPage: string

      Pagination token for retrieving the next set of results

    • Optional options: RawAxiosRequestConfig = {}

      Override http request option.

      -

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ContractEventsApiFactory.html b/docs/functions/client_api.ContractEventsApiFactory.html index e0260497..74e5d8d9 100644 --- a/docs/functions/client_api.ContractEventsApiFactory.html +++ b/docs/functions/client_api.ContractEventsApiFactory.html @@ -10,4 +10,4 @@
  • Optional nextPage: string

    Pagination token for retrieving the next set of results

  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<ContractEventList>

    Summary

    List contract events

    -

    Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ContractEventsApiFp.html b/docs/functions/client_api.ContractEventsApiFp.html index b0b6b9fb..90a4e2a1 100644 --- a/docs/functions/client_api.ContractEventsApiFp.html +++ b/docs/functions/client_api.ContractEventsApiFp.html @@ -10,4 +10,4 @@
  • Optional nextPage: string

    Pagination token for retrieving the next set of results

  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns Promise<((axios?, basePath?) => AxiosPromise<ContractEventList>)>

    Summary

    List contract events

    -

    Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ContractInvocationsApiAxiosParamCreator.html b/docs/functions/client_api.ContractInvocationsApiAxiosParamCreator.html index 927bc476..cb453d85 100644 --- a/docs/functions/client_api.ContractInvocationsApiAxiosParamCreator.html +++ b/docs/functions/client_api.ContractInvocationsApiAxiosParamCreator.html @@ -23,4 +23,4 @@

    Throws

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig = {}

      Override http request option.

      -

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ContractInvocationsApiFactory.html b/docs/functions/client_api.ContractInvocationsApiFactory.html index 44d25f7e..fe239c3c 100644 --- a/docs/functions/client_api.ContractInvocationsApiFactory.html +++ b/docs/functions/client_api.ContractInvocationsApiFactory.html @@ -5,22 +5,22 @@
  • contractInvocationId: string

    The ID of the contract invocation to broadcast.

  • broadcastContractInvocationRequest: BroadcastContractInvocationRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<ContractInvocation>

    Summary

    Broadcast a contract invocation.

    -

    Throws

  • createContractInvocation:function
  • createContractInvocation:function
    • Create a new contract invocation.

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to.

      • addressId: string

        The ID of the address to invoke the contract from.

      • createContractInvocationRequest: CreateContractInvocationRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ContractInvocation>

      Summary

      Create a new contract invocation for an address.

      -

      Throws

  • getContractInvocation:function
  • getContractInvocation:function
    • Get a contract invocation by ID.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the contract invocation belongs to.

      • contractInvocationId: string

        The ID of the contract invocation to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ContractInvocation>

      Summary

      Get a contract invocation by ID.

      -

      Throws

  • listContractInvocations:function
  • listContractInvocations:function
    • List contract invocations for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to list contract invocations for.

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ContractInvocationList>

      Summary

      List contract invocations for an address.

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ContractInvocationsApiFp.html b/docs/functions/client_api.ContractInvocationsApiFp.html index 0f301458..0af998dc 100644 --- a/docs/functions/client_api.ContractInvocationsApiFp.html +++ b/docs/functions/client_api.ContractInvocationsApiFp.html @@ -5,22 +5,22 @@
  • contractInvocationId: string

    The ID of the contract invocation to broadcast.

  • broadcastContractInvocationRequest: BroadcastContractInvocationRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns Promise<((axios?, basePath?) => AxiosPromise<ContractInvocation>)>

    Summary

    Broadcast a contract invocation.

    -

    Throws

  • createContractInvocation:function
    • Create a new contract invocation.

      +

      Throws

  • createContractInvocation:function
    • Create a new contract invocation.

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to.

      • addressId: string

        The ID of the address to invoke the contract from.

      • createContractInvocationRequest: CreateContractInvocationRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<ContractInvocation>)>

      Summary

      Create a new contract invocation for an address.

      -

      Throws

  • getContractInvocation:function
    • Get a contract invocation by ID.

      +

      Throws

  • getContractInvocation:function
    • Get a contract invocation by ID.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the contract invocation belongs to.

      • contractInvocationId: string

        The ID of the contract invocation to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<ContractInvocation>)>

      Summary

      Get a contract invocation by ID.

      -

      Throws

  • listContractInvocations:function
    • List contract invocations for an address.

      +

      Throws

  • listContractInvocations:function
    • List contract invocations for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to list contract invocations for.

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<ContractInvocationList>)>

      Summary

      List contract invocations for an address.

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ExternalAddressesApiAxiosParamCreator.html b/docs/functions/client_api.ExternalAddressesApiAxiosParamCreator.html index a718c623..04af36d9 100644 --- a/docs/functions/client_api.ExternalAddressesApiAxiosParamCreator.html +++ b/docs/functions/client_api.ExternalAddressesApiAxiosParamCreator.html @@ -1,27 +1,20 @@ -ExternalAddressesApiAxiosParamCreator | @coinbase/coinbase-sdk

    Function ExternalAddressesApiAxiosParamCreator

    • ExternalAddressesApi - axios parameter creator

      -

      Parameters

      Returns {
          getExternalAddressBalance: ((networkId, addressId, assetId, options?) => Promise<RequestArgs>);
          listAddressTransactions: ((networkId, addressId, limit?, page?, options?) => Promise<RequestArgs>);
          listExternalAddressBalances: ((networkId, addressId, page?, options?) => Promise<RequestArgs>);
          requestExternalFaucetFunds: ((networkId, addressId, assetId?, options?) => Promise<RequestArgs>);
      }

      • getExternalAddressBalance: ((networkId, addressId, assetId, options?) => Promise<RequestArgs>)

        Get the balance of an asset in an external address

        +ExternalAddressesApiAxiosParamCreator | @coinbase/coinbase-sdk

        Function ExternalAddressesApiAxiosParamCreator

        • ExternalAddressesApi - axios parameter creator

          +

          Parameters

          Returns {
              getExternalAddressBalance: ((networkId, addressId, assetId, options?) => Promise<RequestArgs>);
              listExternalAddressBalances: ((networkId, addressId, page?, options?) => Promise<RequestArgs>);
              requestExternalFaucetFunds: ((networkId, addressId, assetId?, options?) => Promise<RequestArgs>);
          }

          • getExternalAddressBalance: ((networkId, addressId, assetId, options?) => Promise<RequestArgs>)

            Get the balance of an asset in an external address

            Summary

            Get the balance of an asset in an external address

            Throws

              • (networkId, addressId, assetId, options?): Promise<RequestArgs>
              • Parameters

                • networkId: string

                  The ID of the blockchain network

                • addressId: string

                  The ID of the address to fetch the balance for

                • assetId: string

                  The ID of the asset to fetch the balance for

                • Optional options: RawAxiosRequestConfig = {}

                  Override http request option.

                  -

                Returns Promise<RequestArgs>

          • listAddressTransactions: ((networkId, addressId, limit?, page?, options?) => Promise<RequestArgs>)

            List all transactions that interact with the address.

            -

            Summary

            List transactions for an address.

            -

            Throws

              • (networkId, addressId, limit?, page?, options?): Promise<RequestArgs>
              • Parameters

                • networkId: string

                  The ID of the blockchain network

                  -
                • addressId: string

                  The ID of the address to fetch the transactions for.

                  -
                • Optional limit: number

                  A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

                  -
                • Optional page: string

                  A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

                  -
                • Optional options: RawAxiosRequestConfig = {}

                  Override http request option.

                Returns Promise<RequestArgs>

          • listExternalAddressBalances: ((networkId, addressId, page?, options?) => Promise<RequestArgs>)

            List all of the balances of an external address

            Summary

            Get the balances of an external address

            -

            Throws

              • (networkId, addressId, page?, options?): Promise<RequestArgs>
              • Parameters

                • networkId: string

                  The ID of the blockchain network

                  +

                  Throws

                    • (networkId, addressId, page?, options?): Promise<RequestArgs>
                    • Parameters

                      • networkId: string

                        The ID of the blockchain network

                      • addressId: string

                        The ID of the address to fetch the balance for

                      • Optional page: string

                        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

                      • Optional options: RawAxiosRequestConfig = {}

                        Override http request option.

                      Returns Promise<RequestArgs>

                • requestExternalFaucetFunds: ((networkId, addressId, assetId?, options?) => Promise<RequestArgs>)

                  Request faucet funds to be sent to external address.

                  Summary

                  Request faucet funds for external address.

                  -

                  Throws

                    • (networkId, addressId, assetId?, options?): Promise<RequestArgs>
                    • Parameters

                      • networkId: string

                        The ID of the wallet the address belongs to.

                        +

                        Throws

                          • (networkId, addressId, assetId?, options?): Promise<RequestArgs>
                          • Parameters

                            • networkId: string

                              The ID of the wallet the address belongs to.

                            • addressId: string

                              The onchain address of the address that is being fetched.

                            • Optional assetId: string

                              The ID of the asset to transfer from the faucet.

                            • Optional options: RawAxiosRequestConfig = {}

                              Override http request option.

                              -

                            Returns Promise<RequestArgs>

                      Export

        \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ExternalAddressesApiFactory.html b/docs/functions/client_api.ExternalAddressesApiFactory.html index d7b8cff6..807a0e0c 100644 --- a/docs/functions/client_api.ExternalAddressesApiFactory.html +++ b/docs/functions/client_api.ExternalAddressesApiFactory.html @@ -1,27 +1,20 @@ -ExternalAddressesApiFactory | @coinbase/coinbase-sdk
    • ExternalAddressesApi - factory interface

      -

      Parameters

      • Optional configuration: Configuration
      • Optional basePath: string
      • Optional axios: AxiosInstance

      Returns {
          getExternalAddressBalance(networkId, addressId, assetId, options?): AxiosPromise<Balance>;
          listAddressTransactions(networkId, addressId, limit?, page?, options?): AxiosPromise<AddressTransactionList>;
          listExternalAddressBalances(networkId, addressId, page?, options?): AxiosPromise<AddressBalanceList>;
          requestExternalFaucetFunds(networkId, addressId, assetId?, options?): AxiosPromise<FaucetTransaction>;
      }

      • getExternalAddressBalance:function
        • Get the balance of an asset in an external address

          +ExternalAddressesApiFactory | @coinbase/coinbase-sdk
          • ExternalAddressesApi - factory interface

            +

            Parameters

            • Optional configuration: Configuration
            • Optional basePath: string
            • Optional axios: AxiosInstance

            Returns {
                getExternalAddressBalance(networkId, addressId, assetId, options?): AxiosPromise<Balance>;
                listExternalAddressBalances(networkId, addressId, page?, options?): AxiosPromise<AddressBalanceList>;
                requestExternalFaucetFunds(networkId, addressId, assetId?, options?): AxiosPromise<FaucetTransaction>;
            }

            • getExternalAddressBalance:function
              • Get the balance of an asset in an external address

                Parameters

                • networkId: string

                  The ID of the blockchain network

                • addressId: string

                  The ID of the address to fetch the balance for

                • assetId: string

                  The ID of the asset to fetch the balance for

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns AxiosPromise<Balance>

                Summary

                Get the balance of an asset in an external address

                -

                Throws

            • listAddressTransactions:function
              • List all transactions that interact with the address.

                -

                Parameters

                • networkId: string

                  The ID of the blockchain network

                  -
                • addressId: string

                  The ID of the address to fetch the transactions for.

                  -
                • Optional limit: number

                  A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

                  -
                • Optional page: string

                  A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

                  -
                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                  -

                Returns AxiosPromise<AddressTransactionList>

                Summary

                List transactions for an address.

                -

                Throws

            • listExternalAddressBalances:function
            • listExternalAddressBalances:function
              • List all of the balances of an external address

                Parameters

                • networkId: string

                  The ID of the blockchain network

                • addressId: string

                  The ID of the address to fetch the balance for

                • Optional page: string

                  A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns AxiosPromise<AddressBalanceList>

                Summary

                Get the balances of an external address

                -

                Throws

            • requestExternalFaucetFunds:function
            • requestExternalFaucetFunds:function
              • Request faucet funds to be sent to external address.

                Parameters

                • networkId: string

                  The ID of the wallet the address belongs to.

                • addressId: string

                  The onchain address of the address that is being fetched.

                • Optional assetId: string

                  The ID of the asset to transfer from the faucet.

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns AxiosPromise<FaucetTransaction>

                Summary

                Request faucet funds for external address.

                -

                Throws

            Export

          \ No newline at end of file +

          Throws

      Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ExternalAddressesApiFp.html b/docs/functions/client_api.ExternalAddressesApiFp.html index 27ec6461..d867b239 100644 --- a/docs/functions/client_api.ExternalAddressesApiFp.html +++ b/docs/functions/client_api.ExternalAddressesApiFp.html @@ -1,27 +1,20 @@ -ExternalAddressesApiFp | @coinbase/coinbase-sdk
    • ExternalAddressesApi - functional programming interface

      -

      Parameters

      Returns {
          getExternalAddressBalance(networkId, addressId, assetId, options?): Promise<((axios?, basePath?) => AxiosPromise<Balance>)>;
          listAddressTransactions(networkId, addressId, limit?, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<AddressTransactionList>)>;
          listExternalAddressBalances(networkId, addressId, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<AddressBalanceList>)>;
          requestExternalFaucetFunds(networkId, addressId, assetId?, options?): Promise<((axios?, basePath?) => AxiosPromise<FaucetTransaction>)>;
      }

      • getExternalAddressBalance:function
        • Get the balance of an asset in an external address

          +ExternalAddressesApiFp | @coinbase/coinbase-sdk
          • ExternalAddressesApi - functional programming interface

            +

            Parameters

            Returns {
                getExternalAddressBalance(networkId, addressId, assetId, options?): Promise<((axios?, basePath?) => AxiosPromise<Balance>)>;
                listExternalAddressBalances(networkId, addressId, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<AddressBalanceList>)>;
                requestExternalFaucetFunds(networkId, addressId, assetId?, options?): Promise<((axios?, basePath?) => AxiosPromise<FaucetTransaction>)>;
            }

            • getExternalAddressBalance:function
              • Get the balance of an asset in an external address

                Parameters

                • networkId: string

                  The ID of the blockchain network

                • addressId: string

                  The ID of the address to fetch the balance for

                • assetId: string

                  The ID of the asset to fetch the balance for

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns Promise<((axios?, basePath?) => AxiosPromise<Balance>)>

                Summary

                Get the balance of an asset in an external address

                -

                Throws

            • listAddressTransactions:function
              • List all transactions that interact with the address.

                -

                Parameters

                • networkId: string

                  The ID of the blockchain network

                  -
                • addressId: string

                  The ID of the address to fetch the transactions for.

                  -
                • Optional limit: number

                  A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

                  -
                • Optional page: string

                  A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

                  -
                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                  -

                Returns Promise<((axios?, basePath?) => AxiosPromise<AddressTransactionList>)>

                Summary

                List transactions for an address.

                -

                Throws

            • listExternalAddressBalances:function
              • List all of the balances of an external address

                +

                Throws

            • listExternalAddressBalances:function
              • List all of the balances of an external address

                Parameters

                • networkId: string

                  The ID of the blockchain network

                • addressId: string

                  The ID of the address to fetch the balance for

                • Optional page: string

                  A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns Promise<((axios?, basePath?) => AxiosPromise<AddressBalanceList>)>

                Summary

                Get the balances of an external address

                -

                Throws

            • requestExternalFaucetFunds:function
              • Request faucet funds to be sent to external address.

                +

                Throws

            • requestExternalFaucetFunds:function
              • Request faucet funds to be sent to external address.

                Parameters

                • networkId: string

                  The ID of the wallet the address belongs to.

                • addressId: string

                  The onchain address of the address that is being fetched.

                • Optional assetId: string

                  The ID of the asset to transfer from the faucet.

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns Promise<((axios?, basePath?) => AxiosPromise<FaucetTransaction>)>

                Summary

                Request faucet funds for external address.

                -

                Throws

            Export

          \ No newline at end of file +

          Throws

      Export

    \ No newline at end of file diff --git a/docs/functions/client_api.NetworksApiAxiosParamCreator.html b/docs/functions/client_api.NetworksApiAxiosParamCreator.html index b54bb6c7..54095410 100644 --- a/docs/functions/client_api.NetworksApiAxiosParamCreator.html +++ b/docs/functions/client_api.NetworksApiAxiosParamCreator.html @@ -3,4 +3,4 @@

    Summary

    Get network by ID

    Throws

      • (networkId, options?): Promise<RequestArgs>
      • Parameters

        • networkId: string

          The ID of the network to fetch.

        • Optional options: RawAxiosRequestConfig = {}

          Override http request option.

          -

        Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.NetworksApiFactory.html b/docs/functions/client_api.NetworksApiFactory.html index 4b0ab627..18b66651 100644 --- a/docs/functions/client_api.NetworksApiFactory.html +++ b/docs/functions/client_api.NetworksApiFactory.html @@ -3,4 +3,4 @@

    Parameters

    • networkId: string

      The ID of the network to fetch.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns AxiosPromise<Network>

    Summary

    Get network by ID

    -

    Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.NetworksApiFp.html b/docs/functions/client_api.NetworksApiFp.html index 82512116..953c2464 100644 --- a/docs/functions/client_api.NetworksApiFp.html +++ b/docs/functions/client_api.NetworksApiFp.html @@ -3,4 +3,4 @@

    Parameters

    • networkId: string

      The ID of the network to fetch.

    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns Promise<((axios?, basePath?) => AxiosPromise<Network>)>

    Summary

    Get network by ID

    -

    Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ServerSignersApiAxiosParamCreator.html b/docs/functions/client_api.ServerSignersApiAxiosParamCreator.html index b92eaf48..c091b0a6 100644 --- a/docs/functions/client_api.ServerSignersApiAxiosParamCreator.html +++ b/docs/functions/client_api.ServerSignersApiAxiosParamCreator.html @@ -8,7 +8,7 @@

    Throws

    • Optional options: RawAxiosRequestConfig = {}

      Override http request option.

    Returns Promise<RequestArgs>

  • listServerSignerEvents: ((serverSignerId, limit?, page?, options?) => Promise<RequestArgs>)

    List events for a server signer

    Summary

    List events for a server signer

    -

    Throws

      • (serverSignerId, limit?, page?, options?): Promise<RequestArgs>
      • Parameters

        • serverSignerId: string

          The ID of the server signer to fetch events for

          +

          Deprecated

          Throws

            • (serverSignerId, limit?, page?, options?): Promise<RequestArgs>
            • Parameters

              • serverSignerId: string

                The ID of the server signer to fetch events for

              • Optional limit: number

                A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

              • Optional page: string

                A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

              • Optional options: RawAxiosRequestConfig = {}

                Override http request option.

                @@ -25,4 +25,4 @@

                Throws

                • Summary

                  Submit the result of a server signer event

                  Throws

                • (serverSignerId, signatureCreationEventResult?, options?): Promise<RequestArgs>
                • Parameters

                  • serverSignerId: string

                    The ID of the server signer to submit the event result for

                  • Optional signatureCreationEventResult: SignatureCreationEventResult
                  • Optional options: RawAxiosRequestConfig = {}

                    Override http request option.

                    -

                  Returns Promise<RequestArgs>

            Export

        \ No newline at end of file +

      Returns Promise<RequestArgs>

  • Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ServerSignersApiFactory.html b/docs/functions/client_api.ServerSignersApiFactory.html index a3c19afc..17445a6e 100644 --- a/docs/functions/client_api.ServerSignersApiFactory.html +++ b/docs/functions/client_api.ServerSignersApiFactory.html @@ -2,27 +2,27 @@

    Parameters

    • Optional configuration: Configuration
    • Optional basePath: string
    • Optional axios: AxiosInstance

    Returns {
        createServerSigner(createServerSignerRequest?, options?): AxiosPromise<ServerSigner>;
        getServerSigner(serverSignerId, options?): AxiosPromise<ServerSigner>;
        listServerSignerEvents(serverSignerId, limit?, page?, options?): AxiosPromise<ServerSignerEventList>;
        listServerSigners(limit?, page?, options?): AxiosPromise<ServerSignerList>;
        submitServerSignerSeedEventResult(serverSignerId, seedCreationEventResult?, options?): AxiosPromise<SeedCreationEventResult>;
        submitServerSignerSignatureEventResult(serverSignerId, signatureCreationEventResult?, options?): AxiosPromise<SignatureCreationEventResult>;
    }

    • createServerSigner:function
      • Create a new Server-Signer

        Parameters

        • Optional createServerSignerRequest: CreateServerSignerRequest
        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<ServerSigner>

        Summary

        Create a new Server-Signer

        -

        Throws

    • getServerSigner:function
    • getServerSigner:function
      • Get a server signer by ID

        Parameters

        • serverSignerId: string

          The ID of the server signer to fetch

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<ServerSigner>

        Summary

        Get a server signer by ID

        -

        Throws

    • listServerSignerEvents:function
    • listServerSignerEvents:function
      • List events for a server signer

        Parameters

        • serverSignerId: string

          The ID of the server signer to fetch events for

        • Optional limit: number

          A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        • Optional page: string

          A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<ServerSignerEventList>

        Summary

        List events for a server signer

        -

        Throws

    • listServerSigners:function
    • listServerSigners:function
      • List server signers for the current project

        Parameters

        • Optional limit: number

          A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        • Optional page: string

          A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<ServerSignerList>

        Summary

        List server signers for the current project

        -

        Throws

    • submitServerSignerSeedEventResult:function
    • submitServerSignerSeedEventResult:function
      • Submit the result of a server signer event

        Parameters

        • serverSignerId: string

          The ID of the server signer to submit the event result for

        • Optional seedCreationEventResult: SeedCreationEventResult
        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<SeedCreationEventResult>

        Summary

        Submit the result of a server signer event

        -

        Throws

    • submitServerSignerSignatureEventResult:function
    • submitServerSignerSignatureEventResult:function
      • Submit the result of a server signer event

        Parameters

        • serverSignerId: string

          The ID of the server signer to submit the event result for

        • Optional signatureCreationEventResult: SignatureCreationEventResult
        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<SignatureCreationEventResult>

        Summary

        Submit the result of a server signer event

        -

        Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ServerSignersApiFp.html b/docs/functions/client_api.ServerSignersApiFp.html index 99b13685..7c062bee 100644 --- a/docs/functions/client_api.ServerSignersApiFp.html +++ b/docs/functions/client_api.ServerSignersApiFp.html @@ -2,27 +2,27 @@

    Parameters

    Returns {
        createServerSigner(createServerSignerRequest?, options?): Promise<((axios?, basePath?) => AxiosPromise<ServerSigner>)>;
        getServerSigner(serverSignerId, options?): Promise<((axios?, basePath?) => AxiosPromise<ServerSigner>)>;
        listServerSignerEvents(serverSignerId, limit?, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<ServerSignerEventList>)>;
        listServerSigners(limit?, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<ServerSignerList>)>;
        submitServerSignerSeedEventResult(serverSignerId, seedCreationEventResult?, options?): Promise<((axios?, basePath?) => AxiosPromise<SeedCreationEventResult>)>;
        submitServerSignerSignatureEventResult(serverSignerId, signatureCreationEventResult?, options?): Promise<((axios?, basePath?) => AxiosPromise<SignatureCreationEventResult>)>;
    }

    • createServerSigner:function
      • Create a new Server-Signer

        Parameters

        • Optional createServerSignerRequest: CreateServerSignerRequest
        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<ServerSigner>)>

        Summary

        Create a new Server-Signer

        -

        Throws

    • getServerSigner:function
    • getServerSigner:function
      • Get a server signer by ID

        Parameters

        • serverSignerId: string

          The ID of the server signer to fetch

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<ServerSigner>)>

        Summary

        Get a server signer by ID

        -

        Throws

    • listServerSignerEvents:function
    • listServerSignerEvents:function
      • List events for a server signer

        Parameters

        • serverSignerId: string

          The ID of the server signer to fetch events for

        • Optional limit: number

          A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        • Optional page: string

          A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<ServerSignerEventList>)>

        Summary

        List events for a server signer

        -

        Throws

    • listServerSigners:function
      • List server signers for the current project

        +

        Deprecated

        Throws

    • listServerSigners:function
      • List server signers for the current project

        Parameters

        • Optional limit: number

          A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        • Optional page: string

          A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<ServerSignerList>)>

        Summary

        List server signers for the current project

        -

        Throws

    • submitServerSignerSeedEventResult:function
      • Submit the result of a server signer event

        +

        Throws

    • submitServerSignerSeedEventResult:function
      • Submit the result of a server signer event

        Parameters

        • serverSignerId: string

          The ID of the server signer to submit the event result for

        • Optional seedCreationEventResult: SeedCreationEventResult
        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<SeedCreationEventResult>)>

        Summary

        Submit the result of a server signer event

        -

        Throws

    • submitServerSignerSignatureEventResult:function
      • Submit the result of a server signer event

        +

        Throws

    • submitServerSignerSignatureEventResult:function
      • Submit the result of a server signer event

        Parameters

        • serverSignerId: string

          The ID of the server signer to submit the event result for

        • Optional signatureCreationEventResult: SignatureCreationEventResult
        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<SignatureCreationEventResult>)>

        Summary

        Submit the result of a server signer event

        -

        Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.SmartContractsApiAxiosParamCreator.html b/docs/functions/client_api.SmartContractsApiAxiosParamCreator.html index 558710ec..1c07d496 100644 --- a/docs/functions/client_api.SmartContractsApiAxiosParamCreator.html +++ b/docs/functions/client_api.SmartContractsApiAxiosParamCreator.html @@ -21,4 +21,4 @@

    Throws

      • (walletId, addressId, options?): Promise<RequestArgs>
      • Parameters

        • walletId: string

          The ID of the wallet the address belongs to.

        • addressId: string

          The ID of the address to fetch the smart contracts for.

        • Optional options: RawAxiosRequestConfig = {}

          Override http request option.

          -

        Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.SmartContractsApiFactory.html b/docs/functions/client_api.SmartContractsApiFactory.html index 94b2f7ad..5e15aae0 100644 --- a/docs/functions/client_api.SmartContractsApiFactory.html +++ b/docs/functions/client_api.SmartContractsApiFactory.html @@ -4,21 +4,21 @@
  • addressId: string

    The ID of the address to deploy the smart contract from.

  • createSmartContractRequest: CreateSmartContractRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<SmartContract>

    Summary

    Create a new smart contract

    -

    Throws

  • deploySmartContract:function
    • Deploys a smart contract, by broadcasting the transaction to the network.

      +

      Throws

  • deploySmartContract:function
    • Deploys a smart contract, by broadcasting the transaction to the network.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to broadcast the transaction from.

      • smartContractId: string

        The UUID of the smart contract to broadcast the transaction to.

      • deploySmartContractRequest: DeploySmartContractRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<SmartContract>

      Summary

      Deploy a smart contract

      -

      Throws

  • getSmartContract:function
    • Get a specific smart contract deployed by address.

      +

      Throws

  • getSmartContract:function
    • Get a specific smart contract deployed by address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to fetch the smart contract for.

      • smartContractId: string

        The UUID of the smart contract to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<SmartContract>

      Summary

      Get a specific smart contract deployed by address

      -

      Throws

  • listSmartContracts:function
  • listSmartContracts:function
    • List all smart contracts deployed by address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to fetch the smart contracts for.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<SmartContractList>

      Summary

      List smart contracts deployed by address

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.SmartContractsApiFp.html b/docs/functions/client_api.SmartContractsApiFp.html index 81803b2a..e300e0c7 100644 --- a/docs/functions/client_api.SmartContractsApiFp.html +++ b/docs/functions/client_api.SmartContractsApiFp.html @@ -4,21 +4,21 @@
  • addressId: string

    The ID of the address to deploy the smart contract from.

  • createSmartContractRequest: CreateSmartContractRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns Promise<((axios?, basePath?) => AxiosPromise<SmartContract>)>

    Summary

    Create a new smart contract

    -

    Throws

  • deploySmartContract:function
    • Deploys a smart contract, by broadcasting the transaction to the network.

      +

      Throws

  • deploySmartContract:function
    • Deploys a smart contract, by broadcasting the transaction to the network.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to broadcast the transaction from.

      • smartContractId: string

        The UUID of the smart contract to broadcast the transaction to.

      • deploySmartContractRequest: DeploySmartContractRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<SmartContract>)>

      Summary

      Deploy a smart contract

      -

      Throws

  • getSmartContract:function
    • Get a specific smart contract deployed by address.

      +

      Throws

  • getSmartContract:function
    • Get a specific smart contract deployed by address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to fetch the smart contract for.

      • smartContractId: string

        The UUID of the smart contract to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<SmartContract>)>

      Summary

      Get a specific smart contract deployed by address

      -

      Throws

  • listSmartContracts:function
    • List all smart contracts deployed by address.

      +

      Throws

  • listSmartContracts:function
    • List all smart contracts deployed by address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to fetch the smart contracts for.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<SmartContractList>)>

      Summary

      List smart contracts deployed by address

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.StakeApiAxiosParamCreator.html b/docs/functions/client_api.StakeApiAxiosParamCreator.html index 07618cbc..82f080c9 100644 --- a/docs/functions/client_api.StakeApiAxiosParamCreator.html +++ b/docs/functions/client_api.StakeApiAxiosParamCreator.html @@ -26,4 +26,4 @@

    Throws

    Returns Promise<RequestArgs>

  • getStakingContext: ((getStakingContextRequest, options?) => Promise<RequestArgs>)

    Get staking context for an address

    Summary

    Get staking context

    Throws

  • Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.StakeApiFactory.html b/docs/functions/client_api.StakeApiFactory.html index 000c8e19..0b3506ff 100644 --- a/docs/functions/client_api.StakeApiFactory.html +++ b/docs/functions/client_api.StakeApiFactory.html @@ -2,7 +2,7 @@

    Parameters

    • Optional configuration: Configuration
    • Optional basePath: string
    • Optional axios: AxiosInstance

    Returns {
        buildStakingOperation(buildStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        fetchHistoricalStakingBalances(networkId, assetId, addressId, startTime, endTime, limit?, page?, options?): AxiosPromise<FetchHistoricalStakingBalances200Response>;
        fetchStakingRewards(fetchStakingRewardsRequest, limit?, page?, options?): AxiosPromise<FetchStakingRewards200Response>;
        getExternalStakingOperation(networkId, addressId, stakingOperationId, options?): AxiosPromise<StakingOperation>;
        getStakingContext(getStakingContextRequest, options?): AxiosPromise<StakingContext>;
    }

  • fetchStakingRewards:function
  • fetchStakingRewards:function
    • Fetch staking rewards for a list of addresses

      Parameters

      • fetchStakingRewardsRequest: FetchStakingRewardsRequest
      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<FetchStakingRewards200Response>

      Summary

      Fetch staking rewards

      -

      Throws

  • getExternalStakingOperation:function
    • Get the latest state of a staking operation

      +

      Throws

  • getExternalStakingOperation:function
    • Get the latest state of a staking operation

      Parameters

      • networkId: string

        The ID of the blockchain network

      • addressId: string

        The ID of the address to fetch the staking operation for

      • stakingOperationId: string

        The ID of the staking operation

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<StakingOperation>

      Summary

      Get the latest state of a staking operation

      -

      Throws

  • getStakingContext:function
  • getStakingContext:function
  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.StakeApiFp.html b/docs/functions/client_api.StakeApiFp.html index c9b521ed..25d8d0e8 100644 --- a/docs/functions/client_api.StakeApiFp.html +++ b/docs/functions/client_api.StakeApiFp.html @@ -2,7 +2,7 @@

    Parameters

    Returns {
        buildStakingOperation(buildStakingOperationRequest, options?): Promise<((axios?, basePath?) => AxiosPromise<StakingOperation>)>;
        fetchHistoricalStakingBalances(networkId, assetId, addressId, startTime, endTime, limit?, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<FetchHistoricalStakingBalances200Response>)>;
        fetchStakingRewards(fetchStakingRewardsRequest, limit?, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<FetchStakingRewards200Response>)>;
        getExternalStakingOperation(networkId, addressId, stakingOperationId, options?): Promise<((axios?, basePath?) => AxiosPromise<StakingOperation>)>;
        getStakingContext(getStakingContextRequest, options?): Promise<((axios?, basePath?) => AxiosPromise<StakingContext>)>;
    }

  • fetchStakingRewards:function
  • fetchStakingRewards:function
    • Fetch staking rewards for a list of addresses

      Parameters

      • fetchStakingRewardsRequest: FetchStakingRewardsRequest
      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<FetchStakingRewards200Response>)>

      Summary

      Fetch staking rewards

      -

      Throws

  • getExternalStakingOperation:function
    • Get the latest state of a staking operation

      +

      Throws

  • getExternalStakingOperation:function
    • Get the latest state of a staking operation

      Parameters

      • networkId: string

        The ID of the blockchain network

      • addressId: string

        The ID of the address to fetch the staking operation for

      • stakingOperationId: string

        The ID of the staking operation

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<StakingOperation>)>

      Summary

      Get the latest state of a staking operation

      -

      Throws

  • getStakingContext:function
    • Get staking context for an address

      +

      Throws

  • getStakingContext:function
    • Get staking context for an address

      Parameters

      Returns Promise<((axios?, basePath?) => AxiosPromise<StakingContext>)>

      Summary

      Get staking context

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.TradesApiAxiosParamCreator.html b/docs/functions/client_api.TradesApiAxiosParamCreator.html index 0ad0a384..ca121ce7 100644 --- a/docs/functions/client_api.TradesApiAxiosParamCreator.html +++ b/docs/functions/client_api.TradesApiAxiosParamCreator.html @@ -23,4 +23,4 @@

    Throws

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig = {}

      Override http request option.

      -

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.TradesApiFactory.html b/docs/functions/client_api.TradesApiFactory.html index ea6aef5f..5372ae11 100644 --- a/docs/functions/client_api.TradesApiFactory.html +++ b/docs/functions/client_api.TradesApiFactory.html @@ -5,22 +5,22 @@
  • tradeId: string

    The ID of the trade to broadcast

  • broadcastTradeRequest: BroadcastTradeRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Trade>

    Summary

    Broadcast a trade

    -

    Throws

  • createTrade:function
    • Create a new trade

      +

      Throws

  • createTrade:function
    • Create a new trade

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to

      • addressId: string

        The ID of the address to conduct the trade from

      • createTradeRequest: CreateTradeRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Trade>

      Summary

      Create a new trade for an address

      -

      Throws

  • getTrade:function
  • getTrade:function
    • Get a trade by ID

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address the trade belongs to

      • tradeId: string

        The ID of the trade to fetch

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Trade>

      Summary

      Get a trade by ID

      -

      Throws

  • listTrades:function
  • listTrades:function
    • List trades for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address to list trades for

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<TradeList>

      Summary

      List trades for an address.

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.TradesApiFp.html b/docs/functions/client_api.TradesApiFp.html index ad3c3c4f..eca37bd4 100644 --- a/docs/functions/client_api.TradesApiFp.html +++ b/docs/functions/client_api.TradesApiFp.html @@ -5,22 +5,22 @@
  • tradeId: string

    The ID of the trade to broadcast

  • broadcastTradeRequest: BroadcastTradeRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns Promise<((axios?, basePath?) => AxiosPromise<Trade>)>

    Summary

    Broadcast a trade

    -

    Throws

  • createTrade:function
    • Create a new trade

      +

      Throws

  • createTrade:function
    • Create a new trade

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to

      • addressId: string

        The ID of the address to conduct the trade from

      • createTradeRequest: CreateTradeRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<Trade>)>

      Summary

      Create a new trade for an address

      -

      Throws

  • getTrade:function
    • Get a trade by ID

      +

      Throws

  • getTrade:function
    • Get a trade by ID

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address the trade belongs to

      • tradeId: string

        The ID of the trade to fetch

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<Trade>)>

      Summary

      Get a trade by ID

      -

      Throws

  • listTrades:function
    • List trades for an address.

      +

      Throws

  • listTrades:function
    • List trades for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address to list trades for

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<TradeList>)>

      Summary

      List trades for an address.

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.TransactionHistoryApiAxiosParamCreator.html b/docs/functions/client_api.TransactionHistoryApiAxiosParamCreator.html new file mode 100644 index 00000000..08b93687 --- /dev/null +++ b/docs/functions/client_api.TransactionHistoryApiAxiosParamCreator.html @@ -0,0 +1,9 @@ +TransactionHistoryApiAxiosParamCreator | @coinbase/coinbase-sdk

    Function TransactionHistoryApiAxiosParamCreator

    • TransactionHistoryApi - axios parameter creator

      +

      Parameters

      Returns {
          listAddressTransactions: ((networkId, addressId, limit?, page?, options?) => Promise<RequestArgs>);
      }

      • listAddressTransactions: ((networkId, addressId, limit?, page?, options?) => Promise<RequestArgs>)

        List all transactions that interact with the address.

        +

        Summary

        List transactions for an address.

        +

        Throws

          • (networkId, addressId, limit?, page?, options?): Promise<RequestArgs>
          • Parameters

            • networkId: string

              The ID of the blockchain network

              +
            • addressId: string

              The ID of the address to fetch the transactions for.

              +
            • Optional limit: number

              A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

              +
            • Optional page: string

              A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

              +
            • Optional options: RawAxiosRequestConfig = {}

              Override http request option.

              +

            Returns Promise<RequestArgs>

      Export

    \ No newline at end of file diff --git a/docs/functions/client_api.TransactionHistoryApiFactory.html b/docs/functions/client_api.TransactionHistoryApiFactory.html new file mode 100644 index 00000000..04174a05 --- /dev/null +++ b/docs/functions/client_api.TransactionHistoryApiFactory.html @@ -0,0 +1,9 @@ +TransactionHistoryApiFactory | @coinbase/coinbase-sdk
    • TransactionHistoryApi - factory interface

      +

      Parameters

      • Optional configuration: Configuration
      • Optional basePath: string
      • Optional axios: AxiosInstance

      Returns {
          listAddressTransactions(networkId, addressId, limit?, page?, options?): AxiosPromise<AddressTransactionList>;
      }

      • listAddressTransactions:function
        • List all transactions that interact with the address.

          +

          Parameters

          • networkId: string

            The ID of the blockchain network

            +
          • addressId: string

            The ID of the address to fetch the transactions for.

            +
          • Optional limit: number

            A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

            +
          • Optional page: string

            A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

            +
          • Optional options: RawAxiosRequestConfig

            Override http request option.

            +

          Returns AxiosPromise<AddressTransactionList>

          Summary

          List transactions for an address.

          +

          Throws

      Export

    \ No newline at end of file diff --git a/docs/functions/client_api.TransactionHistoryApiFp.html b/docs/functions/client_api.TransactionHistoryApiFp.html new file mode 100644 index 00000000..b7d9b073 --- /dev/null +++ b/docs/functions/client_api.TransactionHistoryApiFp.html @@ -0,0 +1,9 @@ +TransactionHistoryApiFp | @coinbase/coinbase-sdk
    • TransactionHistoryApi - functional programming interface

      +

      Parameters

      Returns {
          listAddressTransactions(networkId, addressId, limit?, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<AddressTransactionList>)>;
      }

      • listAddressTransactions:function
        • List all transactions that interact with the address.

          +

          Parameters

          • networkId: string

            The ID of the blockchain network

            +
          • addressId: string

            The ID of the address to fetch the transactions for.

            +
          • Optional limit: number

            A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

            +
          • Optional page: string

            A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

            +
          • Optional options: RawAxiosRequestConfig

            Override http request option.

            +

          Returns Promise<((axios?, basePath?) => AxiosPromise<AddressTransactionList>)>

          Summary

          List transactions for an address.

          +

          Throws

      Export

    \ No newline at end of file diff --git a/docs/functions/client_api.TransfersApiAxiosParamCreator.html b/docs/functions/client_api.TransfersApiAxiosParamCreator.html index 99ea88e0..112f487e 100644 --- a/docs/functions/client_api.TransfersApiAxiosParamCreator.html +++ b/docs/functions/client_api.TransfersApiAxiosParamCreator.html @@ -23,4 +23,4 @@

    Throws

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig = {}

      Override http request option.

      -

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.TransfersApiFactory.html b/docs/functions/client_api.TransfersApiFactory.html index cead030e..3f651198 100644 --- a/docs/functions/client_api.TransfersApiFactory.html +++ b/docs/functions/client_api.TransfersApiFactory.html @@ -5,22 +5,22 @@
  • transferId: string

    The ID of the transfer to broadcast

  • broadcastTransferRequest: BroadcastTransferRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Transfer>

    Summary

    Broadcast a transfer

    -

    Throws

  • createTransfer:function
    • Create a new transfer

      +

      Throws

  • createTransfer:function
    • Create a new transfer

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to

      • addressId: string

        The ID of the address to transfer from

      • createTransferRequest: CreateTransferRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Transfer>

      Summary

      Create a new transfer for an address

      -

      Throws

  • getTransfer:function
  • getTransfer:function
    • Get a transfer by ID

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address the transfer belongs to

      • transferId: string

        The ID of the transfer to fetch

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Transfer>

      Summary

      Get a transfer by ID

      -

      Throws

  • listTransfers:function
  • listTransfers:function
    • List transfers for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address to list transfers for

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<TransferList>

      Summary

      List transfers for an address.

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.TransfersApiFp.html b/docs/functions/client_api.TransfersApiFp.html index b85616e9..07f8c51a 100644 --- a/docs/functions/client_api.TransfersApiFp.html +++ b/docs/functions/client_api.TransfersApiFp.html @@ -5,22 +5,22 @@
  • transferId: string

    The ID of the transfer to broadcast

  • broadcastTransferRequest: BroadcastTransferRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns Promise<((axios?, basePath?) => AxiosPromise<Transfer>)>

    Summary

    Broadcast a transfer

    -

    Throws

  • createTransfer:function
    • Create a new transfer

      +

      Throws

  • createTransfer:function
    • Create a new transfer

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to

      • addressId: string

        The ID of the address to transfer from

      • createTransferRequest: CreateTransferRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<Transfer>)>

      Summary

      Create a new transfer for an address

      -

      Throws

  • getTransfer:function
    • Get a transfer by ID

      +

      Throws

  • getTransfer:function
    • Get a transfer by ID

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address the transfer belongs to

      • transferId: string

        The ID of the transfer to fetch

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<Transfer>)>

      Summary

      Get a transfer by ID

      -

      Throws

  • listTransfers:function
    • List transfers for an address.

      +

      Throws

  • listTransfers:function
    • List transfers for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address to list transfers for

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<TransferList>)>

      Summary

      List transfers for an address.

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.UsersApiAxiosParamCreator.html b/docs/functions/client_api.UsersApiAxiosParamCreator.html index 34dd3efe..2234068c 100644 --- a/docs/functions/client_api.UsersApiAxiosParamCreator.html +++ b/docs/functions/client_api.UsersApiAxiosParamCreator.html @@ -2,4 +2,4 @@

    Parameters

    Returns {
        getCurrentUser: ((options?) => Promise<RequestArgs>);
    }

    • getCurrentUser: ((options?) => Promise<RequestArgs>)

      Get current user

      Summary

      Get current user

      Throws

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optional options: RawAxiosRequestConfig = {}

            Override http request option.

            -

          Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.UsersApiFactory.html b/docs/functions/client_api.UsersApiFactory.html index 2e79769a..07aade35 100644 --- a/docs/functions/client_api.UsersApiFactory.html +++ b/docs/functions/client_api.UsersApiFactory.html @@ -2,4 +2,4 @@

    Parameters

    • Optional configuration: Configuration
    • Optional basePath: string
    • Optional axios: AxiosInstance

    Returns {
        getCurrentUser(options?): AxiosPromise<User>;
    }

    • getCurrentUser:function
      • Get current user

        Parameters

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<User>

        Summary

        Get current user

        -

        Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.UsersApiFp.html b/docs/functions/client_api.UsersApiFp.html index 40772593..a7474289 100644 --- a/docs/functions/client_api.UsersApiFp.html +++ b/docs/functions/client_api.UsersApiFp.html @@ -2,4 +2,4 @@

    Parameters

    Returns {
        getCurrentUser(options?): Promise<((axios?, basePath?) => AxiosPromise<User>)>;
    }

    • getCurrentUser:function
      • Get current user

        Parameters

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<User>)>

        Summary

        Get current user

        -

        Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ValidatorsApiAxiosParamCreator.html b/docs/functions/client_api.ValidatorsApiAxiosParamCreator.html index e35d1d44..9f76d19a 100644 --- a/docs/functions/client_api.ValidatorsApiAxiosParamCreator.html +++ b/docs/functions/client_api.ValidatorsApiAxiosParamCreator.html @@ -13,4 +13,4 @@

    Throws

    • Optional limit: number

      A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.

    • Optional page: string

      A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

    • Optional options: RawAxiosRequestConfig = {}

      Override http request option.

      -

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ValidatorsApiFactory.html b/docs/functions/client_api.ValidatorsApiFactory.html index b872e4e1..e0642a45 100644 --- a/docs/functions/client_api.ValidatorsApiFactory.html +++ b/docs/functions/client_api.ValidatorsApiFactory.html @@ -5,7 +5,7 @@
  • validatorId: string

    The unique id of the validator to fetch details for.

  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Validator>

    Summary

    Get a validator belonging to the CDP project

    -

    Throws

  • listValidators:function
    • List validators belonging to the user for a given network and asset.

      +

      Throws

  • listValidators:function

    Returns AxiosPromise<ValidatorList>

    Summary

    List validators belonging to the CDP project

    -

    Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.ValidatorsApiFp.html b/docs/functions/client_api.ValidatorsApiFp.html index 4025183b..fe142c39 100644 --- a/docs/functions/client_api.ValidatorsApiFp.html +++ b/docs/functions/client_api.ValidatorsApiFp.html @@ -5,7 +5,7 @@
  • validatorId: string

    The unique id of the validator to fetch details for.

  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns Promise<((axios?, basePath?) => AxiosPromise<Validator>)>

    Summary

    Get a validator belonging to the CDP project

    -

    Throws

  • listValidators:function
    • List validators belonging to the user for a given network and asset.

      +

      Throws

  • listValidators:function

    Returns Promise<((axios?, basePath?) => AxiosPromise<ValidatorList>)>

    Summary

    List validators belonging to the CDP project

    -

    Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.WalletStakeApiAxiosParamCreator.html b/docs/functions/client_api.WalletStakeApiAxiosParamCreator.html index a318992f..9534f431 100644 --- a/docs/functions/client_api.WalletStakeApiAxiosParamCreator.html +++ b/docs/functions/client_api.WalletStakeApiAxiosParamCreator.html @@ -16,4 +16,4 @@

    Throws

    • addressId: string

      The ID of the address to fetch the staking operation for.

    • stakingOperationId: string

      The ID of the staking operation.

    • Optional options: RawAxiosRequestConfig = {}

      Override http request option.

      -

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.WalletStakeApiFactory.html b/docs/functions/client_api.WalletStakeApiFactory.html index b77c1e27..b2feb323 100644 --- a/docs/functions/client_api.WalletStakeApiFactory.html +++ b/docs/functions/client_api.WalletStakeApiFactory.html @@ -5,15 +5,15 @@
  • stakingOperationId: string

    The ID of the staking operation to broadcast.

  • broadcastStakingOperationRequest: BroadcastStakingOperationRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<StakingOperation>

    Summary

    Broadcast a staking operation

    -

    Throws

  • createStakingOperation:function
  • createStakingOperation:function
    • Create a new staking operation.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to create the staking operation for.

      • createStakingOperationRequest: CreateStakingOperationRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<StakingOperation>

      Summary

      Create a new staking operation for an address

      -

      Throws

  • getStakingOperation:function
  • getStakingOperation:function
    • Get the latest state of a staking operation.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address to fetch the staking operation for.

      • stakingOperationId: string

        The ID of the staking operation.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<StakingOperation>

      Summary

      Get the latest state of a staking operation

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.WalletStakeApiFp.html b/docs/functions/client_api.WalletStakeApiFp.html index ab0ab77f..fa61e22e 100644 --- a/docs/functions/client_api.WalletStakeApiFp.html +++ b/docs/functions/client_api.WalletStakeApiFp.html @@ -5,15 +5,15 @@
  • stakingOperationId: string

    The ID of the staking operation to broadcast.

  • broadcastStakingOperationRequest: BroadcastStakingOperationRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns Promise<((axios?, basePath?) => AxiosPromise<StakingOperation>)>

    Summary

    Broadcast a staking operation

    -

    Throws

  • createStakingOperation:function
    • Create a new staking operation.

      +

      Throws

  • createStakingOperation:function
    • Create a new staking operation.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to create the staking operation for.

      • createStakingOperationRequest: CreateStakingOperationRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<StakingOperation>)>

      Summary

      Create a new staking operation for an address

      -

      Throws

  • getStakingOperation:function
    • Get the latest state of a staking operation.

      +

      Throws

  • getStakingOperation:function
    • Get the latest state of a staking operation.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address to fetch the staking operation for.

      • stakingOperationId: string

        The ID of the staking operation.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns Promise<((axios?, basePath?) => AxiosPromise<StakingOperation>)>

      Summary

      Get the latest state of a staking operation

      -

      Throws

  • Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.WalletsApiAxiosParamCreator.html b/docs/functions/client_api.WalletsApiAxiosParamCreator.html index 8ea47def..9cef8479 100644 --- a/docs/functions/client_api.WalletsApiAxiosParamCreator.html +++ b/docs/functions/client_api.WalletsApiAxiosParamCreator.html @@ -20,4 +20,4 @@

    Throws

      • (limit?, page?, options?): Promise<RequestArgs>
      • Parameters

        • Optional limit: number

          A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        • Optional page: string

          A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        • Optional options: RawAxiosRequestConfig = {}

          Override http request option.

          -

        Returns Promise<RequestArgs>

    Export

    \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.WalletsApiFactory.html b/docs/functions/client_api.WalletsApiFactory.html index cf02b252..6827f333 100644 --- a/docs/functions/client_api.WalletsApiFactory.html +++ b/docs/functions/client_api.WalletsApiFactory.html @@ -2,22 +2,22 @@

    Parameters

    • Optional configuration: Configuration
    • Optional basePath: string
    • Optional axios: AxiosInstance

    Returns {
        createWallet(createWalletRequest?, options?): AxiosPromise<Wallet>;
        getWallet(walletId, options?): AxiosPromise<Wallet>;
        getWalletBalance(walletId, assetId, options?): AxiosPromise<Balance>;
        listWalletBalances(walletId, options?): AxiosPromise<AddressBalanceList>;
        listWallets(limit?, page?, options?): AxiosPromise<WalletList>;
    }

    • createWallet:function
      • Create a new wallet scoped to the user.

        Parameters

        • Optional createWalletRequest: CreateWalletRequest
        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<Wallet>

        Summary

        Create a new wallet

        -

        Throws

    • getWallet:function
    • getWallet:function
      • Get wallet

        Parameters

        • walletId: string

          The ID of the wallet to fetch

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<Wallet>

        Summary

        Get wallet by ID

        -

        Throws

    • getWalletBalance:function
      • Get the aggregated balance of an asset across all of the addresses in the wallet.

        +

        Throws

    • getWalletBalance:function
      • Get the aggregated balance of an asset across all of the addresses in the wallet.

        Parameters

        • walletId: string

          The ID of the wallet to fetch the balance for

        • assetId: string

          The symbol of the asset to fetch the balance for

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<Balance>

        Summary

        Get the balance of an asset in the wallet

        -

        Throws

    • listWalletBalances:function
    • listWalletBalances:function
      • List the balances of all of the addresses in the wallet aggregated by asset.

        Parameters

        • walletId: string

          The ID of the wallet to fetch the balances for

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<AddressBalanceList>

        Summary

        List wallet balances

        -

        Throws

    • listWallets:function
    • listWallets:function
      • List wallets belonging to the user.

        Parameters

        • Optional limit: number

          A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        • Optional page: string

          A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<WalletList>

        Summary

        List wallets

        -

        Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.WalletsApiFp.html b/docs/functions/client_api.WalletsApiFp.html index 3f5fbfc2..9cdfe455 100644 --- a/docs/functions/client_api.WalletsApiFp.html +++ b/docs/functions/client_api.WalletsApiFp.html @@ -2,22 +2,22 @@

    Parameters

    Returns {
        createWallet(createWalletRequest?, options?): Promise<((axios?, basePath?) => AxiosPromise<Wallet>)>;
        getWallet(walletId, options?): Promise<((axios?, basePath?) => AxiosPromise<Wallet>)>;
        getWalletBalance(walletId, assetId, options?): Promise<((axios?, basePath?) => AxiosPromise<Balance>)>;
        listWalletBalances(walletId, options?): Promise<((axios?, basePath?) => AxiosPromise<AddressBalanceList>)>;
        listWallets(limit?, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<WalletList>)>;
    }

    • createWallet:function
      • Create a new wallet scoped to the user.

        Parameters

        • Optional createWalletRequest: CreateWalletRequest
        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<Wallet>)>

        Summary

        Create a new wallet

        -

        Throws

    • getWallet:function
    • getWallet:function
      • Get wallet

        Parameters

        • walletId: string

          The ID of the wallet to fetch

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<Wallet>)>

        Summary

        Get wallet by ID

        -

        Throws

    • getWalletBalance:function
      • Get the aggregated balance of an asset across all of the addresses in the wallet.

        +

        Throws

    • getWalletBalance:function
      • Get the aggregated balance of an asset across all of the addresses in the wallet.

        Parameters

        • walletId: string

          The ID of the wallet to fetch the balance for

        • assetId: string

          The symbol of the asset to fetch the balance for

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<Balance>)>

        Summary

        Get the balance of an asset in the wallet

        -

        Throws

    • listWalletBalances:function
      • List the balances of all of the addresses in the wallet aggregated by asset.

        +

        Throws

    • listWalletBalances:function
      • List the balances of all of the addresses in the wallet aggregated by asset.

        Parameters

        • walletId: string

          The ID of the wallet to fetch the balances for

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<AddressBalanceList>)>

        Summary

        List wallet balances

        -

        Throws

    • listWallets:function
      • List wallets belonging to the user.

        +

        Throws

    • listWallets:function
      • List wallets belonging to the user.

        Parameters

        • Optional limit: number

          A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        • Optional page: string

          A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?, basePath?) => AxiosPromise<WalletList>)>

        Summary

        List wallets

        -

        Throws

    Export

    \ No newline at end of file +

    Throws

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.WebhooksApiAxiosParamCreator.html b/docs/functions/client_api.WebhooksApiAxiosParamCreator.html index 1c9a6def..d1d342d3 100644 --- a/docs/functions/client_api.WebhooksApiAxiosParamCreator.html +++ b/docs/functions/client_api.WebhooksApiAxiosParamCreator.html @@ -1,18 +1,22 @@ -WebhooksApiAxiosParamCreator | @coinbase/coinbase-sdk
    • WebhooksApi - axios parameter creator

      -

      Parameters

      Returns {
          createWebhook: ((createWebhookRequest?, options?) => Promise<RequestArgs>);
          deleteWebhook: ((webhookId, options?) => Promise<RequestArgs>);
          listWebhooks: ((limit?, page?, options?) => Promise<RequestArgs>);
          updateWebhook: ((webhookId, updateWebhookRequest?, options?) => Promise<RequestArgs>);
      }

      • createWebhook: ((createWebhookRequest?, options?) => Promise<RequestArgs>)

        Create a new webhook

        +WebhooksApiAxiosParamCreator | @coinbase/coinbase-sdk
        • WebhooksApi - axios parameter creator

          +

          Parameters

          Returns {
              createWalletWebhook: ((walletId, createWalletWebhookRequest?, options?) => Promise<RequestArgs>);
              createWebhook: ((createWebhookRequest?, options?) => Promise<RequestArgs>);
              deleteWebhook: ((webhookId, options?) => Promise<RequestArgs>);
              listWebhooks: ((limit?, page?, options?) => Promise<RequestArgs>);
              updateWebhook: ((webhookId, updateWebhookRequest?, options?) => Promise<RequestArgs>);
          }

          • createWalletWebhook: ((walletId, createWalletWebhookRequest?, options?) => Promise<RequestArgs>)

            Create a new webhook scoped to a wallet

            +

            Summary

            Create a new webhook scoped to a wallet

            +

            Throws

              • (walletId, createWalletWebhookRequest?, options?): Promise<RequestArgs>
              • Parameters

                • walletId: string

                  The ID of the wallet to create the webhook for.

                  +
                • Optional createWalletWebhookRequest: CreateWalletWebhookRequest
                • Optional options: RawAxiosRequestConfig = {}

                  Override http request option.

                  +

                Returns Promise<RequestArgs>

          • createWebhook: ((createWebhookRequest?, options?) => Promise<RequestArgs>)

            Create a new webhook

            Summary

            Create a new webhook

            -

            Throws

              • (createWebhookRequest?, options?): Promise<RequestArgs>
              • Parameters

                • Optional createWebhookRequest: CreateWebhookRequest
                • Optional options: RawAxiosRequestConfig = {}

                  Override http request option.

                  +

                  Throws

                    • (createWebhookRequest?, options?): Promise<RequestArgs>
                    • Parameters

                      • Optional createWebhookRequest: CreateWebhookRequest
                      • Optional options: RawAxiosRequestConfig = {}

                        Override http request option.

                      Returns Promise<RequestArgs>

                • deleteWebhook: ((webhookId, options?) => Promise<RequestArgs>)

                  Delete a webhook

                  Summary

                  Delete a webhook

                  -

                  Throws

                    • (webhookId, options?): Promise<RequestArgs>
                    • Parameters

                      • webhookId: string

                        The Webhook uuid that needs to be deleted

                        +

                        Throws

                          • (webhookId, options?): Promise<RequestArgs>
                          • Parameters

                            • webhookId: string

                              The Webhook uuid that needs to be deleted

                            • Optional options: RawAxiosRequestConfig = {}

                              Override http request option.

                            Returns Promise<RequestArgs>

                      • listWebhooks: ((limit?, page?, options?) => Promise<RequestArgs>)

                        List webhooks, optionally filtered by event type.

                        Summary

                        List webhooks

                        -

                        Throws

                          • (limit?, page?, options?): Promise<RequestArgs>
                          • Parameters

                            • Optional limit: number

                              A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

                              +

                              Throws

                                • (limit?, page?, options?): Promise<RequestArgs>
                                • Parameters

                                  • Optional limit: number

                                    A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

                                  • Optional page: string

                                    A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

                                  • Optional options: RawAxiosRequestConfig = {}

                                    Override http request option.

                                  Returns Promise<RequestArgs>

                            • updateWebhook: ((webhookId, updateWebhookRequest?, options?) => Promise<RequestArgs>)

                              Update a webhook

                              Summary

                              Update a webhook

                              -

                              Throws

                                • (webhookId, updateWebhookRequest?, options?): Promise<RequestArgs>
                                • Parameters

                                  • webhookId: string

                                    The Webhook id that needs to be updated

                                    +

                                    Throws

                                      • (webhookId, updateWebhookRequest?, options?): Promise<RequestArgs>
                                      • Parameters

                                        • webhookId: string

                                          The Webhook id that needs to be updated

                                        • Optional updateWebhookRequest: UpdateWebhookRequest
                                        • Optional options: RawAxiosRequestConfig = {}

                                          Override http request option.

                                          -

                                        Returns Promise<RequestArgs>

                                  Export

        \ No newline at end of file +

    Returns Promise<RequestArgs>

    Export

    \ No newline at end of file diff --git a/docs/functions/client_api.WebhooksApiFactory.html b/docs/functions/client_api.WebhooksApiFactory.html index 75be361f..55e4f959 100644 --- a/docs/functions/client_api.WebhooksApiFactory.html +++ b/docs/functions/client_api.WebhooksApiFactory.html @@ -1,18 +1,22 @@ -WebhooksApiFactory | @coinbase/coinbase-sdk
    • WebhooksApi - factory interface

      -

      Parameters

      • Optional configuration: Configuration
      • Optional basePath: string
      • Optional axios: AxiosInstance

      Returns {
          createWebhook(createWebhookRequest?, options?): AxiosPromise<Webhook>;
          deleteWebhook(webhookId, options?): AxiosPromise<void>;
          listWebhooks(limit?, page?, options?): AxiosPromise<WebhookList>;
          updateWebhook(webhookId, updateWebhookRequest?, options?): AxiosPromise<Webhook>;
      }

      • createWebhook:function
        • Create a new webhook

          +WebhooksApiFactory | @coinbase/coinbase-sdk
          • WebhooksApi - factory interface

            +

            Parameters

            • Optional configuration: Configuration
            • Optional basePath: string
            • Optional axios: AxiosInstance

            Returns {
                createWalletWebhook(walletId, createWalletWebhookRequest?, options?): AxiosPromise<Webhook>;
                createWebhook(createWebhookRequest?, options?): AxiosPromise<Webhook>;
                deleteWebhook(webhookId, options?): AxiosPromise<void>;
                listWebhooks(limit?, page?, options?): AxiosPromise<WebhookList>;
                updateWebhook(webhookId, updateWebhookRequest?, options?): AxiosPromise<Webhook>;
            }

            • createWalletWebhook:function
              • Create a new webhook scoped to a wallet

                +

                Parameters

                • walletId: string

                  The ID of the wallet to create the webhook for.

                  +
                • Optional createWalletWebhookRequest: CreateWalletWebhookRequest
                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                  +

                Returns AxiosPromise<Webhook>

                Summary

                Create a new webhook scoped to a wallet

                +

                Throws

            • createWebhook:function
              • Create a new webhook

                Parameters

                • Optional createWebhookRequest: CreateWebhookRequest
                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns AxiosPromise<Webhook>

                Summary

                Create a new webhook

                -

                Throws

            • deleteWebhook:function
              • Delete a webhook

                +

                Throws

            • deleteWebhook:function
              • Delete a webhook

                Parameters

                • webhookId: string

                  The Webhook uuid that needs to be deleted

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns AxiosPromise<void>

                Summary

                Delete a webhook

                -

                Throws

            • listWebhooks:function
            • listWebhooks:function
              • List webhooks, optionally filtered by event type.

                Parameters

                • Optional limit: number

                  A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

                • Optional page: string

                  A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns AxiosPromise<WebhookList>

                Summary

                List webhooks

                -

                Throws

            • updateWebhook:function
            • updateWebhook:function
              • Update a webhook

                Parameters

                • webhookId: string

                  The Webhook id that needs to be updated

                • Optional updateWebhookRequest: UpdateWebhookRequest
                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns AxiosPromise<Webhook>

                Summary

                Update a webhook

                -

                Throws

            Export

          \ No newline at end of file +

          Throws

      Export

    \ No newline at end of file diff --git a/docs/functions/client_api.WebhooksApiFp.html b/docs/functions/client_api.WebhooksApiFp.html index 6a68d90f..5f8187a5 100644 --- a/docs/functions/client_api.WebhooksApiFp.html +++ b/docs/functions/client_api.WebhooksApiFp.html @@ -1,18 +1,22 @@ -WebhooksApiFp | @coinbase/coinbase-sdk
    • WebhooksApi - functional programming interface

      -

      Parameters

      Returns {
          createWebhook(createWebhookRequest?, options?): Promise<((axios?, basePath?) => AxiosPromise<Webhook>)>;
          deleteWebhook(webhookId, options?): Promise<((axios?, basePath?) => AxiosPromise<void>)>;
          listWebhooks(limit?, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<WebhookList>)>;
          updateWebhook(webhookId, updateWebhookRequest?, options?): Promise<((axios?, basePath?) => AxiosPromise<Webhook>)>;
      }

      • createWebhook:function
        • Create a new webhook

          +WebhooksApiFp | @coinbase/coinbase-sdk
          • WebhooksApi - functional programming interface

            +

            Parameters

            Returns {
                createWalletWebhook(walletId, createWalletWebhookRequest?, options?): Promise<((axios?, basePath?) => AxiosPromise<Webhook>)>;
                createWebhook(createWebhookRequest?, options?): Promise<((axios?, basePath?) => AxiosPromise<Webhook>)>;
                deleteWebhook(webhookId, options?): Promise<((axios?, basePath?) => AxiosPromise<void>)>;
                listWebhooks(limit?, page?, options?): Promise<((axios?, basePath?) => AxiosPromise<WebhookList>)>;
                updateWebhook(webhookId, updateWebhookRequest?, options?): Promise<((axios?, basePath?) => AxiosPromise<Webhook>)>;
            }

            • createWalletWebhook:function
              • Create a new webhook scoped to a wallet

                +

                Parameters

                • walletId: string

                  The ID of the wallet to create the webhook for.

                  +
                • Optional createWalletWebhookRequest: CreateWalletWebhookRequest
                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                  +

                Returns Promise<((axios?, basePath?) => AxiosPromise<Webhook>)>

                Summary

                Create a new webhook scoped to a wallet

                +

                Throws

            • createWebhook:function
              • Create a new webhook

                Parameters

                • Optional createWebhookRequest: CreateWebhookRequest
                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns Promise<((axios?, basePath?) => AxiosPromise<Webhook>)>

                Summary

                Create a new webhook

                -

                Throws

            • deleteWebhook:function
              • Delete a webhook

                +

                Throws

            • deleteWebhook:function
              • Delete a webhook

                Parameters

                • webhookId: string

                  The Webhook uuid that needs to be deleted

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns Promise<((axios?, basePath?) => AxiosPromise<void>)>

                Summary

                Delete a webhook

                -

                Throws

            • listWebhooks:function
              • List webhooks, optionally filtered by event type.

                +

                Throws

            • listWebhooks:function
              • List webhooks, optionally filtered by event type.

                Parameters

                • Optional limit: number

                  A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

                • Optional page: string

                  A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns Promise<((axios?, basePath?) => AxiosPromise<WebhookList>)>

                Summary

                List webhooks

                -

                Throws

            • updateWebhook:function
              • Update a webhook

                +

                Throws

            • updateWebhook:function
              • Update a webhook

                Parameters

                • webhookId: string

                  The Webhook id that needs to be updated

                • Optional updateWebhookRequest: UpdateWebhookRequest
                • Optional options: RawAxiosRequestConfig

                  Override http request option.

                Returns Promise<((axios?, basePath?) => AxiosPromise<Webhook>)>

                Summary

                Update a webhook

                -

                Throws

            Export

          \ No newline at end of file +

          Throws

      Export

    \ No newline at end of file diff --git a/docs/functions/client_common.assertParamExists.html b/docs/functions/client_common.assertParamExists.html index b94d79fd..4ac03fba 100644 --- a/docs/functions/client_common.assertParamExists.html +++ b/docs/functions/client_common.assertParamExists.html @@ -1 +1 @@ -assertParamExists | @coinbase/coinbase-sdk
    • Parameters

      • functionName: string
      • paramName: string
      • paramValue: unknown

      Returns void

      Throws

      Export

    \ No newline at end of file +assertParamExists | @coinbase/coinbase-sdk
    • Parameters

      • functionName: string
      • paramName: string
      • paramValue: unknown

      Returns void

      Throws

      Export

    \ No newline at end of file diff --git a/docs/functions/client_common.createRequestFunction.html b/docs/functions/client_common.createRequestFunction.html index 3298ffe0..376e4b94 100644 --- a/docs/functions/client_common.createRequestFunction.html +++ b/docs/functions/client_common.createRequestFunction.html @@ -1 +1 @@ -createRequestFunction | @coinbase/coinbase-sdk
    • Parameters

      Returns (<T, R>(axios?, basePath?) => Promise<R>)

        • <T, R>(axios?, basePath?): Promise<R>
        • Type Parameters

          • T = unknown
          • R = AxiosResponse<T, any>

          Parameters

          • axios: AxiosInstance = globalAxios
          • basePath: string = BASE_PATH

          Returns Promise<R>

      Export

    \ No newline at end of file +createRequestFunction | @coinbase/coinbase-sdk
    • Parameters

      Returns (<T, R>(axios?, basePath?) => Promise<R>)

        • <T, R>(axios?, basePath?): Promise<R>
        • Type Parameters

          • T = unknown
          • R = AxiosResponse<T, any>

          Parameters

          • axios: AxiosInstance = globalAxios
          • basePath: string = BASE_PATH

          Returns Promise<R>

      Export

    \ No newline at end of file diff --git a/docs/functions/client_common.serializeDataIfNeeded.html b/docs/functions/client_common.serializeDataIfNeeded.html index ac8f7c6e..981c3205 100644 --- a/docs/functions/client_common.serializeDataIfNeeded.html +++ b/docs/functions/client_common.serializeDataIfNeeded.html @@ -1 +1 @@ -serializeDataIfNeeded | @coinbase/coinbase-sdk
    • Parameters

      • value: any
      • requestOptions: any
      • Optional configuration: Configuration

      Returns any

      Export

    \ No newline at end of file +serializeDataIfNeeded | @coinbase/coinbase-sdk
    • Parameters

      • value: any
      • requestOptions: any
      • Optional configuration: Configuration

      Returns any

      Export

    \ No newline at end of file diff --git a/docs/functions/client_common.setApiKeyToObject.html b/docs/functions/client_common.setApiKeyToObject.html index 64b9eee0..75e35403 100644 --- a/docs/functions/client_common.setApiKeyToObject.html +++ b/docs/functions/client_common.setApiKeyToObject.html @@ -1 +1 @@ -setApiKeyToObject | @coinbase/coinbase-sdk
    • Parameters

      • object: any
      • keyParamName: string
      • Optional configuration: Configuration

      Returns Promise<void>

      Export

    \ No newline at end of file +setApiKeyToObject | @coinbase/coinbase-sdk
    • Parameters

      • object: any
      • keyParamName: string
      • Optional configuration: Configuration

      Returns Promise<void>

      Export

    \ No newline at end of file diff --git a/docs/functions/client_common.setBasicAuthToObject.html b/docs/functions/client_common.setBasicAuthToObject.html index b54d91f7..4b3b4563 100644 --- a/docs/functions/client_common.setBasicAuthToObject.html +++ b/docs/functions/client_common.setBasicAuthToObject.html @@ -1 +1 @@ -setBasicAuthToObject | @coinbase/coinbase-sdk
    \ No newline at end of file +setBasicAuthToObject | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/functions/client_common.setBearerAuthToObject.html b/docs/functions/client_common.setBearerAuthToObject.html index 23d90d47..faf8b28d 100644 --- a/docs/functions/client_common.setBearerAuthToObject.html +++ b/docs/functions/client_common.setBearerAuthToObject.html @@ -1 +1 @@ -setBearerAuthToObject | @coinbase/coinbase-sdk
    \ No newline at end of file +setBearerAuthToObject | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/functions/client_common.setOAuthToObject.html b/docs/functions/client_common.setOAuthToObject.html index eea125e7..4ddf05c0 100644 --- a/docs/functions/client_common.setOAuthToObject.html +++ b/docs/functions/client_common.setOAuthToObject.html @@ -1 +1 @@ -setOAuthToObject | @coinbase/coinbase-sdk
    • Parameters

      • object: any
      • name: string
      • scopes: string[]
      • Optional configuration: Configuration

      Returns Promise<void>

      Export

    \ No newline at end of file +setOAuthToObject | @coinbase/coinbase-sdk
    • Parameters

      • object: any
      • name: string
      • scopes: string[]
      • Optional configuration: Configuration

      Returns Promise<void>

      Export

    \ No newline at end of file diff --git a/docs/functions/client_common.setSearchParams.html b/docs/functions/client_common.setSearchParams.html index 704e7bcd..24f83ff2 100644 --- a/docs/functions/client_common.setSearchParams.html +++ b/docs/functions/client_common.setSearchParams.html @@ -1 +1 @@ -setSearchParams | @coinbase/coinbase-sdk
    • Parameters

      • url: URL
      • Rest ...objects: any[]

      Returns void

      Export

    \ No newline at end of file +setSearchParams | @coinbase/coinbase-sdk
    • Parameters

      • url: URL
      • Rest ...objects: any[]

      Returns void

      Export

    \ No newline at end of file diff --git a/docs/functions/client_common.toPathString.html b/docs/functions/client_common.toPathString.html index 07c5f9f7..1a5ac37b 100644 --- a/docs/functions/client_common.toPathString.html +++ b/docs/functions/client_common.toPathString.html @@ -1 +1 @@ -toPathString | @coinbase/coinbase-sdk
    \ No newline at end of file +toPathString | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/functions/coinbase_hash.hashMessage.html b/docs/functions/coinbase_hash.hashMessage.html index 8f1c56c0..30873e3f 100644 --- a/docs/functions/coinbase_hash.hashMessage.html +++ b/docs/functions/coinbase_hash.hashMessage.html @@ -2,4 +2,4 @@

    Parameters

    • message: string | Uint8Array

      The message to hash.

    Returns string

    The EIP-191 hash of the message as a string.

    Throws

    if the message cannot be hashed.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/functions/coinbase_hash.hashTypedDataMessage.html b/docs/functions/coinbase_hash.hashTypedDataMessage.html index 30e94d6f..8b5dc811 100644 --- a/docs/functions/coinbase_hash.hashTypedDataMessage.html +++ b/docs/functions/coinbase_hash.hashTypedDataMessage.html @@ -4,4 +4,4 @@
  • value: Record<string, any>

    The actual data object to hash, conforming to the types defined.

  • Returns string

    The EIP-712 hash of the typed data as a hex-encoded string.

    Throws

    if the typed data cannot be hashed.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/functions/coinbase_utils.convertStringToHex.html b/docs/functions/coinbase_utils.convertStringToHex.html index daa47862..1f0d95c3 100644 --- a/docs/functions/coinbase_utils.convertStringToHex.html +++ b/docs/functions/coinbase_utils.convertStringToHex.html @@ -1,4 +1,4 @@ convertStringToHex | @coinbase/coinbase-sdk
    • Converts a Uint8Array to a hex string.

      Parameters

      • key: Uint8Array

        The key to convert.

      Returns string

      The converted hex string.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/functions/coinbase_utils.delay.html b/docs/functions/coinbase_utils.delay.html index 5379a556..626e81a9 100644 --- a/docs/functions/coinbase_utils.delay.html +++ b/docs/functions/coinbase_utils.delay.html @@ -1,4 +1,4 @@ delay | @coinbase/coinbase-sdk
    • Delays the execution of the function by the specified number of seconds.

      Parameters

      • seconds: number

        The number of seconds to delay the execution.

      Returns Promise<void>

      A promise that resolves after the specified number of seconds.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/functions/coinbase_utils.formatDate.html b/docs/functions/coinbase_utils.formatDate.html index 45d9314e..66f4a80c 100644 --- a/docs/functions/coinbase_utils.formatDate.html +++ b/docs/functions/coinbase_utils.formatDate.html @@ -1,4 +1,4 @@ formatDate | @coinbase/coinbase-sdk
    • Formats the input date to 'YYYY-MM-DD'

      Parameters

      • date: Date

        The date to format.

      Returns string

      a formated date of 'YYYY-MM-DD'

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/functions/coinbase_utils.getWeekBackDate.html b/docs/functions/coinbase_utils.getWeekBackDate.html index 79235599..02f4b784 100644 --- a/docs/functions/coinbase_utils.getWeekBackDate.html +++ b/docs/functions/coinbase_utils.getWeekBackDate.html @@ -1,4 +1,4 @@ getWeekBackDate | @coinbase/coinbase-sdk
    • Takes a date and subtracts a week from it. (7 days)

      Parameters

      • date: Date

        The date to be formatted.

      Returns string

      a formatted date that is one week ago.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/functions/coinbase_utils.logApiResponse.html b/docs/functions/coinbase_utils.logApiResponse.html index 726d49f5..2771d1f5 100644 --- a/docs/functions/coinbase_utils.logApiResponse.html +++ b/docs/functions/coinbase_utils.logApiResponse.html @@ -2,4 +2,4 @@

    Parameters

    • response: AxiosResponse<any, any>

      The Axios response object.

    • debugging: boolean = false

      Flag to enable or disable logging.

    Returns AxiosResponse<any, any>

    The Axios response object.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/functions/coinbase_utils.parseUnsignedPayload.html b/docs/functions/coinbase_utils.parseUnsignedPayload.html index c05b9f03..2394add9 100644 --- a/docs/functions/coinbase_utils.parseUnsignedPayload.html +++ b/docs/functions/coinbase_utils.parseUnsignedPayload.html @@ -2,4 +2,4 @@

    Parameters

    • payload: string

      The Unsigned Payload.

    Returns Record<string, any>

    The parsed JSON object.

    Throws

    If the Unsigned Payload is invalid.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/functions/coinbase_utils.registerAxiosInterceptors.html b/docs/functions/coinbase_utils.registerAxiosInterceptors.html index f312447c..2323ef6b 100644 --- a/docs/functions/coinbase_utils.registerAxiosInterceptors.html +++ b/docs/functions/coinbase_utils.registerAxiosInterceptors.html @@ -2,4 +2,4 @@

    Parameters

    • axiosInstance: Axios

      The Axios instance to register the interceptors.

    • requestFn: RequestFunctionType

      The request interceptor function.

    • responseFn: ResponseFunctionType

      The response interceptor function.

      -

    Returns void

    \ No newline at end of file +

    Returns void

    \ No newline at end of file diff --git a/docs/hierarchy.html b/docs/hierarchy.html index b6930def..d65ce9fa 100644 --- a/docs/hierarchy.html +++ b/docs/hierarchy.html @@ -1 +1 @@ -@coinbase/coinbase-sdk
    \ No newline at end of file +@coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Address.html b/docs/interfaces/client_api.Address.html index e6a04409..ead0e664 100644 --- a/docs/interfaces/client_api.Address.html +++ b/docs/interfaces/client_api.Address.html @@ -1,17 +1,17 @@ Address | @coinbase/coinbase-sdk

    Export

    Address

    -
    interface Address {
        address_id: string;
        index: number;
        network_id: string;
        public_key: string;
        wallet_id: string;
    }

    Properties

    interface Address {
        address_id: string;
        index: number;
        network_id: string;
        public_key: string;
        wallet_id: string;
    }

    Properties

    address_id: string

    The onchain address derived on the server-side.

    Memberof

    Address

    -
    index: number

    The index of the address in the wallet.

    +
    index: number

    The index of the address in the wallet.

    Memberof

    Address

    -
    network_id: string

    The ID of the blockchain network

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    Address

    -
    public_key: string

    The public key from which the address is derived.

    +
    public_key: string

    The public key from which the address is derived.

    Memberof

    Address

    -
    wallet_id: string

    The ID of the wallet that owns the address

    +
    wallet_id: string

    The ID of the wallet that owns the address

    Memberof

    Address

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.AddressBalanceList.html b/docs/interfaces/client_api.AddressBalanceList.html index 247753b1..5e77ee9e 100644 --- a/docs/interfaces/client_api.AddressBalanceList.html +++ b/docs/interfaces/client_api.AddressBalanceList.html @@ -1,13 +1,13 @@ AddressBalanceList | @coinbase/coinbase-sdk

    Export

    AddressBalanceList

    -
    interface AddressBalanceList {
        data: Balance[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    interface AddressBalanceList {
        data: Balance[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    data: Balance[]

    Memberof

    AddressBalanceList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    AddressBalanceList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    AddressBalanceList

    -
    total_count: number

    The total number of balances for the wallet.

    +
    total_count: number

    The total number of balances for the wallet.

    Memberof

    AddressBalanceList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.AddressHistoricalBalanceList.html b/docs/interfaces/client_api.AddressHistoricalBalanceList.html index 85e418f9..80824cab 100644 --- a/docs/interfaces/client_api.AddressHistoricalBalanceList.html +++ b/docs/interfaces/client_api.AddressHistoricalBalanceList.html @@ -1,10 +1,10 @@ AddressHistoricalBalanceList | @coinbase/coinbase-sdk

    Export

    AddressHistoricalBalanceList

    -
    interface AddressHistoricalBalanceList {
        data: HistoricalBalance[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    interface AddressHistoricalBalanceList {
        data: HistoricalBalance[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    Memberof

    AddressHistoricalBalanceList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    AddressHistoricalBalanceList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    AddressHistoricalBalanceList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.AddressList.html b/docs/interfaces/client_api.AddressList.html index 058fd2f3..46af041c 100644 --- a/docs/interfaces/client_api.AddressList.html +++ b/docs/interfaces/client_api.AddressList.html @@ -1,13 +1,13 @@ AddressList | @coinbase/coinbase-sdk

    Export

    AddressList

    -
    interface AddressList {
        data: Address[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    interface AddressList {
        data: Address[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    data: Address[]

    Memberof

    AddressList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    AddressList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    AddressList

    -
    total_count: number

    The total number of addresses for the wallet.

    +
    total_count: number

    The total number of addresses for the wallet.

    Memberof

    AddressList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.AddressTransactionList.html b/docs/interfaces/client_api.AddressTransactionList.html index 4b8e4af7..d1e95d58 100644 --- a/docs/interfaces/client_api.AddressTransactionList.html +++ b/docs/interfaces/client_api.AddressTransactionList.html @@ -1,10 +1,10 @@ AddressTransactionList | @coinbase/coinbase-sdk

    Export

    AddressTransactionList

    -
    interface AddressTransactionList {
        data: Transaction[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    interface AddressTransactionList {
        data: Transaction[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    data: Transaction[]

    Memberof

    AddressTransactionList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    AddressTransactionList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    AddressTransactionList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.AddressesApiInterface.html b/docs/interfaces/client_api.AddressesApiInterface.html index 9370f20f..9054491b 100644 --- a/docs/interfaces/client_api.AddressesApiInterface.html +++ b/docs/interfaces/client_api.AddressesApiInterface.html @@ -1,6 +1,6 @@ AddressesApiInterface | @coinbase/coinbase-sdk

    AddressesApi - interface

    Export

    AddressesApi

    -
    interface AddressesApiInterface {
        createAddress(walletId, createAddressRequest?, options?): AxiosPromise<Address>;
        createPayloadSignature(walletId, addressId, createPayloadSignatureRequest?, options?): AxiosPromise<PayloadSignature>;
        getAddress(walletId, addressId, options?): AxiosPromise<Address>;
        getAddressBalance(walletId, addressId, assetId, options?): AxiosPromise<Balance>;
        getPayloadSignature(walletId, addressId, payloadSignatureId, options?): AxiosPromise<PayloadSignature>;
        listAddressBalances(walletId, addressId, page?, options?): AxiosPromise<AddressBalanceList>;
        listAddresses(walletId, limit?, page?, options?): AxiosPromise<AddressList>;
        listPayloadSignatures(walletId, addressId, limit?, page?, options?): AxiosPromise<PayloadSignatureList>;
        requestFaucetFunds(walletId, addressId, assetId?, options?): AxiosPromise<FaucetTransaction>;
    }

    Implemented by

    Methods

    interface AddressesApiInterface {
        createAddress(walletId, createAddressRequest?, options?): AxiosPromise<Address>;
        createPayloadSignature(walletId, addressId, createPayloadSignatureRequest?, options?): AxiosPromise<PayloadSignature>;
        getAddress(walletId, addressId, options?): AxiosPromise<Address>;
        getAddressBalance(walletId, addressId, assetId, options?): AxiosPromise<Balance>;
        getPayloadSignature(walletId, addressId, payloadSignatureId, options?): AxiosPromise<PayloadSignature>;
        listAddressBalances(walletId, addressId, page?, options?): AxiosPromise<AddressBalanceList>;
        listAddresses(walletId, limit?, page?, options?): AxiosPromise<AddressList>;
        listPayloadSignatures(walletId, addressId, limit?, page?, options?): AxiosPromise<PayloadSignatureList>;
        requestFaucetFunds(walletId, addressId, assetId?, options?): AxiosPromise<FaucetTransaction>;
    }

    Implemented by

    Methods

  • Optional createAddressRequest: CreateAddressRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Address>

    Summary

    Create a new address

    Throws

    Memberof

    AddressesApiInterface

    -
    • Create a new payload signature with an address.

      +
    • Create a new payload signature with an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address to sign the payload with.

      • Optional createPayloadSignatureRequest: CreatePayloadSignatureRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<PayloadSignature>

      Summary

      Create a new payload signature.

      Throws

      Memberof

      AddressesApiInterface

      -
    • Get address

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Address>

      Summary

      Get address by onchain address

      Throws

      Memberof

      AddressesApiInterface

      -
    • Get address balance

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balance for

      • addressId: string

        The onchain address of the address that is being fetched.

      • assetId: string

        The symbol of the asset to fetch the balance for

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Balance>

      Summary

      Get address balance for asset

      Throws

      Memberof

      AddressesApiInterface

      -
    • Get payload signature.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that signed the payload.

      • payloadSignatureId: string

        The ID of the payload signature to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<PayloadSignature>

      Summary

      Get payload signature.

      Throws

      Memberof

      AddressesApiInterface

      -
    • Get address balances

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balances for

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressBalanceList>

      Summary

      Get all balances for address

      Throws

      Memberof

      AddressesApiInterface

      -
    • List addresses in the wallet.

      Parameters

      • walletId: string

        The ID of the wallet whose addresses to fetch

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressList>

      Summary

      List addresses in a wallet.

      Throws

      Memberof

      AddressesApiInterface

      -
    • List payload signatures for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address whose payload signatures to fetch.

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        @@ -62,11 +62,11 @@

        Throws

        Memberof

        AddressesApiInterface

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<PayloadSignatureList>

      Summary

      List payload signatures for an address.

      Throws

      Memberof

      AddressesApiInterface

      -
    • Request faucet funds to be sent to onchain address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional assetId: string

        The ID of the asset to transfer from the faucet.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<FaucetTransaction>

      Summary

      Request faucet funds for onchain address.

      Throws

      Memberof

      AddressesApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Asset.html b/docs/interfaces/client_api.Asset.html index 838cfffa..cfb243b2 100644 --- a/docs/interfaces/client_api.Asset.html +++ b/docs/interfaces/client_api.Asset.html @@ -1,15 +1,15 @@ Asset | @coinbase/coinbase-sdk

    An asset onchain scoped to a particular network, e.g. ETH on base-sepolia, or the USDC ERC20 Token on ethereum-mainnet.

    Export

    Asset

    -
    interface Asset {
        asset_id: string;
        contract_address?: string;
        decimals?: number;
        network_id: string;
    }

    Properties

    interface Asset {
        asset_id: string;
        contract_address?: string;
        decimals?: number;
        network_id: string;
    }

    Properties

    asset_id: string

    The ID for the asset on the network

    Memberof

    Asset

    -
    contract_address?: string

    The optional contract address for the asset. This will be specified for smart contract-based assets, for example ERC20s.

    +
    contract_address?: string

    The optional contract address for the asset. This will be specified for smart contract-based assets, for example ERC20s.

    Memberof

    Asset

    -
    decimals?: number

    The number of decimals the asset supports. This is used to convert from atomic units to base units.

    +
    decimals?: number

    The number of decimals the asset supports. This is used to convert from atomic units to base units.

    Memberof

    Asset

    -
    network_id: string

    The ID of the blockchain network

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    Asset

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.AssetsApiInterface.html b/docs/interfaces/client_api.AssetsApiInterface.html index 83439f15..bf6c391b 100644 --- a/docs/interfaces/client_api.AssetsApiInterface.html +++ b/docs/interfaces/client_api.AssetsApiInterface.html @@ -1,10 +1,10 @@ AssetsApiInterface | @coinbase/coinbase-sdk

    AssetsApi - interface

    Export

    AssetsApi

    -
    interface AssetsApiInterface {
        getAsset(networkId, assetId, options?): AxiosPromise<Asset>;
    }

    Implemented by

    Methods

    interface AssetsApiInterface {
        getAsset(networkId, assetId, options?): AxiosPromise<Asset>;
    }

    Implemented by

    Methods

    Methods

    • Get the asset for the specified asset ID.

      Parameters

      • networkId: string

        The ID of the blockchain network

      • assetId: string

        The ID of the asset to fetch. This could be a symbol or an ERC20 contract address.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Asset>

      Summary

      Get the asset for the specified asset ID.

      Throws

      Memberof

      AssetsApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Balance.html b/docs/interfaces/client_api.Balance.html index 86c61dca..a8206198 100644 --- a/docs/interfaces/client_api.Balance.html +++ b/docs/interfaces/client_api.Balance.html @@ -1,8 +1,8 @@ Balance | @coinbase/coinbase-sdk

    The balance of an asset onchain

    Export

    Balance

    -
    interface Balance {
        amount: string;
        asset: Asset;
    }

    Properties

    interface Balance {
        amount: string;
        asset: Asset;
    }

    Properties

    Properties

    amount: string

    The amount in the atomic units of the asset

    Memberof

    Balance

    -
    asset: Asset

    Memberof

    Balance

    -
    \ No newline at end of file +
    asset: Asset

    Memberof

    Balance

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.BalanceHistoryApiInterface.html b/docs/interfaces/client_api.BalanceHistoryApiInterface.html index a8ddf920..5d5cd3e1 100644 --- a/docs/interfaces/client_api.BalanceHistoryApiInterface.html +++ b/docs/interfaces/client_api.BalanceHistoryApiInterface.html @@ -1,6 +1,6 @@ BalanceHistoryApiInterface | @coinbase/coinbase-sdk

    BalanceHistoryApi - interface

    Export

    BalanceHistoryApi

    -
    interface BalanceHistoryApiInterface {
        listAddressHistoricalBalance(networkId, addressId, assetId, limit?, page?, options?): AxiosPromise<AddressHistoricalBalanceList>;
    }

    Implemented by

    Methods

    interface BalanceHistoryApiInterface {
        listAddressHistoricalBalance(networkId, addressId, assetId, limit?, page?, options?): AxiosPromise<AddressHistoricalBalanceList>;
    }

    Implemented by

    Methods

    • List the historical balance of an asset in a specific address.

      Parameters

      • networkId: string

        The ID of the blockchain network

      • addressId: string

        The ID of the address to fetch the historical balance for.

        @@ -10,4 +10,4 @@
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressHistoricalBalanceList>

      Summary

      Get address balance history for asset

      Throws

      Memberof

      BalanceHistoryApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.BroadcastContractInvocationRequest.html b/docs/interfaces/client_api.BroadcastContractInvocationRequest.html index 08e089b4..ffc0789a 100644 --- a/docs/interfaces/client_api.BroadcastContractInvocationRequest.html +++ b/docs/interfaces/client_api.BroadcastContractInvocationRequest.html @@ -1,5 +1,5 @@ BroadcastContractInvocationRequest | @coinbase/coinbase-sdk

    Interface BroadcastContractInvocationRequest

    Export

    BroadcastContractInvocationRequest

    -
    interface BroadcastContractInvocationRequest {
        signed_payload: string;
    }

    Properties

    interface BroadcastContractInvocationRequest {
        signed_payload: string;
    }

    Properties

    Properties

    signed_payload: string

    The hex-encoded signed payload of the contract invocation

    Memberof

    BroadcastContractInvocationRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.BroadcastStakingOperationRequest.html b/docs/interfaces/client_api.BroadcastStakingOperationRequest.html index c0c73600..8b3d9633 100644 --- a/docs/interfaces/client_api.BroadcastStakingOperationRequest.html +++ b/docs/interfaces/client_api.BroadcastStakingOperationRequest.html @@ -1,8 +1,8 @@ BroadcastStakingOperationRequest | @coinbase/coinbase-sdk

    Export

    BroadcastStakingOperationRequest

    -
    interface BroadcastStakingOperationRequest {
        signed_payload: string;
        transaction_index: number;
    }

    Properties

    interface BroadcastStakingOperationRequest {
        signed_payload: string;
        transaction_index: number;
    }

    Properties

    signed_payload: string

    The hex-encoded signed payload of the staking operation.

    Memberof

    BroadcastStakingOperationRequest

    -
    transaction_index: number

    The index in the transaction array of the staking operation.

    +
    transaction_index: number

    The index in the transaction array of the staking operation.

    Memberof

    BroadcastStakingOperationRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.BroadcastTradeRequest.html b/docs/interfaces/client_api.BroadcastTradeRequest.html index 2ea64882..67d46e53 100644 --- a/docs/interfaces/client_api.BroadcastTradeRequest.html +++ b/docs/interfaces/client_api.BroadcastTradeRequest.html @@ -1,8 +1,8 @@ BroadcastTradeRequest | @coinbase/coinbase-sdk

    Export

    BroadcastTradeRequest

    -
    interface BroadcastTradeRequest {
        approve_transaction_signed_payload?: string;
        signed_payload: string;
    }

    Properties

    interface BroadcastTradeRequest {
        approve_transaction_signed_payload?: string;
        signed_payload: string;
    }

    Properties

    approve_transaction_signed_payload?: string

    The hex-encoded signed payload of the approval transaction

    Memberof

    BroadcastTradeRequest

    -
    signed_payload: string

    The hex-encoded signed payload of the trade

    +
    signed_payload: string

    The hex-encoded signed payload of the trade

    Memberof

    BroadcastTradeRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.BroadcastTransferRequest.html b/docs/interfaces/client_api.BroadcastTransferRequest.html index 468a8976..6e8881d3 100644 --- a/docs/interfaces/client_api.BroadcastTransferRequest.html +++ b/docs/interfaces/client_api.BroadcastTransferRequest.html @@ -1,5 +1,5 @@ BroadcastTransferRequest | @coinbase/coinbase-sdk

    Export

    BroadcastTransferRequest

    -
    interface BroadcastTransferRequest {
        signed_payload: string;
    }

    Properties

    interface BroadcastTransferRequest {
        signed_payload: string;
    }

    Properties

    Properties

    signed_payload: string

    The hex-encoded signed payload of the transfer

    Memberof

    BroadcastTransferRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.BuildStakingOperationRequest.html b/docs/interfaces/client_api.BuildStakingOperationRequest.html index 08872eab..897e1b83 100644 --- a/docs/interfaces/client_api.BuildStakingOperationRequest.html +++ b/docs/interfaces/client_api.BuildStakingOperationRequest.html @@ -1,16 +1,16 @@ BuildStakingOperationRequest | @coinbase/coinbase-sdk

    Export

    BuildStakingOperationRequest

    -
    interface BuildStakingOperationRequest {
        action: string;
        address_id: string;
        asset_id: string;
        network_id: string;
        options: {
            [key: string]: string;
        };
    }

    Properties

    interface BuildStakingOperationRequest {
        action: string;
        address_id: string;
        asset_id: string;
        network_id: string;
        options: {
            [key: string]: string;
        };
    }

    Properties

    action: string

    The type of staking operation

    Memberof

    BuildStakingOperationRequest

    -
    address_id: string

    The onchain address from which the staking transaction originates and is responsible for signing the transaction.

    +
    address_id: string

    The onchain address from which the staking transaction originates and is responsible for signing the transaction.

    Memberof

    BuildStakingOperationRequest

    -
    asset_id: string

    The ID of the asset being staked

    +
    asset_id: string

    The ID of the asset being staked

    Memberof

    BuildStakingOperationRequest

    -
    network_id: string

    The ID of the blockchain network

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    BuildStakingOperationRequest

    -
    options: {
        [key: string]: string;
    }

    Type declaration

    • [key: string]: string

    Memberof

    BuildStakingOperationRequest

    -
    \ No newline at end of file +
    options: {
        [key: string]: string;
    }

    Type declaration

    • [key: string]: string

    Memberof

    BuildStakingOperationRequest

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ContractEvent.html b/docs/interfaces/client_api.ContractEvent.html index dc4eea70..5ec7baa3 100644 --- a/docs/interfaces/client_api.ContractEvent.html +++ b/docs/interfaces/client_api.ContractEvent.html @@ -1,6 +1,6 @@ ContractEvent | @coinbase/coinbase-sdk

    Represents a single decoded event emitted by a smart contract

    Export

    ContractEvent

    -
    interface ContractEvent {
        block_height: number;
        block_time: string;
        contract_address: string;
        contract_name: string;
        data: string;
        event_index: number;
        event_name: string;
        four_bytes: string;
        network_id: string;
        protocol_name: string;
        sig: string;
        tx_hash: string;
        tx_index: number;
    }

    Properties

    interface ContractEvent {
        block_height: number;
        block_time: string;
        contract_address: string;
        contract_name: string;
        data: string;
        event_index: number;
        event_name: string;
        four_bytes: string;
        network_id: string;
        protocol_name: string;
        sig: string;
        tx_hash: string;
        tx_index: number;
    }

    Properties

    block_height: number

    The block number in which the event was emitted

    Memberof

    ContractEvent

    -
    block_time: string

    The timestamp of the block in which the event was emitted

    +
    block_time: string

    The timestamp of the block in which the event was emitted

    Memberof

    ContractEvent

    -
    contract_address: string

    The EVM address of the smart contract

    +
    contract_address: string

    The EVM address of the smart contract

    Memberof

    ContractEvent

    -
    contract_name: string

    The name of the specific contract within the project

    +
    contract_name: string

    The name of the specific contract within the project

    Memberof

    ContractEvent

    -
    data: string

    The event data in a stringified format

    +
    data: string

    The event data in a stringified format

    Memberof

    ContractEvent

    -
    event_index: number

    The index of the event within the transaction

    +
    event_index: number

    The index of the event within the transaction

    Memberof

    ContractEvent

    -
    event_name: string

    The name of the event emitted by the contract

    +
    event_name: string

    The name of the event emitted by the contract

    Memberof

    ContractEvent

    -
    four_bytes: string

    The first four bytes of the Keccak hash of the event signature

    +
    four_bytes: string

    The first four bytes of the Keccak hash of the event signature

    Memberof

    ContractEvent

    -
    network_id: string

    The name of the blockchain network

    +
    network_id: string

    The name of the blockchain network

    Memberof

    ContractEvent

    -
    protocol_name: string

    The name of the blockchain project or protocol

    +
    protocol_name: string

    The name of the blockchain project or protocol

    Memberof

    ContractEvent

    -
    sig: string

    The signature of the event, including parameter types

    +
    sig: string

    The signature of the event, including parameter types

    Memberof

    ContractEvent

    -
    tx_hash: string

    The transaction hash in which the event was emitted

    +
    tx_hash: string

    The transaction hash in which the event was emitted

    Memberof

    ContractEvent

    -
    tx_index: number

    The index of the transaction within the block

    +
    tx_index: number

    The index of the transaction within the block

    Memberof

    ContractEvent

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ContractEventList.html b/docs/interfaces/client_api.ContractEventList.html index 2522301c..f9d22dc4 100644 --- a/docs/interfaces/client_api.ContractEventList.html +++ b/docs/interfaces/client_api.ContractEventList.html @@ -1,12 +1,12 @@ ContractEventList | @coinbase/coinbase-sdk

    A list of contract events with pagination information

    Export

    ContractEventList

    -
    interface ContractEventList {
        data: ContractEvent[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    interface ContractEventList {
        data: ContractEvent[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    An array of ContractEvent objects

    Memberof

    ContractEventList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched

    Memberof

    ContractEventList

    -
    next_page: string

    The page token to be used to fetch the next page

    +
    next_page: string

    The page token to be used to fetch the next page

    Memberof

    ContractEventList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ContractEventsApiInterface.html b/docs/interfaces/client_api.ContractEventsApiInterface.html index 007209a8..156b10c6 100644 --- a/docs/interfaces/client_api.ContractEventsApiInterface.html +++ b/docs/interfaces/client_api.ContractEventsApiInterface.html @@ -1,6 +1,6 @@ ContractEventsApiInterface | @coinbase/coinbase-sdk

    ContractEventsApi - interface

    Export

    ContractEventsApi

    -
    interface ContractEventsApiInterface {
        listContractEvents(networkId, protocolName, contractAddress, contractName, eventName, fromBlockHeight, toBlockHeight, nextPage?, options?): AxiosPromise<ContractEventList>;
    }

    Implemented by

    Methods

    interface ContractEventsApiInterface {
        listContractEvents(networkId, protocolName, contractAddress, contractName, eventName, fromBlockHeight, toBlockHeight, nextPage?, options?): AxiosPromise<ContractEventList>;
    }

    Implemented by

    Methods

    • Retrieve events for a specific contract

      Parameters

      • networkId: string

        Unique identifier for the blockchain network

      • protocolName: string

        Case-sensitive name of the blockchain protocol

        @@ -13,4 +13,4 @@
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ContractEventList>

      Summary

      List contract events

      Throws

      Memberof

      ContractEventsApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ContractInvocation.html b/docs/interfaces/client_api.ContractInvocation.html index 76c53db6..0d9b4b0d 100644 --- a/docs/interfaces/client_api.ContractInvocation.html +++ b/docs/interfaces/client_api.ContractInvocation.html @@ -1,6 +1,6 @@ ContractInvocation | @coinbase/coinbase-sdk

    A contract invocation onchain.

    Export

    ContractInvocation

    -
    interface ContractInvocation {
        abi?: string;
        address_id: string;
        amount: string;
        args: string;
        contract_address: string;
        contract_invocation_id: string;
        method: string;
        network_id: string;
        transaction: Transaction;
        wallet_id: string;
    }

    Properties

    interface ContractInvocation {
        abi?: string;
        address_id: string;
        amount: string;
        args: string;
        contract_address: string;
        contract_invocation_id: string;
        method: string;
        network_id: string;
        transaction: Transaction;
        wallet_id: string;
    }

    Properties

    abi? address_id amount args @@ -12,21 +12,21 @@ wallet_id

    Properties

    abi?: string

    The JSON-encoded ABI of the contract.

    Memberof

    ContractInvocation

    -
    address_id: string

    The onchain address of the address invoking the contract.

    +
    address_id: string

    The onchain address of the address invoking the contract.

    Memberof

    ContractInvocation

    -
    amount: string

    The amount to send to the contract for a payable method

    +
    amount: string

    The amount to send to the contract for a payable method

    Memberof

    ContractInvocation

    -
    args: string

    The JSON-encoded arguments to pass to the contract method. The keys should be the argument names and the values should be the argument values.

    +
    args: string

    The JSON-encoded arguments to pass to the contract method. The keys should be the argument names and the values should be the argument values.

    Memberof

    ContractInvocation

    -
    contract_address: string

    The onchain address of the contract.

    +
    contract_address: string

    The onchain address of the contract.

    Memberof

    ContractInvocation

    -
    contract_invocation_id: string

    The ID of the contract invocation.

    +
    contract_invocation_id: string

    The ID of the contract invocation.

    Memberof

    ContractInvocation

    -
    method: string

    The method to be invoked on the contract.

    +
    method: string

    The method to be invoked on the contract.

    Memberof

    ContractInvocation

    -
    network_id: string

    The ID of the blockchain network.

    +
    network_id: string

    The ID of the blockchain network.

    Memberof

    ContractInvocation

    -
    transaction: Transaction

    Memberof

    ContractInvocation

    -
    wallet_id: string

    The ID of the wallet that owns the address.

    +
    transaction: Transaction

    Memberof

    ContractInvocation

    +
    wallet_id: string

    The ID of the wallet that owns the address.

    Memberof

    ContractInvocation

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ContractInvocationList.html b/docs/interfaces/client_api.ContractInvocationList.html index 08185c5a..bbf72196 100644 --- a/docs/interfaces/client_api.ContractInvocationList.html +++ b/docs/interfaces/client_api.ContractInvocationList.html @@ -1,13 +1,13 @@ ContractInvocationList | @coinbase/coinbase-sdk

    Export

    ContractInvocationList

    -
    interface ContractInvocationList {
        data: ContractInvocation[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    interface ContractInvocationList {
        data: ContractInvocation[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    Memberof

    ContractInvocationList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    ContractInvocationList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    ContractInvocationList

    -
    total_count: number

    The total number of contract invocations for the address in the wallet.

    +
    total_count: number

    The total number of contract invocations for the address in the wallet.

    Memberof

    ContractInvocationList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ContractInvocationsApiInterface.html b/docs/interfaces/client_api.ContractInvocationsApiInterface.html index aca45fd8..f59422c0 100644 --- a/docs/interfaces/client_api.ContractInvocationsApiInterface.html +++ b/docs/interfaces/client_api.ContractInvocationsApiInterface.html @@ -1,6 +1,6 @@ ContractInvocationsApiInterface | @coinbase/coinbase-sdk

    ContractInvocationsApi - interface

    Export

    ContractInvocationsApi

    -
    interface ContractInvocationsApiInterface {
        broadcastContractInvocation(walletId, addressId, contractInvocationId, broadcastContractInvocationRequest, options?): AxiosPromise<ContractInvocation>;
        createContractInvocation(walletId, addressId, createContractInvocationRequest, options?): AxiosPromise<ContractInvocation>;
        getContractInvocation(walletId, addressId, contractInvocationId, options?): AxiosPromise<ContractInvocation>;
        listContractInvocations(walletId, addressId, limit?, page?, options?): AxiosPromise<ContractInvocationList>;
    }

    Implemented by

    Methods

    interface ContractInvocationsApiInterface {
        broadcastContractInvocation(walletId, addressId, contractInvocationId, broadcastContractInvocationRequest, options?): AxiosPromise<ContractInvocation>;
        createContractInvocation(walletId, addressId, createContractInvocationRequest, options?): AxiosPromise<ContractInvocation>;
        getContractInvocation(walletId, addressId, contractInvocationId, options?): AxiosPromise<ContractInvocation>;
        listContractInvocations(walletId, addressId, limit?, page?, options?): AxiosPromise<ContractInvocationList>;
    }

    Implemented by

    Methods

  • broadcastContractInvocationRequest: BroadcastContractInvocationRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<ContractInvocation>

    Summary

    Broadcast a contract invocation.

    Throws

    Memberof

    ContractInvocationsApiInterface

    -
    • Create a new contract invocation.

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to.

      • addressId: string

        The ID of the address to invoke the contract from.

      • createContractInvocationRequest: CreateContractInvocationRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ContractInvocation>

      Summary

      Create a new contract invocation for an address.

      Throws

      Memberof

      ContractInvocationsApiInterface

      -
    • Get a contract invocation by ID.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the contract invocation belongs to.

      • contractInvocationId: string

        The ID of the contract invocation to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ContractInvocation>

      Summary

      Get a contract invocation by ID.

      Throws

      Memberof

      ContractInvocationsApiInterface

      -
    • List contract invocations for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to list contract invocations for.

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        @@ -32,4 +32,4 @@

        Throws

        Memberof

        ContractInvocationsApiInterface

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ContractInvocationList>

      Summary

      List contract invocations for an address.

      Throws

      Memberof

      ContractInvocationsApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateAddressRequest.html b/docs/interfaces/client_api.CreateAddressRequest.html index 6899c5eb..f4d55945 100644 --- a/docs/interfaces/client_api.CreateAddressRequest.html +++ b/docs/interfaces/client_api.CreateAddressRequest.html @@ -1,11 +1,11 @@ CreateAddressRequest | @coinbase/coinbase-sdk

    Export

    CreateAddressRequest

    -
    interface CreateAddressRequest {
        address_index?: number;
        attestation?: string;
        public_key?: string;
    }

    Properties

    interface CreateAddressRequest {
        address_index?: number;
        attestation?: string;
        public_key?: string;
    }

    Properties

    address_index?: number

    The index of the address within the wallet.

    Memberof

    CreateAddressRequest

    -
    attestation?: string

    An attestation signed by the private key that is associated with the wallet. The attestation will be a hex-encoded signature of a json payload with fields wallet_id and public_key, signed by the private key associated with the public_key set in the request.

    +
    attestation?: string

    An attestation signed by the private key that is associated with the wallet. The attestation will be a hex-encoded signature of a json payload with fields wallet_id and public_key, signed by the private key associated with the public_key set in the request.

    Memberof

    CreateAddressRequest

    -
    public_key?: string

    The public key from which the address will be derived.

    +
    public_key?: string

    The public key from which the address will be derived.

    Memberof

    CreateAddressRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateContractInvocationRequest.html b/docs/interfaces/client_api.CreateContractInvocationRequest.html index ff026d23..614aa976 100644 --- a/docs/interfaces/client_api.CreateContractInvocationRequest.html +++ b/docs/interfaces/client_api.CreateContractInvocationRequest.html @@ -1,17 +1,17 @@ CreateContractInvocationRequest | @coinbase/coinbase-sdk

    Export

    CreateContractInvocationRequest

    -
    interface CreateContractInvocationRequest {
        abi?: string;
        amount?: string;
        args: string;
        contract_address: string;
        method: string;
    }

    Properties

    interface CreateContractInvocationRequest {
        abi?: string;
        amount?: string;
        args: string;
        contract_address: string;
        method: string;
    }

    Properties

    abi?: string

    The JSON-encoded ABI of the contract.

    Memberof

    CreateContractInvocationRequest

    -
    amount?: string

    The amount in atomic units of the native asset to send to the contract for a payable method

    +
    amount?: string

    The amount in atomic units of the native asset to send to the contract for a payable method

    Memberof

    CreateContractInvocationRequest

    -
    args: string

    The JSON-encoded arguments to pass to the contract method. The keys should be the argument names and the values should be the argument values.

    +
    args: string

    The JSON-encoded arguments to pass to the contract method. The keys should be the argument names and the values should be the argument values.

    Memberof

    CreateContractInvocationRequest

    -
    contract_address: string

    The address of the contract to invoke.

    +
    contract_address: string

    The address of the contract to invoke.

    Memberof

    CreateContractInvocationRequest

    -
    method: string

    The method to invoke on the contract.

    +
    method: string

    The method to invoke on the contract.

    Memberof

    CreateContractInvocationRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreatePayloadSignatureRequest.html b/docs/interfaces/client_api.CreatePayloadSignatureRequest.html index 617714bb..050e0b1e 100644 --- a/docs/interfaces/client_api.CreatePayloadSignatureRequest.html +++ b/docs/interfaces/client_api.CreatePayloadSignatureRequest.html @@ -1,8 +1,8 @@ CreatePayloadSignatureRequest | @coinbase/coinbase-sdk

    Export

    CreatePayloadSignatureRequest

    -
    interface CreatePayloadSignatureRequest {
        signature?: string;
        unsigned_payload: string;
    }

    Properties

    interface CreatePayloadSignatureRequest {
        signature?: string;
        unsigned_payload: string;
    }

    Properties

    signature?: string

    The signature of the payload.

    Memberof

    CreatePayloadSignatureRequest

    -
    unsigned_payload: string

    The unsigned payload.

    +
    unsigned_payload: string

    The unsigned payload.

    Memberof

    CreatePayloadSignatureRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateServerSignerRequest.html b/docs/interfaces/client_api.CreateServerSignerRequest.html index 7342946a..3b243bc1 100644 --- a/docs/interfaces/client_api.CreateServerSignerRequest.html +++ b/docs/interfaces/client_api.CreateServerSignerRequest.html @@ -1,11 +1,11 @@ CreateServerSignerRequest | @coinbase/coinbase-sdk

    Export

    CreateServerSignerRequest

    -
    interface CreateServerSignerRequest {
        enrollment_data: string;
        is_mpc: boolean;
        server_signer_id?: string;
    }

    Properties

    interface CreateServerSignerRequest {
        enrollment_data: string;
        is_mpc: boolean;
        server_signer_id?: string;
    }

    Properties

    enrollment_data: string

    The enrollment data of the server signer. This will be the base64 encoded server-signer-id for the 1 of 1 server signer.

    Memberof

    CreateServerSignerRequest

    -
    is_mpc: boolean

    Whether the Server-Signer uses MPC.

    +
    is_mpc: boolean

    Whether the Server-Signer uses MPC.

    Memberof

    CreateServerSignerRequest

    -
    server_signer_id?: string

    The ID of the server signer for the 1 of 1 server signer.

    +
    server_signer_id?: string

    The ID of the server signer for the 1 of 1 server signer.

    Memberof

    CreateServerSignerRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateSmartContractRequest.html b/docs/interfaces/client_api.CreateSmartContractRequest.html index ce88375e..3ce23de5 100644 --- a/docs/interfaces/client_api.CreateSmartContractRequest.html +++ b/docs/interfaces/client_api.CreateSmartContractRequest.html @@ -1,6 +1,6 @@ CreateSmartContractRequest | @coinbase/coinbase-sdk

    Export

    CreateSmartContractRequest

    -
    interface CreateSmartContractRequest {
        options: SmartContractOptions;
        type: SmartContractType;
    }

    Properties

    interface CreateSmartContractRequest {
        options: SmartContractOptions;
        type: SmartContractType;
    }

    Properties

    Properties

    Memberof

    CreateSmartContractRequest

    -

    Memberof

    CreateSmartContractRequest

    -
    \ No newline at end of file +

    Memberof

    CreateSmartContractRequest

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateStakingOperationRequest.html b/docs/interfaces/client_api.CreateStakingOperationRequest.html index b1fda0cc..f3939afd 100644 --- a/docs/interfaces/client_api.CreateStakingOperationRequest.html +++ b/docs/interfaces/client_api.CreateStakingOperationRequest.html @@ -1,13 +1,13 @@ CreateStakingOperationRequest | @coinbase/coinbase-sdk

    Export

    CreateStakingOperationRequest

    -
    interface CreateStakingOperationRequest {
        action: string;
        asset_id: string;
        network_id: string;
        options: {
            [key: string]: string;
        };
    }

    Properties

    interface CreateStakingOperationRequest {
        action: string;
        asset_id: string;
        network_id: string;
        options: {
            [key: string]: string;
        };
    }

    Properties

    action: string

    The type of staking operation.

    Memberof

    CreateStakingOperationRequest

    -
    asset_id: string

    The ID of the asset being staked.

    +
    asset_id: string

    The ID of the asset being staked.

    Memberof

    CreateStakingOperationRequest

    -
    network_id: string

    The ID of the blockchain network.

    +
    network_id: string

    The ID of the blockchain network.

    Memberof

    CreateStakingOperationRequest

    -
    options: {
        [key: string]: string;
    }

    Type declaration

    • [key: string]: string

    Memberof

    CreateStakingOperationRequest

    -
    \ No newline at end of file +
    options: {
        [key: string]: string;
    }

    Type declaration

    • [key: string]: string

    Memberof

    CreateStakingOperationRequest

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateTradeRequest.html b/docs/interfaces/client_api.CreateTradeRequest.html index 483fccfb..a3822b2e 100644 --- a/docs/interfaces/client_api.CreateTradeRequest.html +++ b/docs/interfaces/client_api.CreateTradeRequest.html @@ -1,11 +1,11 @@ CreateTradeRequest | @coinbase/coinbase-sdk

    Export

    CreateTradeRequest

    -
    interface CreateTradeRequest {
        amount: string;
        from_asset_id: string;
        to_asset_id: string;
    }

    Properties

    interface CreateTradeRequest {
        amount: string;
        from_asset_id: string;
        to_asset_id: string;
    }

    Properties

    amount: string

    The amount to trade

    Memberof

    CreateTradeRequest

    -
    from_asset_id: string

    The ID of the asset to trade

    +
    from_asset_id: string

    The ID of the asset to trade

    Memberof

    CreateTradeRequest

    -
    to_asset_id: string

    The ID of the asset to receive from the trade

    +
    to_asset_id: string

    The ID of the asset to receive from the trade

    Memberof

    CreateTradeRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateTransferRequest.html b/docs/interfaces/client_api.CreateTransferRequest.html index 7753976b..ddf98da2 100644 --- a/docs/interfaces/client_api.CreateTransferRequest.html +++ b/docs/interfaces/client_api.CreateTransferRequest.html @@ -1,17 +1,17 @@ CreateTransferRequest | @coinbase/coinbase-sdk

    Export

    CreateTransferRequest

    -
    interface CreateTransferRequest {
        amount: string;
        asset_id: string;
        destination: string;
        gasless?: boolean;
        network_id: string;
    }

    Properties

    interface CreateTransferRequest {
        amount: string;
        asset_id: string;
        destination: string;
        gasless?: boolean;
        network_id: string;
    }

    Properties

    amount: string

    The amount to transfer

    Memberof

    CreateTransferRequest

    -
    asset_id: string

    The ID of the asset to transfer

    +
    asset_id: string

    The ID of the asset to transfer

    Memberof

    CreateTransferRequest

    -
    destination: string

    The destination address, which can be a 0x address, Basename, or ENS name

    +
    destination: string

    The destination address, which can be a 0x address, Basename, or ENS name

    Memberof

    CreateTransferRequest

    -
    gasless?: boolean

    Whether the transfer uses sponsored gas

    +
    gasless?: boolean

    Whether the transfer uses sponsored gas

    Memberof

    CreateTransferRequest

    -
    network_id: string

    The ID of the blockchain network

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    CreateTransferRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateWalletRequest.html b/docs/interfaces/client_api.CreateWalletRequest.html index 2d4dddf2..80554180 100644 --- a/docs/interfaces/client_api.CreateWalletRequest.html +++ b/docs/interfaces/client_api.CreateWalletRequest.html @@ -1,4 +1,4 @@ CreateWalletRequest | @coinbase/coinbase-sdk

    Export

    CreateWalletRequest

    -
    interface CreateWalletRequest {
        wallet: CreateWalletRequestWallet;
    }

    Properties

    interface CreateWalletRequest {
        wallet: CreateWalletRequestWallet;
    }

    Properties

    Properties

    Memberof

    CreateWalletRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateWalletRequestWallet.html b/docs/interfaces/client_api.CreateWalletRequestWallet.html index bea10b13..8ab9a00d 100644 --- a/docs/interfaces/client_api.CreateWalletRequestWallet.html +++ b/docs/interfaces/client_api.CreateWalletRequestWallet.html @@ -1,9 +1,9 @@ CreateWalletRequestWallet | @coinbase/coinbase-sdk

    Parameters for configuring a wallet

    Export

    CreateWalletRequestWallet

    -
    interface CreateWalletRequestWallet {
        network_id: string;
        use_server_signer?: boolean;
    }

    Properties

    interface CreateWalletRequestWallet {
        network_id: string;
        use_server_signer?: boolean;
    }

    Properties

    network_id: string

    The ID of the blockchain network

    Memberof

    CreateWalletRequestWallet

    -
    use_server_signer?: boolean

    Whether the wallet should use the project's server signer or if the addresses in the wallets will belong to a private key the developer manages. Defaults to false.

    +
    use_server_signer?: boolean

    Whether the wallet should use the project's server signer or if the addresses in the wallets will belong to a private key the developer manages. Defaults to false.

    Memberof

    CreateWalletRequestWallet

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateWalletWebhookRequest.html b/docs/interfaces/client_api.CreateWalletWebhookRequest.html new file mode 100644 index 00000000..680a7efe --- /dev/null +++ b/docs/interfaces/client_api.CreateWalletWebhookRequest.html @@ -0,0 +1,8 @@ +CreateWalletWebhookRequest | @coinbase/coinbase-sdk

    Export

    CreateWalletWebhookRequest

    +
    interface CreateWalletWebhookRequest {
        notification_uri: string;
        signature_header?: string;
    }

    Properties

    notification_uri: string

    The URL to which the notifications will be sent

    +

    Memberof

    CreateWalletWebhookRequest

    +
    signature_header?: string

    The custom header to be used for x-webhook-signature header on callbacks, so developers can verify the requests are coming from Coinbase.

    +

    Memberof

    CreateWalletWebhookRequest

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.CreateWebhookRequest.html b/docs/interfaces/client_api.CreateWebhookRequest.html index 676b85f8..8176c087 100644 --- a/docs/interfaces/client_api.CreateWebhookRequest.html +++ b/docs/interfaces/client_api.CreateWebhookRequest.html @@ -1,5 +1,5 @@ CreateWebhookRequest | @coinbase/coinbase-sdk

    Export

    CreateWebhookRequest

    -
    interface CreateWebhookRequest {
        event_filters?: WebhookEventFilter[];
        event_type: WebhookEventType;
        event_type_filter?: WebhookWalletActivityFilter;
        network_id: string;
        notification_uri: string;
        signature_header?: string;
    }

    Properties

    interface CreateWebhookRequest {
        event_filters?: WebhookEventFilter[];
        event_type: WebhookEventType;
        event_type_filter?: WebhookWalletActivityFilter;
        network_id: string;
        notification_uri: string;
        signature_header?: string;
    }

    Properties

    event_filters?: WebhookEventFilter[]

    Webhook will monitor all events that matches any one of the event filters.

    Memberof

    CreateWebhookRequest

    -
    event_type: WebhookEventType

    Memberof

    CreateWebhookRequest

    -
    event_type_filter?: WebhookWalletActivityFilter

    Memberof

    CreateWebhookRequest

    -
    network_id: string

    The ID of the blockchain network

    +
    event_type: WebhookEventType

    Memberof

    CreateWebhookRequest

    +
    event_type_filter?: WebhookWalletActivityFilter

    Memberof

    CreateWebhookRequest

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    CreateWebhookRequest

    -
    notification_uri: string

    The URL to which the notifications will be sent

    +
    notification_uri: string

    The URL to which the notifications will be sent

    Memberof

    CreateWebhookRequest

    -
    signature_header?: string

    The custom header to be used for x-webhook-signature header on callbacks, so developers can verify the requests are coming from Coinbase.

    +
    signature_header?: string

    The custom header to be used for x-webhook-signature header on callbacks, so developers can verify the requests are coming from Coinbase.

    Memberof

    CreateWebhookRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.DeploySmartContractRequest.html b/docs/interfaces/client_api.DeploySmartContractRequest.html index 7ceaed63..9259e99e 100644 --- a/docs/interfaces/client_api.DeploySmartContractRequest.html +++ b/docs/interfaces/client_api.DeploySmartContractRequest.html @@ -1,5 +1,5 @@ DeploySmartContractRequest | @coinbase/coinbase-sdk

    Export

    DeploySmartContractRequest

    -
    interface DeploySmartContractRequest {
        signed_payload: string;
    }

    Properties

    interface DeploySmartContractRequest {
        signed_payload: string;
    }

    Properties

    Properties

    signed_payload: string

    The hex-encoded signed payload of the contract deployment transaction.

    Memberof

    DeploySmartContractRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ERC20TransferEvent.html b/docs/interfaces/client_api.ERC20TransferEvent.html index 66558dbf..b08c40b1 100644 --- a/docs/interfaces/client_api.ERC20TransferEvent.html +++ b/docs/interfaces/client_api.ERC20TransferEvent.html @@ -1,6 +1,6 @@ ERC20TransferEvent | @coinbase/coinbase-sdk

    Represents an event triggered by an ERC-20 token transfer on the blockchain. Contains information about the transaction, block, and involved addresses.

    Export

    ERC20TransferEvent

    -
    interface ERC20TransferEvent {
        blockHash?: string;
        blockNumber?: number;
        blockTime?: string;
        contractAddress?: string;
        eventType?: string;
        from?: string;
        logIndex?: number;
        network?: string;
        to?: string;
        transactionHash?: string;
        transactionIndex?: number;
        value?: string;
        webhookId?: string;
    }

    Properties

    interface ERC20TransferEvent {
        blockHash?: string;
        blockNumber?: number;
        blockTime?: string;
        contractAddress?: string;
        eventType?: string;
        from?: string;
        logIndex?: number;
        network?: string;
        to?: string;
        transactionHash?: string;
        transactionIndex?: number;
        value?: string;
        webhookId?: string;
    }

    Properties

    blockHash?: string

    Hash of the block containing the transaction.

    Memberof

    ERC20TransferEvent

    -
    blockNumber?: number

    Number of the block containing the transaction.

    +
    blockNumber?: number

    Number of the block containing the transaction.

    Memberof

    ERC20TransferEvent

    -
    blockTime?: string

    Timestamp when the block was mined.

    +
    blockTime?: string

    Timestamp when the block was mined.

    Memberof

    ERC20TransferEvent

    -
    contractAddress?: string

    Address of the ERC-20 token contract.

    +
    contractAddress?: string

    Address of the ERC-20 token contract.

    Memberof

    ERC20TransferEvent

    -
    eventType?: string

    Type of event, in this case, an ERC-20 token transfer.

    +
    eventType?: string

    Type of event, in this case, an ERC-20 token transfer.

    Memberof

    ERC20TransferEvent

    -
    from?: string

    Address of the sender in the token transfer.

    +
    from?: string

    Address of the sender in the token transfer.

    Memberof

    ERC20TransferEvent

    -
    logIndex?: number

    Position of the event log within the transaction.

    +
    logIndex?: number

    Position of the event log within the transaction.

    Memberof

    ERC20TransferEvent

    -
    network?: string

    Blockchain network where the event occurred.

    +
    network?: string

    Blockchain network where the event occurred.

    Memberof

    ERC20TransferEvent

    -
    to?: string

    Address of the recipient in the token transfer.

    +
    to?: string

    Address of the recipient in the token transfer.

    Memberof

    ERC20TransferEvent

    -
    transactionHash?: string

    Hash of the transaction that triggered the event.

    +
    transactionHash?: string

    Hash of the transaction that triggered the event.

    Memberof

    ERC20TransferEvent

    -
    transactionIndex?: number

    Position of the transaction within the block.

    +
    transactionIndex?: number

    Position of the transaction within the block.

    Memberof

    ERC20TransferEvent

    -
    value?: string

    Amount of tokens transferred, typically in the smallest unit (e.g., wei for Ethereum).

    +
    value?: string

    Amount of tokens transferred, typically in the smallest unit (e.g., wei for Ethereum).

    Memberof

    ERC20TransferEvent

    -
    webhookId?: string

    Unique identifier for the webhook that triggered this event.

    +
    webhookId?: string

    Unique identifier for the webhook that triggered this event.

    Memberof

    ERC20TransferEvent

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ERC721TransferEvent.html b/docs/interfaces/client_api.ERC721TransferEvent.html index c83a5875..fb325e8a 100644 --- a/docs/interfaces/client_api.ERC721TransferEvent.html +++ b/docs/interfaces/client_api.ERC721TransferEvent.html @@ -1,6 +1,6 @@ ERC721TransferEvent | @coinbase/coinbase-sdk

    Represents an event triggered by an ERC-721 token transfer on the blockchain. Contains information about the transaction, block, and involved addresses.

    Export

    ERC721TransferEvent

    -
    interface ERC721TransferEvent {
        blockHash?: string;
        blockNumber?: number;
        blockTime?: string;
        contractAddress?: string;
        eventType?: string;
        from?: string;
        logIndex?: number;
        network?: string;
        to?: string;
        tokenId?: string;
        transactionHash?: string;
        transactionIndex?: number;
        webhookId?: string;
    }

    Properties

    interface ERC721TransferEvent {
        blockHash?: string;
        blockNumber?: number;
        blockTime?: string;
        contractAddress?: string;
        eventType?: string;
        from?: string;
        logIndex?: number;
        network?: string;
        to?: string;
        tokenId?: string;
        transactionHash?: string;
        transactionIndex?: number;
        webhookId?: string;
    }

    Properties

    blockHash?: string

    Hash of the block containing the transaction.

    Memberof

    ERC721TransferEvent

    -
    blockNumber?: number

    Number of the block containing the transaction.

    +
    blockNumber?: number

    Number of the block containing the transaction.

    Memberof

    ERC721TransferEvent

    -
    blockTime?: string

    Timestamp when the block was mined.

    +
    blockTime?: string

    Timestamp when the block was mined.

    Memberof

    ERC721TransferEvent

    -
    contractAddress?: string

    Address of the ERC-721 token contract.

    +
    contractAddress?: string

    Address of the ERC-721 token contract.

    Memberof

    ERC721TransferEvent

    -
    eventType?: string

    Type of event, in this case, an ERC-721 token transfer.

    +
    eventType?: string

    Type of event, in this case, an ERC-721 token transfer.

    Memberof

    ERC721TransferEvent

    -
    from?: string

    Address of the sender in the token transfer.

    +
    from?: string

    Address of the sender in the token transfer.

    Memberof

    ERC721TransferEvent

    -
    logIndex?: number

    Position of the event log within the transaction.

    +
    logIndex?: number

    Position of the event log within the transaction.

    Memberof

    ERC721TransferEvent

    -
    network?: string

    Blockchain network where the event occurred.

    +
    network?: string

    Blockchain network where the event occurred.

    Memberof

    ERC721TransferEvent

    -
    to?: string

    Address of the recipient in the token transfer.

    +
    to?: string

    Address of the recipient in the token transfer.

    Memberof

    ERC721TransferEvent

    -
    tokenId?: string

    Unique identifier of the NFT being transferred.

    +
    tokenId?: string

    Unique identifier of the NFT being transferred.

    Memberof

    ERC721TransferEvent

    -
    transactionHash?: string

    Hash of the transaction that triggered the event.

    +
    transactionHash?: string

    Hash of the transaction that triggered the event.

    Memberof

    ERC721TransferEvent

    -
    transactionIndex?: number

    Position of the transaction within the block.

    +
    transactionIndex?: number

    Position of the transaction within the block.

    Memberof

    ERC721TransferEvent

    -
    webhookId?: string

    Unique identifier for the webhook that triggered this event.

    +
    webhookId?: string

    Unique identifier for the webhook that triggered this event.

    Memberof

    ERC721TransferEvent

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.EthereumTransaction.html b/docs/interfaces/client_api.EthereumTransaction.html index 8e4fb501..3441f8fd 100644 --- a/docs/interfaces/client_api.EthereumTransaction.html +++ b/docs/interfaces/client_api.EthereumTransaction.html @@ -1,5 +1,5 @@ EthereumTransaction | @coinbase/coinbase-sdk

    Export

    EthereumTransaction

    -
    interface EthereumTransaction {
        block_timestamp?: string;
        flattened_traces?: EthereumTransactionFlattenedTrace[];
        from: string;
        gas?: number;
        gas_price?: number;
        hash?: string;
        index?: number;
        input?: string;
        max_fee_per_gas?: number;
        max_priority_fee_per_gas?: number;
        mint?: string;
        nonce?: number;
        priority_fee_per_gas?: number;
        to: string;
        transaction_access_list?: EthereumTransactionAccessList;
        type?: number;
        value?: string;
    }

    Properties

    interface EthereumTransaction {
        block_timestamp?: string;
        flattened_traces?: EthereumTransactionFlattenedTrace[];
        from: string;
        gas?: number;
        gas_price?: number;
        hash?: string;
        index?: number;
        input?: string;
        max_fee_per_gas?: number;
        max_priority_fee_per_gas?: number;
        mint?: string;
        nonce?: number;
        priority_fee_per_gas?: number;
        to: string;
        transaction_access_list?: EthereumTransactionAccessList;
        type?: number;
        value?: string;
    }

    Properties

    Properties

    block_timestamp?: string

    The timestamp of the block in which the event was emitted

    Memberof

    EthereumTransaction

    -

    Memberof

    EthereumTransaction

    -
    from: string

    The onchain address of the sender.

    +

    Memberof

    EthereumTransaction

    +
    from: string

    The onchain address of the sender.

    Memberof

    EthereumTransaction

    -
    gas?: number

    The amount of gas spent in the transaction.

    +
    gas?: number

    The amount of gas spent in the transaction.

    Memberof

    EthereumTransaction

    -
    gas_price?: number

    The price per gas spent in the transaction in atomic units of the native asset.

    +
    gas_price?: number

    The price per gas spent in the transaction in atomic units of the native asset.

    Memberof

    EthereumTransaction

    -
    hash?: string

    The hash of the transaction as a hexadecimal string, prefixed with 0x.

    +
    hash?: string

    The hash of the transaction as a hexadecimal string, prefixed with 0x.

    Memberof

    EthereumTransaction

    -
    index?: number

    The index of the transaction in the block.

    +
    index?: number

    The index of the transaction in the block.

    Memberof

    EthereumTransaction

    -
    input?: string

    The input data of the transaction.

    +
    input?: string

    The input data of the transaction.

    Memberof

    EthereumTransaction

    -
    max_fee_per_gas?: number

    The max fee per gas as defined in EIP-1559. https://eips.ethereum.org/EIPS/eip-1559 for more details.

    +
    max_fee_per_gas?: number

    The max fee per gas as defined in EIP-1559. https://eips.ethereum.org/EIPS/eip-1559 for more details.

    Memberof

    EthereumTransaction

    -
    max_priority_fee_per_gas?: number

    The max priority fee per gas as defined in EIP-1559. https://eips.ethereum.org/EIPS/eip-1559 for more details.

    +
    max_priority_fee_per_gas?: number

    The max priority fee per gas as defined in EIP-1559. https://eips.ethereum.org/EIPS/eip-1559 for more details.

    Memberof

    EthereumTransaction

    -
    mint?: string

    This is for handling optimism rollup specific EIP-2718 transaction type field.

    +
    mint?: string

    This is for handling optimism rollup specific EIP-2718 transaction type field.

    Memberof

    EthereumTransaction

    -
    nonce?: number

    The nonce of the transaction in the source address.

    +
    nonce?: number

    The nonce of the transaction in the source address.

    Memberof

    EthereumTransaction

    -
    priority_fee_per_gas?: number

    The confirmed priority fee per gas as defined in EIP-1559. https://eips.ethereum.org/EIPS/eip-1559 for more details.

    +
    priority_fee_per_gas?: number

    The confirmed priority fee per gas as defined in EIP-1559. https://eips.ethereum.org/EIPS/eip-1559 for more details.

    Memberof

    EthereumTransaction

    -
    to: string

    The onchain address of the receiver.

    +
    to: string

    The onchain address of the receiver.

    Memberof

    EthereumTransaction

    -
    transaction_access_list?: EthereumTransactionAccessList

    Memberof

    EthereumTransaction

    -
    type?: number

    The EIP-2718 transaction type. See https://eips.ethereum.org/EIPS/eip-2718 for more details.

    +
    transaction_access_list?: EthereumTransactionAccessList

    Memberof

    EthereumTransaction

    +
    type?: number

    The EIP-2718 transaction type. See https://eips.ethereum.org/EIPS/eip-2718 for more details.

    Memberof

    EthereumTransaction

    -
    value?: string

    The value of the transaction in atomic units of the native asset.

    +
    value?: string

    The value of the transaction in atomic units of the native asset.

    Memberof

    EthereumTransaction

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.EthereumTransactionAccess.html b/docs/interfaces/client_api.EthereumTransactionAccess.html index 5bd8aef4..0288d35a 100644 --- a/docs/interfaces/client_api.EthereumTransactionAccess.html +++ b/docs/interfaces/client_api.EthereumTransactionAccess.html @@ -1,6 +1,6 @@ EthereumTransactionAccess | @coinbase/coinbase-sdk

    Export

    EthereumTransactionAccess

    -
    interface EthereumTransactionAccess {
        address?: string;
        storage_keys?: string[];
    }

    Properties

    interface EthereumTransactionAccess {
        address?: string;
        storage_keys?: string[];
    }

    Properties

    address?: string

    Memberof

    EthereumTransactionAccess

    -
    storage_keys?: string[]

    Memberof

    EthereumTransactionAccess

    -
    \ No newline at end of file +
    storage_keys?: string[]

    Memberof

    EthereumTransactionAccess

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.EthereumTransactionAccessList.html b/docs/interfaces/client_api.EthereumTransactionAccessList.html index 842a425b..1a753570 100644 --- a/docs/interfaces/client_api.EthereumTransactionAccessList.html +++ b/docs/interfaces/client_api.EthereumTransactionAccessList.html @@ -1,4 +1,4 @@ EthereumTransactionAccessList | @coinbase/coinbase-sdk

    Export

    EthereumTransactionAccessList

    -
    interface EthereumTransactionAccessList {
        access_list?: EthereumTransactionAccess[];
    }

    Properties

    interface EthereumTransactionAccessList {
        access_list?: EthereumTransactionAccess[];
    }

    Properties

    Properties

    Memberof

    EthereumTransactionAccessList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.EthereumTransactionFlattenedTrace.html b/docs/interfaces/client_api.EthereumTransactionFlattenedTrace.html index 320b05c7..109a70b9 100644 --- a/docs/interfaces/client_api.EthereumTransactionFlattenedTrace.html +++ b/docs/interfaces/client_api.EthereumTransactionFlattenedTrace.html @@ -1,5 +1,5 @@ EthereumTransactionFlattenedTrace | @coinbase/coinbase-sdk

    Export

    EthereumTransactionFlattenedTrace

    -
    interface EthereumTransactionFlattenedTrace {
        block_hash?: string;
        block_number?: number;
        call_type?: string;
        error?: string;
        from?: string;
        gas?: number;
        gas_used?: number;
        input?: string;
        output?: string;
        status?: number;
        sub_traces?: number;
        to?: string;
        trace_address?: number[];
        trace_id?: string;
        trace_type?: string;
        transaction_hash?: string;
        transaction_index?: number;
        type?: string;
        value?: string;
    }

    Properties

    interface EthereumTransactionFlattenedTrace {
        block_hash?: string;
        block_number?: number;
        call_type?: string;
        error?: string;
        from?: string;
        gas?: number;
        gas_used?: number;
        input?: string;
        output?: string;
        status?: number;
        sub_traces?: number;
        to?: string;
        trace_address?: number[];
        trace_id?: string;
        trace_type?: string;
        transaction_hash?: string;
        transaction_index?: number;
        type?: string;
        value?: string;
    }

    Properties

    Properties

    block_hash?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    block_number?: number

    Memberof

    EthereumTransactionFlattenedTrace

    -
    call_type?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    error?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    from?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    gas?: number

    Memberof

    EthereumTransactionFlattenedTrace

    -
    gas_used?: number

    Memberof

    EthereumTransactionFlattenedTrace

    -
    input?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    output?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    status?: number

    Memberof

    EthereumTransactionFlattenedTrace

    -
    sub_traces?: number

    Memberof

    EthereumTransactionFlattenedTrace

    -
    to?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    trace_address?: number[]

    Memberof

    EthereumTransactionFlattenedTrace

    -
    trace_id?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    trace_type?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    transaction_hash?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    transaction_index?: number

    Memberof

    EthereumTransactionFlattenedTrace

    -
    type?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    value?: string

    Memberof

    EthereumTransactionFlattenedTrace

    -
    \ No newline at end of file +
    block_number?: number

    Memberof

    EthereumTransactionFlattenedTrace

    +
    call_type?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    error?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    from?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    gas?: number

    Memberof

    EthereumTransactionFlattenedTrace

    +
    gas_used?: number

    Memberof

    EthereumTransactionFlattenedTrace

    +
    input?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    output?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    status?: number

    Memberof

    EthereumTransactionFlattenedTrace

    +
    sub_traces?: number

    Memberof

    EthereumTransactionFlattenedTrace

    +
    to?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    trace_address?: number[]

    Memberof

    EthereumTransactionFlattenedTrace

    +
    trace_id?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    trace_type?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    transaction_hash?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    transaction_index?: number

    Memberof

    EthereumTransactionFlattenedTrace

    +
    type?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    value?: string

    Memberof

    EthereumTransactionFlattenedTrace

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.EthereumValidatorMetadata.html b/docs/interfaces/client_api.EthereumValidatorMetadata.html index 043751ae..1c113fb7 100644 --- a/docs/interfaces/client_api.EthereumValidatorMetadata.html +++ b/docs/interfaces/client_api.EthereumValidatorMetadata.html @@ -1,6 +1,6 @@ EthereumValidatorMetadata | @coinbase/coinbase-sdk

    An Ethereum validator.

    Export

    EthereumValidatorMetadata

    -
    interface EthereumValidatorMetadata {
        activationEpoch: string;
        balance: Balance;
        effective_balance: Balance;
        exitEpoch: string;
        index: string;
        public_key: string;
        slashed: boolean;
        withdrawableEpoch: string;
        withdrawal_address: string;
    }

    Properties

    interface EthereumValidatorMetadata {
        activationEpoch: string;
        balance: Balance;
        effective_balance: Balance;
        exitEpoch: string;
        index: string;
        public_key: string;
        slashed: boolean;
        withdrawableEpoch: string;
        withdrawal_address: string;
    }

    Properties

    activationEpoch: string

    The epoch at which the validator was activated.

    Memberof

    EthereumValidatorMetadata

    -
    balance: Balance

    Memberof

    EthereumValidatorMetadata

    -
    effective_balance: Balance

    Memberof

    EthereumValidatorMetadata

    -
    exitEpoch: string

    The epoch at which the validator exited.

    +
    balance: Balance

    Memberof

    EthereumValidatorMetadata

    +
    effective_balance: Balance

    Memberof

    EthereumValidatorMetadata

    +
    exitEpoch: string

    The epoch at which the validator exited.

    Memberof

    EthereumValidatorMetadata

    -
    index: string

    The index of the validator in the validator set.

    +
    index: string

    The index of the validator in the validator set.

    Memberof

    EthereumValidatorMetadata

    -
    public_key: string

    The public key of the validator.

    +
    public_key: string

    The public key of the validator.

    Memberof

    EthereumValidatorMetadata

    -
    slashed: boolean

    Whether the validator has been slashed.

    +
    slashed: boolean

    Whether the validator has been slashed.

    Memberof

    EthereumValidatorMetadata

    -
    withdrawableEpoch: string

    The epoch at which the validator can withdraw.

    +
    withdrawableEpoch: string

    The epoch at which the validator can withdraw.

    Memberof

    EthereumValidatorMetadata

    -
    withdrawal_address: string

    The address to which the validator's rewards are sent.

    +
    withdrawal_address: string

    The address to which the validator's rewards are sent.

    Memberof

    EthereumValidatorMetadata

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ExternalAddressesApiInterface.html b/docs/interfaces/client_api.ExternalAddressesApiInterface.html index c2d77dc2..6a6131e7 100644 --- a/docs/interfaces/client_api.ExternalAddressesApiInterface.html +++ b/docs/interfaces/client_api.ExternalAddressesApiInterface.html @@ -1,7 +1,6 @@ ExternalAddressesApiInterface | @coinbase/coinbase-sdk

    ExternalAddressesApi - interface

    Export

    ExternalAddressesApi

    -
    interface ExternalAddressesApiInterface {
        getExternalAddressBalance(networkId, addressId, assetId, options?): AxiosPromise<Balance>;
        listAddressTransactions(networkId, addressId, limit?, page?, options?): AxiosPromise<AddressTransactionList>;
        listExternalAddressBalances(networkId, addressId, page?, options?): AxiosPromise<AddressBalanceList>;
        requestExternalFaucetFunds(networkId, addressId, assetId?, options?): AxiosPromise<FaucetTransaction>;
    }

    Implemented by

    Methods

    interface ExternalAddressesApiInterface {
        getExternalAddressBalance(networkId, addressId, assetId, options?): AxiosPromise<Balance>;
        listExternalAddressBalances(networkId, addressId, page?, options?): AxiosPromise<AddressBalanceList>;
        requestExternalFaucetFunds(networkId, addressId, assetId?, options?): AxiosPromise<FaucetTransaction>;
    }

    Implemented by

    Methods

    • Get the balance of an asset in an external address

      @@ -11,26 +10,18 @@
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns AxiosPromise<Balance>

    Summary

    Get the balance of an asset in an external address

    Throws

    Memberof

    ExternalAddressesApiInterface

    -
    • List all transactions that interact with the address.

      -

      Parameters

      • networkId: string

        The ID of the blockchain network

        -
      • addressId: string

        The ID of the address to fetch the transactions for.

        -
      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        -
      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        -
      • Optional options: RawAxiosRequestConfig

        Override http request option.

        -

      Returns AxiosPromise<AddressTransactionList>

      Summary

      List transactions for an address.

      -

      Throws

      Memberof

      ExternalAddressesApiInterface

      -
    • List all of the balances of an external address

      Parameters

      • networkId: string

        The ID of the blockchain network

      • addressId: string

        The ID of the address to fetch the balance for

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressBalanceList>

      Summary

      Get the balances of an external address

      Throws

      Memberof

      ExternalAddressesApiInterface

      -
    • Request faucet funds to be sent to external address.

      Parameters

      • networkId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional assetId: string

        The ID of the asset to transfer from the faucet.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<FaucetTransaction>

      Summary

      Request faucet funds for external address.

      Throws

      Memberof

      ExternalAddressesApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.FaucetTransaction.html b/docs/interfaces/client_api.FaucetTransaction.html index 5df0b89a..8239d8a0 100644 --- a/docs/interfaces/client_api.FaucetTransaction.html +++ b/docs/interfaces/client_api.FaucetTransaction.html @@ -1,9 +1,9 @@ FaucetTransaction | @coinbase/coinbase-sdk

    The faucet transaction

    Export

    FaucetTransaction

    -
    interface FaucetTransaction {
        transaction_hash: string;
        transaction_link: string;
    }

    Properties

    interface FaucetTransaction {
        transaction_hash: string;
        transaction_link: string;
    }

    Properties

    transaction_hash: string

    The transaction hash of the transaction the faucet created.

    Memberof

    FaucetTransaction

    -
    transaction_link: string

    Link to the transaction on the blockchain explorer.

    +
    transaction_link: string

    Link to the transaction on the blockchain explorer.

    Memberof

    FaucetTransaction

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.FeatureSet.html b/docs/interfaces/client_api.FeatureSet.html index 6b55338f..b7eab50b 100644 --- a/docs/interfaces/client_api.FeatureSet.html +++ b/docs/interfaces/client_api.FeatureSet.html @@ -1,5 +1,5 @@ FeatureSet | @coinbase/coinbase-sdk

    Export

    FeatureSet

    -
    interface FeatureSet {
        faucet: boolean;
        gasless_send: boolean;
        server_signer: boolean;
        stake: boolean;
        trade: boolean;
        transfer: boolean;
    }

    Properties

    interface FeatureSet {
        faucet: boolean;
        gasless_send: boolean;
        server_signer: boolean;
        stake: boolean;
        trade: boolean;
        transfer: boolean;
    }

    Properties

    Properties

    faucet: boolean

    Whether the network supports a faucet

    Memberof

    FeatureSet

    -
    gasless_send: boolean

    Whether the network supports gasless sends

    +
    gasless_send: boolean

    Whether the network supports gasless sends

    Memberof

    FeatureSet

    -
    server_signer: boolean

    Whether the network supports Server-Signers

    +
    server_signer: boolean

    Whether the network supports Server-Signers

    Memberof

    FeatureSet

    -
    stake: boolean

    Whether the network supports staking

    +
    stake: boolean

    Whether the network supports staking

    Memberof

    FeatureSet

    -
    trade: boolean

    Whether the network supports trading

    +
    trade: boolean

    Whether the network supports trading

    Memberof

    FeatureSet

    -
    transfer: boolean

    Whether the network supports transfers

    +
    transfer: boolean

    Whether the network supports transfers

    Memberof

    FeatureSet

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.FetchHistoricalStakingBalances200Response.html b/docs/interfaces/client_api.FetchHistoricalStakingBalances200Response.html index c2894ca9..073dd89f 100644 --- a/docs/interfaces/client_api.FetchHistoricalStakingBalances200Response.html +++ b/docs/interfaces/client_api.FetchHistoricalStakingBalances200Response.html @@ -1,10 +1,10 @@ FetchHistoricalStakingBalances200Response | @coinbase/coinbase-sdk

    Interface FetchHistoricalStakingBalances200Response

    Export

    FetchHistoricalStakingBalances200Response

    -
    interface FetchHistoricalStakingBalances200Response {
        data: StakingBalance[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    interface FetchHistoricalStakingBalances200Response {
        data: StakingBalance[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    Memberof

    FetchHistoricalStakingBalances200Response

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    FetchHistoricalStakingBalances200Response

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    FetchHistoricalStakingBalances200Response

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.FetchStakingRewards200Response.html b/docs/interfaces/client_api.FetchStakingRewards200Response.html index 59b8f4ee..7e517c24 100644 --- a/docs/interfaces/client_api.FetchStakingRewards200Response.html +++ b/docs/interfaces/client_api.FetchStakingRewards200Response.html @@ -1,10 +1,10 @@ FetchStakingRewards200Response | @coinbase/coinbase-sdk

    Export

    FetchStakingRewards200Response

    -
    interface FetchStakingRewards200Response {
        data: StakingReward[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    interface FetchStakingRewards200Response {
        data: StakingReward[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    Memberof

    FetchStakingRewards200Response

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    FetchStakingRewards200Response

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    FetchStakingRewards200Response

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.FetchStakingRewardsRequest.html b/docs/interfaces/client_api.FetchStakingRewardsRequest.html index 769c5a81..5c9290ad 100644 --- a/docs/interfaces/client_api.FetchStakingRewardsRequest.html +++ b/docs/interfaces/client_api.FetchStakingRewardsRequest.html @@ -1,5 +1,5 @@ FetchStakingRewardsRequest | @coinbase/coinbase-sdk

    Export

    FetchStakingRewardsRequest

    -
    interface FetchStakingRewardsRequest {
        address_ids: string[];
        asset_id: string;
        end_time: string;
        format: StakingRewardFormat;
        network_id: string;
        start_time: string;
    }

    Properties

    interface FetchStakingRewardsRequest {
        address_ids: string[];
        asset_id: string;
        end_time: string;
        format: StakingRewardFormat;
        network_id: string;
        start_time: string;
    }

    Properties

    Properties

    address_ids: string[]

    The onchain addresses for which the staking rewards are being fetched

    Memberof

    FetchStakingRewardsRequest

    -
    asset_id: string

    The ID of the asset for which the staking rewards are being fetched

    +
    asset_id: string

    The ID of the asset for which the staking rewards are being fetched

    Memberof

    FetchStakingRewardsRequest

    -
    end_time: string

    The end time of this reward period

    +
    end_time: string

    The end time of this reward period

    Memberof

    FetchStakingRewardsRequest

    -

    Memberof

    FetchStakingRewardsRequest

    -
    network_id: string

    The ID of the blockchain network

    +

    Memberof

    FetchStakingRewardsRequest

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    FetchStakingRewardsRequest

    -
    start_time: string

    The start time of this reward period

    +
    start_time: string

    The start time of this reward period

    Memberof

    FetchStakingRewardsRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.GetStakingContextRequest.html b/docs/interfaces/client_api.GetStakingContextRequest.html index bcb85f20..0a1f48b4 100644 --- a/docs/interfaces/client_api.GetStakingContextRequest.html +++ b/docs/interfaces/client_api.GetStakingContextRequest.html @@ -1,13 +1,13 @@ GetStakingContextRequest | @coinbase/coinbase-sdk

    Export

    GetStakingContextRequest

    -
    interface GetStakingContextRequest {
        address_id: string;
        asset_id: string;
        network_id: string;
        options: {
            [key: string]: string;
        };
    }

    Properties

    interface GetStakingContextRequest {
        address_id: string;
        asset_id: string;
        network_id: string;
        options: {
            [key: string]: string;
        };
    }

    Properties

    address_id: string

    The onchain address for which the staking context is being fetched

    Memberof

    GetStakingContextRequest

    -
    asset_id: string

    The ID of the asset being staked

    +
    asset_id: string

    The ID of the asset being staked

    Memberof

    GetStakingContextRequest

    -
    network_id: string

    The ID of the blockchain network

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    GetStakingContextRequest

    -
    options: {
        [key: string]: string;
    }

    Type declaration

    • [key: string]: string

    Memberof

    GetStakingContextRequest

    -
    \ No newline at end of file +
    options: {
        [key: string]: string;
    }

    Type declaration

    • [key: string]: string

    Memberof

    GetStakingContextRequest

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.HistoricalBalance.html b/docs/interfaces/client_api.HistoricalBalance.html index c68324d6..71dfd711 100644 --- a/docs/interfaces/client_api.HistoricalBalance.html +++ b/docs/interfaces/client_api.HistoricalBalance.html @@ -1,14 +1,14 @@ HistoricalBalance | @coinbase/coinbase-sdk

    The balance of an asset onchain at a particular block

    Export

    HistoricalBalance

    -
    interface HistoricalBalance {
        amount: string;
        asset: Asset;
        block_hash: string;
        block_height: string;
    }

    Properties

    interface HistoricalBalance {
        amount: string;
        asset: Asset;
        block_hash: string;
        block_height: string;
    }

    Properties

    amount: string

    The amount in the atomic units of the asset

    Memberof

    HistoricalBalance

    -
    asset: Asset

    Memberof

    HistoricalBalance

    -
    block_hash: string

    The hash of the block at which the balance was recorded

    +
    asset: Asset

    Memberof

    HistoricalBalance

    +
    block_hash: string

    The hash of the block at which the balance was recorded

    Memberof

    HistoricalBalance

    -
    block_height: string

    The block height at which the balance was recorded

    +
    block_height: string

    The block height at which the balance was recorded

    Memberof

    HistoricalBalance

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ModelError.html b/docs/interfaces/client_api.ModelError.html index 5e66d1d3..18346c12 100644 --- a/docs/interfaces/client_api.ModelError.html +++ b/docs/interfaces/client_api.ModelError.html @@ -1,12 +1,12 @@ ModelError | @coinbase/coinbase-sdk

    An error response from the Coinbase Developer Platform API

    Export

    ModelError

    -
    interface ModelError {
        code: string;
        correlation_id?: string;
        message: string;
    }

    Properties

    interface ModelError {
        code: string;
        correlation_id?: string;
        message: string;
    }

    Properties

    code: string

    A short string representing the reported error. Can be use to handle errors programmatically.

    Memberof

    ModelError

    -
    correlation_id?: string

    A unique identifier for the request that generated the error. This can be used to help debug issues with the API.

    +
    correlation_id?: string

    A unique identifier for the request that generated the error. This can be used to help debug issues with the API.

    Memberof

    ModelError

    -
    message: string

    A human-readable message providing more details about the error.

    +
    message: string

    A human-readable message providing more details about the error.

    Memberof

    ModelError

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.MultiTokenContractOptions.html b/docs/interfaces/client_api.MultiTokenContractOptions.html new file mode 100644 index 00000000..74b362ca --- /dev/null +++ b/docs/interfaces/client_api.MultiTokenContractOptions.html @@ -0,0 +1,6 @@ +MultiTokenContractOptions | @coinbase/coinbase-sdk

    Options for multi-token contract creation

    +

    Export

    MultiTokenContractOptions

    +
    interface MultiTokenContractOptions {
        uri: string;
    }

    Properties

    uri +

    Properties

    uri: string

    The URI for all token metadata

    +

    Memberof

    MultiTokenContractOptions

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.NFTContractOptions.html b/docs/interfaces/client_api.NFTContractOptions.html index fcc03bf9..19a0b99a 100644 --- a/docs/interfaces/client_api.NFTContractOptions.html +++ b/docs/interfaces/client_api.NFTContractOptions.html @@ -1,9 +1,12 @@ NFTContractOptions | @coinbase/coinbase-sdk

    Options for NFT contract creation

    Export

    NFTContractOptions

    -
    interface NFTContractOptions {
        name: string;
        symbol: string;
    }

    Properties

    interface NFTContractOptions {
        base_uri: string;
        name: string;
        symbol: string;
    }

    Properties

    Properties

    name: string

    The name of the NFT

    +

    Properties

    base_uri: string

    The base URI for the NFT metadata

    Memberof

    NFTContractOptions

    -
    symbol: string

    The symbol of the NFT

    +
    name: string

    The name of the NFT

    Memberof

    NFTContractOptions

    -
    \ No newline at end of file +
    symbol: string

    The symbol of the NFT

    +

    Memberof

    NFTContractOptions

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Network.html b/docs/interfaces/client_api.Network.html index 7bd673ac..d190c723 100644 --- a/docs/interfaces/client_api.Network.html +++ b/docs/interfaces/client_api.Network.html @@ -1,5 +1,5 @@ Network | @coinbase/coinbase-sdk

    Export

    Network

    -
    interface Network {
        address_path_prefix?: string;
        chain_id: number;
        display_name: string;
        feature_set: FeatureSet;
        id: NetworkIdentifier;
        is_testnet: boolean;
        native_asset: Asset;
        protocol_family: NetworkProtocolFamilyEnum;
    }

    Properties

    interface Network {
        address_path_prefix?: string;
        chain_id: number;
        display_name: string;
        feature_set: FeatureSet;
        id: NetworkIdentifier;
        is_testnet: boolean;
        native_asset: Asset;
        protocol_family: NetworkProtocolFamilyEnum;
    }

    Properties

    address_path_prefix?: string

    The BIP44 path prefix for the network

    Memberof

    Network

    -
    chain_id: number

    The chain ID of the blockchain network

    +
    chain_id: number

    The chain ID of the blockchain network

    Memberof

    Network

    -
    display_name: string

    The human-readable name of the blockchain network

    +
    display_name: string

    The human-readable name of the blockchain network

    Memberof

    Network

    -
    feature_set: FeatureSet

    Memberof

    Network

    -

    Memberof

    Network

    -
    is_testnet: boolean

    Whether the network is a testnet or not

    +
    feature_set: FeatureSet

    Memberof

    Network

    +

    Memberof

    Network

    +
    is_testnet: boolean

    Whether the network is a testnet or not

    Memberof

    Network

    -
    native_asset: Asset

    Memberof

    Network

    -
    protocol_family: NetworkProtocolFamilyEnum

    The protocol family of the blockchain network

    +
    native_asset: Asset

    Memberof

    Network

    +
    protocol_family: NetworkProtocolFamilyEnum

    The protocol family of the blockchain network

    Memberof

    Network

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.NetworksApiInterface.html b/docs/interfaces/client_api.NetworksApiInterface.html index 86eb0d7f..8363abe0 100644 --- a/docs/interfaces/client_api.NetworksApiInterface.html +++ b/docs/interfaces/client_api.NetworksApiInterface.html @@ -1,9 +1,9 @@ NetworksApiInterface | @coinbase/coinbase-sdk

    NetworksApi - interface

    Export

    NetworksApi

    -
    interface NetworksApiInterface {
        getNetwork(networkId, options?): AxiosPromise<Network>;
    }

    Implemented by

    Methods

    interface NetworksApiInterface {
        getNetwork(networkId, options?): AxiosPromise<Network>;
    }

    Implemented by

    Methods

    Methods

    • Get network

      Parameters

      • networkId: string

        The ID of the network to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Network>

      Summary

      Get network by ID

      Throws

      Memberof

      NetworksApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.PayloadSignature.html b/docs/interfaces/client_api.PayloadSignature.html index a1cd85db..0b3d8a61 100644 --- a/docs/interfaces/client_api.PayloadSignature.html +++ b/docs/interfaces/client_api.PayloadSignature.html @@ -1,6 +1,6 @@ PayloadSignature | @coinbase/coinbase-sdk

    A payload signed by an address.

    Export

    PayloadSignature

    -
    interface PayloadSignature {
        address_id: string;
        payload_signature_id: string;
        signature?: string;
        status: PayloadSignatureStatusEnum;
        unsigned_payload: string;
        wallet_id: string;
    }

    Properties

    interface PayloadSignature {
        address_id: string;
        payload_signature_id: string;
        signature?: string;
        status: PayloadSignatureStatusEnum;
        unsigned_payload: string;
        wallet_id: string;
    }

    Properties

    address_id: string

    The onchain address of the signer.

    Memberof

    PayloadSignature

    -
    payload_signature_id: string

    The ID of the payload signature.

    +
    payload_signature_id: string

    The ID of the payload signature.

    Memberof

    PayloadSignature

    -
    signature?: string

    The signature of the payload.

    +
    signature?: string

    The signature of the payload.

    Memberof

    PayloadSignature

    -

    The status of the payload signature.

    +

    The status of the payload signature.

    Memberof

    PayloadSignature

    -
    unsigned_payload: string

    The unsigned payload. This is the payload that needs to be signed by the signer address.

    +
    unsigned_payload: string

    The unsigned payload. This is the payload that needs to be signed by the signer address.

    Memberof

    PayloadSignature

    -
    wallet_id: string

    The ID of the wallet that owns the address.

    +
    wallet_id: string

    The ID of the wallet that owns the address.

    Memberof

    PayloadSignature

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.PayloadSignatureList.html b/docs/interfaces/client_api.PayloadSignatureList.html index 72e864eb..1bbbb555 100644 --- a/docs/interfaces/client_api.PayloadSignatureList.html +++ b/docs/interfaces/client_api.PayloadSignatureList.html @@ -1,13 +1,13 @@ PayloadSignatureList | @coinbase/coinbase-sdk

    Export

    PayloadSignatureList

    -
    interface PayloadSignatureList {
        data: PayloadSignature[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    interface PayloadSignatureList {
        data: PayloadSignature[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    Memberof

    PayloadSignatureList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    PayloadSignatureList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    PayloadSignatureList

    -
    total_count: number

    The total number of payload signatures for the address.

    +
    total_count: number

    The total number of payload signatures for the address.

    Memberof

    PayloadSignatureList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.SeedCreationEvent.html b/docs/interfaces/client_api.SeedCreationEvent.html index 9433ea59..2e4589d8 100644 --- a/docs/interfaces/client_api.SeedCreationEvent.html +++ b/docs/interfaces/client_api.SeedCreationEvent.html @@ -1,9 +1,9 @@ SeedCreationEvent | @coinbase/coinbase-sdk

    An event representing a seed creation.

    Export

    SeedCreationEvent

    -
    interface SeedCreationEvent {
        wallet_id: string;
        wallet_user_id: string;
    }

    Properties

    interface SeedCreationEvent {
        wallet_id: string;
        wallet_user_id: string;
    }

    Properties

    wallet_id: string

    The ID of the wallet that the server-signer should create the seed for

    Memberof

    SeedCreationEvent

    -
    wallet_user_id: string

    The ID of the user that the wallet belongs to

    +
    wallet_user_id: string

    The ID of the user that the wallet belongs to

    Memberof

    SeedCreationEvent

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.SeedCreationEventResult.html b/docs/interfaces/client_api.SeedCreationEventResult.html index 84e2901d..fcb7a7c8 100644 --- a/docs/interfaces/client_api.SeedCreationEventResult.html +++ b/docs/interfaces/client_api.SeedCreationEventResult.html @@ -1,15 +1,15 @@ SeedCreationEventResult | @coinbase/coinbase-sdk

    The result to a SeedCreationEvent.

    Export

    SeedCreationEventResult

    -
    interface SeedCreationEventResult {
        extended_public_key: string;
        seed_id: string;
        wallet_id: string;
        wallet_user_id: string;
    }

    Properties

    interface SeedCreationEventResult {
        extended_public_key: string;
        seed_id: string;
        wallet_id: string;
        wallet_user_id: string;
    }

    Properties

    extended_public_key: string

    The extended public key for the first master key derived from seed.

    Memberof

    SeedCreationEventResult

    -
    seed_id: string

    The ID of the seed in Server-Signer used to generate the extended public key.

    +
    seed_id: string

    The ID of the seed in Server-Signer used to generate the extended public key.

    Memberof

    SeedCreationEventResult

    -
    wallet_id: string

    The ID of the wallet that the seed was created for

    +
    wallet_id: string

    The ID of the wallet that the seed was created for

    Memberof

    SeedCreationEventResult

    -
    wallet_user_id: string

    The ID of the user that the wallet belongs to

    +
    wallet_user_id: string

    The ID of the user that the wallet belongs to

    Memberof

    SeedCreationEventResult

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ServerSigner.html b/docs/interfaces/client_api.ServerSigner.html index afec98fa..8405c999 100644 --- a/docs/interfaces/client_api.ServerSigner.html +++ b/docs/interfaces/client_api.ServerSigner.html @@ -1,12 +1,12 @@ ServerSigner | @coinbase/coinbase-sdk

    A Server-Signer assigned to sign transactions in a wallet.

    Export

    ServerSigner

    -
    interface ServerSigner {
        is_mpc: boolean;
        server_signer_id: string;
        wallets?: string[];
    }

    Properties

    interface ServerSigner {
        is_mpc: boolean;
        server_signer_id: string;
        wallets?: string[];
    }

    Properties

    is_mpc: boolean

    Whether the Server-Signer uses MPC.

    Memberof

    ServerSigner

    -
    server_signer_id: string

    The ID of the server-signer

    +
    server_signer_id: string

    The ID of the server-signer

    Memberof

    ServerSigner

    -
    wallets?: string[]

    The IDs of the wallets that the server-signer can sign for

    +
    wallets?: string[]

    The IDs of the wallets that the server-signer can sign for

    Memberof

    ServerSigner

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ServerSignerEvent.html b/docs/interfaces/client_api.ServerSignerEvent.html index 11024cd6..6dcca4ca 100644 --- a/docs/interfaces/client_api.ServerSignerEvent.html +++ b/docs/interfaces/client_api.ServerSignerEvent.html @@ -1,8 +1,8 @@ ServerSignerEvent | @coinbase/coinbase-sdk

    An event that is waiting to be processed by a Server-Signer.

    Export

    ServerSignerEvent

    -
    interface ServerSignerEvent {
        event: ServerSignerEventEvent;
        server_signer_id: string;
    }

    Properties

    interface ServerSignerEvent {
        event: ServerSignerEventEvent;
        server_signer_id: string;
    }

    Properties

    Memberof

    ServerSignerEvent

    -
    server_signer_id: string

    The ID of the server-signer that the event is for

    +
    server_signer_id: string

    The ID of the server-signer that the event is for

    Memberof

    ServerSignerEvent

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ServerSignerEventList.html b/docs/interfaces/client_api.ServerSignerEventList.html index f71b2c73..00aa69e7 100644 --- a/docs/interfaces/client_api.ServerSignerEventList.html +++ b/docs/interfaces/client_api.ServerSignerEventList.html @@ -1,13 +1,13 @@ ServerSignerEventList | @coinbase/coinbase-sdk

    Export

    ServerSignerEventList

    -
    interface ServerSignerEventList {
        data: ServerSignerEvent[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    interface ServerSignerEventList {
        data: ServerSignerEvent[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    Memberof

    ServerSignerEventList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    ServerSignerEventList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    ServerSignerEventList

    -
    total_count: number

    The total number of events for the server signer.

    +
    total_count: number

    The total number of events for the server signer.

    Memberof

    ServerSignerEventList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ServerSignerList.html b/docs/interfaces/client_api.ServerSignerList.html index 048b28a1..3a7a2a65 100644 --- a/docs/interfaces/client_api.ServerSignerList.html +++ b/docs/interfaces/client_api.ServerSignerList.html @@ -1,13 +1,13 @@ ServerSignerList | @coinbase/coinbase-sdk

    Export

    ServerSignerList

    -
    interface ServerSignerList {
        data: ServerSigner[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    interface ServerSignerList {
        data: ServerSigner[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    data: ServerSigner[]

    Memberof

    ServerSignerList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    ServerSignerList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    ServerSignerList

    -
    total_count: number

    The total number of server-signers for the project.

    +
    total_count: number

    The total number of server-signers for the project.

    Memberof

    ServerSignerList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ServerSignersApiInterface.html b/docs/interfaces/client_api.ServerSignersApiInterface.html index 6dfacb6f..1c0696f1 100644 --- a/docs/interfaces/client_api.ServerSignersApiInterface.html +++ b/docs/interfaces/client_api.ServerSignersApiInterface.html @@ -1,8 +1,8 @@ ServerSignersApiInterface | @coinbase/coinbase-sdk

    ServerSignersApi - interface

    Export

    ServerSignersApi

    -
    interface ServerSignersApiInterface {
        createServerSigner(createServerSignerRequest?, options?): AxiosPromise<ServerSigner>;
        getServerSigner(serverSignerId, options?): AxiosPromise<ServerSigner>;
        listServerSignerEvents(serverSignerId, limit?, page?, options?): AxiosPromise<ServerSignerEventList>;
        listServerSigners(limit?, page?, options?): AxiosPromise<ServerSignerList>;
        submitServerSignerSeedEventResult(serverSignerId, seedCreationEventResult?, options?): AxiosPromise<SeedCreationEventResult>;
        submitServerSignerSignatureEventResult(serverSignerId, signatureCreationEventResult?, options?): AxiosPromise<SignatureCreationEventResult>;
    }

    Implemented by

    Methods

    interface ServerSignersApiInterface {
        createServerSigner(createServerSignerRequest?, options?): AxiosPromise<ServerSigner>;
        getServerSigner(serverSignerId, options?): AxiosPromise<ServerSigner>;
        listServerSignerEvents(serverSignerId, limit?, page?, options?): AxiosPromise<ServerSignerEventList>;
        listServerSigners(limit?, page?, options?): AxiosPromise<ServerSignerList>;
        submitServerSignerSeedEventResult(serverSignerId, seedCreationEventResult?, options?): AxiosPromise<SeedCreationEventResult>;
        submitServerSignerSignatureEventResult(serverSignerId, signatureCreationEventResult?, options?): AxiosPromise<SignatureCreationEventResult>;
    }

    Implemented by

    Methods

    Parameters

    • Optional createServerSignerRequest: CreateServerSignerRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns AxiosPromise<ServerSigner>

    Summary

    Create a new Server-Signer

    Throws

    Memberof

    ServerSignersApiInterface

    -
    • Get a server signer by ID

      Parameters

      • serverSignerId: string

        The ID of the server signer to fetch

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ServerSigner>

      Summary

      Get a server signer by ID

      Throws

      Memberof

      ServerSignersApiInterface

      -
    • List events for a server signer

      Parameters

      • serverSignerId: string

        The ID of the server signer to fetch events for

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ServerSignerEventList>

      Summary

      List events for a server signer

      -

      Throws

      Memberof

      ServerSignersApiInterface

      -
    • List server signers for the current project

      +

      Deprecated

      Throws

      Memberof

      ServerSignersApiInterface

      +
    • List server signers for the current project

      Parameters

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ServerSignerList>

      Summary

      List server signers for the current project

      Throws

      Memberof

      ServerSignersApiInterface

      -
    • Submit the result of a server signer event

      Parameters

      • serverSignerId: string

        The ID of the server signer to submit the event result for

      • Optional seedCreationEventResult: SeedCreationEventResult
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<SeedCreationEventResult>

      Summary

      Submit the result of a server signer event

      Throws

      Memberof

      ServerSignersApiInterface

      -
    • Submit the result of a server signer event

      Parameters

      • serverSignerId: string

        The ID of the server signer to submit the event result for

      • Optional signatureCreationEventResult: SignatureCreationEventResult
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<SignatureCreationEventResult>

      Summary

      Submit the result of a server signer event

      Throws

      Memberof

      ServerSignersApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.SignatureCreationEvent.html b/docs/interfaces/client_api.SignatureCreationEvent.html index 1e779f37..a454b694 100644 --- a/docs/interfaces/client_api.SignatureCreationEvent.html +++ b/docs/interfaces/client_api.SignatureCreationEvent.html @@ -1,6 +1,6 @@ SignatureCreationEvent | @coinbase/coinbase-sdk

    An event representing a signature creation.

    Export

    SignatureCreationEvent

    -
    interface SignatureCreationEvent {
        address_id: string;
        address_index: number;
        seed_id: string;
        signing_payload: string;
        transaction_id: string;
        transaction_type: "transfer";
        wallet_id: string;
        wallet_user_id: string;
    }

    Properties

    interface SignatureCreationEvent {
        address_id: string;
        address_index: number;
        seed_id: string;
        signing_payload: string;
        transaction_id: string;
        transaction_type: "transfer";
        wallet_id: string;
        wallet_user_id: string;
    }

    Properties

    address_id: string

    The ID of the address the transfer belongs to

    Memberof

    SignatureCreationEvent

    -
    address_index: number

    The index of the address that the server-signer should sign with

    +
    address_index: number

    The index of the address that the server-signer should sign with

    Memberof

    SignatureCreationEvent

    -
    seed_id: string

    The ID of the seed that the server-signer should create the signature for

    +
    seed_id: string

    The ID of the seed that the server-signer should create the signature for

    Memberof

    SignatureCreationEvent

    -
    signing_payload: string

    The payload that the server-signer should sign

    +
    signing_payload: string

    The payload that the server-signer should sign

    Memberof

    SignatureCreationEvent

    -
    transaction_id: string

    The ID of the transaction that the server-signer should sign

    +
    transaction_id: string

    The ID of the transaction that the server-signer should sign

    Memberof

    SignatureCreationEvent

    -
    transaction_type: "transfer"

    Memberof

    SignatureCreationEvent

    -
    wallet_id: string

    The ID of the wallet the signature is for

    +
    transaction_type: "transfer"

    Memberof

    SignatureCreationEvent

    +
    wallet_id: string

    The ID of the wallet the signature is for

    Memberof

    SignatureCreationEvent

    -
    wallet_user_id: string

    The ID of the user that the wallet belongs to

    +
    wallet_user_id: string

    The ID of the user that the wallet belongs to

    Memberof

    SignatureCreationEvent

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.SignatureCreationEventResult.html b/docs/interfaces/client_api.SignatureCreationEventResult.html index e5478454..9e000634 100644 --- a/docs/interfaces/client_api.SignatureCreationEventResult.html +++ b/docs/interfaces/client_api.SignatureCreationEventResult.html @@ -1,6 +1,6 @@ SignatureCreationEventResult | @coinbase/coinbase-sdk

    The result to a SignatureCreationEvent.

    Export

    SignatureCreationEventResult

    -
    interface SignatureCreationEventResult {
        address_id: string;
        signature: string;
        transaction_id: string;
        transaction_type: "transfer";
        wallet_id: string;
        wallet_user_id: string;
    }

    Properties

    interface SignatureCreationEventResult {
        address_id: string;
        signature: string;
        transaction_id: string;
        transaction_type: "transfer";
        wallet_id: string;
        wallet_user_id: string;
    }

    Properties

    address_id: string

    The ID of the address the transfer belongs to

    Memberof

    SignatureCreationEventResult

    -
    signature: string

    The signature created by the server-signer.

    +
    signature: string

    The signature created by the server-signer.

    Memberof

    SignatureCreationEventResult

    -
    transaction_id: string

    The ID of the transaction that the Server-Signer has signed for

    +
    transaction_id: string

    The ID of the transaction that the Server-Signer has signed for

    Memberof

    SignatureCreationEventResult

    -
    transaction_type: "transfer"

    Memberof

    SignatureCreationEventResult

    -
    wallet_id: string

    The ID of the wallet that the event was created for.

    +
    transaction_type: "transfer"

    Memberof

    SignatureCreationEventResult

    +
    wallet_id: string

    The ID of the wallet that the event was created for.

    Memberof

    SignatureCreationEventResult

    -
    wallet_user_id: string

    The ID of the user that the wallet belongs to

    +
    wallet_user_id: string

    The ID of the user that the wallet belongs to

    Memberof

    SignatureCreationEventResult

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.SignedVoluntaryExitMessageMetadata.html b/docs/interfaces/client_api.SignedVoluntaryExitMessageMetadata.html index addbef18..6045f358 100644 --- a/docs/interfaces/client_api.SignedVoluntaryExitMessageMetadata.html +++ b/docs/interfaces/client_api.SignedVoluntaryExitMessageMetadata.html @@ -1,12 +1,12 @@ SignedVoluntaryExitMessageMetadata | @coinbase/coinbase-sdk

    Interface SignedVoluntaryExitMessageMetadata

    Signed voluntary exit message metadata to be provided to beacon chain to exit a validator.

    Export

    SignedVoluntaryExitMessageMetadata

    -
    interface SignedVoluntaryExitMessageMetadata {
        fork: string;
        signed_voluntary_exit: string;
        validator_pub_key: string;
    }

    Properties

    interface SignedVoluntaryExitMessageMetadata {
        fork: string;
        signed_voluntary_exit: string;
        validator_pub_key: string;
    }

    Properties

    fork: string

    The current fork version of the Ethereum beacon chain.

    Memberof

    SignedVoluntaryExitMessageMetadata

    -
    signed_voluntary_exit: string

    A base64 encoded version of a json string representing a voluntary exit message.

    +
    signed_voluntary_exit: string

    A base64 encoded version of a json string representing a voluntary exit message.

    Memberof

    SignedVoluntaryExitMessageMetadata

    -
    validator_pub_key: string

    The public key of the validator associated with the exit message.

    +
    validator_pub_key: string

    The public key of the validator associated with the exit message.

    Memberof

    SignedVoluntaryExitMessageMetadata

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.SmartContract.html b/docs/interfaces/client_api.SmartContract.html index b22ad9fe..d0015d7c 100644 --- a/docs/interfaces/client_api.SmartContract.html +++ b/docs/interfaces/client_api.SmartContract.html @@ -1,6 +1,6 @@ SmartContract | @coinbase/coinbase-sdk

    Represents a smart contract on the blockchain

    Export

    SmartContract

    -
    interface SmartContract {
        abi: string;
        contract_address: string;
        deployer_address: string;
        network_id: string;
        options: SmartContractOptions;
        smart_contract_id: string;
        transaction: Transaction;
        type: SmartContractType;
        wallet_id: string;
    }

    Properties

    abi +
    interface SmartContract {
        abi: string;
        contract_address: string;
        deployer_address: string;
        network_id: string;
        options: SmartContractOptions;
        smart_contract_id: string;
        transaction: Transaction;
        type: SmartContractType;
        wallet_id: string;
    }

    Properties

    abi: string

    The JSON-encoded ABI of the contract

    Memberof

    SmartContract

    -
    contract_address: string

    The EVM address of the smart contract

    +
    contract_address: string

    The EVM address of the smart contract

    Memberof

    SmartContract

    -
    deployer_address: string

    The EVM address of the account that deployed the smart contract

    +
    deployer_address: string

    The EVM address of the account that deployed the smart contract

    Memberof

    SmartContract

    -
    network_id: string

    The name of the blockchain network

    +
    network_id: string

    The name of the blockchain network

    Memberof

    SmartContract

    -

    Memberof

    SmartContract

    -
    smart_contract_id: string

    The unique identifier of the smart contract

    +

    Memberof

    SmartContract

    +
    smart_contract_id: string

    The unique identifier of the smart contract

    Memberof

    SmartContract

    -
    transaction: Transaction

    Memberof

    SmartContract

    -

    Memberof

    SmartContract

    -
    wallet_id: string

    The ID of the wallet that deployed the smart contract

    +
    transaction: Transaction

    Memberof

    SmartContract

    +

    Memberof

    SmartContract

    +
    wallet_id: string

    The ID of the wallet that deployed the smart contract

    Memberof

    SmartContract

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.SmartContractList.html b/docs/interfaces/client_api.SmartContractList.html index 86915670..eb8452b7 100644 --- a/docs/interfaces/client_api.SmartContractList.html +++ b/docs/interfaces/client_api.SmartContractList.html @@ -1,10 +1,10 @@ SmartContractList | @coinbase/coinbase-sdk

    Export

    SmartContractList

    -
    interface SmartContractList {
        data: SmartContract[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    interface SmartContractList {
        data: SmartContract[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    Memberof

    SmartContractList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    SmartContractList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    SmartContractList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.SmartContractsApiInterface.html b/docs/interfaces/client_api.SmartContractsApiInterface.html index b32ae797..ca12cdbf 100644 --- a/docs/interfaces/client_api.SmartContractsApiInterface.html +++ b/docs/interfaces/client_api.SmartContractsApiInterface.html @@ -1,6 +1,6 @@ SmartContractsApiInterface | @coinbase/coinbase-sdk

    SmartContractsApi - interface

    Export

    SmartContractsApi

    -
    interface SmartContractsApiInterface {
        createSmartContract(walletId, addressId, createSmartContractRequest, options?): AxiosPromise<SmartContract>;
        deploySmartContract(walletId, addressId, smartContractId, deploySmartContractRequest, options?): AxiosPromise<SmartContract>;
        getSmartContract(walletId, addressId, smartContractId, options?): AxiosPromise<SmartContract>;
        listSmartContracts(walletId, addressId, options?): AxiosPromise<SmartContractList>;
    }

    Implemented by

    Methods

    interface SmartContractsApiInterface {
        createSmartContract(walletId, addressId, createSmartContractRequest, options?): AxiosPromise<SmartContract>;
        deploySmartContract(walletId, addressId, smartContractId, deploySmartContractRequest, options?): AxiosPromise<SmartContract>;
        getSmartContract(walletId, addressId, smartContractId, options?): AxiosPromise<SmartContract>;
        listSmartContracts(walletId, addressId, options?): AxiosPromise<SmartContractList>;
    }

    Implemented by

    Methods

  • createSmartContractRequest: CreateSmartContractRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<SmartContract>

    Summary

    Create a new smart contract

    Throws

    Memberof

    SmartContractsApiInterface

    -
    • Deploys a smart contract, by broadcasting the transaction to the network.

      +
    • Deploys a smart contract, by broadcasting the transaction to the network.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to broadcast the transaction from.

      • smartContractId: string

        The UUID of the smart contract to broadcast the transaction to.

      • deploySmartContractRequest: DeploySmartContractRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<SmartContract>

      Summary

      Deploy a smart contract

      Throws

      Memberof

      SmartContractsApiInterface

      -
    • Get a specific smart contract deployed by address.

      +
    • Get a specific smart contract deployed by address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to fetch the smart contract for.

      • smartContractId: string

        The UUID of the smart contract to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<SmartContract>

      Summary

      Get a specific smart contract deployed by address

      Throws

      Memberof

      SmartContractsApiInterface

      -
    • List all smart contracts deployed by address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to fetch the smart contracts for.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<SmartContractList>

      Summary

      List smart contracts deployed by address

      Throws

      Memberof

      SmartContractsApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.SponsoredSend.html b/docs/interfaces/client_api.SponsoredSend.html index 9758dd72..f9a27398 100644 --- a/docs/interfaces/client_api.SponsoredSend.html +++ b/docs/interfaces/client_api.SponsoredSend.html @@ -1,6 +1,6 @@ SponsoredSend | @coinbase/coinbase-sdk

    An onchain sponsored gasless send.

    Export

    SponsoredSend

    -
    interface SponsoredSend {
        raw_typed_data: string;
        signature?: string;
        status: SponsoredSendStatusEnum;
        to_address_id: string;
        transaction_hash?: string;
        transaction_link?: string;
        typed_data_hash: string;
    }

    Properties

    interface SponsoredSend {
        raw_typed_data: string;
        signature?: string;
        status: SponsoredSendStatusEnum;
        to_address_id: string;
        transaction_hash?: string;
        transaction_link?: string;
        typed_data_hash: string;
    }

    Properties

    raw_typed_data: string

    The raw typed data for the sponsored send

    Memberof

    SponsoredSend

    -
    signature?: string

    The signed hash of the sponsored send typed data.

    +
    signature?: string

    The signed hash of the sponsored send typed data.

    Memberof

    SponsoredSend

    -

    The status of the sponsored send

    +

    The status of the sponsored send

    Memberof

    SponsoredSend

    -
    to_address_id: string

    The onchain address of the recipient

    +
    to_address_id: string

    The onchain address of the recipient

    Memberof

    SponsoredSend

    -
    transaction_hash?: string

    The hash of the onchain sponsored send transaction

    +
    transaction_hash?: string

    The hash of the onchain sponsored send transaction

    Memberof

    SponsoredSend

    -
    transaction_link?: string

    The link to view the transaction on a block explorer. This is optional and may not be present for all transactions.

    +
    transaction_link?: string

    The link to view the transaction on a block explorer. This is optional and may not be present for all transactions.

    Memberof

    SponsoredSend

    -
    typed_data_hash: string

    The typed data hash for the sponsored send. This is the typed data hash that needs to be signed by the sender.

    +
    typed_data_hash: string

    The typed data hash for the sponsored send. This is the typed data hash that needs to be signed by the sender.

    Memberof

    SponsoredSend

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.StakeApiInterface.html b/docs/interfaces/client_api.StakeApiInterface.html index 4bbbcf20..46a0e9b0 100644 --- a/docs/interfaces/client_api.StakeApiInterface.html +++ b/docs/interfaces/client_api.StakeApiInterface.html @@ -1,6 +1,6 @@ StakeApiInterface | @coinbase/coinbase-sdk

    StakeApi - interface

    Export

    StakeApi

    -
    interface StakeApiInterface {
        buildStakingOperation(buildStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        fetchHistoricalStakingBalances(networkId, assetId, addressId, startTime, endTime, limit?, page?, options?): AxiosPromise<FetchHistoricalStakingBalances200Response>;
        fetchStakingRewards(fetchStakingRewardsRequest, limit?, page?, options?): AxiosPromise<FetchStakingRewards200Response>;
        getExternalStakingOperation(networkId, addressId, stakingOperationId, options?): AxiosPromise<StakingOperation>;
        getStakingContext(getStakingContextRequest, options?): AxiosPromise<StakingContext>;
    }

    Implemented by

    Methods

    interface StakeApiInterface {
        buildStakingOperation(buildStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        fetchHistoricalStakingBalances(networkId, assetId, addressId, startTime, endTime, limit?, page?, options?): AxiosPromise<FetchHistoricalStakingBalances200Response>;
        fetchStakingRewards(fetchStakingRewardsRequest, limit?, page?, options?): AxiosPromise<FetchStakingRewards200Response>;
        getExternalStakingOperation(networkId, addressId, stakingOperationId, options?): AxiosPromise<StakingOperation>;
        getStakingContext(getStakingContextRequest, options?): AxiosPromise<StakingContext>;
    }

    Implemented by

    Methods

    Parameters

    Returns AxiosPromise<StakingOperation>

    Summary

    Build a new staking operation

    Throws

    Memberof

    StakeApiInterface

    -
    • Fetch historical staking balances for given address.

      Parameters

      • networkId: string

        The ID of the blockchain network.

      • assetId: string

        The ID of the asset for which the historical staking balances are being fetched.

      • addressId: string

        The onchain address for which the historical staking balances are being fetched.

        @@ -20,21 +20,21 @@

        Throws

        Memberof

        StakeApiInterface

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<FetchHistoricalStakingBalances200Response>

      Summary

      Fetch historical staking balances

      Throws

      Memberof

      StakeApiInterface

      -
    • Fetch staking rewards for a list of addresses

      Parameters

      • fetchStakingRewardsRequest: FetchStakingRewardsRequest
      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<FetchStakingRewards200Response>

      Summary

      Fetch staking rewards

      Throws

      Memberof

      StakeApiInterface

      -
    • Get the latest state of a staking operation

      Parameters

      • networkId: string

        The ID of the blockchain network

      • addressId: string

        The ID of the address to fetch the staking operation for

      • stakingOperationId: string

        The ID of the staking operation

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<StakingOperation>

      Summary

      Get the latest state of a staking operation

      Throws

      Memberof

      StakeApiInterface

      -
    • Get staking context for an address

      Parameters

      Returns AxiosPromise<StakingContext>

      Summary

      Get staking context

      Throws

      Memberof

      StakeApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.StakingBalance.html b/docs/interfaces/client_api.StakingBalance.html index 4dafdcfa..ebab190a 100644 --- a/docs/interfaces/client_api.StakingBalance.html +++ b/docs/interfaces/client_api.StakingBalance.html @@ -1,16 +1,16 @@ StakingBalance | @coinbase/coinbase-sdk

    The staking balances for an address.

    Export

    StakingBalance

    -
    interface StakingBalance {
        address: string;
        bonded_stake: Balance;
        date: string;
        participant_type: string;
        unbonded_balance: Balance;
    }

    Properties

    interface StakingBalance {
        address: string;
        bonded_stake: Balance;
        date: string;
        participant_type: string;
        unbonded_balance: Balance;
    }

    Properties

    address: string

    The onchain address for which the staking balances are being fetched.

    Memberof

    StakingBalance

    -
    bonded_stake: Balance

    Memberof

    StakingBalance

    -
    date: string

    The timestamp of the staking balance in UTC.

    +
    bonded_stake: Balance

    Memberof

    StakingBalance

    +
    date: string

    The timestamp of the staking balance in UTC.

    Memberof

    StakingBalance

    -
    participant_type: string

    The type of staking participation.

    +
    participant_type: string

    The type of staking participation.

    Memberof

    StakingBalance

    -
    unbonded_balance: Balance

    Memberof

    StakingBalance

    -
    \ No newline at end of file +
    unbonded_balance: Balance

    Memberof

    StakingBalance

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.StakingContext.html b/docs/interfaces/client_api.StakingContext.html index 5ab8ff12..683bb8d9 100644 --- a/docs/interfaces/client_api.StakingContext.html +++ b/docs/interfaces/client_api.StakingContext.html @@ -1,5 +1,5 @@ StakingContext | @coinbase/coinbase-sdk

    Context needed to perform a staking operation

    Export

    StakingContext

    -
    interface StakingContext {
        context: StakingContextContext;
    }

    Properties

    interface StakingContext {
        context: StakingContextContext;
    }

    Properties

    Properties

    Memberof

    StakingContext

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.StakingContextContext.html b/docs/interfaces/client_api.StakingContextContext.html index dc42aed8..a3bd63c2 100644 --- a/docs/interfaces/client_api.StakingContextContext.html +++ b/docs/interfaces/client_api.StakingContextContext.html @@ -1,8 +1,8 @@ StakingContextContext | @coinbase/coinbase-sdk

    Export

    StakingContextContext

    -
    interface StakingContextContext {
        claimable_balance: Balance;
        stakeable_balance: Balance;
        unstakeable_balance: Balance;
    }

    Properties

    interface StakingContextContext {
        claimable_balance: Balance;
        stakeable_balance: Balance;
        unstakeable_balance: Balance;
    }

    Properties

    claimable_balance: Balance

    Memberof

    StakingContextContext

    -
    stakeable_balance: Balance

    Memberof

    StakingContextContext

    -
    unstakeable_balance: Balance

    Memberof

    StakingContextContext

    -
    \ No newline at end of file +
    stakeable_balance: Balance

    Memberof

    StakingContextContext

    +
    unstakeable_balance: Balance

    Memberof

    StakingContextContext

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.StakingOperation.html b/docs/interfaces/client_api.StakingOperation.html index d7725b6f..8f9727ca 100644 --- a/docs/interfaces/client_api.StakingOperation.html +++ b/docs/interfaces/client_api.StakingOperation.html @@ -1,6 +1,6 @@ StakingOperation | @coinbase/coinbase-sdk

    A list of onchain transactions to help realize a staking action.

    Export

    StakingOperation

    -
    interface StakingOperation {
        address_id: string;
        id: string;
        metadata?: StakingOperationMetadata;
        network_id: string;
        status: StakingOperationStatusEnum;
        transactions: Transaction[];
        wallet_id?: string;
    }

    Properties

    interface StakingOperation {
        address_id: string;
        id: string;
        metadata?: StakingOperationMetadata;
        network_id: string;
        status: StakingOperationStatusEnum;
        transactions: Transaction[];
        wallet_id?: string;
    }

    Properties

    Properties

    address_id: string

    The onchain address orchestrating the staking operation.

    Memberof

    StakingOperation

    -
    id: string

    The unique ID of the staking operation.

    +
    id: string

    The unique ID of the staking operation.

    Memberof

    StakingOperation

    -

    Memberof

    StakingOperation

    -
    network_id: string

    The ID of the blockchain network.

    +

    Memberof

    StakingOperation

    +
    network_id: string

    The ID of the blockchain network.

    Memberof

    StakingOperation

    -

    The status of the staking operation.

    +

    The status of the staking operation.

    Memberof

    StakingOperation

    -
    transactions: Transaction[]

    The transaction(s) that will execute the staking operation onchain.

    +
    transactions: Transaction[]

    The transaction(s) that will execute the staking operation onchain.

    Memberof

    StakingOperation

    -
    wallet_id?: string

    The ID of the wallet that owns the address.

    +
    wallet_id?: string

    The ID of the wallet that owns the address.

    Memberof

    StakingOperation

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.StakingReward.html b/docs/interfaces/client_api.StakingReward.html index a3c3237a..e3be0562 100644 --- a/docs/interfaces/client_api.StakingReward.html +++ b/docs/interfaces/client_api.StakingReward.html @@ -1,6 +1,6 @@ StakingReward | @coinbase/coinbase-sdk

    The staking rewards for an address.

    Export

    StakingReward

    -
    interface StakingReward {
        address_id: string;
        amount: string;
        date: string;
        format: StakingRewardFormat;
        state: StakingRewardStateEnum;
        usd_value: StakingRewardUSDValue;
    }

    Properties

    interface StakingReward {
        address_id: string;
        amount: string;
        date: string;
        format: StakingRewardFormat;
        state: StakingRewardStateEnum;
        usd_value: StakingRewardUSDValue;
    }

    Properties

    Properties

    address_id: string

    The onchain address for which the staking rewards are being fetched.

    Memberof

    StakingReward

    -
    amount: string

    The reward amount in requested "format". Default is USD.

    +
    amount: string

    The reward amount in requested "format". Default is USD.

    Memberof

    StakingReward

    -
    date: string

    The timestamp of the reward in UTC.

    +
    date: string

    The timestamp of the reward in UTC.

    Memberof

    StakingReward

    -

    Memberof

    StakingReward

    -

    The state of the reward.

    +

    Memberof

    StakingReward

    +

    The state of the reward.

    Memberof

    StakingReward

    -

    Memberof

    StakingReward

    -
    \ No newline at end of file +

    Memberof

    StakingReward

    +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.StakingRewardUSDValue.html b/docs/interfaces/client_api.StakingRewardUSDValue.html index 1bfbd588..91fe1de5 100644 --- a/docs/interfaces/client_api.StakingRewardUSDValue.html +++ b/docs/interfaces/client_api.StakingRewardUSDValue.html @@ -1,12 +1,12 @@ StakingRewardUSDValue | @coinbase/coinbase-sdk

    The USD value of the reward

    Export

    StakingRewardUSDValue

    -
    interface StakingRewardUSDValue {
        amount: string;
        conversion_price: string;
        conversion_time: string;
    }

    Properties

    interface StakingRewardUSDValue {
        amount: string;
        conversion_price: string;
        conversion_time: string;
    }

    Properties

    amount: string

    The value of the reward in USD

    Memberof

    StakingRewardUSDValue

    -
    conversion_price: string

    The conversion price from native currency to USD

    +
    conversion_price: string

    The conversion price from native currency to USD

    Memberof

    StakingRewardUSDValue

    -
    conversion_time: string

    The time of the conversion in UTC.

    +
    conversion_time: string

    The time of the conversion in UTC.

    Memberof

    StakingRewardUSDValue

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.TokenContractOptions.html b/docs/interfaces/client_api.TokenContractOptions.html index 2f35bb11..e88a9173 100644 --- a/docs/interfaces/client_api.TokenContractOptions.html +++ b/docs/interfaces/client_api.TokenContractOptions.html @@ -1,12 +1,12 @@ TokenContractOptions | @coinbase/coinbase-sdk

    Options for token contract creation

    Export

    TokenContractOptions

    -
    interface TokenContractOptions {
        name: string;
        symbol: string;
        total_supply: string;
    }

    Properties

    interface TokenContractOptions {
        name: string;
        symbol: string;
        total_supply: string;
    }

    Properties

    name: string

    The name of the token

    Memberof

    TokenContractOptions

    -
    symbol: string

    The symbol of the token

    +
    symbol: string

    The symbol of the token

    Memberof

    TokenContractOptions

    -
    total_supply: string

    The total supply of the token denominated in the whole amount of the token.

    +
    total_supply: string

    The total supply of the token denominated in the whole amount of the token.

    Memberof

    TokenContractOptions

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Trade.html b/docs/interfaces/client_api.Trade.html index c4fd42a6..c50e1ba3 100644 --- a/docs/interfaces/client_api.Trade.html +++ b/docs/interfaces/client_api.Trade.html @@ -1,6 +1,6 @@ Trade | @coinbase/coinbase-sdk

    A trade of an asset to another asset

    Export

    Trade

    -
    interface Trade {
        address_id: string;
        approve_transaction?: Transaction;
        from_amount: string;
        from_asset: Asset;
        network_id: string;
        to_amount: string;
        to_asset: Asset;
        trade_id: string;
        transaction: Transaction;
        wallet_id: string;
    }

    Properties

    interface Trade {
        address_id: string;
        approve_transaction?: Transaction;
        from_amount: string;
        from_asset: Asset;
        network_id: string;
        to_amount: string;
        to_asset: Asset;
        trade_id: string;
        transaction: Transaction;
        wallet_id: string;
    }

    Properties

    address_id: string

    The onchain address of the sender

    Memberof

    Trade

    -
    approve_transaction?: Transaction

    Memberof

    Trade

    -
    from_amount: string

    The amount of the from asset to be traded (in atomic units of the from asset)

    +
    approve_transaction?: Transaction

    Memberof

    Trade

    +
    from_amount: string

    The amount of the from asset to be traded (in atomic units of the from asset)

    Memberof

    Trade

    -
    from_asset: Asset

    Memberof

    Trade

    -
    network_id: string

    The ID of the blockchain network

    +
    from_asset: Asset

    Memberof

    Trade

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    Trade

    -
    to_amount: string

    The amount of the to asset that will be received (in atomic units of the to asset)

    +
    to_amount: string

    The amount of the to asset that will be received (in atomic units of the to asset)

    Memberof

    Trade

    -
    to_asset: Asset

    Memberof

    Trade

    -
    trade_id: string

    The ID of the trade

    +
    to_asset: Asset

    Memberof

    Trade

    +
    trade_id: string

    The ID of the trade

    Memberof

    Trade

    -
    transaction: Transaction

    Memberof

    Trade

    -
    wallet_id: string

    The ID of the wallet that owns the from address

    +
    transaction: Transaction

    Memberof

    Trade

    +
    wallet_id: string

    The ID of the wallet that owns the from address

    Memberof

    Trade

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.TradeList.html b/docs/interfaces/client_api.TradeList.html index 1404497a..678390bf 100644 --- a/docs/interfaces/client_api.TradeList.html +++ b/docs/interfaces/client_api.TradeList.html @@ -1,13 +1,13 @@ TradeList | @coinbase/coinbase-sdk

    Export

    TradeList

    -
    interface TradeList {
        data: Trade[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    interface TradeList {
        data: Trade[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    data: Trade[]

    Memberof

    TradeList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    TradeList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    TradeList

    -
    total_count: number

    The total number of trades for the address in the wallet.

    +
    total_count: number

    The total number of trades for the address in the wallet.

    Memberof

    TradeList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.TradesApiInterface.html b/docs/interfaces/client_api.TradesApiInterface.html index b5363079..73f5a726 100644 --- a/docs/interfaces/client_api.TradesApiInterface.html +++ b/docs/interfaces/client_api.TradesApiInterface.html @@ -1,6 +1,6 @@ TradesApiInterface | @coinbase/coinbase-sdk

    TradesApi - interface

    Export

    TradesApi

    -
    interface TradesApiInterface {
        broadcastTrade(walletId, addressId, tradeId, broadcastTradeRequest, options?): AxiosPromise<Trade>;
        createTrade(walletId, addressId, createTradeRequest, options?): AxiosPromise<Trade>;
        getTrade(walletId, addressId, tradeId, options?): AxiosPromise<Trade>;
        listTrades(walletId, addressId, limit?, page?, options?): AxiosPromise<TradeList>;
    }

    Implemented by

    Methods

    interface TradesApiInterface {
        broadcastTrade(walletId, addressId, tradeId, broadcastTradeRequest, options?): AxiosPromise<Trade>;
        createTrade(walletId, addressId, createTradeRequest, options?): AxiosPromise<Trade>;
        getTrade(walletId, addressId, tradeId, options?): AxiosPromise<Trade>;
        listTrades(walletId, addressId, limit?, page?, options?): AxiosPromise<TradeList>;
    }

    Implemented by

    Methods

  • broadcastTradeRequest: BroadcastTradeRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Trade>

    Summary

    Broadcast a trade

    Throws

    Memberof

    TradesApiInterface

    -
    • Create a new trade

      +
    • Create a new trade

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to

      • addressId: string

        The ID of the address to conduct the trade from

      • createTradeRequest: CreateTradeRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Trade>

      Summary

      Create a new trade for an address

      Throws

      Memberof

      TradesApiInterface

      -
    • Get a trade by ID

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address the trade belongs to

      • tradeId: string

        The ID of the trade to fetch

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Trade>

      Summary

      Get a trade by ID

      Throws

      Memberof

      TradesApiInterface

      -
    • List trades for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address to list trades for

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        @@ -32,4 +32,4 @@

        Throws

        Memberof

        TradesApiInterface

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<TradeList>

      Summary

      List trades for an address.

      Throws

      Memberof

      TradesApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Transaction.html b/docs/interfaces/client_api.Transaction.html index c87c54f5..171b7bdd 100644 --- a/docs/interfaces/client_api.Transaction.html +++ b/docs/interfaces/client_api.Transaction.html @@ -1,6 +1,6 @@ Transaction | @coinbase/coinbase-sdk

    An onchain transaction.

    Export

    Transaction

    -
    interface Transaction {
        block_hash?: string;
        block_height?: string;
        content?: EthereumTransaction;
        from_address_id: string;
        network_id: string;
        signed_payload?: string;
        status: TransactionStatusEnum;
        to_address_id?: string;
        transaction_hash?: string;
        transaction_link?: string;
        unsigned_payload: string;
    }

    Properties

    interface Transaction {
        block_hash?: string;
        block_height?: string;
        content?: EthereumTransaction;
        from_address_id: string;
        network_id: string;
        signed_payload?: string;
        status: TransactionStatusEnum;
        to_address_id?: string;
        transaction_hash?: string;
        transaction_link?: string;
        unsigned_payload: string;
    }

    Properties

    block_hash?: string

    The hash of the block at which the transaction was recorded.

    Memberof

    Transaction

    -
    block_height?: string

    The block height at which the transaction was recorded.

    +
    block_height?: string

    The block height at which the transaction was recorded.

    Memberof

    Transaction

    -

    Memberof

    Transaction

    -
    from_address_id: string

    The onchain address of the sender.

    +

    Memberof

    Transaction

    +
    from_address_id: string

    The onchain address of the sender.

    Memberof

    Transaction

    -
    network_id: string

    The ID of the blockchain network.

    +
    network_id: string

    The ID of the blockchain network.

    Memberof

    Transaction

    -
    signed_payload?: string

    The signed payload of the transaction. This is the payload that has been signed by the sender.

    +
    signed_payload?: string

    The signed payload of the transaction. This is the payload that has been signed by the sender.

    Memberof

    Transaction

    -

    The status of the transaction.

    +

    The status of the transaction.

    Memberof

    Transaction

    -
    to_address_id?: string

    The onchain address of the recipient.

    +
    to_address_id?: string

    The onchain address of the recipient.

    Memberof

    Transaction

    -
    transaction_hash?: string

    The hash of the transaction.

    +
    transaction_hash?: string

    The hash of the transaction.

    Memberof

    Transaction

    -
    transaction_link?: string

    The link to view the transaction on a block explorer. This is optional and may not be present for all transactions.

    +
    transaction_link?: string

    The link to view the transaction on a block explorer. This is optional and may not be present for all transactions.

    Memberof

    Transaction

    -
    unsigned_payload: string

    The unsigned payload of the transaction. This is the payload that needs to be signed by the sender.

    +
    unsigned_payload: string

    The unsigned payload of the transaction. This is the payload that needs to be signed by the sender.

    Memberof

    Transaction

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.TransactionHistoryApiInterface.html b/docs/interfaces/client_api.TransactionHistoryApiInterface.html new file mode 100644 index 00000000..1e73c161 --- /dev/null +++ b/docs/interfaces/client_api.TransactionHistoryApiInterface.html @@ -0,0 +1,12 @@ +TransactionHistoryApiInterface | @coinbase/coinbase-sdk

    TransactionHistoryApi - interface

    +

    Export

    TransactionHistoryApi

    +
    interface TransactionHistoryApiInterface {
        listAddressTransactions(networkId, addressId, limit?, page?, options?): AxiosPromise<AddressTransactionList>;
    }

    Implemented by

    Methods

    • List all transactions that interact with the address.

      +

      Parameters

      • networkId: string

        The ID of the blockchain network

        +
      • addressId: string

        The ID of the address to fetch the transactions for.

        +
      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        +
      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        +
      • Optional options: RawAxiosRequestConfig

        Override http request option.

        +

      Returns AxiosPromise<AddressTransactionList>

      Summary

      List transactions for an address.

      +

      Throws

      Memberof

      TransactionHistoryApiInterface

      +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Transfer.html b/docs/interfaces/client_api.Transfer.html index 942c7150..ec0dc505 100644 --- a/docs/interfaces/client_api.Transfer.html +++ b/docs/interfaces/client_api.Transfer.html @@ -1,6 +1,6 @@ Transfer | @coinbase/coinbase-sdk

    A transfer of an asset from one address to another

    Export

    Transfer

    -
    interface Transfer {
        address_id: string;
        amount: string;
        asset: Asset;
        asset_id: string;
        destination: string;
        gasless: boolean;
        network_id: string;
        signed_payload?: string;
        sponsored_send?: SponsoredSend;
        status?: TransferStatusEnum;
        transaction?: Transaction;
        transaction_hash?: string;
        transfer_id: string;
        unsigned_payload?: string;
        wallet_id: string;
    }

    Properties

    interface Transfer {
        address_id: string;
        amount: string;
        asset: Asset;
        asset_id: string;
        destination: string;
        gasless: boolean;
        network_id: string;
        signed_payload?: string;
        sponsored_send?: SponsoredSend;
        status?: TransferStatusEnum;
        transaction?: Transaction;
        transaction_hash?: string;
        transfer_id: string;
        unsigned_payload?: string;
        wallet_id: string;
    }

    Properties

    Properties

    address_id: string

    The onchain address of the sender

    Memberof

    Transfer

    -
    amount: string

    The amount in the atomic units of the asset

    +
    amount: string

    The amount in the atomic units of the asset

    Memberof

    Transfer

    -
    asset: Asset

    Memberof

    Transfer

    -
    asset_id: string

    The ID of the asset being transferred

    +
    asset: Asset

    Memberof

    Transfer

    +
    asset_id: string

    The ID of the asset being transferred

    Memberof

    Transfer

    -
    destination: string

    The onchain address of the recipient

    +
    destination: string

    The onchain address of the recipient

    Memberof

    Transfer

    -
    gasless: boolean

    Whether the transfer uses sponsored gas

    +
    gasless: boolean

    Whether the transfer uses sponsored gas

    Memberof

    Transfer

    -
    network_id: string

    The ID of the blockchain network

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    Transfer

    -
    signed_payload?: string

    The signed payload of the transfer. This is the payload that has been signed by the sender.

    +
    signed_payload?: string

    The signed payload of the transfer. This is the payload that has been signed by the sender.

    Memberof

    Transfer

    -
    sponsored_send?: SponsoredSend

    Memberof

    Transfer

    -

    The status of the transfer

    +
    sponsored_send?: SponsoredSend

    Memberof

    Transfer

    +

    The status of the transfer

    Memberof

    Transfer

    -
    transaction?: Transaction

    Memberof

    Transfer

    -
    transaction_hash?: string

    The hash of the transfer transaction

    +
    transaction?: Transaction

    Memberof

    Transfer

    +
    transaction_hash?: string

    The hash of the transfer transaction

    Memberof

    Transfer

    -
    transfer_id: string

    The ID of the transfer

    +
    transfer_id: string

    The ID of the transfer

    Memberof

    Transfer

    -
    unsigned_payload?: string

    The unsigned payload of the transfer. This is the payload that needs to be signed by the sender.

    +
    unsigned_payload?: string

    The unsigned payload of the transfer. This is the payload that needs to be signed by the sender.

    Memberof

    Transfer

    -
    wallet_id: string

    The ID of the wallet that owns the from address

    +
    wallet_id: string

    The ID of the wallet that owns the from address

    Memberof

    Transfer

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.TransferList.html b/docs/interfaces/client_api.TransferList.html index 53a9075f..36b2d863 100644 --- a/docs/interfaces/client_api.TransferList.html +++ b/docs/interfaces/client_api.TransferList.html @@ -1,13 +1,13 @@ TransferList | @coinbase/coinbase-sdk

    Export

    TransferList

    -
    interface TransferList {
        data: Transfer[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    interface TransferList {
        data: Transfer[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    data: Transfer[]

    Memberof

    TransferList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    TransferList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    TransferList

    -
    total_count: number

    The total number of transfers for the address in the wallet.

    +
    total_count: number

    The total number of transfers for the address in the wallet.

    Memberof

    TransferList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.TransfersApiInterface.html b/docs/interfaces/client_api.TransfersApiInterface.html index 508a4580..0a59d9c0 100644 --- a/docs/interfaces/client_api.TransfersApiInterface.html +++ b/docs/interfaces/client_api.TransfersApiInterface.html @@ -1,6 +1,6 @@ TransfersApiInterface | @coinbase/coinbase-sdk

    TransfersApi - interface

    Export

    TransfersApi

    -
    interface TransfersApiInterface {
        broadcastTransfer(walletId, addressId, transferId, broadcastTransferRequest, options?): AxiosPromise<Transfer>;
        createTransfer(walletId, addressId, createTransferRequest, options?): AxiosPromise<Transfer>;
        getTransfer(walletId, addressId, transferId, options?): AxiosPromise<Transfer>;
        listTransfers(walletId, addressId, limit?, page?, options?): AxiosPromise<TransferList>;
    }

    Implemented by

    Methods

    interface TransfersApiInterface {
        broadcastTransfer(walletId, addressId, transferId, broadcastTransferRequest, options?): AxiosPromise<Transfer>;
        createTransfer(walletId, addressId, createTransferRequest, options?): AxiosPromise<Transfer>;
        getTransfer(walletId, addressId, transferId, options?): AxiosPromise<Transfer>;
        listTransfers(walletId, addressId, limit?, page?, options?): AxiosPromise<TransferList>;
    }

    Implemented by

    Methods

  • broadcastTransferRequest: BroadcastTransferRequest
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Transfer>

    Summary

    Broadcast a transfer

    Throws

    Memberof

    TransfersApiInterface

    -
    • Create a new transfer

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to

      • addressId: string

        The ID of the address to transfer from

      • createTransferRequest: CreateTransferRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Transfer>

      Summary

      Create a new transfer for an address

      Throws

      Memberof

      TransfersApiInterface

      -
    • Get a transfer by ID

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address the transfer belongs to

      • transferId: string

        The ID of the transfer to fetch

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Transfer>

      Summary

      Get a transfer by ID

      Throws

      Memberof

      TransfersApiInterface

      -
    • List transfers for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address to list transfers for

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        @@ -32,4 +32,4 @@

        Throws

        Memberof

        TransfersApiInterface

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<TransferList>

      Summary

      List transfers for an address.

      Throws

      Memberof

      TransfersApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.UpdateWebhookRequest.html b/docs/interfaces/client_api.UpdateWebhookRequest.html index dc3f00b5..488868f7 100644 --- a/docs/interfaces/client_api.UpdateWebhookRequest.html +++ b/docs/interfaces/client_api.UpdateWebhookRequest.html @@ -1,10 +1,10 @@ UpdateWebhookRequest | @coinbase/coinbase-sdk

    Export

    UpdateWebhookRequest

    -
    interface UpdateWebhookRequest {
        event_filters?: WebhookEventFilter[];
        event_type_filter?: WebhookWalletActivityFilter;
        notification_uri: string;
    }

    Properties

    interface UpdateWebhookRequest {
        event_filters?: WebhookEventFilter[];
        event_type_filter?: WebhookWalletActivityFilter;
        notification_uri: string;
    }

    Properties

    event_filters?: WebhookEventFilter[]

    Webhook will monitor all events that matches any one of the event filters.

    Memberof

    UpdateWebhookRequest

    -
    event_type_filter?: WebhookWalletActivityFilter

    Memberof

    UpdateWebhookRequest

    -
    notification_uri: string

    The Webhook uri that updates to

    +
    event_type_filter?: WebhookWalletActivityFilter

    Memberof

    UpdateWebhookRequest

    +
    notification_uri: string

    The Webhook uri that updates to

    Memberof

    UpdateWebhookRequest

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.User.html b/docs/interfaces/client_api.User.html index 0d232978..6bc17c86 100644 --- a/docs/interfaces/client_api.User.html +++ b/docs/interfaces/client_api.User.html @@ -1,7 +1,7 @@ User | @coinbase/coinbase-sdk

    Export

    User

    -
    interface User {
        display_name?: string;
        id: string;
    }

    Properties

    interface User {
        display_name?: string;
        id: string;
    }

    Properties

    Properties

    display_name?: string

    Memberof

    User

    -
    id: string

    The ID of the user

    +
    id: string

    The ID of the user

    Memberof

    User

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.UsersApiInterface.html b/docs/interfaces/client_api.UsersApiInterface.html index c659c65a..759809a9 100644 --- a/docs/interfaces/client_api.UsersApiInterface.html +++ b/docs/interfaces/client_api.UsersApiInterface.html @@ -1,8 +1,8 @@ UsersApiInterface | @coinbase/coinbase-sdk

    UsersApi - interface

    Export

    UsersApi

    -
    interface UsersApiInterface {
        getCurrentUser(options?): AxiosPromise<User>;
    }

    Implemented by

    Methods

    interface UsersApiInterface {
        getCurrentUser(options?): AxiosPromise<User>;
    }

    Implemented by

    Methods

    • Get current user

      Parameters

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<User>

      Summary

      Get current user

      Throws

      Memberof

      UsersApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Validator.html b/docs/interfaces/client_api.Validator.html index 055e7b58..33e46f2a 100644 --- a/docs/interfaces/client_api.Validator.html +++ b/docs/interfaces/client_api.Validator.html @@ -1,16 +1,16 @@ Validator | @coinbase/coinbase-sdk

    A validator onchain.

    Export

    Validator

    -
    interface Validator {
        asset_id: string;
        details?: EthereumValidatorMetadata;
        network_id: string;
        status: ValidatorStatus;
        validator_id: string;
    }

    Properties

    interface Validator {
        asset_id: string;
        details?: EthereumValidatorMetadata;
        network_id: string;
        status: ValidatorStatus;
        validator_id: string;
    }

    Properties

    asset_id: string

    The ID of the asset that the validator helps stake.

    Memberof

    Validator

    -

    Memberof

    Validator

    -
    network_id: string

    The ID of the blockchain network to which the Validator belongs.

    +

    Memberof

    Validator

    +
    network_id: string

    The ID of the blockchain network to which the Validator belongs.

    Memberof

    Validator

    -

    Memberof

    Validator

    -
    validator_id: string

    The publicly identifiable unique id of the validator. This can be the public key for Ethereum validators and maybe an address for some other network.

    +

    Memberof

    Validator

    +
    validator_id: string

    The publicly identifiable unique id of the validator. This can be the public key for Ethereum validators and maybe an address for some other network.

    Memberof

    Validator

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ValidatorList.html b/docs/interfaces/client_api.ValidatorList.html index a96d514d..87e26c21 100644 --- a/docs/interfaces/client_api.ValidatorList.html +++ b/docs/interfaces/client_api.ValidatorList.html @@ -1,10 +1,10 @@ ValidatorList | @coinbase/coinbase-sdk

    Export

    ValidatorList

    -
    interface ValidatorList {
        data: Validator[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    interface ValidatorList {
        data: Validator[];
        has_more: boolean;
        next_page: string;
    }

    Properties

    data: Validator[]

    Memberof

    ValidatorList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    ValidatorList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    ValidatorList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.ValidatorsApiInterface.html b/docs/interfaces/client_api.ValidatorsApiInterface.html index 4d4d2f1f..580354c4 100644 --- a/docs/interfaces/client_api.ValidatorsApiInterface.html +++ b/docs/interfaces/client_api.ValidatorsApiInterface.html @@ -1,6 +1,6 @@ ValidatorsApiInterface | @coinbase/coinbase-sdk

    ValidatorsApi - interface

    Export

    ValidatorsApi

    -
    interface ValidatorsApiInterface {
        getValidator(networkId, assetId, validatorId, options?): AxiosPromise<Validator>;
        listValidators(networkId, assetId, status?, limit?, page?, options?): AxiosPromise<ValidatorList>;
    }

    Implemented by

    Methods

    interface ValidatorsApiInterface {
        getValidator(networkId, assetId, validatorId, options?): AxiosPromise<Validator>;
        listValidators(networkId, assetId, status?, limit?, page?, options?): AxiosPromise<ValidatorList>;
    }

    Implemented by

    Methods

    • Get a validator belonging to the user for a given network, asset and id.

      Parameters

      • networkId: string

        The ID of the blockchain network.

        @@ -9,7 +9,7 @@
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Validator>

      Summary

      Get a validator belonging to the CDP project

      Throws

      Memberof

      ValidatorsApiInterface

      -
    • List validators belonging to the user for a given network and asset.

      +
    • List validators belonging to the user for a given network and asset.

      Parameters

      • networkId: string

        The ID of the blockchain network.

      • assetId: string

        The symbol of the asset to get the validators for.

      • Optional status: ValidatorStatus

        A filter to list validators based on a status.

        @@ -18,4 +18,4 @@

        Throws

        Memberof

        ValidatorsApiInterface

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<ValidatorList>

      Summary

      List validators belonging to the CDP project

      Throws

      Memberof

      ValidatorsApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Wallet.html b/docs/interfaces/client_api.Wallet.html index d7848a89..ca0d887e 100644 --- a/docs/interfaces/client_api.Wallet.html +++ b/docs/interfaces/client_api.Wallet.html @@ -1,15 +1,15 @@ Wallet | @coinbase/coinbase-sdk

    Export

    Wallet

    -
    interface Wallet {
        default_address?: Address;
        feature_set: FeatureSet;
        id: string;
        network_id: string;
        server_signer_status?: WalletServerSignerStatusEnum;
    }

    Properties

    interface Wallet {
        default_address?: Address;
        feature_set: FeatureSet;
        id: string;
        network_id: string;
        server_signer_status?: WalletServerSignerStatusEnum;
    }

    Properties

    default_address?: Address

    Memberof

    Wallet

    -
    feature_set: FeatureSet

    Memberof

    Wallet

    -
    id: string

    The server-assigned ID for the wallet.

    +
    feature_set: FeatureSet

    Memberof

    Wallet

    +
    id: string

    The server-assigned ID for the wallet.

    Memberof

    Wallet

    -
    network_id: string

    The ID of the blockchain network

    +
    network_id: string

    The ID of the blockchain network

    Memberof

    Wallet

    -
    server_signer_status?: WalletServerSignerStatusEnum

    The status of the Server-Signer for the wallet if present.

    +
    server_signer_status?: WalletServerSignerStatusEnum

    The status of the Server-Signer for the wallet if present.

    Memberof

    Wallet

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.WalletList.html b/docs/interfaces/client_api.WalletList.html index 2ebb4990..4f70a6e4 100644 --- a/docs/interfaces/client_api.WalletList.html +++ b/docs/interfaces/client_api.WalletList.html @@ -1,14 +1,14 @@ WalletList | @coinbase/coinbase-sdk

    Paginated list of wallets

    Export

    WalletList

    -
    interface WalletList {
        data: Wallet[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    interface WalletList {
        data: Wallet[];
        has_more: boolean;
        next_page: string;
        total_count: number;
    }

    Properties

    data: Wallet[]

    Memberof

    WalletList

    -
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    WalletList

    -
    next_page: string

    The page token to be used to fetch the next page.

    +
    next_page: string

    The page token to be used to fetch the next page.

    Memberof

    WalletList

    -
    total_count: number

    The total number of wallets

    +
    total_count: number

    The total number of wallets

    Memberof

    WalletList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.WalletStakeApiInterface.html b/docs/interfaces/client_api.WalletStakeApiInterface.html index 3ee75607..af8dbf47 100644 --- a/docs/interfaces/client_api.WalletStakeApiInterface.html +++ b/docs/interfaces/client_api.WalletStakeApiInterface.html @@ -1,6 +1,6 @@ WalletStakeApiInterface | @coinbase/coinbase-sdk

    WalletStakeApi - interface

    Export

    WalletStakeApi

    -
    interface WalletStakeApiInterface {
        broadcastStakingOperation(walletId, addressId, stakingOperationId, broadcastStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        createStakingOperation(walletId, addressId, createStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        getStakingOperation(walletId, addressId, stakingOperationId, options?): AxiosPromise<StakingOperation>;
    }

    Implemented by

    Methods

    interface WalletStakeApiInterface {
        broadcastStakingOperation(walletId, addressId, stakingOperationId, broadcastStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        createStakingOperation(walletId, addressId, createStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        getStakingOperation(walletId, addressId, stakingOperationId, options?): AxiosPromise<StakingOperation>;
    }

    Implemented by

    Methods

    • Broadcast a staking operation.

      @@ -10,17 +10,17 @@
    • broadcastStakingOperationRequest: BroadcastStakingOperationRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns AxiosPromise<StakingOperation>

    Summary

    Broadcast a staking operation

    Throws

    Memberof

    WalletStakeApiInterface

    -
    • Create a new staking operation.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to create the staking operation for.

      • createStakingOperationRequest: CreateStakingOperationRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<StakingOperation>

      Summary

      Create a new staking operation for an address

      Throws

      Memberof

      WalletStakeApiInterface

      -
    • Get the latest state of a staking operation.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to

      • addressId: string

        The ID of the address to fetch the staking operation for.

      • stakingOperationId: string

        The ID of the staking operation.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<StakingOperation>

      Summary

      Get the latest state of a staking operation

      Throws

      Memberof

      WalletStakeApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.WalletsApiInterface.html b/docs/interfaces/client_api.WalletsApiInterface.html index 0790397c..d4de281f 100644 --- a/docs/interfaces/client_api.WalletsApiInterface.html +++ b/docs/interfaces/client_api.WalletsApiInterface.html @@ -1,6 +1,6 @@ WalletsApiInterface | @coinbase/coinbase-sdk

    WalletsApi - interface

    Export

    WalletsApi

    -
    interface WalletsApiInterface {
        createWallet(createWalletRequest?, options?): AxiosPromise<Wallet>;
        getWallet(walletId, options?): AxiosPromise<Wallet>;
        getWalletBalance(walletId, assetId, options?): AxiosPromise<Balance>;
        listWalletBalances(walletId, options?): AxiosPromise<AddressBalanceList>;
        listWallets(limit?, page?, options?): AxiosPromise<WalletList>;
    }

    Implemented by

    Methods

    interface WalletsApiInterface {
        createWallet(createWalletRequest?, options?): AxiosPromise<Wallet>;
        getWallet(walletId, options?): AxiosPromise<Wallet>;
        getWalletBalance(walletId, assetId, options?): AxiosPromise<Balance>;
        listWalletBalances(walletId, options?): AxiosPromise<AddressBalanceList>;
        listWallets(limit?, page?, options?): AxiosPromise<WalletList>;
    }

    Implemented by

    Methods

    Parameters

    • Optional createWalletRequest: CreateWalletRequest
    • Optional options: RawAxiosRequestConfig

      Override http request option.

    Returns AxiosPromise<Wallet>

    Summary

    Create a new wallet

    Throws

    Memberof

    WalletsApiInterface

    -
    • Get wallet

      Parameters

      • walletId: string

        The ID of the wallet to fetch

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Wallet>

      Summary

      Get wallet by ID

      Throws

      Memberof

      WalletsApiInterface

      -
    • Get the aggregated balance of an asset across all of the addresses in the wallet.

      +
    • Get the aggregated balance of an asset across all of the addresses in the wallet.

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balance for

      • assetId: string

        The symbol of the asset to fetch the balance for

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Balance>

      Summary

      Get the balance of an asset in the wallet

      Throws

      Memberof

      WalletsApiInterface

      -
    • List the balances of all of the addresses in the wallet aggregated by asset.

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balances for

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressBalanceList>

      Summary

      List wallet balances

      Throws

      Memberof

      WalletsApiInterface

      -
    • List wallets belonging to the user.

      Parameters

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<WalletList>

      Summary

      List wallets

      Throws

      Memberof

      WalletsApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.Webhook.html b/docs/interfaces/client_api.Webhook.html index 5a62b744..9182bee0 100644 --- a/docs/interfaces/client_api.Webhook.html +++ b/docs/interfaces/client_api.Webhook.html @@ -1,6 +1,6 @@ Webhook | @coinbase/coinbase-sdk

    Webhook that is used for getting notifications when monitored events occur.

    Export

    Webhook

    -
    interface Webhook {
        created_at?: string;
        event_filters?: WebhookEventFilter[];
        event_type?: WebhookEventType;
        event_type_filter?: WebhookWalletActivityFilter;
        id?: string;
        network_id?: string;
        notification_uri?: string;
        signature_header?: string;
        updated_at?: string;
    }

    Properties

    interface Webhook {
        created_at?: string;
        event_filters?: WebhookEventFilter[];
        event_type?: WebhookEventType;
        event_type_filter?: WebhookWalletActivityFilter;
        id?: string;
        network_id?: string;
        notification_uri?: string;
        signature_header?: string;
        updated_at?: string;
    }

    Properties

    created_at?: string

    The date and time the webhook was created.

    Memberof

    Webhook

    -
    event_filters?: WebhookEventFilter[]

    Webhook will monitor all events that matches any one of the event filters.

    +
    event_filters?: WebhookEventFilter[]

    Webhook will monitor all events that matches any one of the event filters.

    Memberof

    Webhook

    -
    event_type?: WebhookEventType

    Memberof

    Webhook

    -
    event_type_filter?: WebhookWalletActivityFilter

    Memberof

    Webhook

    -
    id?: string

    Identifier of the webhook.

    +
    event_type?: WebhookEventType

    Memberof

    Webhook

    +
    event_type_filter?: WebhookWalletActivityFilter

    Memberof

    Webhook

    +
    id?: string

    Identifier of the webhook.

    Memberof

    Webhook

    -
    network_id?: string

    The ID of the blockchain network

    +
    network_id?: string

    The ID of the blockchain network

    Memberof

    Webhook

    -
    notification_uri?: string

    The URL to which the notifications will be sent.

    +
    notification_uri?: string

    The URL to which the notifications will be sent.

    Memberof

    Webhook

    -
    signature_header?: string

    The header that will contain the signature of the webhook payload.

    +
    signature_header?: string

    The header that will contain the signature of the webhook payload.

    Memberof

    Webhook

    -
    updated_at?: string

    The date and time the webhook was last updated.

    +
    updated_at?: string

    The date and time the webhook was last updated.

    Memberof

    Webhook

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.WebhookEventFilter.html b/docs/interfaces/client_api.WebhookEventFilter.html index 5ab9deff..5e85df22 100644 --- a/docs/interfaces/client_api.WebhookEventFilter.html +++ b/docs/interfaces/client_api.WebhookEventFilter.html @@ -1,12 +1,12 @@ WebhookEventFilter | @coinbase/coinbase-sdk

    The event_filter parameter specifies the criteria to filter events from the blockchain. It allows filtering events by contract address, sender address and receiver address. For a single event filter, not all of the properties need to be presented.

    Export

    WebhookEventFilter

    -
    interface WebhookEventFilter {
        contract_address?: string;
        from_address?: string;
        to_address?: string;
    }

    Properties

    interface WebhookEventFilter {
        contract_address?: string;
        from_address?: string;
        to_address?: string;
    }

    Properties

    contract_address?: string

    The onchain contract address of the token for which the events should be tracked.

    Memberof

    WebhookEventFilter

    -
    from_address?: string

    The onchain address of the sender. Set this filter to track all transfer events originating from your address.

    +
    from_address?: string

    The onchain address of the sender. Set this filter to track all transfer events originating from your address.

    Memberof

    WebhookEventFilter

    -
    to_address?: string

    The onchain address of the receiver. Set this filter to track all transfer events sent to your address.

    +
    to_address?: string

    The onchain address of the receiver. Set this filter to track all transfer events sent to your address.

    Memberof

    WebhookEventFilter

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.WebhookList.html b/docs/interfaces/client_api.WebhookList.html index e7aa7913..0416ff48 100644 --- a/docs/interfaces/client_api.WebhookList.html +++ b/docs/interfaces/client_api.WebhookList.html @@ -1,10 +1,10 @@ WebhookList | @coinbase/coinbase-sdk

    Export

    WebhookList

    -
    interface WebhookList {
        data: Webhook[];
        has_more?: boolean;
        next_page?: string;
    }

    Properties

    interface WebhookList {
        data: Webhook[];
        has_more?: boolean;
        next_page?: string;
    }

    Properties

    data: Webhook[]

    Memberof

    WebhookList

    -
    has_more?: boolean

    True if this list has another page of items after this one that can be fetched.

    +
    has_more?: boolean

    True if this list has another page of items after this one that can be fetched.

    Memberof

    WebhookList

    -
    next_page?: string

    The page token to be used to fetch the next page.

    +
    next_page?: string

    The page token to be used to fetch the next page.

    Memberof

    WebhookList

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.WebhookWalletActivityFilter.html b/docs/interfaces/client_api.WebhookWalletActivityFilter.html index bbf9a99b..088aa9a2 100644 --- a/docs/interfaces/client_api.WebhookWalletActivityFilter.html +++ b/docs/interfaces/client_api.WebhookWalletActivityFilter.html @@ -1,9 +1,9 @@ WebhookWalletActivityFilter | @coinbase/coinbase-sdk

    Filter for wallet activity events. This filter allows the client to specify one or more wallet addresses to monitor for activities such as transactions, transfers, or other types of events that are associated with the specified addresses.

    Export

    WebhookWalletActivityFilter

    -
    interface WebhookWalletActivityFilter {
        addresses?: string[];
        wallet_id?: string;
    }

    Properties

    interface WebhookWalletActivityFilter {
        addresses?: string[];
        wallet_id?: string;
    }

    Properties

    addresses?: string[]

    A list of wallet addresses to filter on.

    Memberof

    WebhookWalletActivityFilter

    -
    wallet_id?: string

    The ID of the wallet that owns the webhook.

    +
    wallet_id?: string

    The ID of the wallet that owns the webhook.

    Memberof

    WebhookWalletActivityFilter

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_api.WebhooksApiInterface.html b/docs/interfaces/client_api.WebhooksApiInterface.html index 81d0c141..303e61d7 100644 --- a/docs/interfaces/client_api.WebhooksApiInterface.html +++ b/docs/interfaces/client_api.WebhooksApiInterface.html @@ -1,27 +1,33 @@ WebhooksApiInterface | @coinbase/coinbase-sdk

    WebhooksApi - interface

    Export

    WebhooksApi

    -
    interface WebhooksApiInterface {
        createWebhook(createWebhookRequest?, options?): AxiosPromise<Webhook>;
        deleteWebhook(webhookId, options?): AxiosPromise<void>;
        listWebhooks(limit?, page?, options?): AxiosPromise<WebhookList>;
        updateWebhook(webhookId, updateWebhookRequest?, options?): AxiosPromise<Webhook>;
    }

    Implemented by

    Methods

    interface WebhooksApiInterface {
        createWalletWebhook(walletId, createWalletWebhookRequest?, options?): AxiosPromise<Webhook>;
        createWebhook(createWebhookRequest?, options?): AxiosPromise<Webhook>;
        deleteWebhook(webhookId, options?): AxiosPromise<void>;
        listWebhooks(limit?, page?, options?): AxiosPromise<WebhookList>;
        updateWebhook(webhookId, updateWebhookRequest?, options?): AxiosPromise<Webhook>;
    }

    Implemented by

    Methods

    • Create a new webhook

      +

    Methods

    • Create a new webhook scoped to a wallet

      +

      Parameters

      • walletId: string

        The ID of the wallet to create the webhook for.

        +
      • Optional createWalletWebhookRequest: CreateWalletWebhookRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

        +

      Returns AxiosPromise<Webhook>

      Summary

      Create a new webhook scoped to a wallet

      +

      Throws

      Memberof

      WebhooksApiInterface

      +
    • Create a new webhook

      Parameters

      • Optional createWebhookRequest: CreateWebhookRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Webhook>

      Summary

      Create a new webhook

      Throws

      Memberof

      WebhooksApiInterface

      -
    • Delete a webhook

      Parameters

      • webhookId: string

        The Webhook uuid that needs to be deleted

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<void>

      Summary

      Delete a webhook

      Throws

      Memberof

      WebhooksApiInterface

      -
    • List webhooks, optionally filtered by event type.

      Parameters

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<WebhookList>

      Summary

      List webhooks

      Throws

      Memberof

      WebhooksApiInterface

      -
    • Update a webhook

      Parameters

      • webhookId: string

        The Webhook id that needs to be updated

      • Optional updateWebhookRequest: UpdateWebhookRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Webhook>

      Summary

      Update a webhook

      Throws

      Memberof

      WebhooksApiInterface

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/client_base.RequestArgs.html b/docs/interfaces/client_base.RequestArgs.html index 9130ca19..97aa21eb 100644 --- a/docs/interfaces/client_base.RequestArgs.html +++ b/docs/interfaces/client_base.RequestArgs.html @@ -1,4 +1,4 @@ RequestArgs | @coinbase/coinbase-sdk

    Export

    RequestArgs

    -
    interface RequestArgs {
        options: RawAxiosRequestConfig;
        url: string;
    }

    Properties

    interface RequestArgs {
        options: RawAxiosRequestConfig;
        url: string;
    }

    Properties

    Properties

    options: RawAxiosRequestConfig
    url: string
    \ No newline at end of file +

    Properties

    options: RawAxiosRequestConfig
    url: string
    \ No newline at end of file diff --git a/docs/interfaces/client_configuration.ConfigurationParameters.html b/docs/interfaces/client_configuration.ConfigurationParameters.html index 05448241..47fa672f 100644 --- a/docs/interfaces/client_configuration.ConfigurationParameters.html +++ b/docs/interfaces/client_configuration.ConfigurationParameters.html @@ -4,7 +4,7 @@

    NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). https://openapi-generator.tech Do not edit the class manually.

    -
    interface ConfigurationParameters {
        accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>);
        apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>);
        baseOptions?: any;
        basePath?: string;
        formDataCtor?: (new () => any);
        password?: string;
        serverIndex?: number;
        username?: string;
    }

    Properties

    interface ConfigurationParameters {
        accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>);
        apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>);
        baseOptions?: any;
        basePath?: string;
        formDataCtor?: (new () => any);
        password?: string;
        serverIndex?: number;
        username?: string;
    }

    Properties

    accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>)

    Type declaration

      • (name?, scopes?): string
      • Parameters

        • Optional name: string
        • Optional scopes: string[]

        Returns string

    Type declaration

      • (name?, scopes?): Promise<string>
      • Parameters

        • Optional name: string
        • Optional scopes: string[]

        Returns Promise<string>

    apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>)

    Type declaration

      • (name): string
      • Parameters

        • name: string

        Returns string

    Type declaration

      • (name): Promise<string>
      • Parameters

        • name: string

        Returns Promise<string>

    baseOptions?: any
    basePath?: string
    formDataCtor?: (new () => any)

    Type declaration

      • new (): any
      • Returns any

    password?: string
    serverIndex?: number
    username?: string
    \ No newline at end of file +

    Properties

    accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>)

    Type declaration

      • (name?, scopes?): string
      • Parameters

        • Optional name: string
        • Optional scopes: string[]

        Returns string

    Type declaration

      • (name?, scopes?): Promise<string>
      • Parameters

        • Optional name: string
        • Optional scopes: string[]

        Returns Promise<string>

    apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>)

    Type declaration

      • (name): string
      • Parameters

        • name: string

        Returns string

    Type declaration

      • (name): Promise<string>
      • Parameters

        • name: string

        Returns Promise<string>

    baseOptions?: any
    basePath?: string
    formDataCtor?: (new () => any)

    Type declaration

      • new (): any
      • Returns any

    password?: string
    serverIndex?: number
    username?: string
    \ No newline at end of file diff --git a/docs/interfaces/coinbase_types.BalanceHistoryApiClient.html b/docs/interfaces/coinbase_types.BalanceHistoryApiClient.html index 5b0c8abf..7973ca3f 100644 --- a/docs/interfaces/coinbase_types.BalanceHistoryApiClient.html +++ b/docs/interfaces/coinbase_types.BalanceHistoryApiClient.html @@ -1,4 +1,4 @@ -BalanceHistoryApiClient | @coinbase/coinbase-sdk
    interface BalanceHistoryApiClient {
        listAddressHistoricalBalance(networkId, addressId, assetId, limit?, page?, options?): AxiosPromise<AddressHistoricalBalanceList>;
    }

    Methods

    listAddressHistoricalBalance +BalanceHistoryApiClient | @coinbase/coinbase-sdk
    interface BalanceHistoryApiClient {
        listAddressHistoricalBalance(networkId, addressId, assetId, limit?, page?, options?): AxiosPromise<AddressHistoricalBalanceList>;
    }

    Methods

    • List the historical balance of an asset in a specific address.

      Parameters

      • networkId: string

        The ID of the blockchain network

      • addressId: string

        The ID of the address to fetch the historical balance for.

        @@ -7,4 +7,4 @@
      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressHistoricalBalanceList>

      Summary

      Get address balance history for asset

      -

      Throws

    \ No newline at end of file +

    Throws

    \ No newline at end of file diff --git a/docs/interfaces/coinbase_types.SmartContractAPIClient.html b/docs/interfaces/coinbase_types.SmartContractAPIClient.html index 64a12586..dbb2d75d 100644 --- a/docs/interfaces/coinbase_types.SmartContractAPIClient.html +++ b/docs/interfaces/coinbase_types.SmartContractAPIClient.html @@ -1,4 +1,4 @@ -SmartContractAPIClient | @coinbase/coinbase-sdk
    interface SmartContractAPIClient {
        createSmartContract(walletId, addressId, createSmartContractRequest, options?): AxiosPromise<SmartContract>;
        deploySmartContract(walletId, addressId, smartContractId, deploySmartContractRequest, options?): AxiosPromise<SmartContract>;
        getSmartContract(walletId, addressId, smartContractId, options?): AxiosPromise<SmartContract>;
        listSmartContracts(walletId, addressId, options?): AxiosPromise<SmartContractList>;
    }

    Methods

    createSmartContract +SmartContractAPIClient | @coinbase/coinbase-sdk
    interface SmartContractAPIClient {
        createSmartContract(walletId, addressId, createSmartContractRequest, options?): AxiosPromise<SmartContract>;
        deploySmartContract(walletId, addressId, smartContractId, deploySmartContractRequest, options?): AxiosPromise<SmartContract>;
        getSmartContract(walletId, addressId, smartContractId, options?): AxiosPromise<SmartContract>;
        listSmartContracts(walletId, addressId, options?): AxiosPromise<SmartContractList>;
    }

    Methods

  • createSmartContractRequest: CreateSmartContractRequest

    The request body containing the smart contract details.

  • Optional options: RawAxiosRequestConfig

    Axios request options.

  • Returns AxiosPromise<SmartContract>

    Throws

    If the request fails.

    -
    • Deploys a Smart Contract.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the smart contract belongs to.

      • smartContractId: string

        The ID of the smart contract to deploy.

      • deploySmartContractRequest: DeploySmartContractRequest

        The request body containing deployment details.

      • Optional options: RawAxiosRequestConfig

        Axios request options.

      Returns AxiosPromise<SmartContract>

      Throws

      If the request fails.

      -
    • Gets a specific Smart Contract.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the smart contract belongs to.

      • smartContractId: string

        The ID of the smart contract to retrieve.

      • Optional options: RawAxiosRequestConfig

        Axios request options.

      Returns AxiosPromise<SmartContract>

      Throws

      If the request fails.

      -
    • List smart contracts belonging to the user for a given wallet and address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to list smart contracts for.

      • Optional options: RawAxiosRequestConfig

        Axios request options.

      Returns AxiosPromise<SmartContractList>

      Summary

      List smart contracts belonging to the CDP project

      Throws

      If the request fails.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/coinbase_types.TransactionHistoryApiClient.html b/docs/interfaces/coinbase_types.TransactionHistoryApiClient.html new file mode 100644 index 00000000..a981c058 --- /dev/null +++ b/docs/interfaces/coinbase_types.TransactionHistoryApiClient.html @@ -0,0 +1,9 @@ +TransactionHistoryApiClient | @coinbase/coinbase-sdk
    interface TransactionHistoryApiClient {
        listAddressTransactions(networkId, addressId, limit?, page?, options?): AxiosPromise<AddressTransactionList>;
    }

    Methods

    • List the transactions of a specific address.

      +

      Parameters

      • networkId: string

        The ID of the blockchain network

        +
      • addressId: string

        The ID of the address to fetch transactions for.

        +
      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

        +
      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        +
      • Optional options: RawAxiosRequestConfig

        Override http request option.

        +

      Returns AxiosPromise<AddressTransactionList>

      Summary

      Get address transactions

      +

      Throws

    \ No newline at end of file diff --git a/docs/interfaces/coinbase_types.WebhookApiClient.html b/docs/interfaces/coinbase_types.WebhookApiClient.html index 2d9d730c..d10e9525 100644 --- a/docs/interfaces/coinbase_types.WebhookApiClient.html +++ b/docs/interfaces/coinbase_types.WebhookApiClient.html @@ -1,21 +1,25 @@ -WebhookApiClient | @coinbase/coinbase-sdk
    interface WebhookApiClient {
        createWebhook(createWebhookRequest?, options?): AxiosPromise<Webhook>;
        deleteWebhook(webhookId, options?): AxiosPromise<void>;
        listWebhooks(limit?, page?, options?): AxiosPromise<WebhookList>;
        updateWebhook(webhookId, updateWebhookRequest?, options?): AxiosPromise<Webhook>;
    }

    Methods

    createWebhook +WebhookApiClient | @coinbase/coinbase-sdk
    interface WebhookApiClient {
        createWalletWebhook(walletId?, createWalletWebhookRequest?, options?): AxiosPromise<Webhook>;
        createWebhook(createWebhookRequest?, options?): AxiosPromise<Webhook>;
        deleteWebhook(webhookId, options?): AxiosPromise<void>;
        listWebhooks(limit?, page?, options?): AxiosPromise<WebhookList>;
        updateWebhook(webhookId, updateWebhookRequest?, options?): AxiosPromise<Webhook>;
    }

    Methods

    • Create a new webhook

      +

    Methods

    • Create a new webhook for a wallet

      +

      Parameters

      • Optional walletId: string
      • Optional createWalletWebhookRequest: CreateWalletWebhookRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

        +

      Returns AxiosPromise<Webhook>

      Summary

      Create a new webhook for a wallet

      +

      Throws

    • Create a new webhook

      Parameters

      • Optional createWebhookRequest: CreateWebhookRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Webhook>

      Summary

      Create a new webhook

      -

      Throws

    • Delete a webhook

      Parameters

      • webhookId: string

        The Webhook uuid that needs to be deleted

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<void>

      Summary

      Delete a webhook

      -

      Throws

    • List webhooks, optionally filtered by event type.

      Parameters

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<WebhookList>

      Summary

      List webhooks

      -

      Throws

    • Update a webhook

      Parameters

      • webhookId: string

        The Webhook id that needs to be updated

      • Optional updateWebhookRequest: UpdateWebhookRequest
      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Webhook>

      Summary

      Update a webhook

      -

      Throws

    \ No newline at end of file +

    Throws

    \ No newline at end of file diff --git a/docs/modules/client.html b/docs/modules/client.html index f0905342..1b13f70f 100644 --- a/docs/modules/client.html +++ b/docs/modules/client.html @@ -1,4 +1,4 @@ -client | @coinbase/coinbase-sdk

    References

    Address +client | @coinbase/coinbase-sdk

    References

    Re-exports Address
    Re-exports AddressBalanceList
    Re-exports AddressHistoricalBalanceList
    Re-exports AddressList
    Re-exports AddressTransactionList
    Re-exports AddressesApi
    Re-exports AddressesApiAxiosParamCreator
    Re-exports AddressesApiFactory
    Re-exports AddressesApiFp
    Re-exports AddressesApiInterface
    Re-exports Asset
    Re-exports AssetsApi
    Re-exports AssetsApiAxiosParamCreator
    Re-exports AssetsApiFactory
    Re-exports AssetsApiFp
    Re-exports AssetsApiInterface
    Re-exports Balance
    Re-exports BalanceHistoryApi
    Re-exports BalanceHistoryApiAxiosParamCreator
    Re-exports BalanceHistoryApiFactory
    Re-exports BalanceHistoryApiFp
    Re-exports BalanceHistoryApiInterface
    Re-exports BroadcastContractInvocationRequest
    Re-exports BroadcastStakingOperationRequest
    Re-exports BroadcastTradeRequest
    Re-exports BroadcastTransferRequest
    Re-exports BuildStakingOperationRequest
    Re-exports Configuration
    Re-exports ConfigurationParameters
    Re-exports ContractEvent
    Re-exports ContractEventList
    Re-exports ContractEventsApi
    Re-exports ContractEventsApiAxiosParamCreator
    Re-exports ContractEventsApiFactory
    Re-exports ContractEventsApiFp
    Re-exports ContractEventsApiInterface
    Re-exports ContractInvocation
    Re-exports ContractInvocationList
    Re-exports ContractInvocationsApi
    Re-exports ContractInvocationsApiAxiosParamCreator
    Re-exports ContractInvocationsApiFactory
    Re-exports ContractInvocationsApiFp
    Re-exports ContractInvocationsApiInterface
    Re-exports CreateAddressRequest
    Re-exports CreateContractInvocationRequest
    Re-exports CreatePayloadSignatureRequest
    Re-exports CreateServerSignerRequest
    Re-exports CreateSmartContractRequest
    Re-exports CreateStakingOperationRequest
    Re-exports CreateTradeRequest
    Re-exports CreateTransferRequest
    Re-exports CreateWalletRequest
    Re-exports CreateWalletRequestWallet
    Re-exports CreateWebhookRequest
    Re-exports DeploySmartContractRequest
    Re-exports ERC20TransferEvent
    Re-exports ERC721TransferEvent
    Re-exports EthereumTransaction
    Re-exports EthereumTransactionAccess
    Re-exports EthereumTransactionAccessList
    Re-exports EthereumTransactionFlattenedTrace
    Re-exports EthereumValidatorMetadata
    Re-exports ExternalAddressesApi
    Re-exports ExternalAddressesApiAxiosParamCreator
    Re-exports ExternalAddressesApiFactory
    Re-exports ExternalAddressesApiFp
    Re-exports ExternalAddressesApiInterface
    Re-exports FaucetTransaction
    Re-exports FeatureSet
    Re-exports FetchHistoricalStakingBalances200Response
    Re-exports FetchStakingRewards200Response
    Re-exports FetchStakingRewardsRequest
    Re-exports GetStakingContextRequest
    Re-exports HistoricalBalance
    Re-exports ModelError
    Re-exports NFTContractOptions
    Re-exports Network
    Re-exports NetworkIdentifier
    Re-exports NetworkProtocolFamilyEnum
    Re-exports NetworksApi
    Re-exports NetworksApiAxiosParamCreator
    Re-exports NetworksApiFactory
    Re-exports NetworksApiFp
    Re-exports NetworksApiInterface
    Re-exports PayloadSignature
    Re-exports PayloadSignatureList
    Re-exports PayloadSignatureStatusEnum
    Re-exports SeedCreationEvent
    Re-exports SeedCreationEventResult
    Re-exports ServerSigner
    Re-exports ServerSignerEvent
    Re-exports ServerSignerEventEvent
    Re-exports ServerSignerEventList
    Re-exports ServerSignerList
    Re-exports ServerSignersApi
    Re-exports ServerSignersApiAxiosParamCreator
    Re-exports ServerSignersApiFactory
    Re-exports ServerSignersApiFp
    Re-exports ServerSignersApiInterface
    Re-exports SignatureCreationEvent
    Re-exports SignatureCreationEventResult
    Re-exports SignedVoluntaryExitMessageMetadata
    Re-exports SmartContract
    Re-exports SmartContractList
    Re-exports SmartContractOptions
    Re-exports SmartContractType
    Re-exports SmartContractsApi
    Re-exports SmartContractsApiAxiosParamCreator
    Re-exports SmartContractsApiFactory
    Re-exports SmartContractsApiFp
    Re-exports SmartContractsApiInterface
    Re-exports SponsoredSend
    Re-exports SponsoredSendStatusEnum
    Re-exports StakeApi
    Re-exports StakeApiAxiosParamCreator
    Re-exports StakeApiFactory
    Re-exports StakeApiFp
    Re-exports StakeApiInterface
    Re-exports StakingBalance
    Re-exports StakingContext
    Re-exports StakingContextContext
    Re-exports StakingOperation
    Re-exports StakingOperationMetadata
    Re-exports StakingOperationStatusEnum
    Re-exports StakingReward
    Re-exports StakingRewardFormat
    Re-exports StakingRewardStateEnum
    Re-exports StakingRewardUSDValue
    Re-exports TokenContractOptions
    Re-exports Trade
    Re-exports TradeList
    Re-exports TradesApi
    Re-exports TradesApiAxiosParamCreator
    Re-exports TradesApiFactory
    Re-exports TradesApiFp
    Re-exports TradesApiInterface
    Re-exports Transaction
    Re-exports TransactionContent
    Re-exports TransactionStatusEnum
    Re-exports TransactionType
    Re-exports Transfer
    Re-exports TransferList
    Re-exports TransferStatusEnum
    Re-exports TransfersApi
    Re-exports TransfersApiAxiosParamCreator
    Re-exports TransfersApiFactory
    Re-exports TransfersApiFp
    Re-exports TransfersApiInterface
    Re-exports UpdateWebhookRequest
    Re-exports User
    Re-exports UsersApi
    Re-exports UsersApiAxiosParamCreator
    Re-exports UsersApiFactory
    Re-exports UsersApiFp
    Re-exports UsersApiInterface
    Re-exports Validator
    Re-exports ValidatorDetails
    Re-exports ValidatorList
    Re-exports ValidatorStatus
    Re-exports ValidatorsApi
    Re-exports ValidatorsApiAxiosParamCreator
    Re-exports ValidatorsApiFactory
    Re-exports ValidatorsApiFp
    Re-exports ValidatorsApiInterface
    Re-exports Wallet
    Re-exports WalletList
    Re-exports WalletServerSignerStatusEnum
    Re-exports WalletStakeApi
    Re-exports WalletStakeApiAxiosParamCreator
    Re-exports WalletStakeApiFactory
    Re-exports WalletStakeApiFp
    Re-exports WalletStakeApiInterface
    Re-exports WalletsApi
    Re-exports WalletsApiAxiosParamCreator
    Re-exports WalletsApiFactory
    Re-exports WalletsApiFp
    Re-exports WalletsApiInterface
    Re-exports Webhook
    Re-exports WebhookEventFilter
    Re-exports WebhookEventType
    Re-exports WebhookEventTypeFilter
    Re-exports WebhookList
    Re-exports WebhookWalletActivityFilter
    Re-exports WebhooksApi
    Re-exports WebhooksApiAxiosParamCreator
    Re-exports WebhooksApiFactory
    Re-exports WebhooksApiFp
    Re-exports WebhooksApiInterface
    \ No newline at end of file +

    References

    Re-exports Address
    Re-exports AddressBalanceList
    Re-exports AddressHistoricalBalanceList
    Re-exports AddressList
    Re-exports AddressTransactionList
    Re-exports AddressesApi
    Re-exports AddressesApiAxiosParamCreator
    Re-exports AddressesApiFactory
    Re-exports AddressesApiFp
    Re-exports AddressesApiInterface
    Re-exports Asset
    Re-exports AssetsApi
    Re-exports AssetsApiAxiosParamCreator
    Re-exports AssetsApiFactory
    Re-exports AssetsApiFp
    Re-exports AssetsApiInterface
    Re-exports Balance
    Re-exports BalanceHistoryApi
    Re-exports BalanceHistoryApiAxiosParamCreator
    Re-exports BalanceHistoryApiFactory
    Re-exports BalanceHistoryApiFp
    Re-exports BalanceHistoryApiInterface
    Re-exports BroadcastContractInvocationRequest
    Re-exports BroadcastStakingOperationRequest
    Re-exports BroadcastTradeRequest
    Re-exports BroadcastTransferRequest
    Re-exports BuildStakingOperationRequest
    Re-exports Configuration
    Re-exports ConfigurationParameters
    Re-exports ContractEvent
    Re-exports ContractEventList
    Re-exports ContractEventsApi
    Re-exports ContractEventsApiAxiosParamCreator
    Re-exports ContractEventsApiFactory
    Re-exports ContractEventsApiFp
    Re-exports ContractEventsApiInterface
    Re-exports ContractInvocation
    Re-exports ContractInvocationList
    Re-exports ContractInvocationsApi
    Re-exports ContractInvocationsApiAxiosParamCreator
    Re-exports ContractInvocationsApiFactory
    Re-exports ContractInvocationsApiFp
    Re-exports ContractInvocationsApiInterface
    Re-exports CreateAddressRequest
    Re-exports CreateContractInvocationRequest
    Re-exports CreatePayloadSignatureRequest
    Re-exports CreateServerSignerRequest
    Re-exports CreateSmartContractRequest
    Re-exports CreateStakingOperationRequest
    Re-exports CreateTradeRequest
    Re-exports CreateTransferRequest
    Re-exports CreateWalletRequest
    Re-exports CreateWalletRequestWallet
    Re-exports CreateWalletWebhookRequest
    Re-exports CreateWebhookRequest
    Re-exports DeploySmartContractRequest
    Re-exports ERC20TransferEvent
    Re-exports ERC721TransferEvent
    Re-exports EthereumTransaction
    Re-exports EthereumTransactionAccess
    Re-exports EthereumTransactionAccessList
    Re-exports EthereumTransactionFlattenedTrace
    Re-exports EthereumValidatorMetadata
    Re-exports ExternalAddressesApi
    Re-exports ExternalAddressesApiAxiosParamCreator
    Re-exports ExternalAddressesApiFactory
    Re-exports ExternalAddressesApiFp
    Re-exports ExternalAddressesApiInterface
    Re-exports FaucetTransaction
    Re-exports FeatureSet
    Re-exports FetchHistoricalStakingBalances200Response
    Re-exports FetchStakingRewards200Response
    Re-exports FetchStakingRewardsRequest
    Re-exports GetStakingContextRequest
    Re-exports HistoricalBalance
    Re-exports ModelError
    Re-exports MultiTokenContractOptions
    Re-exports NFTContractOptions
    Re-exports Network
    Re-exports NetworkIdentifier
    Re-exports NetworkProtocolFamilyEnum
    Re-exports NetworksApi
    Re-exports NetworksApiAxiosParamCreator
    Re-exports NetworksApiFactory
    Re-exports NetworksApiFp
    Re-exports NetworksApiInterface
    Re-exports PayloadSignature
    Re-exports PayloadSignatureList
    Re-exports PayloadSignatureStatusEnum
    Re-exports SeedCreationEvent
    Re-exports SeedCreationEventResult
    Re-exports ServerSigner
    Re-exports ServerSignerEvent
    Re-exports ServerSignerEventEvent
    Re-exports ServerSignerEventList
    Re-exports ServerSignerList
    Re-exports ServerSignersApi
    Re-exports ServerSignersApiAxiosParamCreator
    Re-exports ServerSignersApiFactory
    Re-exports ServerSignersApiFp
    Re-exports ServerSignersApiInterface
    Re-exports SignatureCreationEvent
    Re-exports SignatureCreationEventResult
    Re-exports SignedVoluntaryExitMessageMetadata
    Re-exports SmartContract
    Re-exports SmartContractList
    Re-exports SmartContractOptions
    Re-exports SmartContractType
    Re-exports SmartContractsApi
    Re-exports SmartContractsApiAxiosParamCreator
    Re-exports SmartContractsApiFactory
    Re-exports SmartContractsApiFp
    Re-exports SmartContractsApiInterface
    Re-exports SponsoredSend
    Re-exports SponsoredSendStatusEnum
    Re-exports StakeApi
    Re-exports StakeApiAxiosParamCreator
    Re-exports StakeApiFactory
    Re-exports StakeApiFp
    Re-exports StakeApiInterface
    Re-exports StakingBalance
    Re-exports StakingContext
    Re-exports StakingContextContext
    Re-exports StakingOperation
    Re-exports StakingOperationMetadata
    Re-exports StakingOperationStatusEnum
    Re-exports StakingReward
    Re-exports StakingRewardFormat
    Re-exports StakingRewardStateEnum
    Re-exports StakingRewardUSDValue
    Re-exports TokenContractOptions
    Re-exports Trade
    Re-exports TradeList
    Re-exports TradesApi
    Re-exports TradesApiAxiosParamCreator
    Re-exports TradesApiFactory
    Re-exports TradesApiFp
    Re-exports TradesApiInterface
    Re-exports Transaction
    Re-exports TransactionContent
    Re-exports TransactionHistoryApi
    Re-exports TransactionHistoryApiAxiosParamCreator
    Re-exports TransactionHistoryApiFactory
    Re-exports TransactionHistoryApiFp
    Re-exports TransactionHistoryApiInterface
    Re-exports TransactionStatusEnum
    Re-exports TransactionType
    Re-exports Transfer
    Re-exports TransferList
    Re-exports TransferStatusEnum
    Re-exports TransfersApi
    Re-exports TransfersApiAxiosParamCreator
    Re-exports TransfersApiFactory
    Re-exports TransfersApiFp
    Re-exports TransfersApiInterface
    Re-exports UpdateWebhookRequest
    Re-exports User
    Re-exports UsersApi
    Re-exports UsersApiAxiosParamCreator
    Re-exports UsersApiFactory
    Re-exports UsersApiFp
    Re-exports UsersApiInterface
    Re-exports Validator
    Re-exports ValidatorDetails
    Re-exports ValidatorList
    Re-exports ValidatorStatus
    Re-exports ValidatorsApi
    Re-exports ValidatorsApiAxiosParamCreator
    Re-exports ValidatorsApiFactory
    Re-exports ValidatorsApiFp
    Re-exports ValidatorsApiInterface
    Re-exports Wallet
    Re-exports WalletList
    Re-exports WalletServerSignerStatusEnum
    Re-exports WalletStakeApi
    Re-exports WalletStakeApiAxiosParamCreator
    Re-exports WalletStakeApiFactory
    Re-exports WalletStakeApiFp
    Re-exports WalletStakeApiInterface
    Re-exports WalletsApi
    Re-exports WalletsApiAxiosParamCreator
    Re-exports WalletsApiFactory
    Re-exports WalletsApiFp
    Re-exports WalletsApiInterface
    Re-exports Webhook
    Re-exports WebhookEventFilter
    Re-exports WebhookEventType
    Re-exports WebhookEventTypeFilter
    Re-exports WebhookList
    Re-exports WebhookWalletActivityFilter
    Re-exports WebhooksApi
    Re-exports WebhooksApiAxiosParamCreator
    Re-exports WebhooksApiFactory
    Re-exports WebhooksApiFp
    Re-exports WebhooksApiInterface
    \ No newline at end of file diff --git a/docs/modules/client_api.html b/docs/modules/client_api.html index 3a8d8b25..51b2ca4c 100644 --- a/docs/modules/client_api.html +++ b/docs/modules/client_api.html @@ -1,4 +1,4 @@ -client/api | @coinbase/coinbase-sdk

    Index

    Enumerations

    NetworkIdentifier +client/api | @coinbase/coinbase-sdk

    Index

    Enumerations

    NetworkIdentifier SmartContractType StakingRewardFormat TransactionType @@ -15,6 +15,7 @@ SmartContractsApi StakeApi TradesApi +TransactionHistoryApi TransfersApi UsersApi ValidatorsApi @@ -52,6 +53,7 @@ CreateTransferRequest CreateWalletRequest CreateWalletRequestWallet +CreateWalletWebhookRequest CreateWebhookRequest DeploySmartContractRequest ERC20TransferEvent @@ -70,6 +72,7 @@ GetStakingContextRequest HistoricalBalance ModelError +MultiTokenContractOptions NFTContractOptions Network NetworksApiInterface @@ -101,6 +104,7 @@ TradeList TradesApiInterface Transaction +TransactionHistoryApiInterface Transfer TransferList TransfersApiInterface @@ -174,6 +178,9 @@ TradesApiAxiosParamCreator TradesApiFactory TradesApiFp +TransactionHistoryApiAxiosParamCreator +TransactionHistoryApiFactory +TransactionHistoryApiFp TransfersApiAxiosParamCreator TransfersApiFactory TransfersApiFp diff --git a/docs/modules/client_base.html b/docs/modules/client_base.html index 37dc1e25..898ff78b 100644 --- a/docs/modules/client_base.html +++ b/docs/modules/client_base.html @@ -1,4 +1,4 @@ -client/base | @coinbase/coinbase-sdk

    Index

    Classes

    BaseAPI +client/base | @coinbase/coinbase-sdk

    Index

    Classes

    Interfaces

    Variables

    BASE_PATH diff --git a/docs/modules/client_common.html b/docs/modules/client_common.html index 24ff6dcf..93baaa08 100644 --- a/docs/modules/client_common.html +++ b/docs/modules/client_common.html @@ -1,4 +1,4 @@ -client/common | @coinbase/coinbase-sdk

    Index

    Variables

    DUMMY_BASE_URL +client/common | @coinbase/coinbase-sdk

    Index

    Variables

    Functions

    assertParamExists createRequestFunction serializeDataIfNeeded diff --git a/docs/modules/client_configuration.html b/docs/modules/client_configuration.html index 5e055d50..923c91c0 100644 --- a/docs/modules/client_configuration.html +++ b/docs/modules/client_configuration.html @@ -1,3 +1,3 @@ -client/configuration | @coinbase/coinbase-sdk

    Index

    Classes

    Configuration +client/configuration | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_address.html b/docs/modules/coinbase_address.html index fe0181e8..da6cd79b 100644 --- a/docs/modules/coinbase_address.html +++ b/docs/modules/coinbase_address.html @@ -1,2 +1,2 @@ -coinbase/address | @coinbase/coinbase-sdk

    Index

    Classes

    Address +coinbase/address | @coinbase/coinbase-sdk

    Index

    Classes

    \ No newline at end of file diff --git a/docs/modules/coinbase_address_external_address.html b/docs/modules/coinbase_address_external_address.html index 535e9cd5..348b3cfc 100644 --- a/docs/modules/coinbase_address_external_address.html +++ b/docs/modules/coinbase_address_external_address.html @@ -1,2 +1,2 @@ -coinbase/address/external_address | @coinbase/coinbase-sdk

    Module coinbase/address/external_address

    Index

    Classes

    ExternalAddress +coinbase/address/external_address | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_address_wallet_address.html b/docs/modules/coinbase_address_wallet_address.html index ba5226d6..356ca6a8 100644 --- a/docs/modules/coinbase_address_wallet_address.html +++ b/docs/modules/coinbase_address_wallet_address.html @@ -1,2 +1,2 @@ -coinbase/address/wallet_address | @coinbase/coinbase-sdk

    Module coinbase/address/wallet_address

    Index

    Classes

    WalletAddress +coinbase/address/wallet_address | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_api_error.html b/docs/modules/coinbase_api_error.html index 919cebdb..6f8fb186 100644 --- a/docs/modules/coinbase_api_error.html +++ b/docs/modules/coinbase_api_error.html @@ -1,4 +1,4 @@ -coinbase/api_error | @coinbase/coinbase-sdk

    Index

    Classes

    APIError +coinbase/api_error | @coinbase/coinbase-sdk

    Index

    Classes

    APIError AlreadyExistsError FaucetLimitReachedError InternalError diff --git a/docs/modules/coinbase_asset.html b/docs/modules/coinbase_asset.html index 54ac1ee9..c7a55154 100644 --- a/docs/modules/coinbase_asset.html +++ b/docs/modules/coinbase_asset.html @@ -1,2 +1,2 @@ -coinbase/asset | @coinbase/coinbase-sdk

    Index

    Classes

    Asset +coinbase/asset | @coinbase/coinbase-sdk

    Index

    Classes

    \ No newline at end of file diff --git a/docs/modules/coinbase_authenticator.html b/docs/modules/coinbase_authenticator.html index 19a8120b..3398575c 100644 --- a/docs/modules/coinbase_authenticator.html +++ b/docs/modules/coinbase_authenticator.html @@ -1,2 +1,2 @@ -coinbase/authenticator | @coinbase/coinbase-sdk

    Index

    Classes

    CoinbaseAuthenticator +coinbase/authenticator | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_balance.html b/docs/modules/coinbase_balance.html index f1eda778..952ed11e 100644 --- a/docs/modules/coinbase_balance.html +++ b/docs/modules/coinbase_balance.html @@ -1,2 +1,2 @@ -coinbase/balance | @coinbase/coinbase-sdk

    Index

    Classes

    Balance +coinbase/balance | @coinbase/coinbase-sdk

    Index

    Classes

    \ No newline at end of file diff --git a/docs/modules/coinbase_balance_map.html b/docs/modules/coinbase_balance_map.html index 5d5c9bf6..411f019e 100644 --- a/docs/modules/coinbase_balance_map.html +++ b/docs/modules/coinbase_balance_map.html @@ -1,2 +1,2 @@ -coinbase/balance_map | @coinbase/coinbase-sdk

    Index

    Classes

    BalanceMap +coinbase/balance_map | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_coinbase.html b/docs/modules/coinbase_coinbase.html index 0871f789..14de56d2 100644 --- a/docs/modules/coinbase_coinbase.html +++ b/docs/modules/coinbase_coinbase.html @@ -1,2 +1,2 @@ -coinbase/coinbase | @coinbase/coinbase-sdk

    Index

    Classes

    Coinbase +coinbase/coinbase | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_constants.html b/docs/modules/coinbase_constants.html index 17573b7d..0861d0fd 100644 --- a/docs/modules/coinbase_constants.html +++ b/docs/modules/coinbase_constants.html @@ -1,2 +1,2 @@ -coinbase/constants | @coinbase/coinbase-sdk

    Index

    Variables

    GWEI_DECIMALS +coinbase/constants | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_contract_event.html b/docs/modules/coinbase_contract_event.html index 01c03dcb..70470893 100644 --- a/docs/modules/coinbase_contract_event.html +++ b/docs/modules/coinbase_contract_event.html @@ -1,2 +1,2 @@ -coinbase/contract_event | @coinbase/coinbase-sdk

    Module coinbase/contract_event

    Index

    Classes

    ContractEvent +coinbase/contract_event | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_contract_invocation.html b/docs/modules/coinbase_contract_invocation.html index 44178891..c5e47b40 100644 --- a/docs/modules/coinbase_contract_invocation.html +++ b/docs/modules/coinbase_contract_invocation.html @@ -1,2 +1,2 @@ -coinbase/contract_invocation | @coinbase/coinbase-sdk

    Module coinbase/contract_invocation

    Index

    Classes

    ContractInvocation +coinbase/contract_invocation | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_errors.html b/docs/modules/coinbase_errors.html index d81edad5..025a616b 100644 --- a/docs/modules/coinbase_errors.html +++ b/docs/modules/coinbase_errors.html @@ -1,4 +1,4 @@ -coinbase/errors | @coinbase/coinbase-sdk

    Index

    Classes

    AlreadySignedError +coinbase/errors | @coinbase/coinbase-sdk

    Index

    Classes

    AlreadySignedError ArgumentError InvalidAPIKeyFormatError InvalidConfigurationError diff --git a/docs/modules/coinbase_faucet_transaction.html b/docs/modules/coinbase_faucet_transaction.html index 7771eddf..94ec4d15 100644 --- a/docs/modules/coinbase_faucet_transaction.html +++ b/docs/modules/coinbase_faucet_transaction.html @@ -1,2 +1,2 @@ -coinbase/faucet_transaction | @coinbase/coinbase-sdk

    Module coinbase/faucet_transaction

    Index

    Classes

    FaucetTransaction +coinbase/faucet_transaction | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_hash.html b/docs/modules/coinbase_hash.html index 5bc076a5..ec03b6e9 100644 --- a/docs/modules/coinbase_hash.html +++ b/docs/modules/coinbase_hash.html @@ -1,3 +1,3 @@ -coinbase/hash | @coinbase/coinbase-sdk

    Index

    Functions

    hashMessage +coinbase/hash | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_historical_balance.html b/docs/modules/coinbase_historical_balance.html index 685dee6f..a26b83fb 100644 --- a/docs/modules/coinbase_historical_balance.html +++ b/docs/modules/coinbase_historical_balance.html @@ -1,2 +1,2 @@ -coinbase/historical_balance | @coinbase/coinbase-sdk

    Module coinbase/historical_balance

    Index

    Classes

    HistoricalBalance +coinbase/historical_balance | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_payload_signature.html b/docs/modules/coinbase_payload_signature.html index 118b4742..6ce08ac0 100644 --- a/docs/modules/coinbase_payload_signature.html +++ b/docs/modules/coinbase_payload_signature.html @@ -1,2 +1,2 @@ -coinbase/payload_signature | @coinbase/coinbase-sdk

    Module coinbase/payload_signature

    Index

    Classes

    PayloadSignature +coinbase/payload_signature | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_server_signer.html b/docs/modules/coinbase_server_signer.html index 9d605036..6eab901c 100644 --- a/docs/modules/coinbase_server_signer.html +++ b/docs/modules/coinbase_server_signer.html @@ -1,2 +1,2 @@ -coinbase/server_signer | @coinbase/coinbase-sdk

    Index

    Classes

    ServerSigner +coinbase/server_signer | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_smart_contract.html b/docs/modules/coinbase_smart_contract.html index 4a00e233..3e1cb5e4 100644 --- a/docs/modules/coinbase_smart_contract.html +++ b/docs/modules/coinbase_smart_contract.html @@ -1,2 +1,2 @@ -coinbase/smart_contract | @coinbase/coinbase-sdk

    Module coinbase/smart_contract

    Index

    Classes

    SmartContract +coinbase/smart_contract | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_sponsored_send.html b/docs/modules/coinbase_sponsored_send.html index df923a34..2c070d77 100644 --- a/docs/modules/coinbase_sponsored_send.html +++ b/docs/modules/coinbase_sponsored_send.html @@ -1,2 +1,2 @@ -coinbase/sponsored_send | @coinbase/coinbase-sdk

    Module coinbase/sponsored_send

    Index

    Classes

    SponsoredSend +coinbase/sponsored_send | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_staking_balance.html b/docs/modules/coinbase_staking_balance.html index 0e12cba3..56ebabf9 100644 --- a/docs/modules/coinbase_staking_balance.html +++ b/docs/modules/coinbase_staking_balance.html @@ -1,2 +1,2 @@ -coinbase/staking_balance | @coinbase/coinbase-sdk

    Module coinbase/staking_balance

    Index

    Classes

    StakingBalance +coinbase/staking_balance | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_staking_operation.html b/docs/modules/coinbase_staking_operation.html index 50c6fef2..05ad7a20 100644 --- a/docs/modules/coinbase_staking_operation.html +++ b/docs/modules/coinbase_staking_operation.html @@ -1,2 +1,2 @@ -coinbase/staking_operation | @coinbase/coinbase-sdk

    Module coinbase/staking_operation

    Index

    Classes

    StakingOperation +coinbase/staking_operation | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_staking_reward.html b/docs/modules/coinbase_staking_reward.html index 36e84570..6a269709 100644 --- a/docs/modules/coinbase_staking_reward.html +++ b/docs/modules/coinbase_staking_reward.html @@ -1,2 +1,2 @@ -coinbase/staking_reward | @coinbase/coinbase-sdk

    Module coinbase/staking_reward

    Index

    Classes

    StakingReward +coinbase/staking_reward | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_trade.html b/docs/modules/coinbase_trade.html index 92a945fc..cb20670a 100644 --- a/docs/modules/coinbase_trade.html +++ b/docs/modules/coinbase_trade.html @@ -1,2 +1,2 @@ -coinbase/trade | @coinbase/coinbase-sdk

    Index

    Classes

    Trade +coinbase/trade | @coinbase/coinbase-sdk

    Index

    Classes

    \ No newline at end of file diff --git a/docs/modules/coinbase_transaction.html b/docs/modules/coinbase_transaction.html index bfdb1535..235e4886 100644 --- a/docs/modules/coinbase_transaction.html +++ b/docs/modules/coinbase_transaction.html @@ -1,2 +1,2 @@ -coinbase/transaction | @coinbase/coinbase-sdk

    Index

    Classes

    Transaction +coinbase/transaction | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_transfer.html b/docs/modules/coinbase_transfer.html index 2f4102dd..92c7792e 100644 --- a/docs/modules/coinbase_transfer.html +++ b/docs/modules/coinbase_transfer.html @@ -1,2 +1,2 @@ -coinbase/transfer | @coinbase/coinbase-sdk

    Index

    Classes

    Transfer +coinbase/transfer | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_types.html b/docs/modules/coinbase_types.html index c4c2c410..9a9e591c 100644 --- a/docs/modules/coinbase_types.html +++ b/docs/modules/coinbase_types.html @@ -1,4 +1,4 @@ -coinbase/types | @coinbase/coinbase-sdk

    Index

    Enumerations

    PayloadSignatureStatus +coinbase/types | @coinbase/coinbase-sdk

    Index

    Enumerations

    Interfaces

    Type Aliases

    AddressAPIClient Amount @@ -18,7 +19,9 @@ CoinbaseOptions ContractInvocationAPIClient CreateContractInvocationOptions +CreateERC1155Options CreateERC20Options +CreateERC721Options CreateTradeOptions CreateTransferOptions CreateWebhookOptions @@ -29,6 +32,7 @@ ListHistoricalBalancesResult ListTransactionsOptions ListTransactionsResult +MultiTokenContractOptions NFTContractOptions SeedData ServerSignerAPIClient diff --git a/docs/modules/coinbase_utils.html b/docs/modules/coinbase_utils.html index ed8fb305..579ba262 100644 --- a/docs/modules/coinbase_utils.html +++ b/docs/modules/coinbase_utils.html @@ -1,4 +1,4 @@ -coinbase/utils | @coinbase/coinbase-sdk

    Index

    Functions

    convertStringToHex +coinbase/utils | @coinbase/coinbase-sdk

    Index

    Functions

    convertStringToHex delay formatDate getWeekBackDate diff --git a/docs/modules/coinbase_validator.html b/docs/modules/coinbase_validator.html index 6a4bdc5b..1dc54535 100644 --- a/docs/modules/coinbase_validator.html +++ b/docs/modules/coinbase_validator.html @@ -1,2 +1,2 @@ -coinbase/validator | @coinbase/coinbase-sdk

    Index

    Classes

    Validator +coinbase/validator | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/coinbase_wallet.html b/docs/modules/coinbase_wallet.html index 4b0a4d26..969a2fa7 100644 --- a/docs/modules/coinbase_wallet.html +++ b/docs/modules/coinbase_wallet.html @@ -1,2 +1,2 @@ -coinbase/wallet | @coinbase/coinbase-sdk

    Index

    Classes

    Wallet +coinbase/wallet | @coinbase/coinbase-sdk

    Index

    Classes

    \ No newline at end of file diff --git a/docs/modules/coinbase_webhook.html b/docs/modules/coinbase_webhook.html index cb0ef12a..c9eb26f3 100644 --- a/docs/modules/coinbase_webhook.html +++ b/docs/modules/coinbase_webhook.html @@ -1,2 +1,2 @@ -coinbase/webhook | @coinbase/coinbase-sdk

    Index

    Classes

    Webhook +coinbase/webhook | @coinbase/coinbase-sdk

    Index

    Classes

    \ No newline at end of file diff --git a/docs/modules/examples_solana_list_rewards.html b/docs/modules/examples_solana_list_rewards.html new file mode 100644 index 00000000..701e0c3a --- /dev/null +++ b/docs/modules/examples_solana_list_rewards.html @@ -0,0 +1 @@ +examples/solana_list_rewards | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/modules/index.html b/docs/modules/index.html index 136c6641..3e5444a3 100644 --- a/docs/modules/index.html +++ b/docs/modules/index.html @@ -1,5 +1,7 @@ -index | @coinbase/coinbase-sdk

    References

    Address +index | @coinbase/coinbase-sdk

    References

    APIError +Address AddressAPIClient +AlreadyExistsError AlreadySignedError Amount ApiClients @@ -10,11 +12,16 @@ BalanceHistoryApiClient BalanceMap Coinbase +CoinbaseAuthenticator CoinbaseConfigureFromJsonOptions CoinbaseOptions +ContractEvent +ContractInvocation ContractInvocationAPIClient CreateContractInvocationOptions +CreateERC1155Options CreateERC20Options +CreateERC721Options CreateTradeOptions CreateTransferOptions CreateWebhookOptions @@ -22,19 +29,40 @@ ExternalAddress ExternalAddressAPIClient ExternalSmartContractAPIClient +FaucetLimitReachedError FaucetTransaction GWEI_DECIMALS +HistoricalBalance +InternalError InvalidAPIKeyFormatError +InvalidAddressError +InvalidAddressIDError +InvalidAmountError +InvalidAssetIDError InvalidConfigurationError +InvalidDestinationError +InvalidLimitError +InvalidNetworkIDError +InvalidPageError +InvalidSignedPayloadError +InvalidTransferIDError +InvalidTransferStatusError InvalidUnsignedPayloadError +InvalidWalletError +InvalidWalletIDError ListHistoricalBalancesOptions ListHistoricalBalancesResult ListTransactionsOptions ListTransactionsResult +MalformedRequestError +MultiTokenContractOptions NFTContractOptions +NetworkFeatureUnsupportedError +NotFoundError NotSignedError PayloadSignature PayloadSignatureStatus +ResourceExhaustedError SeedData ServerSigner ServerSignerAPIClient @@ -55,12 +83,16 @@ Trade TradeApiClients Transaction +TransactionHistoryApiClient TransactionStatus Transfer TransferAPIClient TransferStatus TypedDataDomain TypedDataField +UnauthorizedError +UnimplementedError +UnsupportedAssetError Validator ValidatorAPIClient ValidatorStatus @@ -74,4 +106,4 @@ WebhookApiClient hashMessage hashTypedDataMessage -

    References

    Re-exports Address
    Re-exports AddressAPIClient
    Re-exports AlreadySignedError
    Re-exports Amount
    Re-exports ApiClients
    Re-exports ArgumentError
    Re-exports Asset
    Re-exports AssetAPIClient
    Re-exports Balance
    Re-exports BalanceHistoryApiClient
    Re-exports BalanceMap
    Re-exports Coinbase
    Re-exports CoinbaseConfigureFromJsonOptions
    Re-exports CoinbaseOptions
    Re-exports ContractInvocationAPIClient
    Re-exports CreateContractInvocationOptions
    Re-exports CreateERC20Options
    Re-exports CreateTradeOptions
    Re-exports CreateTransferOptions
    Re-exports CreateWebhookOptions
    Re-exports Destination
    Re-exports ExternalAddress
    Re-exports ExternalAddressAPIClient
    Re-exports ExternalSmartContractAPIClient
    Re-exports FaucetTransaction
    Re-exports GWEI_DECIMALS
    Re-exports InvalidAPIKeyFormatError
    Re-exports InvalidConfigurationError
    Re-exports InvalidUnsignedPayloadError
    Re-exports ListHistoricalBalancesOptions
    Re-exports ListHistoricalBalancesResult
    Re-exports ListTransactionsOptions
    Re-exports ListTransactionsResult
    Re-exports NFTContractOptions
    Re-exports NotSignedError
    Re-exports PayloadSignature
    Re-exports PayloadSignatureStatus
    Re-exports SeedData
    Re-exports ServerSigner
    Re-exports ServerSignerAPIClient
    Re-exports ServerSignerStatus
    Re-exports SmartContract
    Re-exports SmartContractAPIClient
    Re-exports SmartContractOptions
    Re-exports SmartContractType
    Re-exports SponsoredSendStatus
    Re-exports StakeAPIClient
    Re-exports StakeOptionsMode
    Re-exports StakingBalance
    Re-exports StakingOperation
    Re-exports StakingReward
    Re-exports StakingRewardFormat
    Re-exports TimeoutError
    Re-exports TokenContractOptions
    Re-exports Trade
    Re-exports TradeApiClients
    Re-exports Transaction
    Re-exports TransactionStatus
    Re-exports Transfer
    Re-exports TransferAPIClient
    Re-exports TransferStatus
    Re-exports TypedDataDomain
    Re-exports TypedDataField
    Re-exports Validator
    Re-exports ValidatorAPIClient
    Re-exports ValidatorStatus
    Re-exports Wallet
    Re-exports WalletAPIClient
    Re-exports WalletAddress
    Re-exports WalletCreateOptions
    Re-exports WalletData
    Re-exports WalletStakeAPIClient
    Re-exports Webhook
    Re-exports WebhookApiClient
    Re-exports hashMessage
    Re-exports hashTypedDataMessage
    \ No newline at end of file +

    References

    Re-exports APIError
    Re-exports Address
    Re-exports AddressAPIClient
    Re-exports AlreadyExistsError
    Re-exports AlreadySignedError
    Re-exports Amount
    Re-exports ApiClients
    Re-exports ArgumentError
    Re-exports Asset
    Re-exports AssetAPIClient
    Re-exports Balance
    Re-exports BalanceHistoryApiClient
    Re-exports BalanceMap
    Re-exports Coinbase
    Re-exports CoinbaseAuthenticator
    Re-exports CoinbaseConfigureFromJsonOptions
    Re-exports CoinbaseOptions
    Re-exports ContractEvent
    Re-exports ContractInvocation
    Re-exports ContractInvocationAPIClient
    Re-exports CreateContractInvocationOptions
    Re-exports CreateERC1155Options
    Re-exports CreateERC20Options
    Re-exports CreateERC721Options
    Re-exports CreateTradeOptions
    Re-exports CreateTransferOptions
    Re-exports CreateWebhookOptions
    Re-exports Destination
    Re-exports ExternalAddress
    Re-exports ExternalAddressAPIClient
    Re-exports ExternalSmartContractAPIClient
    Re-exports FaucetLimitReachedError
    Re-exports FaucetTransaction
    Re-exports GWEI_DECIMALS
    Re-exports HistoricalBalance
    Re-exports InternalError
    Re-exports InvalidAPIKeyFormatError
    Re-exports InvalidAddressError
    Re-exports InvalidAddressIDError
    Re-exports InvalidAmountError
    Re-exports InvalidAssetIDError
    Re-exports InvalidConfigurationError
    Re-exports InvalidDestinationError
    Re-exports InvalidLimitError
    Re-exports InvalidNetworkIDError
    Re-exports InvalidPageError
    Re-exports InvalidSignedPayloadError
    Re-exports InvalidTransferIDError
    Re-exports InvalidTransferStatusError
    Re-exports InvalidUnsignedPayloadError
    Re-exports InvalidWalletError
    Re-exports InvalidWalletIDError
    Re-exports ListHistoricalBalancesOptions
    Re-exports ListHistoricalBalancesResult
    Re-exports ListTransactionsOptions
    Re-exports ListTransactionsResult
    Re-exports MalformedRequestError
    Re-exports MultiTokenContractOptions
    Re-exports NFTContractOptions
    Re-exports NetworkFeatureUnsupportedError
    Re-exports NotFoundError
    Re-exports NotSignedError
    Re-exports PayloadSignature
    Re-exports PayloadSignatureStatus
    Re-exports ResourceExhaustedError
    Re-exports SeedData
    Re-exports ServerSigner
    Re-exports ServerSignerAPIClient
    Re-exports ServerSignerStatus
    Re-exports SmartContract
    Re-exports SmartContractAPIClient
    Re-exports SmartContractOptions
    Re-exports SmartContractType
    Re-exports SponsoredSendStatus
    Re-exports StakeAPIClient
    Re-exports StakeOptionsMode
    Re-exports StakingBalance
    Re-exports StakingOperation
    Re-exports StakingReward
    Re-exports StakingRewardFormat
    Re-exports TimeoutError
    Re-exports TokenContractOptions
    Re-exports Trade
    Re-exports TradeApiClients
    Re-exports Transaction
    Re-exports TransactionHistoryApiClient
    Re-exports TransactionStatus
    Re-exports Transfer
    Re-exports TransferAPIClient
    Re-exports TransferStatus
    Re-exports TypedDataDomain
    Re-exports TypedDataField
    Re-exports UnauthorizedError
    Re-exports UnimplementedError
    Re-exports UnsupportedAssetError
    Re-exports Validator
    Re-exports ValidatorAPIClient
    Re-exports ValidatorStatus
    Re-exports Wallet
    Re-exports WalletAPIClient
    Re-exports WalletAddress
    Re-exports WalletCreateOptions
    Re-exports WalletData
    Re-exports WalletStakeAPIClient
    Re-exports Webhook
    Re-exports WebhookApiClient
    Re-exports hashMessage
    Re-exports hashTypedDataMessage
    \ No newline at end of file diff --git a/docs/types/client_api.NetworkProtocolFamilyEnum.html b/docs/types/client_api.NetworkProtocolFamilyEnum.html index d713cd04..8c9ff083 100644 --- a/docs/types/client_api.NetworkProtocolFamilyEnum.html +++ b/docs/types/client_api.NetworkProtocolFamilyEnum.html @@ -1 +1 @@ -NetworkProtocolFamilyEnum | @coinbase/coinbase-sdk
    NetworkProtocolFamilyEnum: typeof NetworkProtocolFamilyEnum[keyof typeof NetworkProtocolFamilyEnum]
    \ No newline at end of file +NetworkProtocolFamilyEnum | @coinbase/coinbase-sdk
    NetworkProtocolFamilyEnum: typeof NetworkProtocolFamilyEnum[keyof typeof NetworkProtocolFamilyEnum]
    \ No newline at end of file diff --git a/docs/types/client_api.PayloadSignatureStatusEnum.html b/docs/types/client_api.PayloadSignatureStatusEnum.html index 9933d8a5..3d89a69d 100644 --- a/docs/types/client_api.PayloadSignatureStatusEnum.html +++ b/docs/types/client_api.PayloadSignatureStatusEnum.html @@ -1 +1 @@ -PayloadSignatureStatusEnum | @coinbase/coinbase-sdk
    PayloadSignatureStatusEnum: typeof PayloadSignatureStatusEnum[keyof typeof PayloadSignatureStatusEnum]
    \ No newline at end of file +PayloadSignatureStatusEnum | @coinbase/coinbase-sdk
    PayloadSignatureStatusEnum: typeof PayloadSignatureStatusEnum[keyof typeof PayloadSignatureStatusEnum]
    \ No newline at end of file diff --git a/docs/types/client_api.ServerSignerEventEvent.html b/docs/types/client_api.ServerSignerEventEvent.html index 414c7588..f2fddb54 100644 --- a/docs/types/client_api.ServerSignerEventEvent.html +++ b/docs/types/client_api.ServerSignerEventEvent.html @@ -1 +1 @@ -ServerSignerEventEvent | @coinbase/coinbase-sdk
    ServerSignerEventEvent: SeedCreationEvent | SignatureCreationEvent

    Export

    \ No newline at end of file +ServerSignerEventEvent | @coinbase/coinbase-sdk
    ServerSignerEventEvent: SeedCreationEvent | SignatureCreationEvent

    Export

    \ No newline at end of file diff --git a/docs/types/client_api.SmartContractOptions.html b/docs/types/client_api.SmartContractOptions.html index c7a2f4c8..05e03da1 100644 --- a/docs/types/client_api.SmartContractOptions.html +++ b/docs/types/client_api.SmartContractOptions.html @@ -1 +1 @@ -SmartContractOptions | @coinbase/coinbase-sdk
    \ No newline at end of file +SmartContractOptions | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/types/client_api.SponsoredSendStatusEnum.html b/docs/types/client_api.SponsoredSendStatusEnum.html index 0f709a5a..d9571b48 100644 --- a/docs/types/client_api.SponsoredSendStatusEnum.html +++ b/docs/types/client_api.SponsoredSendStatusEnum.html @@ -1 +1 @@ -SponsoredSendStatusEnum | @coinbase/coinbase-sdk
    SponsoredSendStatusEnum: typeof SponsoredSendStatusEnum[keyof typeof SponsoredSendStatusEnum]
    \ No newline at end of file +SponsoredSendStatusEnum | @coinbase/coinbase-sdk
    SponsoredSendStatusEnum: typeof SponsoredSendStatusEnum[keyof typeof SponsoredSendStatusEnum]
    \ No newline at end of file diff --git a/docs/types/client_api.StakingOperationMetadata.html b/docs/types/client_api.StakingOperationMetadata.html index 2986d9cc..d3fabd8b 100644 --- a/docs/types/client_api.StakingOperationMetadata.html +++ b/docs/types/client_api.StakingOperationMetadata.html @@ -1 +1 @@ -StakingOperationMetadata | @coinbase/coinbase-sdk
    StakingOperationMetadata: SignedVoluntaryExitMessageMetadata[]

    Export

    \ No newline at end of file +StakingOperationMetadata | @coinbase/coinbase-sdk
    StakingOperationMetadata: SignedVoluntaryExitMessageMetadata[]

    Export

    \ No newline at end of file diff --git a/docs/types/client_api.StakingOperationStatusEnum.html b/docs/types/client_api.StakingOperationStatusEnum.html index dbc5abc4..056eec98 100644 --- a/docs/types/client_api.StakingOperationStatusEnum.html +++ b/docs/types/client_api.StakingOperationStatusEnum.html @@ -1 +1 @@ -StakingOperationStatusEnum | @coinbase/coinbase-sdk
    StakingOperationStatusEnum: typeof StakingOperationStatusEnum[keyof typeof StakingOperationStatusEnum]
    \ No newline at end of file +StakingOperationStatusEnum | @coinbase/coinbase-sdk
    StakingOperationStatusEnum: typeof StakingOperationStatusEnum[keyof typeof StakingOperationStatusEnum]
    \ No newline at end of file diff --git a/docs/types/client_api.StakingRewardStateEnum.html b/docs/types/client_api.StakingRewardStateEnum.html index 2f4d8bb1..51e7762c 100644 --- a/docs/types/client_api.StakingRewardStateEnum.html +++ b/docs/types/client_api.StakingRewardStateEnum.html @@ -1 +1 @@ -StakingRewardStateEnum | @coinbase/coinbase-sdk
    StakingRewardStateEnum: typeof StakingRewardStateEnum[keyof typeof StakingRewardStateEnum]
    \ No newline at end of file +StakingRewardStateEnum | @coinbase/coinbase-sdk
    StakingRewardStateEnum: typeof StakingRewardStateEnum[keyof typeof StakingRewardStateEnum]
    \ No newline at end of file diff --git a/docs/types/client_api.TransactionContent.html b/docs/types/client_api.TransactionContent.html index 51e8c8ae..99fb18c8 100644 --- a/docs/types/client_api.TransactionContent.html +++ b/docs/types/client_api.TransactionContent.html @@ -1 +1 @@ -TransactionContent | @coinbase/coinbase-sdk
    TransactionContent: EthereumTransaction

    Export

    \ No newline at end of file +TransactionContent | @coinbase/coinbase-sdk
    TransactionContent: EthereumTransaction

    Export

    \ No newline at end of file diff --git a/docs/types/client_api.TransactionStatusEnum.html b/docs/types/client_api.TransactionStatusEnum.html index 028113a9..6e7a40f0 100644 --- a/docs/types/client_api.TransactionStatusEnum.html +++ b/docs/types/client_api.TransactionStatusEnum.html @@ -1 +1 @@ -TransactionStatusEnum | @coinbase/coinbase-sdk
    TransactionStatusEnum: typeof TransactionStatusEnum[keyof typeof TransactionStatusEnum]
    \ No newline at end of file +TransactionStatusEnum | @coinbase/coinbase-sdk
    TransactionStatusEnum: typeof TransactionStatusEnum[keyof typeof TransactionStatusEnum]
    \ No newline at end of file diff --git a/docs/types/client_api.TransferStatusEnum.html b/docs/types/client_api.TransferStatusEnum.html index 35490a7c..02a57002 100644 --- a/docs/types/client_api.TransferStatusEnum.html +++ b/docs/types/client_api.TransferStatusEnum.html @@ -1 +1 @@ -TransferStatusEnum | @coinbase/coinbase-sdk
    TransferStatusEnum: typeof TransferStatusEnum[keyof typeof TransferStatusEnum]
    \ No newline at end of file +TransferStatusEnum | @coinbase/coinbase-sdk
    TransferStatusEnum: typeof TransferStatusEnum[keyof typeof TransferStatusEnum]
    \ No newline at end of file diff --git a/docs/types/client_api.ValidatorDetails.html b/docs/types/client_api.ValidatorDetails.html index e0857f69..bf60a673 100644 --- a/docs/types/client_api.ValidatorDetails.html +++ b/docs/types/client_api.ValidatorDetails.html @@ -1 +1 @@ -ValidatorDetails | @coinbase/coinbase-sdk
    \ No newline at end of file +ValidatorDetails | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/types/client_api.WalletServerSignerStatusEnum.html b/docs/types/client_api.WalletServerSignerStatusEnum.html index 986c6090..5d5b529d 100644 --- a/docs/types/client_api.WalletServerSignerStatusEnum.html +++ b/docs/types/client_api.WalletServerSignerStatusEnum.html @@ -1 +1 @@ -WalletServerSignerStatusEnum | @coinbase/coinbase-sdk
    WalletServerSignerStatusEnum: typeof WalletServerSignerStatusEnum[keyof typeof WalletServerSignerStatusEnum]
    \ No newline at end of file +WalletServerSignerStatusEnum | @coinbase/coinbase-sdk
    WalletServerSignerStatusEnum: typeof WalletServerSignerStatusEnum[keyof typeof WalletServerSignerStatusEnum]
    \ No newline at end of file diff --git a/docs/types/client_api.WebhookEventTypeFilter.html b/docs/types/client_api.WebhookEventTypeFilter.html index 8348b677..dccd834e 100644 --- a/docs/types/client_api.WebhookEventTypeFilter.html +++ b/docs/types/client_api.WebhookEventTypeFilter.html @@ -1 +1 @@ -WebhookEventTypeFilter | @coinbase/coinbase-sdk
    WebhookEventTypeFilter: WebhookWalletActivityFilter

    Export

    \ No newline at end of file +WebhookEventTypeFilter | @coinbase/coinbase-sdk
    WebhookEventTypeFilter: WebhookWalletActivityFilter

    Export

    \ No newline at end of file diff --git a/docs/types/coinbase_types.AddressAPIClient.html b/docs/types/coinbase_types.AddressAPIClient.html index 40d6ab8b..fe199e3d 100644 --- a/docs/types/coinbase_types.AddressAPIClient.html +++ b/docs/types/coinbase_types.AddressAPIClient.html @@ -4,47 +4,47 @@
  • Optional createAddressRequest: CreateAddressRequest

    The address creation request.

  • Optional options: AxiosRequestConfig<any>

    Axios request options.

  • Returns AxiosPromise<Address>

    Throws

    If the request fails.

    -
  • createPayloadSignature:function
  • createPayloadSignature:function
    • Create a new payload signature with an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressid: string
      • Optional createPayloadSignatureRequest: CreatePayloadSignatureRequest
      • Optional options: AxiosRequestConfig<any>

        Axios request options.

      Returns AxiosPromise<PayloadSignature>

      Throws

      If the request fails.

      -
  • getAddress:function
  • getAddress:function
    • Get address by onchain address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional options: AxiosRequestConfig<any>

        Axios request options.

      Returns AxiosPromise<Address>

      Throws

      If the request fails.

      -
  • getAddressBalance:function
  • getAddressBalance:function
    • Get address balance

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balance for.

      • addressId: string

        The onchain address of the address that is being fetched.

      • assetId: string

        The symbol of the asset to fetch the balance for.

      • Optional options: AxiosRequestConfig<any>

        Axios request options.

        -

      Returns AxiosPromise<Balance>

      Throws

  • getPayloadSignature:function
    • Get payload signature by the specified payload signature ID.

      +
  • Returns AxiosPromise<Balance>

    Throws

  • getPayloadSignature:function
    • Get payload signature by the specified payload signature ID.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressid: string
      • payloadSignatureId: string

        The ID of the payload signature to fetch.

      • Optional options: AxiosRequestConfig<any>

        Axios request options.

      Returns AxiosPromise<PayloadSignature>

      Throws

      If the request fails.

      -
  • listAddressBalances:function
  • listAddressBalances:function
    • Lists address balances

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balances for.

      • addressId: string

        The onchain address of the address that is being fetched.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Do not include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: AxiosRequestConfig<any>

        Override http request option.

        -

      Returns AxiosPromise<AddressBalanceList>

      Throws

  • listAddresses:function
    • Lists addresses.

      +
  • Returns AxiosPromise<AddressBalanceList>

    Throws

  • listAddresses:function
    • Lists addresses.

      Parameters

      • walletId: string

        The ID of the wallet the addresses belong to.

      • Optional limit: number

        The maximum number of addresses to return.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Do not include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: AxiosRequestConfig<any>

        Override http request option.

      Returns AxiosPromise<AddressList>

      Throws

      If the request fails.

      -
  • listPayloadSignatures:function
  • listPayloadSignatures:function
    • List payload signatures for the specified address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressid: string
      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: AxiosRequestConfig<any>

        Axios request options.

      Returns AxiosPromise<PayloadSignatureList>

      Throws

      If the request fails.

      -
  • requestFaucetFunds:function
  • requestFaucetFunds:function
    • Requests faucet funds for the address.

      Parameters

      • walletId: string

        The wallet ID.

      • addressId: string

        The address ID.

      Returns AxiosPromise<FaucetTransaction>

      The transaction hash.

      Throws

      If the request fails.

      -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.Amount.html b/docs/types/coinbase_types.Amount.html index 5b251a38..0e34d543 100644 --- a/docs/types/coinbase_types.Amount.html +++ b/docs/types/coinbase_types.Amount.html @@ -1,2 +1,2 @@ Amount | @coinbase/coinbase-sdk
    Amount: number | bigint | Decimal

    Amount type definition.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.ApiClients.html b/docs/types/coinbase_types.ApiClients.html index b2d75dde..2b4e64af 100644 --- a/docs/types/coinbase_types.ApiClients.html +++ b/docs/types/coinbase_types.ApiClients.html @@ -1,3 +1,3 @@ -ApiClients | @coinbase/coinbase-sdk
    ApiClients: {
        address?: AddressAPIClient;
        asset?: AssetAPIClient;
        balanceHistory?: BalanceHistoryApiClient;
        contractEvent?: ExternalSmartContractAPIClient;
        contractInvocation?: ContractInvocationAPIClient;
        externalAddress?: ExternalAddressAPIClient;
        serverSigner?: ServerSignerAPIClient;
        smartContract?: SmartContractAPIClient;
        stake?: StakeAPIClient;
        trade?: TradeApiClients;
        transfer?: TransferAPIClient;
        validator?: ValidatorAPIClient;
        wallet?: WalletAPIClient;
        walletStake?: WalletStakeAPIClient;
        webhook?: WebhookApiClient;
    }

    API clients type definition for the Coinbase SDK. +ApiClients | @coinbase/coinbase-sdk

    ApiClients: {
        address?: AddressAPIClient;
        asset?: AssetAPIClient;
        balanceHistory?: BalanceHistoryApiClient;
        contractEvent?: ExternalSmartContractAPIClient;
        contractInvocation?: ContractInvocationAPIClient;
        externalAddress?: ExternalAddressAPIClient;
        serverSigner?: ServerSignerAPIClient;
        smartContract?: SmartContractAPIClient;
        stake?: StakeAPIClient;
        trade?: TradeApiClients;
        transactionHistory?: TransactionHistoryApiClient;
        transfer?: TransferAPIClient;
        validator?: ValidatorAPIClient;
        wallet?: WalletAPIClient;
        walletStake?: WalletStakeAPIClient;
        webhook?: WebhookApiClient;
    }

    API clients type definition for the Coinbase SDK. Represents the set of API clients available in the SDK.

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/docs/types/coinbase_types.AssetAPIClient.html b/docs/types/coinbase_types.AssetAPIClient.html index 4a1af810..6b5b28c9 100644 --- a/docs/types/coinbase_types.AssetAPIClient.html +++ b/docs/types/coinbase_types.AssetAPIClient.html @@ -4,4 +4,4 @@
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Asset>

    Summary

    Get the asset for the specified asset ID.

    Throws

    If the required parameter is not provided.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.CoinbaseConfigureFromJsonOptions.html b/docs/types/coinbase_types.CoinbaseConfigureFromJsonOptions.html index 10e9b6f9..fa22b7da 100644 --- a/docs/types/coinbase_types.CoinbaseConfigureFromJsonOptions.html +++ b/docs/types/coinbase_types.CoinbaseConfigureFromJsonOptions.html @@ -3,4 +3,4 @@
  • Optional debugging?: boolean

    If true, logs API requests and responses to the console.

  • Optional filePath?: string

    The path to the JSON file containing the API key and private key.

  • Optional useServerSigner?: boolean

    Whether to use a Server-Signer or not.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.CoinbaseOptions.html b/docs/types/coinbase_types.CoinbaseOptions.html index 69a8ed39..afa7352f 100644 --- a/docs/types/coinbase_types.CoinbaseOptions.html +++ b/docs/types/coinbase_types.CoinbaseOptions.html @@ -5,4 +5,4 @@
  • Optional maxNetworkRetries?: number

    The maximum number of network retries for the API GET requests.

  • privateKey: string

    The private key associated with the API key.

  • Optional useServerSigner?: boolean

    Whether to use a Server-Signer or not.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.ContractInvocationAPIClient.html b/docs/types/coinbase_types.ContractInvocationAPIClient.html index 8bb4fb89..aeb90f1e 100644 --- a/docs/types/coinbase_types.ContractInvocationAPIClient.html +++ b/docs/types/coinbase_types.ContractInvocationAPIClient.html @@ -9,7 +9,7 @@
  • A promise resolving to the ContractInvocation model.
  • Throws

    If the request fails.

    -
  • createContractInvocation:function
  • createContractInvocation:function
    • Creates a Contract Invocation.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the contract invocation belongs to.

      • createContractInvocationRequest: CreateContractInvocationRequest

        The request body.

        @@ -18,7 +18,7 @@
      • A promise resolving to the ContractInvocation model.

      Throws

      If the request fails.

      -
  • getContractInvocation:function
  • getContractInvocation:function
    • Retrieves a Contract Invocation.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the contract invocation belongs to.

      • contractInvocationId: string

        The ID of the contract invocation to retrieve.

        @@ -27,7 +27,7 @@
      • A promise resolving to the ContractInvocation model.

      Throws

      If the request fails.

      -
  • listContractInvocations:function
  • listContractInvocations:function
    • Lists Contract Invocations.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the contract invocations belong to.

      • Optional limit: number

        The maximum number of contract invocations to return.

        @@ -37,4 +37,4 @@
      • A promise resolving to the ContractInvocation list.

      Throws

      If the request fails.

      -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.CreateContractInvocationOptions.html b/docs/types/coinbase_types.CreateContractInvocationOptions.html index 1ac257bc..4bf70a28 100644 --- a/docs/types/coinbase_types.CreateContractInvocationOptions.html +++ b/docs/types/coinbase_types.CreateContractInvocationOptions.html @@ -1,2 +1,2 @@ CreateContractInvocationOptions | @coinbase/coinbase-sdk
    CreateContractInvocationOptions: {
        abi?: object;
        amount?: Amount;
        args: object;
        assetId?: string;
        contractAddress: string;
        method: string;
    }

    Options for creating a Contract Invocation.

    -

    Type declaration

    • Optional abi?: object
    • Optional amount?: Amount
    • args: object
    • Optional assetId?: string
    • contractAddress: string
    • method: string
    \ No newline at end of file +

    Type declaration

    • Optional abi?: object
    • Optional amount?: Amount
    • args: object
    • Optional assetId?: string
    • contractAddress: string
    • method: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.CreateERC1155Options.html b/docs/types/coinbase_types.CreateERC1155Options.html new file mode 100644 index 00000000..0233ac5f --- /dev/null +++ b/docs/types/coinbase_types.CreateERC1155Options.html @@ -0,0 +1,2 @@ +CreateERC1155Options | @coinbase/coinbase-sdk
    CreateERC1155Options: {
        uri: string;
    }

    Options for creating a ERC1155.

    +

    Type declaration

    • uri: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.CreateERC20Options.html b/docs/types/coinbase_types.CreateERC20Options.html index 716de7bc..982ea90c 100644 --- a/docs/types/coinbase_types.CreateERC20Options.html +++ b/docs/types/coinbase_types.CreateERC20Options.html @@ -1,2 +1,2 @@ CreateERC20Options | @coinbase/coinbase-sdk
    CreateERC20Options: {
        name: string;
        symbol: string;
        totalSupply: Amount;
    }

    Options for creating a ERC20.

    -

    Type declaration

    • name: string
    • symbol: string
    • totalSupply: Amount
    \ No newline at end of file +

    Type declaration

    • name: string
    • symbol: string
    • totalSupply: Amount
    \ No newline at end of file diff --git a/docs/types/coinbase_types.CreateERC721Options.html b/docs/types/coinbase_types.CreateERC721Options.html new file mode 100644 index 00000000..5cfb2fa7 --- /dev/null +++ b/docs/types/coinbase_types.CreateERC721Options.html @@ -0,0 +1,2 @@ +CreateERC721Options | @coinbase/coinbase-sdk
    CreateERC721Options: {
        baseURI: string;
        name: string;
        symbol: string;
    }

    Options for creating a ERC721.

    +

    Type declaration

    • baseURI: string
    • name: string
    • symbol: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.CreateTradeOptions.html b/docs/types/coinbase_types.CreateTradeOptions.html index 61c7dd66..f0e38352 100644 --- a/docs/types/coinbase_types.CreateTradeOptions.html +++ b/docs/types/coinbase_types.CreateTradeOptions.html @@ -1,2 +1,2 @@ CreateTradeOptions | @coinbase/coinbase-sdk
    CreateTradeOptions: {
        amount: Amount;
        fromAssetId: string;
        toAssetId: string;
    }

    Options for creating a Trade.

    -

    Type declaration

    • amount: Amount
    • fromAssetId: string
    • toAssetId: string
    \ No newline at end of file +

    Type declaration

    • amount: Amount
    • fromAssetId: string
    • toAssetId: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.CreateTransferOptions.html b/docs/types/coinbase_types.CreateTransferOptions.html index 78c28351..813d8ff0 100644 --- a/docs/types/coinbase_types.CreateTransferOptions.html +++ b/docs/types/coinbase_types.CreateTransferOptions.html @@ -1,2 +1,2 @@ CreateTransferOptions | @coinbase/coinbase-sdk
    CreateTransferOptions: {
        amount: Amount;
        assetId: string;
        destination: Destination;
        gasless?: boolean;
    }

    Options for creating a Transfer.

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/docs/types/coinbase_types.CreateWebhookOptions.html b/docs/types/coinbase_types.CreateWebhookOptions.html index fee4103b..c031d2cc 100644 --- a/docs/types/coinbase_types.CreateWebhookOptions.html +++ b/docs/types/coinbase_types.CreateWebhookOptions.html @@ -1,2 +1,2 @@ -CreateWebhookOptions | @coinbase/coinbase-sdk
    CreateWebhookOptions: {
        eventFilters?: WebhookEventFilter[];
        eventType: WebhookEventType;
        networkId: string;
        notificationUri: string;
        signatureHeader?: string;
    }

    Options for creating a Webhook.

    -

    Type declaration

    \ No newline at end of file +CreateWebhookOptions | @coinbase/coinbase-sdk
    CreateWebhookOptions: {
        eventFilters?: WebhookEventFilter[];
        eventType: WebhookEventType;
        eventTypeFilter?: WebhookEventTypeFilter;
        networkId: string;
        notificationUri: string;
        signatureHeader?: string;
    }

    Options for creating a Webhook.

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/types/coinbase_types.Destination.html b/docs/types/coinbase_types.Destination.html index baafa931..e4e4b910 100644 --- a/docs/types/coinbase_types.Destination.html +++ b/docs/types/coinbase_types.Destination.html @@ -1,2 +1,2 @@ Destination | @coinbase/coinbase-sdk
    Destination: string | Address | Wallet

    Destination type definition.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.ExternalAddressAPIClient.html b/docs/types/coinbase_types.ExternalAddressAPIClient.html index 1b889eb4..ff207d6f 100644 --- a/docs/types/coinbase_types.ExternalAddressAPIClient.html +++ b/docs/types/coinbase_types.ExternalAddressAPIClient.html @@ -1,26 +1,19 @@ -ExternalAddressAPIClient | @coinbase/coinbase-sdk
    ExternalAddressAPIClient: {
        getExternalAddressBalance(networkId, addressId, assetId, options?): AxiosPromise<Balance>;
        listAddressTransactions(networkId, addressId, limit?, page?, options?): AxiosPromise<AddressTransactionList>;
        listExternalAddressBalances(networkId, addressId, page?, options?): AxiosPromise<AddressBalanceList>;
        requestExternalFaucetFunds(networkId, addressId, assetId?, options?): AxiosPromise<FaucetTransaction>;
    }

    ExternalAddressAPIClient client type definition.

    +ExternalAddressAPIClient | @coinbase/coinbase-sdk
    ExternalAddressAPIClient: {
        getExternalAddressBalance(networkId, addressId, assetId, options?): AxiosPromise<Balance>;
        listExternalAddressBalances(networkId, addressId, page?, options?): AxiosPromise<AddressBalanceList>;
        requestExternalFaucetFunds(networkId, addressId, assetId?, options?): AxiosPromise<FaucetTransaction>;
    }

    ExternalAddressAPIClient client type definition.

    Type declaration

    • getExternalAddressBalance:function
      • Get the balance of an asset in an external address

        Parameters

        • networkId: string

          The ID of the blockchain network

        • addressId: string

          The ID of the address to fetch the balance for

        • assetId: string

          The ID of the asset to fetch the balance for

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<Balance>

        Throws

        If the request fails.

        -
    • listAddressTransactions:function
      • List the transactions of a specific address.

        -

        Parameters

        • networkId: string

          The ID of the blockchain network

          -
        • addressId: string

          The ID of the address to fetch transactions for.

          -
        • Optional limit: number

          A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

          -
        • Optional page: string

          A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

          -
        • Optional options: RawAxiosRequestConfig

          Override http request option.

          -

        Returns AxiosPromise<AddressTransactionList>

        Summary

        Get address transactions

        -

        Throws

    • listExternalAddressBalances:function
    • listExternalAddressBalances:function
      • List all of the balances of an external address

        Parameters

        • networkId: string

          The ID of the blockchain network

        • addressId: string

          The ID of the address to fetch the balance for

        • Optional page: string

          A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<AddressBalanceList>

        Throws

        If the request fails.

        -
    • requestExternalFaucetFunds:function
    • requestExternalFaucetFunds:function
      • Request faucet funds to be sent to external address.

        Parameters

        • networkId: string

          The ID of the blockchain network

        • addressId: string

          The onchain address of the address that is being fetched.

        • Optional assetId: string
        • Optional options: RawAxiosRequestConfig

          Override http request option.

        Returns AxiosPromise<FaucetTransaction>

        Throws

        If the request fails.

        -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.ExternalSmartContractAPIClient.html b/docs/types/coinbase_types.ExternalSmartContractAPIClient.html index edadf86d..d15446fc 100644 --- a/docs/types/coinbase_types.ExternalSmartContractAPIClient.html +++ b/docs/types/coinbase_types.ExternalSmartContractAPIClient.html @@ -9,4 +9,4 @@
  • toBlockHeight: number

    Upper bound of the block range to query (inclusive)

  • Optional nextPage: string

    Pagination token for retrieving the next set of results

  • Returns AxiosPromise<ContractEventList>

    Throws

    If the request fails.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.ListHistoricalBalancesOptions.html b/docs/types/coinbase_types.ListHistoricalBalancesOptions.html index fc9ce05c..7f2efc70 100644 --- a/docs/types/coinbase_types.ListHistoricalBalancesOptions.html +++ b/docs/types/coinbase_types.ListHistoricalBalancesOptions.html @@ -1,2 +1,2 @@ ListHistoricalBalancesOptions | @coinbase/coinbase-sdk
    ListHistoricalBalancesOptions: {
        assetId: string;
        limit?: number;
        page?: string;
    }

    Options for listing historical balances of an address.

    -

    Type declaration

    • assetId: string
    • Optional limit?: number
    • Optional page?: string
    \ No newline at end of file +

    Type declaration

    • assetId: string
    • Optional limit?: number
    • Optional page?: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.ListHistoricalBalancesResult.html b/docs/types/coinbase_types.ListHistoricalBalancesResult.html index 65ba5a10..33cdf9ea 100644 --- a/docs/types/coinbase_types.ListHistoricalBalancesResult.html +++ b/docs/types/coinbase_types.ListHistoricalBalancesResult.html @@ -1,2 +1,2 @@ ListHistoricalBalancesResult | @coinbase/coinbase-sdk
    ListHistoricalBalancesResult: {
        historicalBalances: HistoricalBalance[];
        nextPageToken: string;
    }

    Result of ListHistoricalBalances.

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/docs/types/coinbase_types.ListTransactionsOptions.html b/docs/types/coinbase_types.ListTransactionsOptions.html index 8b11d4f6..a9009607 100644 --- a/docs/types/coinbase_types.ListTransactionsOptions.html +++ b/docs/types/coinbase_types.ListTransactionsOptions.html @@ -1,2 +1,2 @@ ListTransactionsOptions | @coinbase/coinbase-sdk
    ListTransactionsOptions: {
        limit?: number;
        page?: string;
    }

    Options for listing transactions of an address.

    -

    Type declaration

    • Optional limit?: number
    • Optional page?: string
    \ No newline at end of file +

    Type declaration

    • Optional limit?: number
    • Optional page?: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.ListTransactionsResult.html b/docs/types/coinbase_types.ListTransactionsResult.html index ae7a147d..9f0cac1c 100644 --- a/docs/types/coinbase_types.ListTransactionsResult.html +++ b/docs/types/coinbase_types.ListTransactionsResult.html @@ -1,2 +1,2 @@ ListTransactionsResult | @coinbase/coinbase-sdk
    ListTransactionsResult: {
        nextPageToken: string;
        transactions: Transaction[];
    }

    Result of ListTransactions.

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/docs/types/coinbase_types.MultiTokenContractOptions.html b/docs/types/coinbase_types.MultiTokenContractOptions.html new file mode 100644 index 00000000..d41ee9d7 --- /dev/null +++ b/docs/types/coinbase_types.MultiTokenContractOptions.html @@ -0,0 +1,2 @@ +MultiTokenContractOptions | @coinbase/coinbase-sdk
    MultiTokenContractOptions: {
        uri: string;
    }

    Multi-Token Contract Options

    +

    Type declaration

    • uri: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.NFTContractOptions.html b/docs/types/coinbase_types.NFTContractOptions.html index 072baec8..001e47a9 100644 --- a/docs/types/coinbase_types.NFTContractOptions.html +++ b/docs/types/coinbase_types.NFTContractOptions.html @@ -1,2 +1,2 @@ -NFTContractOptions | @coinbase/coinbase-sdk
    NFTContractOptions: {
        name: string;
        symbol: string;
    }

    NFT Contract Options

    -

    Type declaration

    • name: string
    • symbol: string
    \ No newline at end of file +NFTContractOptions | @coinbase/coinbase-sdk
    NFTContractOptions: {
        baseURI: string;
        name: string;
        symbol: string;
    }

    NFT Contract Options

    +

    Type declaration

    • baseURI: string
    • name: string
    • symbol: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.SeedData.html b/docs/types/coinbase_types.SeedData.html index 46a4b7ca..26ac5ea0 100644 --- a/docs/types/coinbase_types.SeedData.html +++ b/docs/types/coinbase_types.SeedData.html @@ -1,2 +1,2 @@ SeedData | @coinbase/coinbase-sdk
    SeedData: {
        authTag: string;
        encrypted: boolean;
        iv: string;
        seed: string;
    }

    The Seed Data type definition.

    -

    Type declaration

    • authTag: string
    • encrypted: boolean
    • iv: string
    • seed: string
    \ No newline at end of file +

    Type declaration

    • authTag: string
    • encrypted: boolean
    • iv: string
    • seed: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.ServerSignerAPIClient.html b/docs/types/coinbase_types.ServerSignerAPIClient.html index 7ac85fec..7f8abfca 100644 --- a/docs/types/coinbase_types.ServerSignerAPIClient.html +++ b/docs/types/coinbase_types.ServerSignerAPIClient.html @@ -7,4 +7,4 @@
  • A promise resolving to the Server-Signer list.
  • Throws

    If the request fails.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.SmartContractOptions.html b/docs/types/coinbase_types.SmartContractOptions.html index 5995061b..d06c7153 100644 --- a/docs/types/coinbase_types.SmartContractOptions.html +++ b/docs/types/coinbase_types.SmartContractOptions.html @@ -1,2 +1,2 @@ -SmartContractOptions | @coinbase/coinbase-sdk

    Smart Contract Options

    -
    \ No newline at end of file +SmartContractOptions | @coinbase/coinbase-sdk
    \ No newline at end of file diff --git a/docs/types/coinbase_types.StakeAPIClient.html b/docs/types/coinbase_types.StakeAPIClient.html index 1c70c107..79a4e489 100644 --- a/docs/types/coinbase_types.StakeAPIClient.html +++ b/docs/types/coinbase_types.StakeAPIClient.html @@ -2,7 +2,7 @@

    Parameters

    • buildStakingOperationRequest: BuildStakingOperationRequest

      The request to build a staking operation.

    • Optional options: AxiosRequestConfig<any>

      Axios request options.

    Returns AxiosPromise<StakingOperation>

    Throws

    If the request fails.

    -
  • fetchHistoricalStakingBalances:function
  • fetchHistoricalStakingBalances:function
    • Get the staking balances for an address.

      Parameters

      • networkId: string

        The ID of the blockchain network.

      • assetId: string

        The ID of the asset to fetch the staking balances for.

      • addressId: string

        The onchain address to fetch the staking balances for.

        @@ -11,19 +11,19 @@
      • Optional limit: number

        The amount of records to return in a single call.

      • Optional page: string

        The batch of records for a given section in the response.

      • Optional options: AxiosRequestConfig<any>

        Axios request options.

        -

      Returns AxiosPromise<FetchHistoricalStakingBalances200Response>

  • fetchStakingRewards:function
    • Get the staking rewards for an address.

      +
  • Returns AxiosPromise<FetchHistoricalStakingBalances200Response>

  • fetchStakingRewards:function
    • Get the staking rewards for an address.

      Parameters

      • fetchStakingRewardsRequest: FetchStakingRewardsRequest

        The request to get the staking rewards for an address.

      • Optional limit: number

        The amount of records to return in a single call.

      • Optional page: string

        The batch of records for a given section in the response.

      • Optional options: AxiosRequestConfig<any>

        Axios request options.

        -

      Returns AxiosPromise<FetchStakingRewards200Response>

  • getExternalStakingOperation:function
    • Get a staking operation.

      +
  • Returns AxiosPromise<FetchStakingRewards200Response>

  • getExternalStakingOperation:function
    • Get a staking operation.

      Parameters

      • networkId: string

        The ID of the blockchain network

      • addressId: string

        The ID of the address the staking operation corresponds to.

      • stakingOperationID: string

        The ID of the staking operation to fetch.

      • Optional options: AxiosRequestConfig<any>

        Axios request options.

      Returns AxiosPromise<StakingOperation>

      Throws

      If the request fails.

      -
  • getStakingContext:function
  • getStakingContext:function
    • Get staking context for an address.

      Parameters

      • getStakingContextRequest: GetStakingContextRequest

        The request to get the staking context for an address.

      • Optional options: AxiosRequestConfig<any>

        Axios request options.

      Returns AxiosPromise<StakingContext>

      Throws

      If the request fails.

      -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.TokenContractOptions.html b/docs/types/coinbase_types.TokenContractOptions.html index c0812784..d001f2e7 100644 --- a/docs/types/coinbase_types.TokenContractOptions.html +++ b/docs/types/coinbase_types.TokenContractOptions.html @@ -1,2 +1,2 @@ TokenContractOptions | @coinbase/coinbase-sdk
    TokenContractOptions: {
        name: string;
        symbol: string;
        totalSupply: string;
    }

    Token Contract Options

    -

    Type declaration

    • name: string
    • symbol: string
    • totalSupply: string
    \ No newline at end of file +

    Type declaration

    • name: string
    • symbol: string
    • totalSupply: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.TradeApiClients.html b/docs/types/coinbase_types.TradeApiClients.html index 3d886248..6525bc8f 100644 --- a/docs/types/coinbase_types.TradeApiClients.html +++ b/docs/types/coinbase_types.TradeApiClients.html @@ -5,23 +5,23 @@
  • broadcastTradeRequest: BroadcastTradeRequest

    The request body.

  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Trade>

    Throws

    If the required parameter is not provided.

    -
  • createTrade:function
  • createTrade:function
    • Create a new trade.

      Parameters

      • walletId: string

        The ID of the wallet the source address belongs to.

      • addressId: string

        The ID of the address to conduct the trade from.

      • createTradeRequest: CreateTradeRequest

        The request body.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Trade>

      Throws

      If the required parameter is not provided.

      -
  • getTrade:function
  • getTrade:function
    • Get a trade by ID.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the trade belongs to.

      • tradeId: string

        The ID of the trade to fetch.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<Trade>

      Throws

      If the required parameter is not provided.

      -
  • listTrades:function
  • listTrades:function
    • List trades for an address.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address to list trades for.

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<TradeList>

      Throws

      If the required parameter is not provided.

      -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.TransferAPIClient.html b/docs/types/coinbase_types.TransferAPIClient.html index f53d33ac..fd937d60 100644 --- a/docs/types/coinbase_types.TransferAPIClient.html +++ b/docs/types/coinbase_types.TransferAPIClient.html @@ -9,7 +9,7 @@
  • A promise resolving to the Transfer model.
  • Throws

    If the request fails.

    -
  • createTransfer:function
  • createTransfer:function
    • Creates a Transfer.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the transfer belongs to.

      • createTransferRequest: CreateTransferRequest

        The request body.

        @@ -18,7 +18,7 @@
      • A promise resolving to the Transfer model.

      Throws

      If the request fails.

      -
  • getTransfer:function
  • getTransfer:function
    • Retrieves a Transfer.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the transfer belongs to.

      • transferId: string

        The ID of the transfer to retrieve.

        @@ -27,7 +27,7 @@
      • A promise resolving to the Transfer model.

      Throws

      If the request fails.

      -
  • listTransfers:function
  • listTransfers:function
    • Lists Transfers.

      Parameters

      • walletId: string

        The ID of the wallet the address belongs to.

      • addressId: string

        The ID of the address the transfers belong to.

      • Optional limit: number

        The maximum number of transfers to return.

        @@ -37,4 +37,4 @@
      • A promise resolving to the Transfer list.

      Throws

      If the request fails.

      -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.TypedDataDomain.html b/docs/types/coinbase_types.TypedDataDomain.html index b8a5361f..f293ee7f 100644 --- a/docs/types/coinbase_types.TypedDataDomain.html +++ b/docs/types/coinbase_types.TypedDataDomain.html @@ -4,4 +4,4 @@
  • Optional salt?: string

    A salt used for purposes decided by the specific domain as a data hex string.

  • Optional verifyingContract?: string

    The the address of the contract that will verify the signature.

  • Optional version?: string

    The major version of the signing domain.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.TypedDataField.html b/docs/types/coinbase_types.TypedDataField.html index 3b06241e..213473b1 100644 --- a/docs/types/coinbase_types.TypedDataField.html +++ b/docs/types/coinbase_types.TypedDataField.html @@ -1,4 +1,4 @@ TypedDataField | @coinbase/coinbase-sdk
    TypedDataField: {
        name: string;
        type: string;
    }

    A specific field of a structured EIP-712 type.

    Type declaration

    • name: string

      The field name.

    • type: string

      The type of the field.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.ValidatorAPIClient.html b/docs/types/coinbase_types.ValidatorAPIClient.html index b59290d0..722022fc 100644 --- a/docs/types/coinbase_types.ValidatorAPIClient.html +++ b/docs/types/coinbase_types.ValidatorAPIClient.html @@ -3,11 +3,11 @@
  • assetId: string

    The ID of the asset to fetch the validator for.

  • id: string

    The unique publicly identifiable id of the validator for which to fetch the data.

  • Optional options: RawAxiosRequestConfig

    Axios request options.

    -
  • Returns AxiosPromise<Validator>

  • listValidators:function
    • List the validators for a given network and asset.

      +

    Returns AxiosPromise<Validator>

  • listValidators:function
    • List the validators for a given network and asset.

      Parameters

      • networkId: string

        The ID of the blockchain network.

      • assetId: string

        The ID of the asset to fetch the validator for.

      • Optional status: ValidatorStatus

        The status to filter by.

      • Optional limit: number

        The amount of records to return in a single call.

      • Optional page: string

        The batch of records for a given section in the response.

      • Optional options: AxiosRequestConfig<any>

        Axios request options.

        -

      Returns AxiosPromise<ValidatorList>

  • \ No newline at end of file +

    Returns AxiosPromise<ValidatorList>

    \ No newline at end of file diff --git a/docs/types/coinbase_types.WalletAPIClient.html b/docs/types/coinbase_types.WalletAPIClient.html index 6fb479cd..13f5b6df 100644 --- a/docs/types/coinbase_types.WalletAPIClient.html +++ b/docs/types/coinbase_types.WalletAPIClient.html @@ -12,20 +12,20 @@
  • Optional options: RawAxiosRequestConfig

    Override http request option.

  • Returns AxiosPromise<Balance>

    Throws

    If the required parameter is not provided.

    Throws

    If the request fails.

    -
  • listWalletBalances:function
  • listWalletBalances:function
    • List the balances of all of the addresses in the wallet aggregated by asset.

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balances for.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressBalanceList>

      Throws

      If the required parameter is not provided.

      Throws

      If the request fails.

      -
    • List the balances of all of the addresses in the wallet aggregated by asset.

      +
    • List the balances of all of the addresses in the wallet aggregated by asset.

      Parameters

      • walletId: string

        The ID of the wallet to fetch the balances for.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<AddressBalanceList>

      Throws

      If the required parameter is not provided.

      Throws

      If the request fails.

      -
  • listWallets:function
  • listWallets:function
    • List wallets belonging to the user.

      Parameters

      • Optional limit: number

        A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

      • Optional page: string

        A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

      • Optional options: RawAxiosRequestConfig

        Override http request option.

      Returns AxiosPromise<WalletList>

      Throws

      If the request fails.

      Throws

      If the required parameter is not provided.

      -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/coinbase_types.WalletCreateOptions.html b/docs/types/coinbase_types.WalletCreateOptions.html index a3298b12..4e84e055 100644 --- a/docs/types/coinbase_types.WalletCreateOptions.html +++ b/docs/types/coinbase_types.WalletCreateOptions.html @@ -1,2 +1,2 @@ WalletCreateOptions | @coinbase/coinbase-sdk
    WalletCreateOptions: {
        intervalSeconds?: number;
        networkId?: string;
        timeoutSeconds?: number;
    }

    Options for creating a Wallet.

    -

    Type declaration

    • Optional intervalSeconds?: number
    • Optional networkId?: string
    • Optional timeoutSeconds?: number
    \ No newline at end of file +

    Type declaration

    • Optional intervalSeconds?: number
    • Optional networkId?: string
    • Optional timeoutSeconds?: number
    \ No newline at end of file diff --git a/docs/types/coinbase_types.WalletData.html b/docs/types/coinbase_types.WalletData.html index 32165d59..e1e98492 100644 --- a/docs/types/coinbase_types.WalletData.html +++ b/docs/types/coinbase_types.WalletData.html @@ -1,3 +1,3 @@ WalletData | @coinbase/coinbase-sdk
    WalletData: {
        seed: string;
        walletId: string;
    }

    The Wallet Data type definition. The data required to recreate a Wallet.

    -

    Type declaration

    • seed: string
    • walletId: string
    \ No newline at end of file +

    Type declaration

    • seed: string
    • walletId: string
    \ No newline at end of file diff --git a/docs/types/coinbase_types.WalletStakeAPIClient.html b/docs/types/coinbase_types.WalletStakeAPIClient.html index fc9068d5..de2ca0d3 100644 --- a/docs/types/coinbase_types.WalletStakeAPIClient.html +++ b/docs/types/coinbase_types.WalletStakeAPIClient.html @@ -1 +1 @@ -WalletStakeAPIClient | @coinbase/coinbase-sdk
    WalletStakeAPIClient: {
        broadcastStakingOperation(walletId, addressId, stakingOperationId, broadcastStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        createStakingOperation(walletId, addressId, createStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        getStakingOperation(walletId, addressId, stakingOperationId, options?): AxiosPromise<StakingOperation>;
    }

    Type declaration

    \ No newline at end of file +WalletStakeAPIClient | @coinbase/coinbase-sdk
    WalletStakeAPIClient: {
        broadcastStakingOperation(walletId, addressId, stakingOperationId, broadcastStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        createStakingOperation(walletId, addressId, createStakingOperationRequest, options?): AxiosPromise<StakingOperation>;
        getStakingOperation(walletId, addressId, stakingOperationId, options?): AxiosPromise<StakingOperation>;
    }

    Type declaration

    \ No newline at end of file diff --git a/docs/variables/client_api.NetworkProtocolFamilyEnum-1.html b/docs/variables/client_api.NetworkProtocolFamilyEnum-1.html index 42e8c981..4f799ed1 100644 --- a/docs/variables/client_api.NetworkProtocolFamilyEnum-1.html +++ b/docs/variables/client_api.NetworkProtocolFamilyEnum-1.html @@ -1 +1 @@ -NetworkProtocolFamilyEnum | @coinbase/coinbase-sdk

    Variable NetworkProtocolFamilyEnumConst

    NetworkProtocolFamilyEnum: {
        Evm: "evm";
        Solana: "solana";
    } = ...

    Type declaration

    • Readonly Evm: "evm"
    • Readonly Solana: "solana"
    \ No newline at end of file +NetworkProtocolFamilyEnum | @coinbase/coinbase-sdk

    Variable NetworkProtocolFamilyEnumConst

    NetworkProtocolFamilyEnum: {
        Evm: "evm";
        Solana: "solana";
    } = ...

    Type declaration

    • Readonly Evm: "evm"
    • Readonly Solana: "solana"
    \ No newline at end of file diff --git a/docs/variables/client_api.PayloadSignatureStatusEnum-1.html b/docs/variables/client_api.PayloadSignatureStatusEnum-1.html index 902498e8..ad725c4e 100644 --- a/docs/variables/client_api.PayloadSignatureStatusEnum-1.html +++ b/docs/variables/client_api.PayloadSignatureStatusEnum-1.html @@ -1 +1 @@ -PayloadSignatureStatusEnum | @coinbase/coinbase-sdk

    Variable PayloadSignatureStatusEnumConst

    PayloadSignatureStatusEnum: {
        Failed: "failed";
        Pending: "pending";
        Signed: "signed";
    } = ...

    Type declaration

    • Readonly Failed: "failed"
    • Readonly Pending: "pending"
    • Readonly Signed: "signed"
    \ No newline at end of file +PayloadSignatureStatusEnum | @coinbase/coinbase-sdk

    Variable PayloadSignatureStatusEnumConst

    PayloadSignatureStatusEnum: {
        Failed: "failed";
        Pending: "pending";
        Signed: "signed";
    } = ...

    Type declaration

    • Readonly Failed: "failed"
    • Readonly Pending: "pending"
    • Readonly Signed: "signed"
    \ No newline at end of file diff --git a/docs/variables/client_api.SponsoredSendStatusEnum-1.html b/docs/variables/client_api.SponsoredSendStatusEnum-1.html index 28b49868..bc9cbf37 100644 --- a/docs/variables/client_api.SponsoredSendStatusEnum-1.html +++ b/docs/variables/client_api.SponsoredSendStatusEnum-1.html @@ -1 +1 @@ -SponsoredSendStatusEnum | @coinbase/coinbase-sdk

    Variable SponsoredSendStatusEnumConst

    SponsoredSendStatusEnum: {
        Complete: "complete";
        Failed: "failed";
        Pending: "pending";
        Signed: "signed";
        Submitted: "submitted";
    } = ...

    Type declaration

    • Readonly Complete: "complete"
    • Readonly Failed: "failed"
    • Readonly Pending: "pending"
    • Readonly Signed: "signed"
    • Readonly Submitted: "submitted"
    \ No newline at end of file +SponsoredSendStatusEnum | @coinbase/coinbase-sdk

    Variable SponsoredSendStatusEnumConst

    SponsoredSendStatusEnum: {
        Complete: "complete";
        Failed: "failed";
        Pending: "pending";
        Signed: "signed";
        Submitted: "submitted";
    } = ...

    Type declaration

    • Readonly Complete: "complete"
    • Readonly Failed: "failed"
    • Readonly Pending: "pending"
    • Readonly Signed: "signed"
    • Readonly Submitted: "submitted"
    \ No newline at end of file diff --git a/docs/variables/client_api.StakingOperationStatusEnum-1.html b/docs/variables/client_api.StakingOperationStatusEnum-1.html index df7e8bce..50f2edc2 100644 --- a/docs/variables/client_api.StakingOperationStatusEnum-1.html +++ b/docs/variables/client_api.StakingOperationStatusEnum-1.html @@ -1 +1 @@ -StakingOperationStatusEnum | @coinbase/coinbase-sdk

    Variable StakingOperationStatusEnumConst

    StakingOperationStatusEnum: {
        Complete: "complete";
        Failed: "failed";
        Initialized: "initialized";
        Unspecified: "unspecified";
    } = ...

    Type declaration

    • Readonly Complete: "complete"
    • Readonly Failed: "failed"
    • Readonly Initialized: "initialized"
    • Readonly Unspecified: "unspecified"
    \ No newline at end of file +StakingOperationStatusEnum | @coinbase/coinbase-sdk

    Variable StakingOperationStatusEnumConst

    StakingOperationStatusEnum: {
        Complete: "complete";
        Failed: "failed";
        Initialized: "initialized";
        Unspecified: "unspecified";
    } = ...

    Type declaration

    • Readonly Complete: "complete"
    • Readonly Failed: "failed"
    • Readonly Initialized: "initialized"
    • Readonly Unspecified: "unspecified"
    \ No newline at end of file diff --git a/docs/variables/client_api.StakingRewardStateEnum-1.html b/docs/variables/client_api.StakingRewardStateEnum-1.html index d08420a1..91889342 100644 --- a/docs/variables/client_api.StakingRewardStateEnum-1.html +++ b/docs/variables/client_api.StakingRewardStateEnum-1.html @@ -1 +1 @@ -StakingRewardStateEnum | @coinbase/coinbase-sdk

    Variable StakingRewardStateEnumConst

    StakingRewardStateEnum: {
        Distributed: "distributed";
        Pending: "pending";
    } = ...

    Type declaration

    • Readonly Distributed: "distributed"
    • Readonly Pending: "pending"
    \ No newline at end of file +StakingRewardStateEnum | @coinbase/coinbase-sdk

    Variable StakingRewardStateEnumConst

    StakingRewardStateEnum: {
        Distributed: "distributed";
        Pending: "pending";
    } = ...

    Type declaration

    • Readonly Distributed: "distributed"
    • Readonly Pending: "pending"
    \ No newline at end of file diff --git a/docs/variables/client_api.TransactionStatusEnum-1.html b/docs/variables/client_api.TransactionStatusEnum-1.html index 0e6f4c41..b3f492a7 100644 --- a/docs/variables/client_api.TransactionStatusEnum-1.html +++ b/docs/variables/client_api.TransactionStatusEnum-1.html @@ -1 +1 @@ -TransactionStatusEnum | @coinbase/coinbase-sdk

    Variable TransactionStatusEnumConst

    TransactionStatusEnum: {
        Broadcast: "broadcast";
        Complete: "complete";
        Failed: "failed";
        Pending: "pending";
        Signed: "signed";
        Unspecified: "unspecified";
    } = ...

    Type declaration

    • Readonly Broadcast: "broadcast"
    • Readonly Complete: "complete"
    • Readonly Failed: "failed"
    • Readonly Pending: "pending"
    • Readonly Signed: "signed"
    • Readonly Unspecified: "unspecified"
    \ No newline at end of file +TransactionStatusEnum | @coinbase/coinbase-sdk

    Variable TransactionStatusEnumConst

    TransactionStatusEnum: {
        Broadcast: "broadcast";
        Complete: "complete";
        Failed: "failed";
        Pending: "pending";
        Signed: "signed";
        Unspecified: "unspecified";
    } = ...

    Type declaration

    • Readonly Broadcast: "broadcast"
    • Readonly Complete: "complete"
    • Readonly Failed: "failed"
    • Readonly Pending: "pending"
    • Readonly Signed: "signed"
    • Readonly Unspecified: "unspecified"
    \ No newline at end of file diff --git a/docs/variables/client_api.TransferStatusEnum-1.html b/docs/variables/client_api.TransferStatusEnum-1.html index 9331af87..f8134d5e 100644 --- a/docs/variables/client_api.TransferStatusEnum-1.html +++ b/docs/variables/client_api.TransferStatusEnum-1.html @@ -1 +1 @@ -TransferStatusEnum | @coinbase/coinbase-sdk
    TransferStatusEnum: {
        Broadcast: "broadcast";
        Complete: "complete";
        Failed: "failed";
        Pending: "pending";
    } = ...

    Type declaration

    • Readonly Broadcast: "broadcast"
    • Readonly Complete: "complete"
    • Readonly Failed: "failed"
    • Readonly Pending: "pending"
    \ No newline at end of file +TransferStatusEnum | @coinbase/coinbase-sdk
    TransferStatusEnum: {
        Broadcast: "broadcast";
        Complete: "complete";
        Failed: "failed";
        Pending: "pending";
    } = ...

    Type declaration

    • Readonly Broadcast: "broadcast"
    • Readonly Complete: "complete"
    • Readonly Failed: "failed"
    • Readonly Pending: "pending"
    \ No newline at end of file diff --git a/docs/variables/client_api.WalletServerSignerStatusEnum-1.html b/docs/variables/client_api.WalletServerSignerStatusEnum-1.html index 44e42704..c6d2df12 100644 --- a/docs/variables/client_api.WalletServerSignerStatusEnum-1.html +++ b/docs/variables/client_api.WalletServerSignerStatusEnum-1.html @@ -1 +1 @@ -WalletServerSignerStatusEnum | @coinbase/coinbase-sdk

    Variable WalletServerSignerStatusEnumConst

    WalletServerSignerStatusEnum: {
        ActiveSeed: "active_seed";
        PendingSeedCreation: "pending_seed_creation";
    } = ...

    Type declaration

    • Readonly ActiveSeed: "active_seed"
    • Readonly PendingSeedCreation: "pending_seed_creation"
    \ No newline at end of file +WalletServerSignerStatusEnum | @coinbase/coinbase-sdk

    Variable WalletServerSignerStatusEnumConst

    WalletServerSignerStatusEnum: {
        ActiveSeed: "active_seed";
        PendingSeedCreation: "pending_seed_creation";
    } = ...

    Type declaration

    • Readonly ActiveSeed: "active_seed"
    • Readonly PendingSeedCreation: "pending_seed_creation"
    \ No newline at end of file diff --git a/docs/variables/client_base.BASE_PATH.html b/docs/variables/client_base.BASE_PATH.html index ddf11e65..a8915f28 100644 --- a/docs/variables/client_base.BASE_PATH.html +++ b/docs/variables/client_base.BASE_PATH.html @@ -1 +1 @@ -BASE_PATH | @coinbase/coinbase-sdk
    BASE_PATH: string = ...
    \ No newline at end of file +BASE_PATH | @coinbase/coinbase-sdk
    BASE_PATH: string = ...
    \ No newline at end of file diff --git a/docs/variables/client_base.COLLECTION_FORMATS.html b/docs/variables/client_base.COLLECTION_FORMATS.html index 1ae32cd9..6942fdcb 100644 --- a/docs/variables/client_base.COLLECTION_FORMATS.html +++ b/docs/variables/client_base.COLLECTION_FORMATS.html @@ -1 +1 @@ -COLLECTION_FORMATS | @coinbase/coinbase-sdk
    COLLECTION_FORMATS: {
        csv: string;
        pipes: string;
        ssv: string;
        tsv: string;
    } = ...

    Type declaration

    • csv: string
    • pipes: string
    • ssv: string
    • tsv: string

    Export

    \ No newline at end of file +COLLECTION_FORMATS | @coinbase/coinbase-sdk
    COLLECTION_FORMATS: {
        csv: string;
        pipes: string;
        ssv: string;
        tsv: string;
    } = ...

    Type declaration

    • csv: string
    • pipes: string
    • ssv: string
    • tsv: string

    Export

    \ No newline at end of file diff --git a/docs/variables/client_base.operationServerMap.html b/docs/variables/client_base.operationServerMap.html index 439c11ac..17ca854a 100644 --- a/docs/variables/client_base.operationServerMap.html +++ b/docs/variables/client_base.operationServerMap.html @@ -1 +1 @@ -operationServerMap | @coinbase/coinbase-sdk
    operationServerMap: ServerMap = {}

    Export

    \ No newline at end of file +operationServerMap | @coinbase/coinbase-sdk
    operationServerMap: ServerMap = {}

    Export

    \ No newline at end of file diff --git a/docs/variables/client_common.DUMMY_BASE_URL.html b/docs/variables/client_common.DUMMY_BASE_URL.html index 65d9f360..219bb1d3 100644 --- a/docs/variables/client_common.DUMMY_BASE_URL.html +++ b/docs/variables/client_common.DUMMY_BASE_URL.html @@ -1 +1 @@ -DUMMY_BASE_URL | @coinbase/coinbase-sdk
    DUMMY_BASE_URL: "https://example.com" = 'https://example.com'

    Export

    \ No newline at end of file +DUMMY_BASE_URL | @coinbase/coinbase-sdk
    DUMMY_BASE_URL: "https://example.com" = 'https://example.com'

    Export

    \ No newline at end of file diff --git a/docs/variables/coinbase_constants.GWEI_DECIMALS.html b/docs/variables/coinbase_constants.GWEI_DECIMALS.html index 55d31673..5bd373a3 100644 --- a/docs/variables/coinbase_constants.GWEI_DECIMALS.html +++ b/docs/variables/coinbase_constants.GWEI_DECIMALS.html @@ -1 +1 @@ -GWEI_DECIMALS | @coinbase/coinbase-sdk
    GWEI_DECIMALS: 9 = 9
    \ No newline at end of file +GWEI_DECIMALS | @coinbase/coinbase-sdk
    GWEI_DECIMALS: 9 = 9
    \ No newline at end of file From d1576895ca1b8415462a84348fb7e815ab0ac8d5 Mon Sep 17 00:00:00 2001 From: rohan-agarwal-coinbase Date: Thu, 26 Sep 2024 13:54:56 -0400 Subject: [PATCH 9/9] Bump package version to v0.7.0 (#275) --- CHANGELOG.md | 3 ++- package.json | 2 +- quickstart-template/package.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7fcb51d..d7922228 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ ## Unreleased -## [0.7.0] - 2024-09-24 +## [0.7.0] - 2024-09-26 + ### Added - Add `deployNFT` method to `WalletAddress` and `Wallet` to deploy an ERC721, updated `SmartContract` class to support deployment and fetching contract details - Add `deployMultiToken` method to `WalletAddress` and `Wallet` to deploy an ERC1155, updated `SmartContract` class to support deployment and fetching contract details diff --git a/package.json b/package.json index e3d368b1..d956e514 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "license": "ISC", "description": "Coinbase Platform SDK", "repository": "https://github.com/coinbase/coinbase-sdk-nodejs", - "version": "0.6.1", + "version": "0.7.0", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { diff --git a/quickstart-template/package.json b/quickstart-template/package.json index c21421dc..6cfed904 100644 --- a/quickstart-template/package.json +++ b/quickstart-template/package.json @@ -15,7 +15,7 @@ "license": "ISC", "type": "module", "dependencies": { - "@coinbase/coinbase-sdk": "^0.6.1", + "@coinbase/coinbase-sdk": "^0.7.0", "csv-parse": "^5.5.6", "csv-writer": "^1.6.0", "viem": "^2.21.6"