|
30 | 30 |
|
31 | 31 | [TronWeb](https://tronweb.network) aims to deliver a unified, seamless development experience influenced by Ethereum's [Web3](https://github.com/ethereum/web3.js/) implementation. We have taken the core ideas and expanded upon them to unlock the functionality of TRON's unique feature set along with offering new tools for integrating DApps in the browser, Node.js and IoT devices. |
32 | 32 |
|
33 | | -<font color=red>Please note that this version is an experimental beta version.</font> To better support its use in TypeScript projects, we have rewritten the entire library in TypeScript. And to make the TronWeb API more secure and consistent, there are some breaking changes. <font color=red>Please check out [<font color=red>6.x API documentation</font>](https://tronweb.network/docu/docs/intro/)</font> for detailed changes so you can start using the new TypeScript version of TronWeb early. Any questions or feedback are welcome [here](https://github.com/tronprotocol/tronweb/issues/new). |
| 33 | +To better support its use in TypeScript projects, we have rewritten the entire library in TypeScript. And to make the TronWeb API more secure and consistent, there are some breaking changes. <font color=red>Please check out [<font color=red>6.x API documentation</font>](https://tronweb.network/docu/docs/intro/)</font> for detailed changes so you can start using the new TypeScript version of TronWeb early. Any questions or feedback are welcome [here](https://github.com/tronprotocol/tronweb/issues/new). |
34 | 34 |
|
35 | 35 | **Project scope** |
36 | 36 |
|
@@ -64,11 +64,11 @@ For recent history, see the [CHANGELOG](https://github.com/tronprotocol/tronweb/ |
64 | 64 |
|
65 | 65 | ### Node.js |
66 | 66 | ```bash |
67 | | -npm install tronweb@beta |
| 67 | +npm install tronweb |
68 | 68 | ``` |
69 | 69 | or |
70 | 70 | ```bash |
71 | | -yarn add tronweb@beta |
| 71 | +yarn add tronweb |
72 | 72 | ``` |
73 | 73 |
|
74 | 74 | ### Browser |
@@ -118,7 +118,7 @@ First of all, in your typescript file, define TronWeb: |
118 | 118 | import { TronWeb, utils as TronWebUtils, Trx, TransactionBuilder, Contract, Event, Plugin } from 'tronweb'; |
119 | 119 | ``` |
120 | 120 |
|
121 | | -Please note that this is not the same as v5.x. If you want to dive into more differences, check out [migration guide](https://tronweb.network/docu/docs/6.0.0-beta.3/Migrating%20from%20v5) |
| 121 | +Please note that this is not the same as v5.x. If you want to dive into more differences, check out [migration guide](https://tronweb.network/docu/docs/6.0.0/Migrating%20from%20v5) |
122 | 122 |
|
123 | 123 | When you instantiate TronWeb you can define |
124 | 124 |
|
@@ -170,6 +170,15 @@ const tronWeb = new TronWeb({ |
170 | 170 | ) |
171 | 171 | ``` |
172 | 172 |
|
| 173 | +## Integrity Check |
| 174 | + |
| 175 | +The package files will be signed using a GPG key pair, and the correctness of the signature will be verified using the following public key: |
| 176 | + |
| 177 | +``` |
| 178 | +pub: 4371 AB85 E5A5 8FAA 88AD 7FDF 9945 DBCA 8C4B B810 |
| 179 | + |
| 180 | +``` |
| 181 | + |
173 | 182 | ## Contributions |
174 | 183 |
|
175 | 184 | In order to contribute you can |
|
0 commit comments