NeoRust GUI Documentation - v0.4.2
    Preparing search index...

    Variable useWalletStoreConst

    useWalletStore: UseBoundStore<
        Write<
            WithDevtools<StoreApi<WalletState>>,
            StorePersist<
                WalletState,
                {
                    wallets: {
                        accounts: Account[];
                        id: string;
                        isDefault: boolean;
                        isOpen: boolean;
                        name: string;
                        path: string;
                        scrypt: { n: number; p: number; r: number };
                        version: string;
                    }[];
                },
            >,
        >,
    > = ...