Mora DAO is Mora's launchtrail submiter, It manages all the planets canister install/upgrade.
The planet's agreepayee is also this canister account.
It will become the governance of mora in the future!
Planet wasm: bin/planet_ic.wasm.gz
#!ic-repl
import helper = "dao canister id";
let wasm = file("./bin/planet_ic.wasm.gz");
call helper.setWasm(wasm);
Launchtrail wasm: bin/launchtrail_ic.wasm.gz
#!ic-repl
import helper = "dao canister id";
let trailWasm = file("./bin/launchtrail_ic.wasm.gz");
call helper.setTrailWasm(trailWasm);
the mora users canister source is here
the frontend mora.app, frontend source is here
If you want to start working on your project right away, you might want to try the following commands:
dfx help
dfx config --help
If you want to test your project locally, you can use the following commands:
# Starts the replica, running in the background
dfx start --background
# Deploys your canisters to the replica and generates your candid interface
dfx deploy