Skip to content

Commit

Permalink
docs: update provider docs
Browse files Browse the repository at this point in the history
  • Loading branch information
petarTxFusion committed Nov 17, 2024
1 parent 625865f commit 394b015
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/main/java/io/zksync/protocol/JsonRpc2_0ZkSync.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public String l2TokenAddress(String tokenAddress, @Nullable String bridgeAddress
/**
* Return the protocol version
*
* Calls the {@link <a href="https://docs.zksync.io/build/api.html#zks_getprotocolversion">...</a> zks_getProtocolVersion} JSON-RPC method.
* Calls the zks_getProtocolVersion JSON-RPC method.
*
* @param id Specific version ID.
*/
Expand Down Expand Up @@ -244,7 +244,7 @@ public RemoteCall<Boolean> isL2BridgeLegacy(String address) {
/**
* Returns the current fee parameters.
*
* Calls the {@link <a href="https://docs.zksync.io/build/api.html#zks_getFeeParams">zks_getFeeParams</a>} JSON-RPC method.
* Calls the zks_getFeeParams JSON-RPC method.
*/
public Request<?, ZksFeeParams> getFeeParams() {
return new Request<>(
Expand All @@ -265,7 +265,7 @@ public Request<?, ZksFeeParams> 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 <a href="https://docs.zksync.io/build/api.html#zks_sendRawTransactionWithDetailedOutput">zks_sendRawTransactionWithDetailedOutput</a>} JSON-RPC method.
* Calls the zks_sendRawTransactionWithDetailedOutput JSON-RPC method.
*
* @param signedTx The signed transaction that needs to be broadcasted.
*/
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/io/zksync/protocol/ZkSync.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,14 +212,14 @@ Request<?, ZksBlock> zksGetBlockByNumber(
/**
* Returns the current fee parameters.
*
* Calls the {@link <a href="https://docs.zksync.io/build/api.html#zks_getFeeParams">zks_getFeeParams</a>} JSON-RPC method.
* Calls the zks_getFeeParams JSON-RPC method.
*/
Request<?, ZksFeeParams> getFeeParams();

/**
* Return the protocol version
*
* Calls the {@link <a href="https://docs.zksync.io/build/api.html#zks_getprotocolversion">...</a> zks_getProtocolVersion} JSON-RPC method.
* Calls the zks_getProtocolVersion JSON-RPC method.
*
* @param id Specific version ID.
*/
Expand All @@ -236,7 +236,7 @@ Request<?, ZksBlock> 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 <a href="https://docs.zksync.io/build/api.html#zks_sendRawTransactionWithDetailedOutput">zks_sendRawTransactionWithDetailedOutput</a>} JSON-RPC method.
* Calls the zks_sendRawTransactionWithDetailedOutput JSON-RPC method.
*
* @param signedTx The signed transaction that needs to be broadcasted.
*/
Expand Down

0 comments on commit 394b015

Please sign in to comment.