Skip to content

Commit

Permalink
Example descriptions in package.json (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev authored Feb 5, 2025
1 parent a760288 commit 67911fb
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 34 deletions.
4 changes: 2 additions & 2 deletions examples/call/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Hello Example
# Call Example

Tutorial: https://www.zetachain.com/docs/developers/tutorials/call/
Tutorial: https://www.zetachain.com/docs/developers/tutorials/call
4 changes: 2 additions & 2 deletions examples/call/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-template",
"name": "call",
"version": "1.0.0",
"description": "",
"description": "Example of how to make cross-chain calls, transfer native tokens, and handle reverts.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down
2 changes: 1 addition & 1 deletion examples/hello/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Hello Example

Tutorial: https://www.zetachain.com/docs/developers/tutorials/hello/
Tutorial: https://www.zetachain.com/docs/developers/tutorials/hello
4 changes: 2 additions & 2 deletions examples/hello/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-template",
"name": "hello",
"version": "1.0.0",
"description": "",
"description": "Simple universal app that emits an event when called from a connected chain.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down
4 changes: 2 additions & 2 deletions examples/nft/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Universal NFT Example
# Universal NFT

https://www.zetachain.com/docs/developers/standards/nft/
Learn more: https://www.zetachain.com/docs/developers/standards/nft
6 changes: 3 additions & 3 deletions examples/nft/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-template",
"name": "nft",
"version": "1.0.0",
"description": "",
"description": "Universal NFT enables non-fungible ERC-721 tokens to minted and transferred between connected chains.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down Expand Up @@ -63,4 +63,4 @@
"@zetachain/standard-contracts": "1.0.0-rc4",
"validator": "^13.12.0"
}
}
}
16 changes: 2 additions & 14 deletions examples/swap/README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
# ZetaChain Contracts Template
# Universal Swap

## Getting Started

Install dependencies:

```
yarn
```

## Next Steps

Ready to dive in? Follow our [**🚀 smart contract
tutorials**](https://www.zetachain.com/docs/developers/tutorials/intro/) to
start building universal app contracts.
Tutorial: https://www.zetachain.com/docs/developers/tutorials/swap
6 changes: 3 additions & 3 deletions examples/swap/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-template",
"name": "swap",
"version": "1.0.0",
"description": "",
"description": "Cross-chain swap contract enabling token exchanges between Ethereum, Solana, Bitcoin, and other blockchains.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down Expand Up @@ -60,4 +60,4 @@
"@zetachain/networks": "10.0.0-rc4",
"@zetachain/toolkit": "13.0.0-rc15"
}
}
}
4 changes: 2 additions & 2 deletions examples/token/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Universal NFT Example
# Universal Token

https://www.zetachain.com/docs/developers/standards/nft/
Learn more: https://www.zetachain.com/docs/developers/standards/toke
6 changes: 3 additions & 3 deletions examples/token/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-template",
"name": "token",
"version": "1.0.0",
"description": "",
"description": "Universal Token enables ERC-20 tokens to minted and transferred between connected chains",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down Expand Up @@ -63,4 +63,4 @@
"@zetachain/standard-contracts": "1.0.0-rc4",
"validator": "^13.12.0"
}
}
}

0 comments on commit 67911fb

Please sign in to comment.