Coury Ditch
Coury Ditch
I appreciate how much effort and focus the Elm community devotes to clear & thorough documentation. In an effort to continue improving the docs, I'll go over an experience I...
``` > Maybe.map (EU.fromWei EU.Ether) (BigInt.fromString "20000000000000000000000") Just "20000" : Maybe.Maybe String > Maybe.map (EU.fromWei EU.Ether) (BigInt.fromString "-20000000000000000000000") Just "000-20000" : Maybe.Maybe String > ```
Take some inspiration from https://github.com/ResiliaDev/EthABI Encoding and Decoding should both produce Results. This should be invalid: `-1` for `uint256`, or `257` for a `uint8`.
You might see mappings like this ```solidity isAdmin(address => bool) adminAuthLevel(address => uint) ``` But they can be combined like so, and represented on the front end with a `Maybe`...
```solidity contract Reverter { function wassup() { require(false, "some message"); } } ``` Calling this function will return ``` 0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000d796f7527726520612066636b7200000000000000000000000000000000000000 ``` One must pattern match `0x08c379a0` on each call response,...
Send networkId with txParams through port. If Elm networkId != metamask networkId, fail. Return `Result String TxHash` and/or `Result String Tx` and/or `Result String TxReceipt`. Make npm module for easy...
**Description** Pressing delete w/ the cursor at the beginning of a nested LIC (list item content) which contains multiple child elements doesn't remove the bullet. **Steps** 1. Format some of...
**Description** Deleting across list items where one of the items has a sublist results in odd behavior **Steps** https://user-images.githubusercontent.com/15849320/144148437-2c508d6b-98c7-44fe-93b5-6f2eb30f6c75.mov **Expectation** The sublist should probably be moved up to the list...
**Describe the bug** SeriesSchema validation does not fail when it's defined MultiIndex names or types differ from the dataframe being validated. The code below defines a SeriesSchema with a Multiindex...
Hey @justinmimbs, once again thanks greatly for the fantastic libraries. I've found myself copying these helpers in a few codebases at this point. Curious if we can just expose them?...