Crates.io | wallet_standard |
lib.rs | wallet_standard |
version | |
source | src |
created_at | 2024-09-12 14:54:26.315271 |
updated_at | 2024-10-13 11:44:19.231732 |
description | An implementation of the solana wallet standard in rust |
homepage | https://github.com/ifiokjr/wasm_solana |
repository | https://github.com/ifiokjr/wasm_solana |
max_upload_size | |
id | 1372844 |
Cargo.toml error: | TOML parse error at line 25, column 1 | 25 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
wallet_standard
An implementation of the solana wallet standard in rust.
To install you can used the following command:
cargo add wallet_standard
Or directly add the following to your Cargo.toml
:
[dependencies]
wallet_standard = "0.1" # replace with the latest version
Feature | Description |
---|---|
browser |
Enables the browser feature for the wallet_standard_browser crate. |
solana |
Enables the solana feature for the wallet_standard_solana crate. |
The Wallet Standard is a set of traits and conventions designed to improve the user experience and developer experience of wallets and applications for any blockchain.
This crate provides a Rust implementation of the Solana Wallet Standard, which aims to create a consistent interface for wallets and dApps to interact across different blockchain ecosystems. Here's a brief overview of how to use this crate:
All the traits can be imported using the prelude.
use wallet_standard::prelude::*;
A full example of how to use this crate can be found in the wallet_standard_browser crate and in the wallet_standard_wallets crate.