rocketman

Results 7 comments of rocketman

For those of you on NextJS, fixed it locally by mocking the ConnectButton and getDefaultWallets func per @sudoFerraz and @pyk I can now run jest test locally without problem, however...

I just implemented this w/associated tests. Will open a PR / can share code if y'all want. Use case is an open submission box that anyone can submit to, and...

This contract has been audited by c4 https://github.com/collectivexyz/revolution-protocol/blob/main/packages/revolution/src/culture-index/MaxHeap.sol

newest version doesn't seem to fix this w/the repo I linked i'm on an apple silicon mac if that makes a difference if I edit .sol files it works fine...

for reference this is my vs code settings file ``` { "solidity.defaultCompiler": "localFile", "prettier.documentSelectors": ["**/*.sol"], "solidity.packageDefaultDependenciesDirectory": "node_modules", "solidity.enabledAsYouTypeCompilationErrorCheck": true, "[solidity]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "solidity.enableLocalNodeCompiler": true, "solidity.compileUsingLocalVersion": ".........../soljson-v0.8.22+commit.4fc1097e.js", "solidity.compileUsingRemoteVersion": ""...

My config now is ``` "solidity.monoRepoSupport": true, "solidity.compileUsingLocalVersion": "/Users/.../.../revolution-protocol/soljson-v0.8.22+commit.4fc1097e.js", "solidity.defaultCompiler": "localFile" ``` I type something in `AuctionHouse.sol` to make sure the compilation works Then I open `RevolutionBuilder.t.sol` and it bricks...

Also seeing this - trying to deploy via `--ledger` if the script requires multiple txns, it just asks for the first transaction then stops. https://github.com/collectivexyz/revolution-protocol deploy script in `packages/revolution` you...