Skip to content

Commit 97351ae

Browse files
authored
Update readme, move common to config (#3)
1 parent a70fef9 commit 97351ae

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ It's main purpose is to show how to set up the SDK for Web or NodeJS application
55

66
## Installation
77

8+
First, update values in [consts.ts](./src/config/consts.ts) to match your environment.
9+
810
```bash
911
# Install dependencies
1012
yarn
1113

12-
# Test Bond Tx in node
13-
yarn test:node
14-
1514
# Test Bond Tx in browser
1615
yarn test:web
1716
```
17+
18+
### Notes
19+
20+
- This repo is in active development! Please use this as an example build and usage environment only.
21+
- In the future, we plan to update this so it may serve as a starter project!
File renamed without changes.
File renamed without changes.

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
SIGNING_KEY,
1010
CHAIN_ID,
1111
STORAGE_PATH,
12-
} from "../common";
12+
} from "./config";
1313

1414
export const submitBond = async (): Promise<void> => {
1515
const wrapperTxProps: WrapperTxProps = {

0 commit comments

Comments
 (0)