+ {clickTokenData && (
+
+
+
+ Note: Example prefilled with ClickToken (ERC20)
+ vault identifier for testnet
+
+
+ )}
+
+
+
+ setVaultIdentifier(e.target.value)}
+ placeholder={
+ clickTokenData
+ ? clickTokenData.vaultIdentifier
+ : "e.g., A.dfc20aee650fcbdf.EVMVMBridgedToken_xxx.Vault"
+ }
+ className={`w-full px-4 py-3 rounded-lg border font-mono text-sm transition-all duration-200
+ ${
+ darkMode
+ ? `bg-gray-900/50 border-white/10 text-white placeholder-gray-500
+ focus:border-flow-primary/50`
+ : `bg-white border-black/10 text-black placeholder-gray-400
+ focus:border-flow-primary/50`
+ } outline-none`}
+ />
+
+
+
+
+ setAmount(e.target.value)}
+ placeholder="e.g., 1 or 1.5"
+ className={`w-full px-4 py-3 rounded-lg border font-mono text-sm transition-all duration-200
+ ${
+ darkMode
+ ? `bg-gray-900/50 border-white/10 text-white placeholder-gray-500
+ focus:border-flow-primary/50`
+ : `bg-white border-black/10 text-black placeholder-gray-400
+ focus:border-flow-primary/50`
+ } outline-none`}
+ />
+
+
+
+
+
setDecimals(e.target.value)}
+ placeholder="e.g., 18"
+ className={`w-full px-4 py-3 rounded-lg border font-mono text-sm transition-all duration-200
+ ${
+ darkMode
+ ? `bg-gray-900/50 border-white/10 text-white placeholder-gray-500
+ focus:border-flow-primary/50`
+ : `bg-white border-black/10 text-black placeholder-gray-400
+ focus:border-flow-primary/50`
+ } outline-none`}
+ />
+
+ ERC20 decimals (typically 18). Amount will be converted to Wei
+ automatically.
+
+
+
+
+
+
+
+
+
+