Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 6 additions & 61 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ tempfile = "3.0"
thiserror = "2.0.12"
tokio = { version = "1.40", features = ["full"] }
tokio-stream = "0.1"
toml = "0.9.2"
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["trace", "cors"] }
tracing = "0.1"
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ sequenceDiagram

The admin API enables authorized wallet addresses to perform administrative operations using EIP-712 signed messages. This provides secure, decentralized admin access without shared secrets.

**Setup:** Configure admin addresses in your bootstrap config or TOML config:
**Setup:** Configure admin addresses in your seed overrides JSON:

```json
{
Expand Down Expand Up @@ -1101,8 +1101,8 @@ git clone https://github.com/openintentsframework/oif-contracts.git
cd oif-contracts && forge build && cd ..

# 1. Initialize configuration and load it
cargo run -p solver-demo -- init new config/demo.toml
cargo run -p solver-demo -- init load config/demo.toml --local
cargo run -p solver-demo -- init new config/demo.json
cargo run -p solver-demo -- init load config/demo.json --local

# 2. Start local environment (Anvil chains)
cargo run -p solver-demo -- env start
Expand Down Expand Up @@ -1295,9 +1295,10 @@ The demo tool generates files in the `.oif-demo/requests/` directory following a

The demo tool provides a complete workflow for setting up a test environment:

1. **Initialize Configuration** (`init new` / `init load`):
1. **Initialize Configuration** (`init new` / `init load` / `init load-storage`):

- Creates or loads solver configuration
- Can load runtime config directly from storage backend (`init load-storage`)
- Sets up network definitions and RPC endpoints
- Configures account keys and signing
- Stores session data in `.oif-demo/` directory
Expand Down
Loading