Skip to content

Commit 0451ffe

Browse files
Merge pull request #556 from PolymathNetwork/chore/usdsto-minprice
chore(issuer): update minimum value for usdsto token price
2 parents 0d18304 + 388b641 commit 0451ffe

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/polymath-issuer/src/pages/sto/components/ConfigureSTOForm/forms/USDTieredSTO/InvestmentTiers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ export default class InvestmentTiers extends React.Component<Props, State> {
239239
<FormItem.Input
240240
FormikComponent={Field}
241241
component={NumberInput}
242-
min={1}
243-
maxDecimals={3}
242+
min={0.01}
243+
maxDecimals={2}
244244
placeholder="Enter amount"
245245
unit="USD"
246246
useBigNumbers

packages/polymath-issuer/src/pages/sto/components/ConfigureSTOForm/forms/USDTieredSTO/TierModal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ class TierModal extends Component {
144144
<FormItem.Input
145145
component={NumberInput}
146146
placeholder="Enter amount"
147-
min={1}
148-
maxDecimals={3}
147+
min={0.01}
148+
maxDecimals={2}
149149
unit="USD"
150150
useBigNumbers
151151
/>

0 commit comments

Comments
 (0)