Skip to content
Open
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ First, ensure that the following are installed globally on your machine:
Then, from the root folder run:

- `yarn install` to install dependencies
- `yarn build` to build the package
- `yarn build:packages` to build the packages
- `yarn dev` to start the example app and build the package with hot reloading
- `yarn test` to ensure that the test suite runs correctly

### Navigating the codebase

The SDK is built using yarn workspaces.
The SDK is built using yarn workspaces.

- `packages/account-sdk` - The main package that exports the SDK
- `examples/test-app` - An example React app that is used to test the SDK in a real browser environment
Expand Down
2 changes: 1 addition & 1 deletion packages/account-sdk/src/core/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import pkg from '../../package.json' with { type: 'json' };
import pkg from '../../package.json' assert { type: 'json' };

export const CB_KEYS_URL = 'https://keys.coinbase.com/connect';
export const CB_WALLET_RPC_URL = 'https://rpc.wallet.coinbase.com';
Expand Down