Skip to content

Commit

Permalink
Video 2
Browse files Browse the repository at this point in the history
  • Loading branch information
skilesare committed Mar 27, 2024
1 parent e8bc2d7 commit b80cc88
Show file tree
Hide file tree
Showing 4 changed files with 504 additions and 36 deletions.
173 changes: 138 additions & 35 deletions dfx.json
@@ -1,37 +1,140 @@
{
"version": 1,
"canisters": {

"token": {
"type": "motoko",
"main": "src/Token.mo",
"args": "-v --incremental-gc"
},
"prodtoken": {
"type": "motoko",
"gzip": true,
"main": "src/Token.mo",
"args": "--incremental-gc --release"
},
"allowlist": {
"type": "motoko",
"main": "src/examples/Allowlist.mo",
"args": "-v --incremental-gc"
},
"lotto": {
"type": "motoko",
"main": "src/examples/Lotto.mo",
"args": "-v --incremental-gc"
}
},
"defaults": {
"build": {
"packtool": "mops sources",
"args": ""
},
"replica": {
"subnet_type": "system"
}
"canisters": {
"allowlist": {
"args": "-v --incremental-gc",
"main": "src/examples/Allowlist.mo",
"type": "motoko"
},
"lotto": {
"args": "-v --incremental-gc",
"main": "src/examples/Lotto.mo",
"type": "motoko"
},
"nns-cycles-minting": {
"build": "",
"candid": "candid/nns-cycles-minting.did",
"remote": {
"id": {
"ic": "rkp4c-7iaaa-aaaaa-aaaca-cai",
"local": "rkp4c-7iaaa-aaaaa-aaaca-cai"
}
},
"type": "custom",
"wasm": ""
},
"nns-genesis-token": {
"build": "",
"candid": "candid/nns-genesis-token.did",
"remote": {
"id": {
"ic": "renrk-eyaaa-aaaaa-aaada-cai",
"local": "renrk-eyaaa-aaaaa-aaada-cai"
}
},
"type": "custom",
"wasm": ""
},
"nns-governance": {
"build": "",
"candid": "candid/nns-governance.did",
"remote": {
"id": {
"ic": "rrkah-fqaaa-aaaaa-aaaaq-cai",
"local": "rrkah-fqaaa-aaaaa-aaaaq-cai"
}
},
"type": "custom",
"wasm": ""
},
"nns-ledger": {
"build": "",
"candid": "candid/nns-ledger.did",
"remote": {
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai",
"local": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
},
"type": "custom",
"wasm": ""
},
"nns-lifeline": {
"build": "",
"candid": "candid/nns-lifeline.did",
"remote": {
"id": {
"ic": "rno2w-sqaaa-aaaaa-aaacq-cai",
"local": "rno2w-sqaaa-aaaaa-aaacq-cai"
}
},
"type": "custom",
"wasm": ""
},
"nns-registry": {
"build": "",
"candid": "candid/nns-registry.did",
"remote": {
"id": {
"ic": "rwlgt-iiaaa-aaaaa-aaaaa-cai",
"local": "rwlgt-iiaaa-aaaaa-aaaaa-cai"
}
},
"type": "custom",
"wasm": ""
},
"nns-root": {
"build": "",
"candid": "candid/nns-root.did",
"remote": {
"id": {
"ic": "r7inp-6aaaa-aaaaa-aaabq-cai",
"local": "r7inp-6aaaa-aaaaa-aaabq-cai"
}
},
"type": "custom",
"wasm": ""
},
"nns-sns-wasm": {
"build": "",
"candid": "candid/nns-sns-wasm.did",
"remote": {
"id": {
"ic": "qaa6y-5yaaa-aaaaa-aaafa-cai",
"local": "qaa6y-5yaaa-aaaaa-aaafa-cai"
}
},
"type": "custom",
"wasm": ""
},
"prodtoken": {
"args": "--incremental-gc --release",
"gzip": true,
"main": "src/Token.mo",
"type": "motoko"
},
"token": {
"args": "-v --incremental-gc",
"main": "src/Token.mo",
"type": "motoko"
}
},
"defaults": {
"build": {
"args": "",
"packtool": "mops sources"
},
"replica": {
"subnet_type": "system"
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8080",
"replica": {
"subnet_type": "system"
},
"type": "ephemeral"
}

}
},
"version": 1
}

0 comments on commit b80cc88

Please sign in to comment.