Josue

Results 18 comments of Josue

I agree, also don't forget about [datatools](https://github.com/catalogueglobal/datatools-ui).

Is it maybe related to [this](https://stackoverflow.com/questions/32663192/how-to-reproduce-photoshops-multiply-blending-in-opencv)?

This is an example of what I received in the `eth_callBundle` endpoint: ``` { "coinbaseDiff": "21993659553843018", "ethSentToCoinbase": "21993659553647165", "fromAddress": "", // removed "gasFees": "195853", "gasPrice": "112296771322", "gasUsed": 195853, "toAddress": "",...

> * `gasFees` matches the product of `maxPriorityFee` * `gasUsed` (I sent a maxPriorityFee = 1wei) * `ethSentToCoinbase` matches what I transferred to `block.coinbase`

btw, I found on the last version of mev-geth that `gasPrice` is actually `coinbaseDiff` divided by `gasUsed`: ``` jsonResult["gasPrice"] = new(big.Int).Div(coinbaseDiffTx, big.NewInt(int64(receipt.GasUsed))).String() ``` we can also see that: ``` jsonResult["ethSentToCoinbase"]...

Thanks for the stats, I was looking for something like that and couldn't find it. It's fine, it was just easier for me as I couldn't find any source telling...

> `version` package is different from `semver`. `semver` requires MAJOR.MINOR.PATCH but `version` package allows MAJOR.MINOR or MAJOR. You can check [tests](https://github.com/dartninja/version/blob/6423ce6b265ca6da274c61cb6481a67168856a30/test/version_test.dart#L238). > > Also, this may cause problems with App...

> expectIdentifierTokenOrAddress I believe there is probably significant work already done here: https://github.com/ethereum/solidity/pull/13468, including the hack mentioned by @ekpyron 🧐🤔 : https://github.com/ethereum/solidity/blob/add_parser_support_for_code_data_location/libsolidity/parsing/Parser.cpp#L2388

Hi, just wanted to say that I would love web support too.

> @stenlee unfortunately, the way `Link` is implemented today, it requires that you hook it up with gestures in your app. > > If you were using a button for...