Your set up needs to meet the following requirements :
Node >= 14.0.0
make and curl packages
Getting Started
To initialise and compile the runtime, follow the steps in the Runtime Development section. The following steps should be completed before the next step of the guide:
Initialise a new Subsembly project:
subsembly init --to=./subsembly-starter
Compile your runtime:
cd subsembly-starter
subsembly compile
Generate new chain specification file:
subsembly spec --to=./chain-spec.json
Here, you will need to replace or add a new Aura or GRANDPA authority in the chain spec file. For generating your own keys, refer to Substratetutorial. By default chain spec comes with generic address. If you want a different authority, just add the public address of authority inside the array of authorities:
The last step is very important, since you will have to insert your Aura and GRANDPA keys in the next chapter.
Convert it to raw:
To learn more about the above commands, please refer to Development section. After you have successfully completed above steps, go to the next step to see how you can interact with your runtime.