mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +01:00
5802805597
Co-authored-by: Gregório Granado Magalhães <greg.magalhaes@gmail.com> Co-authored-by: George Marshall <georgewrmarshall@gmail.com> Co-authored-by: georgewrmarshall <george.marshall@consensys.net> Co-authored-by: Ariella Vu <20778143+digiwand@users.noreply.github.com> Co-authored-by: brad-decker <bhdecker84@gmail.com>
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
import SignatureRequestMessage from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/SignatureRequestSIWE/SignatureRequestMessage',
|
|
id: __filename,
|
|
argTypes: {
|
|
data: {
|
|
controls: 'object',
|
|
},
|
|
},
|
|
args: {
|
|
data: [
|
|
{ label: 'Label:', value: 'value' },
|
|
{
|
|
label: 'Message:',
|
|
value:
|
|
'Click to sign in and accept the Terms of Service: https://community.metamask.io/tos',
|
|
},
|
|
{
|
|
label: 'URI:',
|
|
value: 'http://localhost:8080',
|
|
},
|
|
{
|
|
label: 'Version:',
|
|
value: '1',
|
|
},
|
|
{
|
|
label: 'Chain ID:',
|
|
value: 1,
|
|
},
|
|
{
|
|
label: 'Nonce:',
|
|
value: 'STMt6KQMwwdOXE306',
|
|
},
|
|
{
|
|
label: 'Issued At:',
|
|
value: '2022-03-18T21:40:40.823Z',
|
|
},
|
|
{
|
|
label: 'Resources: 2',
|
|
value:
|
|
'ipfs://Qme7ss3ARVgxv6rXqVPiikMJ8u2NLgmgszg13pYrDKEoiu\nhttps://example.com/my-web2-claim.json',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <SignatureRequestMessage {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|