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

Example descriptions in package.json #231

Merged
merged 3 commits into from
Feb 5, 2025
Merged
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
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"
}
}
}