Commit Graph

9 Commits

Author SHA1 Message Date
Sameh Abouel-saad
087720f61f feat: add default keypair creation and selection functionality 2025-05-28 12:48:28 +03:00
Sameh Abouel-saad
beba294054 refactor: migrate extension to TypeScript and add Material-UI components 2025-05-26 23:01:47 +03:00
13945a8725 feat: Add WASM support and browser extension infrastructure
- Add WASM build target and dependencies for all crates.
- Implement IndexedDB-based persistent storage for WASM.
- Create browser extension infrastructure (UI, scripting, etc.).
- Integrate Rhai scripting engine for secure automation.
- Implement user stories and documentation for the extension.
2025-05-16 15:31:53 +03:00
03533f9216 tests: Add browser WASM tests for evm_client 2025-05-16 02:06:41 +03:00
73233ec69b feat: Add SessionManager for ergonomic key management 2025-05-16 00:15:07 +03:00
791752c3a5 Feat: simplify vault API and update docs 2025-05-15 22:28:37 +03:00
cea2d7e655 feat: Refactor kvstore and vault to use features and logging
- Remove hardcoded dependencies in kvstore Cargo.toml; use features
  instead. This allows for more flexible compilation for different
  targets (native vs. WASM).
- Improve logging in vault crate using the `log` crate. This makes
  debugging easier and provides more informative output during
  execution.  Native tests use `env_logger`, WASM tests use
  `console_log`.
- Update README to reflect new logging best practices.
- Add cfg attributes to native and wasm modules to improve clarity.
- Update traits.rs to specify Send + Sync behavior expectations.
2025-05-15 16:42:19 +03:00
7d7f94f114 Feat: add vault module 2025-05-15 15:29:47 +03:00
9dce815daa feat: Add basic project structure and initial crates
- Added basic project structure with workspace and crates:
  `kvstore`, `vault`, `evm_client`, `cli_app`, `web_app`.
- Created initial `Cargo.toml` files for each crate.
- Added placeholder implementations for key components.
- Included initial documentation files (`README.md`, architecture
  docs, repo structure).
- Included initial implementaion for kvstore crate(async API, backend abstraction, separation of concerns, WASM/native support, testability)
- Included native and browser tests for the kvstore crate
2025-05-13 20:24:29 +03:00