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.
37 lines
867 B
37 lines
867 B
import React from 'react';
|
|
import testData from '../../../../.storybook/test-data';
|
|
import SignatureRequest from './signature-request.component';
|
|
|
|
const primaryIdentity = Object.values(testData.metamask.identities)[0];
|
|
|
|
const containerStyle = {
|
|
width: '357px',
|
|
};
|
|
|
|
export default {
|
|
title: 'Signature Request',
|
|
};
|
|
|
|
export const FirstLook = () => {
|
|
return (
|
|
<div style={containerStyle}>
|
|
<SignatureRequest
|
|
txData={{
|
|
msgParams: {
|
|
data: JSON.stringify({
|
|
domain: {
|
|
name: 'happydapp.website',
|
|
},
|
|
message: {
|
|
string: 'haay wuurl',
|
|
number: 42,
|
|
},
|
|
}),
|
|
origin: 'https://happydapp.website/governance?futarchy=true',
|
|
},
|
|
}}
|
|
fromAccount={primaryIdentity}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|