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
{{ message }}
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2501,7 +2501,7 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
2501
2501
#### web3-validator
2502
2502
2503
2503
- The JSON schema conversion process now correctly assigns an id when the `abi.name` is not available, for example, in the case of public mappings. (#6981)
2504
-
-`browser` entry point that was pointing to an non-existing bundle file was removed from `package.json` (#7015)
2504
+
-`browser` entry point that was pointing to a non-existing bundle file was removed from `package.json` (#7015)
Copy file name to clipboardExpand all lines: docs/docs/guides/09_web3_config/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ title: 'Web3.js Config Guide'
6
6
7
7
## Configuration parameters
8
8
9
-
There is list of configuration params that can be set for modifying behavior of different functions in web3.js packages. Following is list of configuration options with details:
9
+
There is list of configuration parameters that can be set to modify the behavior of different functions in web3.js packages. Following is list of configuration options with details:
@@ -33,7 +33,7 @@ There is list of configuration params that can be set for modifying behavior of
33
33
34
34
## Global level Config
35
35
36
-
There is option of modifying any of above-mentioned configuration parameter at global level when instantiating Web3, and it will be available to all packages.
36
+
It is possible to modify any of the above-mentioned configuration parameter at the global level when instantiating a `Web3` object, and it will be available to all packages.
Copy file name to clipboardExpand all lines: docs/docs/guides/10_web3_eth/eth.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -674,7 +674,7 @@ async function test() {
674
674
675
675
## Conclusion
676
676
677
-
In this tutorial, we learned how to use different methods provied by the `web3-eth` package.
677
+
In this tutorial, we learned how to use different methods provided by the `web3-eth` package.
678
678
679
679
With this knowledge, you can start experimenting with the Ethereum blockchain. Keep in mind that this is just the beginning, and there is a lot more to learn about Ethereum and web3.js. So keep exploring and building, and have fun!
The [`format` function](/api/web3-utils/function/format) in the `web3-utils` package is used to convert data between equivalent formats. For example, bytes that are represented as a [`Uint8Array` type](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) can be formatted as a hexademical string (e.g. `"0xdd"`) or primitive JavaScript [`Number` types](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) can be formatted as [`BigInt` types](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt). The `format` function expects two required parameters, `schema` and `data`, and accepts a third optional parameter, `returnFormat`. The `schema` parameter is used to describe how the data should be interpreted. The `data` parameter represents the data that is to be formatted. The [`returnFormat` parameter](#return-formats) specifies how the data should be formatted.
249
+
The [`format` function](/api/web3-utils/function/format) in the `web3-utils` package is used to convert data between equivalent formats. For example, bytes that are represented as a [`Uint8Array` type](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) can be formatted as a hexadecimal string (e.g. `"0xdd"`) or primitive JavaScript [`Number` types](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) can be formatted as [`BigInt` types](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt). The `format` function expects two required parameters, `schema` and `data`, and accepts a third optional parameter, `returnFormat`. The `schema` parameter is used to describe how the data should be interpreted. The `data` parameter represents the data that is to be formatted. The [`returnFormat` parameter](#return-formats) specifies how the data should be formatted.
250
250
251
251
Here are some example that demonstrate the use of the `format` function:
Copy file name to clipboardExpand all lines: packages/web3-validator/CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -173,6 +173,6 @@ Documentation:
173
173
### Fixed
174
174
175
175
- The JSON schema conversion process now correctly assigns an id when the `abi.name` is not available, for example, in the case of public mappings. (#6981)
176
-
-`browser` entry point that was pointing to an non-existing bundle file was removed from `package.json` (#7015)
176
+
-`browser` entry point that was pointing to a non-existing bundle file was removed from `package.json` (#7015)
Copy file name to clipboardExpand all lines: packages/web3/CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -316,7 +316,7 @@ Documentation:
316
316
#### web3-validator
317
317
318
318
- The JSON schema conversion process now correctly assigns an id when the `abi.name` is not available, for example, in the case of public mappings. (#6981)
319
-
-`browser` entry point that was pointing to an non-existing bundle file was removed from `package.json` (#7015)
319
+
-`browser` entry point that was pointing to a non-existing bundle file was removed from `package.json` (#7015)
0 commit comments