Skip to content

Commit

Permalink
add staking template
Browse files Browse the repository at this point in the history
  • Loading branch information
abdelkrimdev committed Nov 27, 2022
1 parent af38235 commit 03210f2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A quick and easy way to bootstrap your dApps on Cardano using Mesh.",
"homepage": "https://mesh.martify.io",
"author": "MartifyLabs",
"version": "1.0.0",
"version": "1.0.2",
"license": "Apache-2.0",
"main": "dist/create-mesh-app.cjs.js",
"bin": {
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/actions/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const create = async (name, options) => {
(await askUser('What template do you want to use?', [
{ title: 'Starter Project', value: 'starter' },
{ title: 'Multi-Sig Minting', value: 'minting' },
{ title: 'Staking Button', value: 'staking' },
{ title: 'Smart-Contract Marketplace <COMING-SOON>', value: 'marketplace' },
]));

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const main = async () => {
createOption(
'-t, --template <TEMPLATE-NAME>',
`The template to start your project from.`
).choices(['starter', 'minting', 'marketplace'])
).choices(['starter', 'minting', 'staking', 'marketplace'])
)
.addOption(
createOption(
Expand Down
2 changes: 1 addition & 1 deletion packages/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^2.0.10",
"@martifylabs/mesh": "1.2.0-beta.2",
"@martifylabs/mesh-react": "1.0.1-beta.6",
"@martifylabs/mesh-react": "1.1.0",
"copy-to-clipboard": "^3.3.2",
"flowbite": "^1.5.3",
"flowbite-react": "^0.1.10",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "React Hooks & Components you need for building dApps on Cardano.",
"homepage": "https://mesh.martify.io",
"author": "MartifyLabs",
"version": "1.0.1-beta.6",
"version": "1.1.0",
"license": "Apache-2.0",
"type": "module",
"repository": {
Expand Down

0 comments on commit 03210f2

Please sign in to comment.