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 typos in comment #250

Merged
merged 1 commit into from
Feb 3, 2025
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 packages/blue-api-sdk/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2089,7 +2089,7 @@ export type VaultAllocationHistorySupplyCapUsdArgs = {
/** Vault allocator */
export type VaultAllocator = {
__typename?: "VaultAllocator";
/** Allocator adress. */
/** Allocator address. */
address: Scalars["Address"]["output"];
/** Allocator since block number */
blockNumber: Scalars["BigInt"]["output"];
Expand Down
2 changes: 1 addition & 1 deletion packages/migration-sdk-viem/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ await sendTransaction(client, migrationBundle.tx());

The obtained bundle is made of:
- `actions`: The list of actions being performed by the bundler contract.
- `requirements`: The list of requirements that should be fullfilled for the tx to succeed. It is made of:
- `requirements`: The list of requirements that should be fulfilled for the tx to succeed. It is made of:
- `txs`: The list of transactions that should be executed before the main bundle.
- `type`: action performed (approval, ...)
- `args`: arguments used in the transaction
Expand Down
2 changes: 1 addition & 1 deletion packages/morpho-ts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ customFormat.short.of(1234.5678); // "1234.567"
customFormat.number.of(1234.5678); // "+1234.56"
customFormat.custom.of(1234.5678); // "$1234.56"

// Default options can be normally overriden
// Default options can be normally overridden
customFormat.short.digits(1).of(1234.5678); // "1234.5"
```

Expand Down