You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,17 @@
2
2
3
3
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
* feat: Get Methods for Single nodes ([#121](https://github.com/thenewboston-developers/thenewboston-js/issues/121)) ([be17ed9](https://github.com/thenewboston-developers/thenewboston-js/commit/be17ed9d1f50d6a439bbfd4efb1506b324b384e0))
After that, you should see a new folder named `thenewboston-js` in your current working directory. Navigate into that project and you're ready to go!
18
-
19
-
### Development
20
-
21
-
Before you are able to access any of the npm commands, you must first run `npm install` or `npm i` to get all of the modules loaded into your local project.
22
-
23
-
### Building
24
-
25
-
If you are ready to test out your changes, run `npm run build`. After that, you should see the CommonJS module located in the `dist` directory. You can create a `dev.js` file with something like the following code if you want to test out your changes:
26
-
27
-
```js
28
-
consttnb=require("./"); // loads the module from the path in the `package.json`
29
-
30
-
asyncfunctionmain() {
31
-
/* Code! */
32
-
}
33
-
34
-
main();
35
-
```
36
-
37
8
### Contributing
38
9
39
-
Create your fork / branch from the development branch, All pull requests to be made to development branch for review.
10
+
Find out how you can contribute [here](https://github.com/thenewboston-developers/thenewboston-js/blob/master/docs/CONTRIBUTING.md).
40
11
41
12
### Testing
42
13
43
14
Some day...
44
15
45
16
## Documentation
46
17
47
-
Check out the [documentation here](docs/index.md).
18
+
Check out the [documentation here](https://github.com/thenewboston-developers/thenewboston-js/blob/master/docs/index.md).
48
19
49
20
## Community
50
21
@@ -70,6 +41,7 @@ All donations will go to thenewboston to help fund the team to continue to devel
After that, you should see a new folder named `thenewboston-js` in your current working directory. Navigate into that project and you're ready to go!
14
+
15
+
### Development
16
+
17
+
Before you are able to access any of the npm commands, you must first run `npm install` or `npm i` to get all of the modules loaded into your local project.
18
+
19
+
### Building
20
+
21
+
If you are ready to test out your changes, run `npm run build`. After that, you should see the CommonJS module located in the `dist` directory. You can create a `dev.js` file with something like the following code if you want to test out your changes:
22
+
23
+
```js
24
+
consttnb=require("./"); // loads the module from the path in the `package.json`
25
+
26
+
asyncfunctionmain() {
27
+
/* Code! */
28
+
}
29
+
30
+
main();
31
+
```
32
+
33
+
### Contributing
34
+
35
+
Create your fork / branch from the development branch, All pull requests to be made to development branch for review.
Copy file name to clipboardExpand all lines: src/bank.ts
+32-1Lines changed: 32 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ export class Bank extends ServerNode {
26
26
* @param trust the trust of the the server
27
27
* @param account the account for the server node in which the account number is the node identifier and the signing key is the node identifier signing key
0 commit comments