account
Account Management Module
account.rs
account.rs Imports and Type Definitions
use std::collections::HashSet;
type Address = String;State Structure
#[derive(Default)]
struct State {
accounts: HashSet<Address>,
}Thread-local State
Create Account Function
Get Accounts Function
Last updated