Skip to content

Commit

Permalink
V0.0.13 Release (#121)
Browse files Browse the repository at this point in the history
* carry forward comments in compiled js code

* [PSDK-348] support trades with server signer (#119)

* [PSDK-348] Trade Verb Support w/ MPC Server-Signer

* jazz review feedback

* [chore] Prepare 0.0.13 Release

---------

Co-authored-by: Rohit Durvasula <rohit.durvasula@coinbase.com>
Co-authored-by: Rohit Durvasula <88731568+drohit-cb@users.noreply.github.com>
  • Loading branch information
3 people authored Jul 30, 2024
1 parent 9b76c86 commit cbd50c6
Show file tree
Hide file tree
Showing 250 changed files with 1,104 additions and 979 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Coinbase Node.js SDK Changelog

## Unreleased

## [0.0.13] - 2024-07-30

### Added

- Support for trade with MPC Server-Signer
- `CreateTradeOptions` type

## [0.0.12] - 2024-07-24

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ console.log(`Wallet successfully created: ${mainnetWallet}`);
// Fund your Wallet's default Address with ETH from an external source.

// Trade 0.00001 ETH to USDC
let trade = await wallet.createTrade(0.00001, Coinbase.assets.Eth, Coinbase.assets.Usdc);
let trade = await wallet.createTrade({ amount: 0.00001, fromAssetId: Coinbase.assets.Eth, toAssetId: Coinbase.assets.Usdc });

console.log(`Second trade successfully completed: ${trade}`);
```
Expand Down Expand Up @@ -222,4 +222,4 @@ await userWallet.loadSeed(seedFilePath);
[build-size]: https://badgen.net/bundlephobia/minzip/@coinbase/coinbase-sdk
[build-size-url]: https://bundlephobia.com/result?p=@coinbase/coinbase-sdk
[npmtrends-url]: https://www.npmtrends.com/@coinbase/coinbase-sdk
[npm-downloads]: https://img.shields.io/npm/dw/@coinbase/coinbase-sdk
[npm-downloads]: https://img.shields.io/npm/dw/@coinbase/coinbase-sdk
2 changes: 1 addition & 1 deletion docs/assets/navigation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

Large diffs are not rendered by default.

Loading

0 comments on commit cbd50c6

Please sign in to comment.