mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
d1cea85f33
* Rename `provider` to `providerConfig` The network controller `provider` state has been renamed to `providerConfig`. This better reflects what this state is, and makes this controller more closely aligned with the core network controller. All references to the provider configuration have been updated to prefer `providerConfig` over `provider`, to make the distinction clear between a provider and provider config. Closes #18902 * Add migration
73 lines
2.0 KiB
JavaScript
73 lines
2.0 KiB
JavaScript
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import configureStore from '../../../store/store';
|
|
import testData from '../../../../.storybook/test-data';
|
|
import InteractiveReplacementTokenModal from '.';
|
|
|
|
const customData = {
|
|
...testData,
|
|
metamask: {
|
|
...testData.metamask,
|
|
mmiConfiguration: {
|
|
portfolio: {
|
|
enabled: true,
|
|
url: 'https://dev.metamask-institutional.io/',
|
|
},
|
|
features: {
|
|
websocketApi: true,
|
|
},
|
|
custodians: [
|
|
{
|
|
refreshTokenUrl:
|
|
'https://saturn-custody.dev.metamask-institutional.io/oauth/token',
|
|
name: 'saturn-dev',
|
|
displayName: 'Saturn Custody',
|
|
enabled: true,
|
|
mmiApiUrl: 'https://api.dev.metamask-institutional.io/v1',
|
|
websocketApiUrl:
|
|
'wss://websocket.dev.metamask-institutional.io/v1/ws',
|
|
apiBaseUrl:
|
|
'https://saturn-custody.dev.metamask-institutional.io/eth',
|
|
iconUrl:
|
|
'https://saturn-custody-ui.dev.metamask-institutional.io/saturn.svg',
|
|
isNoteToTraderSupported: true,
|
|
},
|
|
],
|
|
},
|
|
custodyAccountDetails: {
|
|
'0xAddress': {
|
|
address: '0xAddress',
|
|
details: 'details',
|
|
custodyType: 'testCustody - Saturn',
|
|
custodianName: 'saturn-dev',
|
|
},
|
|
},
|
|
providerConfig: {
|
|
type: 'test',
|
|
},
|
|
selectedAddress: '0xAddress',
|
|
isUnlocked: true,
|
|
interactiveReplacementToken: {
|
|
oldRefreshToken: 'abc',
|
|
url: 'https://saturn-custody-ui.dev.metamask-institutional.io',
|
|
},
|
|
preferences: {
|
|
useNativeCurrencyAsPrimaryCurrency: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
const store = configureStore(customData);
|
|
|
|
export default {
|
|
title: 'Components/Institutional/InteractiveReplacementToken-Modal',
|
|
decorators: [(story) => <Provider store={store}>{story()}</Provider>],
|
|
component: InteractiveReplacementTokenModal,
|
|
};
|
|
|
|
export const DefaultStory = (args) => (
|
|
<InteractiveReplacementTokenModal {...args} />
|
|
);
|
|
|
|
DefaultStory.storyName = 'InteractiveReplacementTokenModal';
|