From dd10569a0c49f1cb5d629a048e9e2949a0aa63f8 Mon Sep 17 00:00:00 2001 From: Shashank Date: Thu, 14 Aug 2025 16:30:37 +0530 Subject: [PATCH] fix link --- docs/docs/users/reference/json_rpc_overview.md | 4 ++-- .../src/developer_documentation/rpc_api_compatibility.md | 8 ++++---- src/rpc/methods/f3.rs | 4 ++-- src/rpc/methods/state.rs | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/docs/users/reference/json_rpc_overview.md b/docs/docs/users/reference/json_rpc_overview.md index 7925c9480e3d..06d8c23ca7e4 100644 --- a/docs/docs/users/reference/json_rpc_overview.md +++ b/docs/docs/users/reference/json_rpc_overview.md @@ -24,9 +24,9 @@ Need a specific method? Let us know on The RPC interface is the primary mechanism for interacting with Forest. As there is presently no cross-client specification, the Lotus -[V0](https://github.com/filecoin-project/lotus/blob/master/documentation/en/api-v0-methods.md) +[V0 (Deprecated)](https://github.com/filecoin-project/lotus/blob/master/documentation/en/api-methods-v0-deprecated.md) and -[V1](https://github.com/filecoin-project/lotus/blob/master/documentation/en/api-v1-unstable-methods.md) +[V1](https://github.com/filecoin-project/lotus/blob/master/documentation/en/api-methods-v1-stable.md) APIs are the reference for Forest's implementation. :::info diff --git a/documentation/src/developer_documentation/rpc_api_compatibility.md b/documentation/src/developer_documentation/rpc_api_compatibility.md index 2035e648545c..0b38d52f19c8 100644 --- a/documentation/src/developer_documentation/rpc_api_compatibility.md +++ b/documentation/src/developer_documentation/rpc_api_compatibility.md @@ -3,10 +3,10 @@ A running Lotus node can be accessed through an RPC interface. The RPC methods are listed here: -- V0 methods (stable): - https://github.com/filecoin-project/lotus/blob/master/documentation/en/api-v0-methods.md -- V1 methods (unstable): - https://github.com/filecoin-project/lotus/blob/master/documentation/en/api-v1-unstable-methods.md +- V0 methods (Deprecated): + https://github.com/filecoin-project/lotus/blob/master/documentation/en/api-methods-v0-deprecated.md +- V1 methods (Stable): + https://github.com/filecoin-project/lotus/blob/master/documentation/en/api-methods-v1-stable.md The current status of compatibility can be checked by comparing a running Forest node with a running Lotus node: diff --git a/src/rpc/methods/f3.rs b/src/rpc/methods/f3.rs index 9e06896ea9bc..b5779ef65265 100644 --- a/src/rpc/methods/f3.rs +++ b/src/rpc/methods/f3.rs @@ -790,7 +790,7 @@ impl RpcMethod<0> for F3IsRunning { } } -/// See +/// See pub enum F3GetProgress {} impl F3GetProgress { @@ -816,7 +816,7 @@ impl RpcMethod<0> for F3GetProgress { } } -/// See +/// See pub enum F3GetManifest {} impl F3GetManifest { diff --git a/src/rpc/methods/state.rs b/src/rpc/methods/state.rs index 2c3502e9b356..2a342377708a 100644 --- a/src/rpc/methods/state.rs +++ b/src/rpc/methods/state.rs @@ -178,7 +178,7 @@ impl RpcMethod<1> for StateNetworkVersion { } /// gets the public key address of the given ID address -/// See +/// See pub enum StateAccountKey {} impl RpcMethod<2> for StateAccountKey { @@ -205,7 +205,7 @@ impl RpcMethod<2> for StateAccountKey { } /// retrieves the ID address of the given address -/// See +/// See pub enum StateLookupID {} impl RpcMethod<2> for StateLookupID { @@ -1161,7 +1161,7 @@ impl RpcMethod<4> for StateWaitMsg { } /// Searches for a message in the chain, and returns its receipt and the tipset where it was executed. -/// See +/// See pub enum StateSearchMsg {} impl RpcMethod<4> for StateSearchMsg { @@ -1205,7 +1205,7 @@ impl RpcMethod<4> for StateSearchMsg { } /// Looks back up to limit epochs in the chain for a message, and returns its receipt and the tipset where it was executed. -/// See +/// See pub enum StateSearchMsgLimited {} impl RpcMethod<2> for StateSearchMsgLimited {