Vsevo1od
Vsevo1od
### Describe the issue: When I run `slither .` in https://github.com/Vsevo1od/governance-crosschain-bridges I get ``` Missing modifier 'body' Missing modifier 'body' Missing function Variable not found: onlyEthereumGovernanceExecutor (context OptimismBridgeExecutor) Missing modifier...
If you visit the link in the README at https://etherscan.io/address/0x4922a015c4407f87432b179bb209e125432e4a2a#code, you will see the following: > [Token Migration Announcement](https://tether.to/important-changes-are-coming-to-xaut/): The XAUt token contract has migrated to a [new address](https://etherscan.io/address/0x68749665ff8d2d112fa859aa293f07a622782f38). The...
A quick solution is to replace [this line](https://github.com/OpenZeppelin/openzeppelin-test-helpers/blob/5289493956a2e24dfc5cfffe533ed267f92e6911/src/expectEvent.js#L136) ```js const eventSignature = `${eventName}(${eventABI.inputs.map(input => input.type).join(',')})`; ``` with ```js const eventSignature = `${eventName}(${eventABI.inputs.map(input => { if (input.type === 'tuple'){ return `(${input.components.map(input...
You don't need to throw a warning now (that was added here https://github.com/OpenZeppelin/solidity-docgen/pull/44) Because NatSpec comments for state variables are now supported by the compiler https://github.com/ethereum/solidity/pull/8532