mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
33cc8d587a
* replaced all the instances of collectibles with nfts * updated actions * updated e2e seeder * updated confirm Approve test * updated test dapp change * updated test dapp change * nit fix * nit fix * updated casing and snapshots * updated casinG * added migrations * updated ,igration * updated 078.test * updated tests for 078 migration * updated migration * updated 078 index.js |
||
---|---|---|
.. | ||
token-list | ||
token-search | ||
import-token.component.js | ||
import-token.container.js | ||
import-token.stories.js | ||
import-token.test.js | ||
index.js | ||
index.scss | ||
README.mdx |
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'; const store = configureStore(testData); const { metamask } = store.getState(); export const PersonalAddress = () => <code>{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} />