barakman
barakman
``` +---------------+----------------+-----------------+---------------+ | first operand | second operand | expected output | actual output | +---------------+----------------+-----------------+---------------+ | -1 | -2 | -1 | -1 | +---------------+----------------+-----------------+---------------+ | -1 | +2...
Currently, the only type of exponentiation supported, is for raising a `BN` object to the power of a a `BN` object. Every other binary operation supports the 2nd operand being...
I'm not permitted to open issues on the v3 repo for some reason, so posting it here instead. In [FullMath.mulDiv](https://github.com/Uniswap/uniswap-v3-core/blob/main/contracts/libraries/FullMath.sol#L14-L106), there are several minor errors, mostly in the documentation. I...
After deleting the `node_modules` folder, a folder named `node_modules/scrypt/build/Release/obj/copied_files/copied_files.tlog` is recreated, and then recreated over and over again when deleted. This folder contains files with the name prefix `link-VCTIP`. It...
**🧐 Motivation** - Reduce the gas consumption of function `Math.tryAdd` - Consolidate the output of function `Math.tryAdd` - Expand the usability of function `Math.tryAdd` **📝 Details** In addition to the...
When using a private-key of incorrect length, for example, a private key of 20 bytes instead of 32 bytes: ``` w3.eth.account.from_key("0x1234567812345678123456781234567812345678") ``` The following exception is thrown: ``` ValueError: The...
## Issue Upon '*revert*' (as a result of `require(false)`) or '*invalid opcode*' (as a result of `assert(false)`), Truffle gives different error messages when working with Ganache and when working with...
## Issue When executing `truffle test`, it immediately invokes `truffle deploy`. It is not really clear why `truffle test` is to be preceded by `truffle deploy`, since these two functionalities...
The `bytecode` generated by `truffle compile` and the `bin` generated by `solc` are always different. I am using: - solc v0.4.24 - truffle v4.1.14 (which, according to its `package.json`, relies...
For some reason, it takes this line and embeds it inside `` (in output file `index.js`). A workaround for this problem is to add an empty line at the beginning...