wallet_standard_wallets 0.1.13

A collection of solana wallet implementations primarily used for testing.
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/readme.md"))]

pub use memory::*;

mod memory;

pub mod prelude {
	pub use wallet_standard::prelude::*;
	pub use wasm_client_solana::prelude::*;
}