EtherInput
Displays an input field for ETH/USD amount, with an option to convert between ETH and USD.
Importโ
import { EtherInput } from "$lib/components/scaffold-eth";
Usageโ
const ethAmount = $state(""); // A string in order to store large values precisely
<EtherInput bind:value={ethAmount} />;
Propsโ
Prop | Type | Default Value | Description |
---|---|---|---|
value | string | undefined | You can enter ether quantity or USD quantity, but value will always be stored in ETH. |
onchange | function | undefined | A callback invoked when the amount in the EtherInput changes. |
placeholder (optional) | string | undefined | The string that will be rendered when there is no input value. |
name (optional) | string | undefined | Helps identify the data being sent if EtherInput is submitted into a form. |
disabled (optional) | boolean | false | When set to true , changes input background color and border to have disabled styling. |
Bindable Propsโ
value
: The currently inputted value, in wei