-
Notifications
You must be signed in to change notification settings - Fork 4
feat: remix web app with wallet details component #55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| * For NEAR blockchains only, the originally assigned public key of a wallet at the time of its creation. | ||
| */ | ||
| initialPublicKey: string; | ||
| initialPublicKey?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these are optional and not always returned, the type must show that. also not all are strings but fixed set of values (like EOA | SCA), could be also indicated by the type
8087d0e to
cd1c0b9
Compare
| }; | ||
|
|
||
| const Avatar = React.forwardRef< | ||
| React.ElementRef<typeof AvatarPrimitive.Root>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all components inside /ui folder are imported to the project with shadcn CLI tool: https://ui.shadcn.com/docs/cli
if they are not used right now, they will be used soon
bef2667 to
b67bf5d
Compare
yarn devin thecircle-demo-webappfolder)yarn storybook)Closes #28