Skip to content

Commit

Permalink
chore: update text for minter address
Browse files Browse the repository at this point in the history
  • Loading branch information
canhtrinh committed Dec 20, 2023
1 parent 974ab98 commit 5a6834a
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

2 comments on commit 5a6834a

@vercel
Copy link

@vercel vercel bot commented on 5a6834a Dec 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

axelar-ui – ./packages/ui

axelar-ui-axelar-network.vercel.app
axelar-ui-git-main-axelar-network.vercel.app
ui.axelar.dev
axelar-ui.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 5a6834a Dec 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

axelar-registry – ./apps/registry

axelar-registry-git-main-axelar-network.vercel.app
axelar-registry-axelar-network.vercel.app

Please sign in to comment.