Skip to content

platonfloria/leptos-ethereum-provider

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EthereumProvider

Running the example

NOTE: if you are targeting wasm32-unknown-unknown on aarch64 (Macbook M1/M2), remember to ensure rust isn't installed via homebrew, use rustup. I've had so many errors via the homebrew install for wasm32 targets.

rustup toolchain install nightly
rustup target add wasm32-unknown-unknown
cargo install --locked wasm-bindgen-cli

# First, install cargo dependencies (if you don't have them).
cargo install trunk

# Then start the trunk server for the example file
cd examples/simple
trunk serve

Usage

Add to your cargo.toml

leptos-ethereum-provider = { git = "https://github.com/platonfloria/leptos-ethereum-provider" }

Use the provider as a component like so:

use leptos::*;
use leptos_ethereum_provider::{
    chain, AccountLabel, ConnectButton, EthereumContextProvider, SwitchNetworkButton,
};


#[component]
pub fn App(cx: Scope) -> impl IntoView {
    view! { cx,
        <div>
            <EthereumContextProvider>
                <ConnectButton/>
                <SwitchNetworkButton chain=chain::ethereum()/>
                <SwitchNetworkButton chain=chain::avalanche_testnet()/>
                <AccountLabel/>
            </EthereumContextProvider>
        </div>
    }
}


fn main() {
    mount_to_body(|cx| view! { cx, <App/> })
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages