Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,21 @@

## Unreleased

## [0.3.0] - 2024-09-05

### Added

- Add support for list address transactions.
- Add support for exporting the private key of a `WalletAddress`
- Add support for creating arbitrary payload signatures.
- Add support for invoking Smart Contracts using MPC and Developer-managed Wallets.

## [0.2.0]

### Added

- USDC Faucet support on Base Sepolia
- Improved error mesasges for `InternalError`
- Improved error messages for `InternalError`

## [0.1.1] - 2024-08-27

Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
"./src/coinbase/**": {
branches: 80,
functions: 90,
statements: 90,
statements: 85,
lines: 90,
},
},
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "ISC",
"description": "Coinbase Platform SDK",
"repository": "https://github.com/coinbase/coinbase-sdk-nodejs",
"version": "0.2.0",
"version": "0.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion quickstart-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"license": "ISC",
"type": "module",
"dependencies": {
"@coinbase/coinbase-sdk": "^0.1.0",
"@coinbase/coinbase-sdk": "^0.3.0",
"csv-parse": "^5.5.6",
"csv-writer": "^1.6.0"
}
Expand Down
Loading