Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add validateTxProof and move to contract template #1

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Required
HIVE_ACCOUNT_ACTIVE_PRIVATE_KEY=
HIVE_ACCOUNT_USERNAME=

# Optional (defaults shown below)
IPFS_HOST=/ip4/127.0.0.1/tcp/5001 # if not set an IPFS node will be started for you using ports 4001 and 5001
HIVE_HOST=https://hive-api.web3telekom.xyz
VSC_NETWORK_ID=testnet/0bf2e474-6b9e-4165-ad4e-a0d78968d20c
VSC_NODE_HOST=https://api.vsc.eco
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
node_modules
.yarn
.env
package-lock.json
docs
10 changes: 10 additions & 0 deletions .swcrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true,
"decoratorsBeforeExport": true
},
"target": "es2020"
}
}
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
15 changes: 9 additions & 6 deletions asconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
"outFile": "build/debug.wasm",
"textFile": "build/debug.wat",
"sourceMap": true,
"debug": true
"debug": true,
"importMemory": true,
"noExportMemory": true,
"exportRuntime": true,
"bindings": "raw",
"transform": ["@vsc.eco/contract-testing-utils/debugTransform"]
},
"release": {
"outFile": "build/release.wasm",
Expand All @@ -13,10 +18,8 @@
"optimizeLevel": 3,
"shrinkLevel": 0,
"converge": false,
"noAssert": false
"noAssert": false,
"bindings": "esm"
}
},
"options": {
"bindings": "esm"
}
}
}
Loading
Loading