Skip to content

Latest commit

 

History

History

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Examples

Creating your first user operation

cd user-operation
cargo run --example user_operation

Simple account - create

cd simple-account
SEED_PHRASE="test test test test test test test test test test test junk" BUNDLER_URL="http://127.0.0.1:3000" cargo run --example create

Simple account - deposit funds to entrypoint

cd simple-account
SEED_PHRASE="test test test test test test test test test test test junk" PROVIDER_URL="http://127.0.0.1:3000" cargo run --example deposit

Simple account - transfer

cd simple-account
SEED_PHRASE="test test test test test test test test test test test junk" BUNDLER_URL="http://127.0.0.1:3000" cargo run --example transfer

Storage - memory

cd storage
PROVIDER_URL="http://127.0.0.1:8545" cargo run --example memory

Storage - database

cd storage
PROVIDER_URL="http://127.0.0.1:8545" cargo run --example database