create-near-app 9.0.0 → 9.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -56,8 +56,8 @@ const appChoices = [
56
56
  },
57
57
  ];
58
58
  const templateChoices = [
59
- { title: 'Auction', description: 'A simple auction smart contract', value: 'auction' },
60
- { title: 'Auction (advance)', description: 'An auction contract were users can bid with FT and the winner gets a NFT', value: 'auction-adv' },
59
+ { title: 'Auction', description: 'A simple smart contract where users bid using NEAR, ideal for beginners', value: 'auction' },
60
+ { title: 'Auction (with FT)', description: 'A more advanced contract where users bid using FT and the winner gets an NFT, for experienced users', value: 'auction-adv' },
61
61
  ];
62
62
  const contractChoices = [
63
63
  { title: 'Rust (recommended)', description: 'A smart contract written in Rust', value: 'rs' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-near-app",
3
- "version": "9.0.0",
3
+ "version": "9.0.1",
4
4
  "description": "Quickly scaffold your dApp on NEAR Blockchain",
5
5
  "main": "index.js",
6
6
  "engines": {
@@ -1,6 +1,6 @@
1
1
  [package]
2
- name = "cargo-near-new-project-name"
3
- description = "cargo-near-new-project-description"
2
+ name = "auction"
3
+ description = "An auction smart contract"
4
4
  version = "0.1.0"
5
5
  edition = "2021"
6
6
  # TODO: Fill out the repository field to help NEAR ecosystem tools to discover your project.
@@ -1,11 +1,11 @@
1
1
  {
2
- "name": "auction-contract",
2
+ "name": "auction",
3
3
  "version": "1.0.0",
4
4
  "license": "(MIT AND Apache-2.0)",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build": "near-sdk-js build src/contract.ts build/auction-contract.wasm",
8
- "test": "$npm_execpath run build && ava -- ./build/auction-contract.wasm"
7
+ "build": "near-sdk-js build src/contract.ts build/auction.wasm",
8
+ "test": "$npm_execpath run build && ava -- ./build/auction.wasm"
9
9
  },
10
10
  "dependencies": {
11
11
  "near-sdk-js": "2.0.0"
@@ -1,6 +1,6 @@
1
1
  [package]
2
- name = "cargo-near-new-project-name"
3
- description = "cargo-near-new-project-description"
2
+ name = "auction"
3
+ description = "An auction where users can bid using Fungible Tokens"
4
4
  version = "0.1.0"
5
5
  edition = "2021"
6
6
  # TODO: Fill out the repository field to help NEAR ecosystem tools to discover your project.
@@ -1,11 +1,11 @@
1
1
  {
2
- "name": "auction-contract",
2
+ "name": "auction",
3
3
  "version": "1.0.0",
4
4
  "license": "(MIT AND Apache-2.0)",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build": "near-sdk-js build src/contract.ts build/auction-contract.wasm",
8
- "test": "$npm_execpath run build && ava -- ./build/auction-contract.wasm"
7
+ "build": "near-sdk-js build src/contract.ts build/auction.wasm",
8
+ "test": "$npm_execpath run build && ava -- ./build/auction.wasm"
9
9
  },
10
10
  "dependencies": {
11
11
  "near-sdk-js": "2.0.0"