Skip to content

Commit

Permalink
Fix merge conflicts between master and v0.6.0 (#255)
Browse files Browse the repository at this point in the history
* 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 <jayasudha.jayakumaran@coinbase.com>
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>
  • Loading branch information
4 people authored Sep 18, 2024
1 parent 96fe761 commit 390c067
Show file tree
Hide file tree
Showing 7 changed files with 332 additions and 36 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
### Breaking
- `Asset#toAtomicAmount` now returns a BigInt instead of a Decimal

## [0.5.1] - 2024-09-12

### Fixed
- Fixed a bug that blocked arbitrum mainnet wallets from being created

## [0.5.0] - 2024-09-11

- Add Arbitrum-Mainnet support for Native transfers.
Expand Down
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ module.exports = {
maxWorkers: 1,
coverageThreshold: {
"./src/coinbase/**": {
branches: 78,
branches: 77,
functions: 90,
statements: 85,
lines: 88,
lines: 87,
},
},
};
162 changes: 152 additions & 10 deletions quickstart-template/package-lock.json

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

6 changes: 4 additions & 2 deletions quickstart-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"start": "node index.js",
"start-trade-assets": "node trade-assets.js",
"start-mass-payout": "node mass-payout.js",
"start-webhook": "node webhook.js"
"start-webhook": "node webhook.js",
"start-register-basename": "node register-basename.js"
},
"keywords": [],
"author": "",
Expand All @@ -16,6 +17,7 @@
"dependencies": {
"@coinbase/coinbase-sdk": "^0.6.0",
"csv-parse": "^5.5.6",
"csv-writer": "^1.6.0"
"csv-writer": "^1.6.0",
"viem": "^2.21.6"
}
}
Loading

0 comments on commit 390c067

Please sign in to comment.