!nRfiHTUJoQsQdMBict:matrix.org

Dev

19 Members
Collaborative discussions related to the development of Aragon. Please take development-related help questions to the #dev-help channel.2 Servers

Load older messages


SenderMessageTime
18 Feb 2020
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>Maybe @light has some guidance (if around)? Will start messing around on Rinkeby and see what happens… 07:27:30
@bridge-bot:matrix.orgbridge-bot <sohkai> Yes, since SNT is a Minime, you can plug it into the Voting app directly :) 12:19:31
@bridge-bot:matrix.orgbridge-bot <sohkai>It might be similar to what we did with our AGP organization (https://github.com/aragon/dao-templates/blob/9886bba4c0/kits/agp1/contracts/AGP1Kit.sol): we just skipped the Token Manager and installed Voting, Vault, and Finance. 12:21:17
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>hmm, ok. seems like pretty much exactly what this brother needs, tbh. Thanks as always @sohkai 🙏 12:41:38
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>AGP1 has a 1 vote quorum though? Interesting… 12:43:23
@bridge-bot:matrix.orgbridge-bot <sohkai>Haha yes, because we weren’t going to encode actual actions in voting from the start (quorum is configurable later) 13:07:04
@bridge-bot:matrix.orgbridge-bot <sohkai>Keep me updated, and let me know if you need any help! 13:07:25
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>@sohkai after more careful scrutiny, the only thing I really see that I need to change there is _ant to _snt… Can you think of anything else off the top of your head? 14:30:15
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>maybe I’m missing stuff, and I always doubt myself when things seem simple, but hey 😅 14:30:42
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>And there wouldn’t happen to be any kind of written guide on this would there? 😉 14:30:58
@bridge-bot:matrix.orgbridge-bot <sohkai> Haha not particularly; the code is our best documentation for the AGP organization outside of various blog posts announcing the structure. 14:46:34
@bridge-bot:matrix.orgbridge-bot <sohkai> There have been lots of other applications made available since we created the AGP organization, so we may want to run you through some of them depending where you see this particular organization going in the future :). 14:47:19
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>Also, do you only have dev environments on Rinkeby? We need to work on Ropsten as the thing we’re using this for is there and not Rinkeby (though we have test tokens deployed on both) because Rinkeby is geth only, so the graph can’t run in trace mode there… 14:56:13
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>classic stuff in other words 😜 14:56:21
@bridge-bot:matrix.orgbridge-bot <gabi>Hi @cryptowanderer we have Ropsten dev environments, you need to add a new script in the package.json with the following:

"deploy:ropsten": "ENS=0x6afe2cacee211ea9179992f89dc61ff25c61e923 DAO_FACTORY=0x233c587095d066bafe44b543a719c93ff16423f3 truffle exec --network ropsten scripts/deploy_agp1.js"
15:17:13
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>gracias mi hermano! 15:17:27
@bridge-bot:matrix.orgbridge-bot <gabi>For reference here are the deployment information 15:19:03
@bridge-bot:matrix.orgbridge-bot <gabi>@sohkai I don’t think a MINIME is necessary as they already have a token deployed 🤔 15:20:04
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>SNT is MiniMe, no problem there 👍 15:20:23
@bridge-bot:matrix.orgbridge-bot <gabi>Cool 🙌 15:20:37
@bridge-bot:matrix.orgbridge-bot <sohkai> On this; our Ropsten deployment is not officially maintained with the latest frontends and app deployments, but let us know if you find anything weird and we can certainly update the deployment.

I hope the goal is to eventually move to mainnet though?

21:30:23
19 Feb 2020
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>Hello again @sohkai 👋 So yes, the goal is very much mainnet. Just need to play around lots first to get familiar. And, my current issue is a bit of a blocker… Using the AGP1 template, and trying to run tests, I get:

RangeError: Maximum call stack size exceeded

How does one overcome such a thing? (This is after running nom test:rpc)

10:50:15
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>Hello again @sohkai 👋 So yes, the goal is very much mainnet. Just need to play around lots first to get familiar. And, my current issue is a bit of a blocker… Using the AGP1 template, and trying to run tests, I get:

RangeError: Maximum call stack size exceeded

How does one overcome such a thing? (This is after running npm test:rpc)

10:50:22
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>Hello again @sohkai 👋 So yes, the goal is very much mainnet. Just need to play around lots first to get familiar. And, my current issue is a bit of a blocker… Using the AGP1 template, and trying to run tests, I get:

RangeError: Maximum call stack size exceeded

How does one overcome such a thing? (This is after running npm run test:rpc)

10:50:39
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>Also worth noting that I am running into issues deploying deps to a local network. The deploy_deps scripts never seems to get into the ENS stuff and I can’t easily figure out why that is happening. Network is rpc, artifacts, web3 and owner are all set correctly… Hmmm 11:18:39
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>After messing with some things, I still can’t get it beyond that step and into deploying ENS etc on my local devnet. So, I was like f**k it, let me just try ropsten and see where we get to…
First issue: Error: project ID is required
OK, this is Infura doing it’s thing. Fixed that in node_modules/@aragon/os/truffle-config.js (not my fav, but hey, quick and dirty FTW). But the deploy script still silently fails

Status DappDAO KIt with ENS 0x6afe2cacee211ea9179992f89dc61ff25c61e923, owner 0x... [removed for priv]
cryptowander@cryptowander-ubuntu:~/aragon$

Have made sure there is Ropsten ETH in that account etc. So not sure where to go from here

11:32:58
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>seems like this line const ENS = artifacts.require('ENS') is causing me issues… Where is it supposed to be fetching this artifact from? https://github.com/aragon/dao-templates/blob/9886bba4c0a201bf056f44d751373e5d804e1b90/kits/agp1/scripts/deploy_agp1.js#L53 11:42:04
@bridge-bot:matrix.orgbridge-bot <sohkai>@cryptowanderer It should be fetching it from the @aragon/os package; we may have to add the ENS contract as an import in the contracts/ dir 11:46:19
@bridge-bot:matrix.orgbridge-bot <cryptowanderer>yeah, I see no ENS in there atm 11:46:40
@bridge-bot:matrix.orgbridge-bot <sohkai>😢 11:46:57

Show newer messages


Back to Room ListRoom Version: 1