From 394b015c0f466efca34f7b82e8257a5bac2af5b7 Mon Sep 17 00:00:00 2001 From: petarTxFusion Date: Sun, 17 Nov 2024 19:07:54 +0100 Subject: [PATCH] docs: update provider docs --- src/main/java/io/zksync/protocol/JsonRpc2_0ZkSync.java | 6 +++--- src/main/java/io/zksync/protocol/ZkSync.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/io/zksync/protocol/JsonRpc2_0ZkSync.java b/src/main/java/io/zksync/protocol/JsonRpc2_0ZkSync.java index 48cc442..57c334a 100755 --- a/src/main/java/io/zksync/protocol/JsonRpc2_0ZkSync.java +++ b/src/main/java/io/zksync/protocol/JsonRpc2_0ZkSync.java @@ -211,7 +211,7 @@ public String l2TokenAddress(String tokenAddress, @Nullable String bridgeAddress /** * Return the protocol version * - * Calls the {@link ... zks_getProtocolVersion} JSON-RPC method. + * Calls the zks_getProtocolVersion JSON-RPC method. * * @param id Specific version ID. */ @@ -244,7 +244,7 @@ public RemoteCall isL2BridgeLegacy(String address) { /** * Returns the current fee parameters. * - * Calls the {@link zks_getFeeParams} JSON-RPC method. + * Calls the zks_getFeeParams JSON-RPC method. */ public Request getFeeParams() { return new Request<>( @@ -265,7 +265,7 @@ public Request getFeeParams() { * It’s expected that the optimistic logs of two uncommitted transactions that modify the same state will not * have causal relationships between each other. * - * Calls the {@link zks_sendRawTransactionWithDetailedOutput} JSON-RPC method. + * Calls the zks_sendRawTransactionWithDetailedOutput JSON-RPC method. * * @param signedTx The signed transaction that needs to be broadcasted. */ diff --git a/src/main/java/io/zksync/protocol/ZkSync.java b/src/main/java/io/zksync/protocol/ZkSync.java index 3aab2c8..f6872ac 100755 --- a/src/main/java/io/zksync/protocol/ZkSync.java +++ b/src/main/java/io/zksync/protocol/ZkSync.java @@ -212,14 +212,14 @@ Request zksGetBlockByNumber( /** * Returns the current fee parameters. * - * Calls the {@link zks_getFeeParams} JSON-RPC method. + * Calls the zks_getFeeParams JSON-RPC method. */ Request getFeeParams(); /** * Return the protocol version * - * Calls the {@link ... zks_getProtocolVersion} JSON-RPC method. + * Calls the zks_getProtocolVersion JSON-RPC method. * * @param id Specific version ID. */ @@ -236,7 +236,7 @@ Request zksGetBlockByNumber( * It’s expected that the optimistic logs of two uncommitted transactions that modify the same state will not * have causal relationships between each other. * - * Calls the {@link zks_sendRawTransactionWithDetailedOutput} JSON-RPC method. + * Calls the zks_sendRawTransactionWithDetailedOutput JSON-RPC method. * * @param signedTx The signed transaction that needs to be broadcasted. */