Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions bitcoin-starter/motoko-backend/canister.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,4 @@

name: backend
recipe:
type: "@dfinity/motoko@v4.1.0"
configuration:
main: src/main.mo
candid: backend.did
type: "@dfinity/motoko@v5.0.0"
6 changes: 5 additions & 1 deletion bitcoin-starter/motoko-backend/mops.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@
core = "2.3.1"

[toolchain]
moc = "1.3.0"
moc = "1.8.2"

[canisters.backend]
main = "src/main.mo"
candid = "backend.did"
6 changes: 1 addition & 5 deletions hello-world/motoko-backend/canister.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,5 @@

name: backend
recipe:
type: "@dfinity/motoko@v4.1.0"
configuration:
main: src/main.mo
# optional
candid: backend.did
type: "@dfinity/motoko@v5.0.0"

6 changes: 5 additions & 1 deletion hello-world/motoko-backend/mops.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[toolchain]
moc = "1.3.0"
moc = "1.8.2"

[canisters.backend]
main = "src/main.mo"
candid = "backend.did"
6 changes: 1 addition & 5 deletions motoko/icp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
canisters:
- name: {{project-name}}
recipe:
type: "@dfinity/motoko@v4.1.0"
configuration:
main: src/main.mo
# optional
candid: {{project-name}}.did
type: "@dfinity/motoko@v5.0.0"

{% if network_type == "Docker" -%}
networks:
Expand Down
5 changes: 4 additions & 1 deletion motoko/mops.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[toolchain]
moc = "1.3.0"
moc = "1.8.2"

[canisters]
{{project-name}} = "src/main.mo"
Loading