decentraland/land

docs needed

Opened this issue ยท 8 comments

docs needed

Hi! thanks for opening an issue. What kind of docs do you think will be useful?

Would be cool to cover LAND parcel distribution. I see you have a set of scripts used for deployment. It would be suitable for newcomers to write a document covering LAND deployment on the chain with one minimal example. I can take the task, just guide me a bit :)

I can open a PR with a document as I see it should be, you can correct me then if I am wrong. It is possible to do in the wiki section too, need to create wiki though

Create it with markdown here if you want. It Will be easier to review

  1. Deploy the fully compiled land registry. Initialize with the value of "0x"

  2. Deploy Estate Registry with Name, Symbol, and Land Registry contract address (proxy address if you use one) as the parameters. Also, use setLANDRegistry to assign LandRegistry contract to the EstateRegistry.

  3. Deploy 2 Proxies for Land and Estate registries. Use setEstateRegistry in LANDRegistry contract to assign EstateRegistry contract address initially

  4. For minting new LAND parcels use: assignMultipleParcels with 2 arrays of XY coordinates and owner address.

  5. Try transferring your LAND ERC-721 tokens to another wallet using transferManyLand. Make sure to add them to your Metamask as custom tokens.

I am sure I can write a script for this repository to deploy and set up all contracts at once using truffle, I think it is better to do via a script since there is LAND Terraform Sale contract involved for the original LAND distribution, etc.

I am still not sure how the original map of Decentraland was formed, I understand that you initially created a grid of XY -150,-150 to 150, 150 from some genesis.json and started auctioning those Parcels and then assigned Roads/Genesis Plazas. Is it something close to that? I can write a setup script for all of that across multiple repositories. Much appreciated :)

Do you want to create a PR with it? That would be really helpful.

In my last comment with here I meant to here at Github by creating a PR, sorry.

Okay, I can do that. I will write a truffle script in migrations to set up all at once. Let me test it all on ropsten. PR will be there today

I am on #153 for now, docs PR will be added shortly