Brett Sun

Results 199 comments of Brett Sun
trafficstars

> The best of both worlds would be to disable private key files for mainnet only. (When it comes to publishing your app to mainnet you pretty much want a...

@ethene You just need to assign the app a permission!

Thanks for the feedback @ethene, we are equally as disappointed in ourselves. Your app is installed—it's just a bit of an awkward path to find its address so you can...

You can detect if something should be done with an `eth_call` or an actual transaction based on the `constant` key in the ABI, although yes, I would agree that the...

@macor161 This is most likely because of `@aragon/wrapper`... in non-browser environments the localforage driver should be set to the in-memory one and this message may appear in stdout.

Yes, aragonPM only allows `major` upgrades to include contract upgrades. We should definitely fix the error messaging on this. I believe it's detects `minor` and `patch` versions right now to...

Agreed, I think it's mostly confusing because we don't really explain the "semver" semantics anywhere else but https://hack.aragon.org/docs/apm-ref.html#repo. We designed these "major" versions so that they would be signed to...

In the future we may also want to support an "uninstall" feature. Depending on how much information we have about the org's permissions, this may be something fairly easy (go...

> There isn't an easy way to determine the version of TokenManager.sol in order to see the source code, only to take the compiledAt timestamp and search through the git...

We can use this ABI: ```js "abi": [ { "constant": true, "inputs": [], "name": "hasInitialized", "outputs": [ { "name": "", "type": "bool" } ], "payable": false, "stateMutability": "view", "type": "function"...