Skip to main content

AddressInput

Display an Ethereum address input that validates the address format, resolves ENS domains, and shows their avatars.

Also shows a blockie image for each address.

AddressInput Example

Importโ€‹

import { AddressInput } from "$lib/components/scaffold-eth";

Usageโ€‹

let address = $state("");

<AddressInput bind:value={address} placeholder="Input your address" />;

Propsโ€‹

PropTypeDefault ValueDescription
valuestringundefinedThe currently inputted value โ€” might be an address, ENS domain, something in the middle, or none of the above.
onchange (optional)functionundefinedA callback invoked when the data in the address input changes.
placeholder (optional)stringundefinedThe string that will be rendered before address input has been entered.
name (optional)stringundefinedHelps identify the data being sent if AddressInput is submitted into a form.
disabled (optional)booleanfalseIf true, sets the address input un-clickable and unusable.

Bindable Propsโ€‹

  • value: The currently inputted value, not guaranteed to be an address or ENS domain.
  • address: Equal to value if it's an address, otherwise undefined.