How to onboard data using DDO deals
This is a step by step guide of how to make verified DDO deals with Boost
First, you need to initialise a new Boost client and also set the endpoint for a public Filecoin node. In this example we are using https://glif.io
The
init
command will output your new wallet address, and warn you that the market actor is not initialised.Now, you need to send some funds and Datacap to the wallet.
You can confirm that the market actor has funds and Datacap by running
boost wallet list
.After that you need to generate a
car
file for data you want to store on Filecoin, and note down itspayload-cid.
We recommend usinggo-car
CLI to generate the car file.Then you need to calculate the
commp
andpiece size
for the generatedcar
file: boostx generate-rand-car -c=50 -l=$links -s=5120000 .Create a new verified allocation for this piece using
boost
client. You can use other method to create allocations as long as piece details match the generated commP.Import the piece for the newly create allocation using
boostd
Watch the
boostd
UI to verify that the new DDO deal reaches "Complete" and "Claim Verified" state.
Last updated