1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/ui/pages/import-token
Nidhi Kumari 5bc0ba7f3a
Move "Import NFTs" to Modal (#19806)
* moved import nft to modal

* fixed modal state

* updated port-nft-popup

* updated onChange for import nft modal

* updated tests

* updated tests

* updated tests

* added story and updated spec file

* updated spec file

* updated spec file

* updated spec file for import-nft

* added focus to form field

* added autofocus to tokenId
2023-07-14 21:48:41 +05:30
..
token-list Added storybook check to CI (#17092) 2023-01-21 00:57:46 +05:30
token-search Added storybook check to CI (#17092) 2023-01-21 00:57:46 +05:30
import-token.component.js Move "Import NFTs" to Modal (#19806) 2023-07-14 21:48:41 +05:30
import-token.container.js Move "Import NFTs" to Modal (#19806) 2023-07-14 21:48:41 +05:30
import-token.stories.js Migrate network configurations (previously frequentRpcListDetail) from PreferencesController to NetworkController (#17421) 2023-03-09 15:00:28 -06:00
import-token.test.js Rename provider to providerConfig (#18907) 2023-05-02 13:23:20 -02:30
index.js
index.scss NFT: Replaced all the instances of collectibles with NFTs (#17741) 2023-02-17 00:53:29 +05:30
README.mdx devDeps: storybook@7 (#19092) 2023-05-18 11:07:42 +09:00

import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';

import ImportToken from './import-token.component';

import testData from '../../../.storybook/test-data';
import configureStore from '../../store/store';

export const PersonalAddress = () => <code>{configureStore(testData).getState().metamask.selectedAddress}</code>;

# ImportToken

The `ImportToken` component allows a user to import custom tokens in one of two ways:

1. By searching for one
2. By importing one by `Token Contract Address`

<Canvas>
  <Story id="pages-swaps-importtoken--default-story" />
</Canvas>

## Example inputs

An example input that works, to enable the `Add custom token` button is `0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA`.

### Personal address error

To show the personal address detected error, input the address <PersonalAddress/> in the `Token Contract Address` field.

## Props

<ArgsTable of={ImportToken} />