Skip to content
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
4 changes: 2 additions & 2 deletions packages/core/stellar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ Import the contract type(s) (for example, `fungible`) that you want to use from
import { fungible } from '@openzeppelin/wizard-stellar';
```

To generate the source code for an Fungible contract with all of the default settings:
To generate the source code for a Fungible contract with all of the default settings:
```js
const contract = fungible.print();
```

To generate the source code for an Fungible contract with some custom settings:
To generate the source code for a Fungible contract with some custom settings:
```js
const contract = fungible.print({
pausable: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/stellar/src/fungible.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ function addPremint(c: ContractBuilder, amount: string) {
}

/**
* Calculates the initial supply that would be used in an Fungible contract based on a given premint amount and number of decimals.
* Calculates the initial supply that would be used in a Fungible contract based on a given premint amount and number of decimals.
*
* @param premint Premint amount in token units, may be fractional
* @param decimals The number of decimals in the token
Expand Down
Loading