exw3
exw3 copied to clipboard
High level Ethereum RPC Client for Elixir
`ex_abi` library converts function signature back to ABI function selector to decode the output. Since we already have the abi we can call the decode function directly. ```elixir iex(7)> ExW3.Contract.call(:Contract,...
rust is not required anymore
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.8 to 3.2.6. Release notes Sourced from actions/cache's releases. v3.2.6 What's Changed Updated branch in Force deletion of caches by @t-dedah in actions/cache#1108 Fix zstd not being...
Bumps [ethereumex](https://github.com/exthereum/ethereumex) from 0.7.1 to 0.10.4. Changelog Sourced from ethereumex's changelog. 0.10.4 - 2022-12-07 Update finch to 0.14 (mana-ethereum/ethereumex#141) 0.10.3 - 2022-09-15 Update jason to 1.4 (mana-ethereum/ethereumex#137) 0.10.2 - 2022-08-02...
Bumps [erlef/setup-beam](https://github.com/erlef/setup-beam) from 1.11 to 1.15. Release notes Sourced from erlef/setup-beam's releases. v1.15.0 What's Changed Update 3rd party licenses (automation) by @github-actions in erlef/setup-beam#150, erlef/setup-beam#157, and erlef/setup-beam#158 Ease consumption by...
Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.28.5 to 0.29.1. Changelog Sourced from ex_doc's changelog. v0.29.1 (2022-11-21) Enhancements Add optional function annotations Support media print on stylesheets Add download ePub link to footer Support...
```elixir ExW3.Contract.start_link() ExW3.Contract.register(:Contract, abi: ExW3.Abi.load_abi("path/to/abis/erc721.json")) ExW3.Contract.at(:Contract, "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d") url = Spool.Chain.Helpers.get_endpoint_for_network(1) Application.put_env(:ethereumex, :url, url) ExW3.Contract.call(:Contract, :symbol) ``` ``` [error] GenServer ContractManager terminating ** (MatchError) no match of right hand side value:...
Bumps [ex_abi](https://github.com/poanetwork/ex_abi) from 0.5.9 to 0.5.16. Release notes Sourced from ex_abi's releases. 0.5.16 What's Changed Bump ex_doc from 0.28.5 to 0.28.6 by @dependabot in poanetwork/ex_abi#116 Handle Events with same topic...