feat: implement onboarding flow with mnemonic generation and wallet integration#243
feat: implement onboarding flow with mnemonic generation and wallet integration#243Robinaditya1045 wants to merge 2 commits intofedimint:mainfrom
Conversation
|
|
Please review @MrImmortal09 |
| type ParsedInviteCode = { | ||
| federation_id: string | ||
| url: string | ||
| } | ||
|
|
||
| type ParsedBolt11Invoice = { | ||
| amount: number | ||
| expiry: number | ||
| memo: string | ||
| } | ||
|
|
||
| type PreviewFederation = { | ||
| federation_id: string | ||
| config: { | ||
| global: { | ||
| meta?: { | ||
| federation_name?: string | ||
| } | ||
| consensus_version: { | ||
| major: number | ||
| minor: number | ||
| } | ||
| api_endpoints: Record<string, { name?: string; url?: string }> | ||
| } | ||
| modules: Record<string, { kind?: string }> | ||
| } | ||
| } | ||
|
|
There was a problem hiding this comment.
Import these from @fedimint/types
There was a problem hiding this comment.
|
Thanks for the contribution! nice PR overall. |
Sure |

closes #237