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

chore: fix some comments #873

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ This includes following key features:

- Transaction log including extensive filter options
- Smart Contract verification
- Ressource management and staking (CPU, NET, RAM)
- Resource management and staking (CPU, NET, RAM)
- REX staking / unstaking / savings
- Account power up
- Ressource trading (RAM)
- Resource trading (RAM)
- Multi-Signature (MSIG) setup and management
- Wallet functionality (non custodial), including transafer
- Permission and key managament (active / onwer)
- Wallet functionality (non custodial), including transfer
- Permission and key management (active / owner)
- Chain and Block Provider (BP) statistics
- BP Voting and Governance
- Premium Name bids
Expand Down
2 changes: 1 addition & 1 deletion src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Add another endpoint resource:
* - add a unique file in src/api/
* - for new method, export and import here, add to api export
* - for existing method enpoint, export from service file and update the import statement here
* - for existing method endpoint, export from service file and update the import statement here
*/
import {
getHyperionAccountData,
Expand Down
2 changes: 1 addition & 1 deletion src/components/validators/ValidatorData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default defineComponent({
}
).rows[0].bpay_rate;
// 2 shares per top 21 bp
// 1 share for standby up untill 42 bps
// 1 share for standby up until 42 bps
top21pay24h.value =
(((payrate.value / 100000) * supply.value) / 365 / sharecount) * 2;
}
Expand Down
2 changes: 1 addition & 1 deletion src/config/chains/eos/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const THEME = {
'color-footer-background': '#000000',
};

// create vars for map colors (border, backround, countries, popup, text, popup)
// create vars for map colors (border, background, countries, popup, text, popup)

export default class EOS extends BaseChain {
getName(): string {
Expand Down