diff --git a/docs/ethereum_accounts.rst b/docs/ethereum_accounts.rst index 35297df..6dbb3a5 100644 --- a/docs/ethereum_accounts.rst +++ b/docs/ethereum_accounts.rst @@ -15,11 +15,11 @@ Ethereum accounts PrivateKey_ derived from secp256k1 private key, use JSON-RPC `sendRawTransaction` ============== ======================================================================= -.. _Default: http://hackage.haskell.org/package/web3-0.8.1.0/docs/Network-Ethereum-Account-Default.html -.. _Personal: http://hackage.haskell.org/package/web3-0.8.1.0/docs/Network-Ethereum-Account-Personal.html -.. _PrivateKey: http://hackage.haskell.org/package/web3-0.8.1.0/docs/Network-Ethereum-Account-PrivateKey.html +.. _Default: http://hackage.haskell.org/package/web3/docs/Network-Ethereum-Account-Default.html +.. _Personal: http://hackage.haskell.org/package/web3/docs/Network-Ethereum-Account-Personal.html +.. _PrivateKey: http://hackage.haskell.org/package/web3/docs/Network-Ethereum-Account-PrivateKey.html -All of them has an instance for `Account `_ typeclass. +All of them has an instance for `Account `_ typeclass. .. code-block:: haskell @@ -98,16 +98,16 @@ The first argument of ``withParam`` function is state transition function, secon Where lens ``to`` is used for setting transaction recipient address. All transaction parametrization lenses presended in table below. - ============================================================================================================ ====================== + ==================================================================================================== ====================== Lens Description - ============================================================================================================ ====================== - `to `_ Recipient address - `value `_ Transaction value - `gasLimit `_ Execution gas limit - `gasPrice `_ Gas price - `block `_ Execution block (for call only) - `account `_ Account credentials - ============================================================================================================ ====================== + ==================================================================================================== ====================== + `to `_ Recipient address + `value `_ Transaction value + `gasLimit `_ Execution gas limit + `gasPrice `_ Gas price + `block `_ Execution block (for call only) + `account `_ Account credentials + ==================================================================================================== ======================= .. note:: diff --git a/docs/ethereum_node_api.rst b/docs/ethereum_node_api.rst index bc3bc2b..302faac 100644 --- a/docs/ethereum_node_api.rst +++ b/docs/ethereum_node_api.rst @@ -70,10 +70,10 @@ Currently implemented the following Ethereum APIs in modules: =============== ================ Method prefix Implementation =============== ================ - ``eth_*`` `Network.Ethereum.Api.Eth `_ - ``net_*`` `Network.Ethereum.Api.Net `_ - ``web3_*`` `Network.Ethereum.Api.Web3 `_ - ``personal_*`` `Network.Ethereum.Api.Personal `_ + ``eth_*`` `Network.Ethereum.Api.Eth `_ + ``net_*`` `Network.Ethereum.Api.Net `_ + ``web3_*`` `Network.Ethereum.Api.Web3 `_ + ``personal_*`` `Network.Ethereum.Api.Personal `_ =============== ================ All modules use descriptive types according to official Ethereum specification. It placed at `Network.Ethereum.Api.Types `_.