Skip to content

Commit

Permalink
Release v0.8.0 (#285)
Browse files Browse the repository at this point in the history
* update rewards api to latest spec

* update generated client

* update SDK's listAddressTransaction (#260)

* listAddressTransaction

* Update coinbase.ts

* add examples

* allow updating address list of a wallet activity webhook (#280)

* test pass

* optional notif URI

* Update wallet.ts

* Update CHANGELOG.md

* Update CHANGELOG.md

* feat(PSDK-535): Explicit Pagination for list Methods (#282)

* feat(PSDK-535): Explicit Pagination for list Methods

* address comments

* chore: Release v0.8.0 (#283)

---------

Co-authored-by: Filipe Azevedo <filipeandre.martaazevedo@coinbase.com>
Co-authored-by: cb-howardatcb <86798563+howard-at-cb@users.noreply.github.com>
Co-authored-by: Filipe Azevedo <178675833+facoinbase@users.noreply.github.com>
  • Loading branch information
4 people authored Oct 4, 2024
1 parent 69d8118 commit 49a1941
Show file tree
Hide file tree
Showing 405 changed files with 2,714 additions and 1,960 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## Unreleased

## [0.8.0] - 2024-10-04

### Added
- Explicit paginated list methods for listing `Wallet`, `Transfer`, `Transaction`, `Webhook`, `PayloadSignature`, and `HistoricalBalance`.

### Breaking
- `Webhook#update` now takes an Object of `{notificationUri, eventTypeFilter}` instead of `notificationUri` string
- list methods for listing `Wallet`, `Transfer`, `Transaction`, `Webhook`, `PayloadSignature`, and `HistoricalBalance` now take `PaginationOptions` and return `PaginationResponse<T>`

## [0.7.0] - 2024-09-26

### Added
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ const { Coinbase, Wallet } = require("@coinbase/coinbase-sdk");
Coinbase.configureFromJson("path/to/your/api-key.json");

// List all Wallets for the CDP Project.
Wallet.listWallets().then(wallets => {
console.log(wallets);
Wallet.listWallets().then(resp => {
console.log(resp.data);
});
```

Expand All @@ -114,8 +114,8 @@ import { Coinbase, Wallet } from "@coinbase/coinbase-sdk";
Coinbase.configureFromJson("path/to/your/api-key.json");

// List all Wallets for the CDP Project.
const wallets = await Wallet.listWallets();
console.log(wallets);
const resp = await Wallet.listWallets();
console.log(resp.data);
```

### Wallets, Addresses, and Transfers
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/navigation.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/search.js

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions docs/classes/client_api.AddressesApi.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/classes/client_api.AssetsApi.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/classes/client_api.BalanceHistoryApi.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/classes/client_api.ContractEventsApi.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions docs/classes/client_api.ContractInvocationsApi.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/classes/client_api.ExternalAddressesApi.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/classes/client_api.NetworksApi.html

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions docs/classes/client_api.ServerSignersApi.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions docs/classes/client_api.SmartContractsApi.html

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions docs/classes/client_api.StakeApi.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions docs/classes/client_api.TradesApi.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/classes/client_api.TransactionHistoryApi.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions docs/classes/client_api.TransfersApi.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/classes/client_api.UsersApi.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/client_api.ValidatorsApi.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/classes/client_api.WalletStakeApi.html

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions docs/classes/client_api.WalletsApi.html

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions docs/classes/client_api.WebhooksApi.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/client_base.BaseAPI.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/client_base.RequiredError.html

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions docs/classes/client_configuration.Configuration.html

Large diffs are not rendered by default.

49 changes: 25 additions & 24 deletions docs/classes/coinbase_address.Address.html

Large diffs are not rendered by default.

55 changes: 28 additions & 27 deletions docs/classes/coinbase_address_external_address.ExternalAddress.html

Large diffs are not rendered by default.

114 changes: 59 additions & 55 deletions docs/classes/coinbase_address_wallet_address.WalletAddress.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.APIError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.AlreadyExistsError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.FaucetLimitReachedError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InternalError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidAddressError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidAddressIDError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidAmountError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidAssetIDError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidDestinationError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidLimitError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidNetworkIDError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidPageError.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidTransferIDError.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidWalletError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.InvalidWalletIDError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.MalformedRequestError.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.NotFoundError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.ResourceExhaustedError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.UnauthorizedError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.UnimplementedError.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_api_error.UnsupportedAssetError.html

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions docs/classes/coinbase_asset.Asset.html

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions docs/classes/coinbase_authenticator.CoinbaseAuthenticator.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_balance.Balance.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/classes/coinbase_balance_map.BalanceMap.html

Large diffs are not rendered by default.

22 changes: 12 additions & 10 deletions docs/classes/coinbase_coinbase.Coinbase.html

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions docs/classes/coinbase_contract_event.ContractEvent.html

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions docs/classes/coinbase_contract_invocation.ContractInvocation.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/coinbase_errors.AlreadySignedError.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/coinbase_errors.ArgumentError.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/coinbase_errors.InvalidAPIKeyFormatError.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/coinbase_errors.InvalidConfigurationError.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/coinbase_errors.InvalidUnsignedPayloadError.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/coinbase_errors.NotSignedError.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/coinbase_errors.TimeoutError.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/classes/coinbase_faucet_transaction.FaucetTransaction.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions docs/classes/coinbase_payload_signature.PayloadSignature.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions docs/classes/coinbase_server_signer.ServerSigner.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/classes/coinbase_smart_contract.SmartContract.html

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions docs/classes/coinbase_sponsored_send.SponsoredSend.html

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions docs/classes/coinbase_staking_balance.StakingBalance.html

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions docs/classes/coinbase_staking_operation.StakingOperation.html

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions docs/classes/coinbase_staking_reward.StakingReward.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/classes/coinbase_trade.Trade.html

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions docs/classes/coinbase_transaction.Transaction.html

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions docs/classes/coinbase_transfer.Transfer.html

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions docs/classes/coinbase_validator.Validator.html

Large diffs are not rendered by default.

106 changes: 54 additions & 52 deletions docs/classes/coinbase_wallet.Wallet.html

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions docs/classes/coinbase_webhook.Webhook.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/enums/client_api.NetworkIdentifier.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/enums/client_api.SmartContractType.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/enums/client_api.StakingRewardFormat.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>StakingRewardFormat | @coinbase/coinbase-sdk</title><meta name="description" content="Documentation for @coinbase/coinbase-sdk"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@coinbase/coinbase-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../index.html">@coinbase/coinbase-sdk</a></li><li><a href="../modules/client_api.html">client/api</a></li><li><a href="client_api.StakingRewardFormat.html">StakingRewardFormat</a></li></ul><h1>Enumeration StakingRewardFormat</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>The format in which the rewards are to be fetched i.e native or in equivalent USD</p>
</div><div class="tsd-comment tsd-typography"><h4>Export</h4></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/coinbase/coinbase-sdk-nodejs/blob/a9a9864ed769a9ae22a31610daf799a8e702ee33/src/client/api.ts#L2460">src/client/api.ts:2460</a></li><li>Defined in <a href="https://github.com/coinbase/coinbase-sdk-nodejs/blob/a9a9864ed769a9ae22a31610daf799a8e702ee33/src/client/api.ts#L2465">src/client/api.ts:2465</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="client_api.StakingRewardFormat.html#Native" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Native</span></a>
</div><div class="tsd-comment tsd-typography"><h4>Export</h4></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/coinbase/coinbase-sdk-nodejs/blob/8b5c5d909d9a2c06e1c6549f0c24ef32da074d03/src/client/api.ts#L2460">src/client/api.ts:2460</a></li><li>Defined in <a href="https://github.com/coinbase/coinbase-sdk-nodejs/blob/8b5c5d909d9a2c06e1c6549f0c24ef32da074d03/src/client/api.ts#L2465">src/client/api.ts:2465</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="client_api.StakingRewardFormat.html#Native" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Native</span></a>
<a href="client_api.StakingRewardFormat.html#Usd" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Usd</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="Native" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Native</span><a href="#Native" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Native</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;native&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/coinbase/coinbase-sdk-nodejs/blob/a9a9864ed769a9ae22a31610daf799a8e702ee33/src/client/api.ts#L2462">src/client/api.ts:2462</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Usd" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Usd</span><a href="#Usd" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Usd</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;usd&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/coinbase/coinbase-sdk-nodejs/blob/a9a9864ed769a9ae22a31610daf799a8e702ee33/src/client/api.ts#L2461">src/client/api.ts:2461</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#Native" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Native</span></a><a href="#Usd" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Usd</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@coinbase/coinbase-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="Native" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Native</span><a href="#Native" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Native</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;native&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/coinbase/coinbase-sdk-nodejs/blob/8b5c5d909d9a2c06e1c6549f0c24ef32da074d03/src/client/api.ts#L2462">src/client/api.ts:2462</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Usd" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Usd</span><a href="#Usd" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Usd</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;usd&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/coinbase/coinbase-sdk-nodejs/blob/8b5c5d909d9a2c06e1c6549f0c24ef32da074d03/src/client/api.ts#L2461">src/client/api.ts:2461</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#Native" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Native</span></a><a href="#Usd" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Usd</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@coinbase/coinbase-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
Loading

0 comments on commit 49a1941

Please sign in to comment.