Mike Calvanese

Results 5 issues of Mike Calvanese

@SilentCicero, love the ethdeploy project! I ran into an issue porting an existing project over to ethdeploy from truffle. I had some import paths in my .sol files referencing `zeppelin-solidity/contracts/...`...

could use https://github.com/bahmutov/snap-shot to support snapshot testing. AVA does it like this https://github.com/avajs/ava#snapshot-testing Maybe something like: ``` test(myFn, () => { given(something).snapshot() }) ```

I used snapshot within a sazerac assertion like this: ``` import todos from './todos' import snapshot from 'snap-shot' import { test, given } from 'sazerac' test(todos, () => { given([],...

question

Executing a "call" on a view function in the smart contract is broken for functions with an array as the last input param. https://github.com/aragon/aragon.js/blob/1dea8699aa8a04fe4a955d4412ad5692971d0670/packages/aragon-wrapper/src/core/proxy/index.js#L53 It's checking to see if the...

bug
component: api

needed for local testing of DAO templates that use non-aragon apps, which have to be deployed on the open.aragonpm.eth registry rather than aragonpm.eth fixes https://github.com/aragon/dao-templates/issues/140 cc @sohkai