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
6 changes: 3 additions & 3 deletions docs/integration/xChainRead/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sidebar_position: 2

Retrieve proof data for cross-chain read requests.

**URL**: https://api.v06.t1protocol.com/api/read-proofs
**URL**: https://proofofread.api.t1protocol.com/api/read-proofs

**Parameters**:

Expand All @@ -21,7 +21,7 @@ Retrieve proof data for cross-chain read requests.
- `page_size` (number, optional): Results per page

**Example**:
https://api.v06.t1protocol.com/api/read-proofs?address=0x81B5e00e15fb3ee055aB5e616Ccb52fA935D3534&direction=ARB_TO_BASE&page=1&page_size=100
https://proofofread.api.t1protocol.com/api/read-proofs?address=0x81B5e00e15fb3ee055aB5e616Ccb52fA935D3534&direction=ARB_TO_BASE&page=1&page_size=100

**Response Format**:

Expand All @@ -32,7 +32,7 @@ https://api.v06.t1protocol.com/api/read-proofs?address=0x81B5e00e15fb3ee055aB5e6
"block_number": 163780939,
"message_hash": "0x94cdea443c0f6034de6bdf781ce159055546c0e42632db5215558c392088ee8f",
"tx_sender": "0x42d389A9007e446b92C0ce7bd8F42Ea10292881B",
"direction": "ARB_TO_BASE", // Arbitrum Sepolia to Base Sepolia
"direction": "ARB_TO_BASE", // Arbitrum to Base
"claim_info": {
"from": "0x81B5e00e15fb3ee055aB5e616Ccb52fA935D3534",
"to": "0xf96B8CcB029E0932fe36da0CeDd2b035E2c1695d",
Expand Down
8 changes: 4 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
const XIcon = X as ComponentType<SVGProps<SVGSVGElement>>

// Type assertion for SafeLink component to resolve React type conflicts
const SafeLink = Link as any

Check warning on line 20 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Unexpected any. Specify a different type

export const actions = [
{
Expand All @@ -27,9 +27,9 @@
text: `Get familiar with the core concepts of the t1 Protocol.`,
},
{
title: 't1 Testnet Portal',
title: 't1 Beta Portal',
icon: Chain,
to: 'https://testnet.t1protocol.com/',
to: 'https://beta.t1protocol.com/',
text: `Experience real time cross-chain interactions with t1.`,
},
{
Expand All @@ -51,8 +51,8 @@
export const dAppGuides = [
{
title: 't1 RTP Intent Bridge',
text: 'Deposit funds to start interacting with apps on t1 testnet.',
to: 'https://testnet.t1protocol.com/bridge/?bridgeType=INTENT',
text: 'Deposit funds to start interacting with apps on t1 beta or testnet.',
to: 'https://beta.t1protocol.com/swap',
},
{
title: 'More products coming soon',
Expand Down
Loading