Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos in documentation files #528

Merged
merged 3 commits into from
Dec 23, 2024
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,6 @@ sudo ln -s /opt/homebrew/lib/libgmp.10.dylib /usr/local/lib/

BandChain is licensed under the terms of the GPL 3.0 License unless otherwise specified in the LICENSE file at module's root.

We highly encourage participation from the community to help with D3N development. If you are interested in developing with D3N or have suggestions for protocol improvements, please open an issue, submit a pull request, or [drop as a line].
We highly encourage participation from the community to help with D3N development. If you are interested in developing with D3N or have suggestions for protocol improvements, please open an issue, submit a pull request, or [drop us a line].

[drop us a line]: mailto:[email protected]
2 changes: 1 addition & 1 deletion cylinder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ type Config struct {
MaxTry uint64 // The maximum number of tries to submit a report transaction
MinDE uint64 // The minimum number of DE
GasAdjustStart float64 // The start value of gas adjustment
GasAdjustStep float64 // The increment step of gad adjustment
GasAdjustStep float64 // The increment step of gas adjustment
RandomSecret tss.Scalar // The secret value that is used for random D,E
CheckingDEInterval time.Duration // The interval for updating DE
}
Expand Down
2 changes: 1 addition & 1 deletion yoda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Yoda is a program that is used by BandChain's validator nodes to automatically f

Since a subset of validators who are selected for a data request must return the data they received from running the specified data source(s), each of them have to send a `MsgReportData` transaction to BandChain in order to fulfill their duty.

Although the transaction can be sent manually by user, it is not convenient, and would be rather time-consuming. Furthermore, most data providers already have APIs that can be used to query data automatically by another software. Therefore, we have developed Yoda to help validators to automatically query data from data providers by executing data source script, then submit the result to fulfill the request.
Although the transaction can be sent manually by the user, it is not convenient, and would be rather time-consuming. Furthermore, most data providers already have APIs that can be used to query data automatically by another software. Therefore, we have developed Yoda to help validators to automatically query data from data providers by executing data source script, then submit the result to fulfill the request.

For more detail about Yoda, please follows this [link](https://docs.bandchain.org/node-validators/yoda)

Expand Down
Loading