Skip to content

Commit

Permalink
Add kettle info + update rpc method name
Browse files Browse the repository at this point in the history
  • Loading branch information
andytudhope committed Jan 25, 2024
1 parent f663776 commit 02e2cdb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docs/resources/rigil.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Other relevant resources may be found below:

`chainId: 16813125`

Rigil Kettle Address: `0x03493869959c866713c33669ca118e774a30a0e5`

Localhost Kettle Address: `0xb5feafbdd752ad52afb7e1bd2e40432a485bbb7f`

</List>

### RPC Key Differences
Expand All @@ -40,7 +44,7 @@ Executes a new message call immediately without creating a transaction on the bl
- `IsConfidential`: Set to true to execute as a confidential request and access the [`MEVM`](/technical/specs/rigil/precompiles) methods.
- `ExecutionAddress`: `address` - (optional) The execution address that performs the execution.

3. **eth_executionAddress**
3. **eth_kettleAddress**

Returns the list of available addresses in the Kettle to execute the confidential compute request.

Expand All @@ -53,7 +57,7 @@ The easiest way to test your connection to an RPC endpoint is via a simple curl
```bash
curl -X POST \
-H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' \
--data '{"jsonrpc":"2.0","method":"eth_kettleAddress","params":[],"id":1}' \
https://rpc.rigil.suave.flashbots.net
```

Expand All @@ -62,7 +66,7 @@ curl -X POST \
```bash
curl -X POST \
-H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' \
--data '{"jsonrpc":"2.0","method":"eth_kettleAddress","params":[],"id":1}' \
http://localhost:8545

```
Expand Down

0 comments on commit 02e2cdb

Please sign in to comment.