Skip to content

Commit

Permalink
Merge branch 'main' into env/testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
canhtrinh committed Dec 20, 2023
2 parents 0797ac8 + 5a6834a commit 0f4aabe
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const TokenSettings: FC = () => {
<Tooltip
position="right"
variant="info"
tip="This address will receive the minted tokens. It will also be able to mint, burn tokens and transfer operatorship."
tip="Ensure that you choose a secure minter address. This address will be able to mint the token on any chain."
>
<HelpCircleIcon className="text-info mr-1 h-[1em]" />
</Tooltip>
Expand All @@ -131,7 +131,7 @@ const TokenSettings: FC = () => {
</Label>
<ModalFormInput
id="minter"
placeholder="Enter token minter address"
placeholder="Enter a secure minter address"
onKeyDown={preventNonHexInput}
{...register("minter")}
/>
Expand All @@ -140,7 +140,9 @@ const TokenSettings: FC = () => {
)}
<FormControl>
<Label htmlFor="initialSupply">
Enter {isMintable ? "initial" : "total"} supply
{isMintable
? "Enter initial supply"
: "Enter total supply - This will be a fixed supply for the token"}
</Label>
<ModalFormInput
id="initialSupply"
Expand Down

0 comments on commit 0f4aabe

Please sign in to comment.