Repository containing the frontend of the hotornot.wtf app.
To get the hash for the webclient
canister:
-
Get the canister ID of the
webclient
fromcanister_ids.json
. -
Get hash using the DFX SDK by running:
dfx canister info <canister-id> --network=ic
.(
<canister-id>
forwebclient
isvyatz-hqaaa-aaaam-qauea-cai
) -
The output of the above command should contain
Module hash
followed up with the hash value. Example output:$ > dfx canister info vyatz-hqaaa-aaaam-qauea-cai --network=ic Controllers: 7gaq2-4kttl-vtbt4-oo47w-igteo-cpk2k-57h3p-yioqe-wkawi-wz45g-jae wwyo5-vrahh-jwa74-3m6kj-jqbia-jbebm-7vtyd-uvqem-wk3zw-djpci-vqe Module hash: 0x98863747bb8b1366ae5e3c5721bfe08ce6b7480fe4c3864d4fec3d9827255480
To get the hash for webclient
canister deployment:
- Go to Github actions deployment runs
- Open the latest succesful run. (Click to see an example run)
- Go to
web-client-deploy-dapp
job. (Click to see an example job) - Open
dfx deploy webclient --network ic --no-wallet
step. You should find theModule hash
in this step. This value should match the value you got locally. (Click to see an example step)