diff --git a/.question.json b/.question.json new file mode 100644 index 0000000..6e98e87 --- /dev/null +++ b/.question.json @@ -0,0 +1,42 @@ +[ + { + "name": "__USERFULLNAME__", + "message": "Enter author full name", + "required": true + }, + { + "name": "__USEREMAIL__", + "message": "Enter author email", + "required": true + }, + { + "name": "__MODULENAME__", + "message": "Enter the module name", + "required": true + }, + { + "name": "__MODULEDESC__", + "message": "Enter the module description", + "required": true + }, + { + "name": "__REPONAME__", + "message": "Enter the repository name", + "required": true + }, + { + "name": "__USERNAME__", + "message": "Enter your github username", + "required": true + }, + { + "name": "__ACCESS__", + "message": "Module access?", + "choices": [ + "public", + "restricted" + ], + "type": "list", + "required": true + } +] diff --git a/README.md b/README.md index 29aa320..290048f 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,16 @@ -# hyperweb +# __MODULENAME__

+ __MODULEDESC__

- - + +
- +

@@ -39,13 +40,14 @@ Welcome to **Hyperweb**, the blockchain for JavaScript smart contracts. Hyperweb - [Evaluating Functions on the Contract](#evaluating-functions-on-the-contract) - [Reading Contract State](#reading-contract-state) - [Development](#development) +- [Disclaimer](#disclaimer) ## Installation 1. Clone the repository: ```bash -git clone https://github.com/hyperweb-io/hyperweb-boilerplate.git +git clone https://github.com/__USERNAME__/__REPONAME__.git yarn ``` @@ -248,3 +250,7 @@ console.log('Contract state:', state); ## Development For local development, you can run the tests provided in the `__tests__/` folder to validate contract functionality using `starshipjs` to simulate chain interactions. + +## Disclaimer +AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND. +No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value. diff --git a/package.json b/package.json index 3bec0cb..37c385b 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,20 @@ { "name": "hyperweb", "version": "0.0.1", - "description": "Hyperweb smart contracts", - "author": "Hyperweb ", - "homepage": "https://github.com/hyperweb-io/hyperweb#readme", + "author": "__USERFULLNAME__ <__USEREMAIL__>", + "description": "__MODULEDESC__", + "homepage": "https://github.com/__USERNAME__/__REPONAME__", "license": "SEE LICENSE IN LICENSE", "repository": { "type": "git", - "url": "https://github.com/hyperweb-io/hyperweb" + "url": "https://github.com/__USERNAME__/__REPONAME__" }, "bugs": { - "url": "https://github.com/hyperweb-io/hyperweb/issues" + "url": "https://github.com/__USERNAME__/__REPONAME__/issues" + }, + "publishConfig": { + "access": "__ACCESS__", + "directory": "dist" }, "scripts": { "clean": "rimraf dist/contracts/**",