Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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: 5 additions & 0 deletions training-dapp-1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
artifacts
.taq/*-state.json
.taq/config.local.*.json
node_modules/
1 change: 1 addition & 0 deletions training-dapp-1/.ligo/repository_id
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0a1f4db3-a0ba-43d9-40d3-1e58cc652b36
1 change: 1 addition & 0 deletions training-dapp-1/.ligo/term_acceptance
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
accepted
73 changes: 73 additions & 0 deletions training-dapp-1/.taq/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{
"version": "v2",
"language": "en",
"artifactsDir": "artifacts",
"contractsDir": "contracts",
"accounts": {
"bob": {
"balance": {
"amount": "30_000_000",
"units": "mutez"
}
},
"alice": {
"balance": {
"amount": "30_000_000",
"units": "mutez"
}
},
"john": {
"balance": {
"amount": "30_000_000",
"units": "mutez"
}
},
"jane": {
"balance": {
"amount": "30_000_000",
"units": "mutez"
}
},
"joe": {
"balance": {
"amount": "30_000_000",
"units": "mutez"
}
}
},
"environmentDefault": "development",
"environments": {
"development": {
"type": "flextesa",
"label": "Local Tezos Sandbox"
},
"testing": {
"type": "simple",
"label": "ghostnet",
"rpcUrl": "https://ghostnet.ecadinfra.com"
},
"production": {
"type": "simple",
"label": "mainnet",
"rpcUrl": "https://mainnet.api.tez.ie"
}
},
"plugins": [
{
"type": "npm",
"name": "@taqueria/plugin-ligo"
},
{
"type": "npm",
"name": "@taqueria/plugin-taquito"
},
{
"type": "npm",
"name": "@taqueria/plugin-octez-client"
},
{
"type": "npm",
"name": "@taqueria/plugin-contract-types"
}
]
}
Loading