solidity-patterns
solidity-patterns copied to clipboard
A compilation of patterns and best practices for the smart contract programming language Solidity
## Feature - Update RocketStorage.sol link in docs/eternal_storage.md ## Change [fix: Edit docs/eternal_storage.md](https://github.com/fravoll/solidity-patterns/commit/bf60d45cefa3ea3a46e9e32d8a5d676538bd1ace) - Update RocketStorage.sol link
We have scanned your project on https://scanmycode.io for Web2 & Web 3 and Infractructure Cloudnative issues. Including: PHP, Java, Scala, Python, Ruby, Javascript, Typescript, GO, Solidity, DeFi Security, Infrastructure as...
Not sure if there is error, or just change in compiler, but in your code you've got strings, a b compared with `return keccak256(a)==keccak256(b)` which doesn't compile, needs `keccak256(bytes(a))==keccak256(bytes(b));
Hello, When trying to run the sample at https://fravoll.github.io/solidity-patterns/oracle.html In [Remix.Ethereum.Org](https://remix.ethereum.org/) I have the following error : ``` contracts/oracle.sol:19:39: TypeError: Data location must be "memory" for parameter in function, but...