Skip to content

Commit

Permalink
Prepare for 3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cmditch committed Mar 16, 2019
1 parent 186f1b6 commit 767f94f
Show file tree
Hide file tree
Showing 8 changed files with 238 additions and 318 deletions.
7 changes: 4 additions & 3 deletions elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,20 @@
"name": "cmditch/elm-ethereum",
"summary": "feed the tree some ether.",
"license": "MIT",
"version": "2.0.1",
"version": "3.0.0",
"exposed-modules": [
"Eth",
"Eth.Decode",
"Eth.Encode",
"Eth.Defaults",
"Eth.Net",
"Eth.RPC",
"Eth.Sentry.Tx",
"Eth.Sentry.Event",
"Eth.Sentry.Wallet",
"Eth.Types",
"Eth.Units",
"Eth.Utils",
"Internal.Encode",
"Internal.Utils",
"Abi.Decode",
"Abi.Encode",
Expand Down Expand Up @@ -43,4 +44,4 @@
"test-dependencies": {
"elm-explorations/test": "1.2.1 <= v < 2.0.0"
}
}
}
7 changes: 1 addition & 6 deletions src/Abi/Decode.elm
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,9 @@ module Abi.Decode exposing
@docs staticArray, dynamicArray
# Special
@docs ipfsHash
# Run Decoders
@docs abiDecode, andMap, toElmDecoder, toElmDecoderWithDebug, fromString
@docs abiDecode, andMap, toElmDecoder, fromString
# Events/Logs
Expand Down
7 changes: 3 additions & 4 deletions src/Abi/Encode.elm
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ module Abi.Encode exposing
, uint, int, staticBytes
, string, list, bytes
, address, bool, custom
, abiEncode, abiEncodeList
, stringToHex
, abiEncode, abiEncodeList, stringToHex
)

{-| Encode before sending RPC Calls
Expand All @@ -24,12 +23,12 @@ module Abi.Encode exposing
# Misc
@docs address, bool, ipfsHash, custom
@docs address, bool, custom
# Low-Level
@docs abiEncode, abiEncodeList
@docs abiEncode, abiEncodeList, stringToHex
-}

Expand Down
5 changes: 2 additions & 3 deletions src/Eth.elm
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ module Eth exposing
, getBalance, getTxCount, getBalanceAtBlock, getTxCountAtBlock
, getBlockNumber, getBlock, getBlockByHash, getBlockWithTxObjs, getBlockByHashWithTxObjs, getBlockTxCount, getBlockTxCountByHash, getUncleCount, getUncleCountByHash, getUncleAtIndex, getUncleByBlockHashAtIndex
, getLogs, newFilter, newBlockFilter, newPendingTxFilter, getFilterChanges, getFilterLogs, uninstallFilter
, sign, protocolVersion, syncing, coinbase, mining, hashrate, gasPrice, accounts
, estimateGas
, sign, protocolVersion, syncing, coinbase, mining, hashrate, gasPrice, accounts, estimateGas
)

{-| Ethereum RPC Methods
Expand Down Expand Up @@ -56,7 +55,7 @@ Geth, Parity, and Infura support websockets.
# Misc
@docs sign, protocolVersion, syncing, coinbase, mining, hashrate, gasPrice, accounts
@docs sign, protocolVersion, syncing, coinbase, mining, hashrate, gasPrice, accounts, estimateGas
-}

Expand Down
Loading

0 comments on commit 767f94f

Please sign in to comment.