You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Niranjana Binoy
8fcdea7b56
|
2 years ago | |
---|---|---|
.. | ||
token-list | 2 years ago | |
token-search | 2 years ago | |
README.mdx | 2 years ago | |
import-token.component.js | 2 years ago | |
import-token.container.js | 2 years ago | |
import-token.stories.js | ||
import-token.test.js | 2 years ago | |
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="ui-pages-import-token-import-token-stories-js--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} />