tinkr 0.0.43

Tinkr is a web framework for quickly building full-stack web applications with Leptos.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod adapter;
pub mod connect_button;
pub mod context;
pub mod wallet;

pub use connect_button::WalletConnectButton;
pub use wallet::{MetaMaskWallet, WalletState};

#[cfg(not(feature = "ssr"))]
pub use context::{MetaMaskContext, provide_metamask_context, use_metamask_context};

pub mod checksum;
pub mod verify_save;