Skip to content

Commit 366e299

Browse files
committed
chore: remove sepolia from overview page
1 parent 30e8ea5 commit 366e299

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs/integration/7683/solver-integration.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ Here is how you can integrate from step 1 to 5.
6161

6262
### 1 - Solver logins to t1 backend and streams its prices
6363

64-
Connect to `wss://api.v07.t1protocol.com` by providing following authentication headers:
64+
Connect to `wss://sealedbid.api.t1protocol.com` by providing following authentication headers:
6565

6666
```typescript
67-
const socket = new WebSocket(`wss://api.v07.t1protocol.com/`, {
67+
const socket = new WebSocket(`wss://sealedbid.api.t1protocol.com/`, {
6868
headers: {
6969
"X-Auth-Blob": {
7070
username: 'your-username-for-t1-stats-recording-only',
@@ -75,7 +75,7 @@ Connect to `wss://api.v07.t1protocol.com` by providing following authentication
7575
});
7676
```
7777
- `"X-Auth-Blob".username` is any string that you would like your Solver to be identified by
78-
- `"X-Auth-Blob".nonce` is a unique nonce tied to your login attempt. you can acquire be calling `https://api.v07.t1protocol.com/api/currentNonce?username=your-username` . This nonce is needed for security of your login - should any part intercept your signature, they are not able to use it to login.
78+
- `"X-Auth-Blob".nonce` is a unique nonce tied to your login attempt. you can acquire be calling `https://sealedbid.api.t1protocol.com/api/currentNonce?username=your-username` . This nonce is needed for security of your login - should any part intercept your signature, they are not able to use it to login.
7979
- `"X-Auth-Signature"` is a signature of a stringified `"X-Auth-Blob"` . Make sure to use the private key that will also be used to fill intents!
8080

8181
Then stream your price list in the following format to the socket.
@@ -215,7 +215,7 @@ Location: offchain
215215

216216
Timing: once a new `ProofOfReadRootCommitted` event has been emitted
217217

218-
Base URL: `https://api.v07.t1protocol.com`
218+
Base URL: `https://sealedbid.api.t1protocol.com`
219219

220220
Endpoint: `/api/read-proofs`
221221

@@ -233,7 +233,7 @@ Method: `GET`
233233
**Example Request:**
234234

235235
```bash
236-
curl "https://api.v07.t1protocol.com/api/read-proofs?address=0x123...&direction=ARB_TO_BASE&page=1&page_size=100"
236+
curl "https://proofofread.api.t1protocol.com/api/read-proofs?address=0x123...&direction=ARB_TO_BASE&page=1&page_size=100"
237237
```
238238

239239
The HTTP call will return the following structure as a response :

docs/integration/xChainRead/overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ t1 runs full nodes of partner rollups inside TEEs, ensuring verifiable execution
2828

2929
t1 currently supports the following chains:
3030

31-
- Arbitrum Sepolia
32-
- Base Sepolia
31+
- Arbitrum
32+
- Base
3333

34-
Let's use the following example to demonstrate how to use xChainRead. This example is a simplified version of the [T1ERC7683](https://github.com/t1protocol/t1/blob/canary/contracts/src/7683/T1ERC7683.sol) contract. It allows users to request a cross-chain read of the `getFilledOrderStatus` function of a 7683 contract on the Base Sepolia chain.
34+
Let's use the following example to demonstrate how to use xChainRead. This example is a simplified version of the [T1ERC7683](https://github.com/t1protocol/t1/blob/canary/contracts/src/7683/T1ERC7683.sol) contract. It allows users to request a cross-chain read of the `getFilledOrderStatus` function of a 7683 contract on the Base chain.
3535

3636
```solidity
3737
import "./T1XChainReader.sol";
@@ -51,7 +51,7 @@ contract IntentSettler {
5151
);
5252
5353
bytes32 requestId = xChainRead.requestRead({
54-
destinationDomain: 84532, // Base Sepolia
54+
destinationDomain: 84532, // Base
5555
targetContract: 0xf96B8CcB029E0932fe36da0CeDd2b035E2c1695d,
5656
gasLimit: 200000,
5757
minBlock: 0,

0 commit comments

Comments
 (0)