Daniel Kronovet

Results 95 comments of Daniel Kronovet

Issue: ``` Network version glwss4 doesnt exist, attempting to generate Cloning the network... OperationalError: Command failed: cd colonyNetwork-glwss4 && npm install [email protected] npm error Error: Cannot find module 'node-bin-darwin-arm64/package.json' ```...

New issue -- I'm trying to add a new function for IMWSS: ``` module.exports.deployColonyVersionIMWSS = (colonyNetwork) => { return module.exports.deployOldColonyVersion( "Colony", "IMetaColony", [ // eslint-disable-next-line max-len "Colony,ColonyDomains,ColonyExpenditure,ColonyFunding,ColonyRewards,ColonyRoles,ContractRecovery,ColonyArbitraryTransaction", ], "imwss", colonyNetwork,...

I looked into Ethernal today. It seems like an easy fit for the front-end team, as the browser-based explorer can be easily pointed to `localhost`. Incorporating the `hardhat-ethernal` library and...

Started exploring Blockscout. Was [very easy](https://docs.blockscout.com/setup/deployment/docker-compose-deployment) to spin up a container using `docker compose -f hardhat-network.yml up`, which includes a Postgres database and service on `localhost:80` Next step is to...

Marking this `on-hold` as there does not seem to be an urgent need for it elsewhere

Could say that internal tokens cannot be sent directly to domains?

From WP page 9: ``` Only accounts holding the funding permission may move tokens; the rule is that they may move tokens between any two pots in the subtree rooted...

I don't remember how that decision was made -- most likely it predates me -- but I would guess it just wasn't a use-case that was thought about. Would it...

Ok, I was able to update the view by moving the `ack` call to the end of the block as follows: ``` await ack({ response_action: 'push', view }); ``` This...

Everything is fine on my end, but I would still recommend duplicating this code snippet in the [modal docs](https://api.slack.com/surfaces/modals#handling_submissions). ``` // Update the view on submission app.view('modal-callback-id', async ({ ack,...