Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/settlemint/solidity-token-erc721a
The ERC721a token smart contract set
https://github.com/settlemint/solidity-token-erc721a
blockchain-transformation erc721a foundry hardhat solidity
Last synced: 3 days ago
JSON representation
The ERC721a token smart contract set
- Host: GitHub
- URL: https://github.com/settlemint/solidity-token-erc721a
- Owner: settlemint
- License: other
- Created: 2024-03-13T16:32:00.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-12T22:29:17.000Z (4 days ago)
- Last Synced: 2024-11-12T23:26:18.066Z (4 days ago)
- Topics: blockchain-transformation, erc721a, foundry, hardhat, solidity
- Language: Solidity
- Homepage: https://settlemint.com
- Size: 1.4 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
![logo](https://github.com/settlemint/solidity-token-erc721a/blob/main/OG_Solidity.jpg)
✨ [https://settlemint.com](https://settlemint.com) ✨
Build your own blockchain usecase with ease.
[![CI status](https://github.com/settlemint/solidity-token-erc721a/actions/workflows/solidity.yml/badge.svg?event=push&branch=main)](https://github.com/settlemint/solidity-token-erc721a/actions?query=branch%3Amain) [![License](https://img.shields.io/npm/l/@settlemint/solidity-token-erc721a)](https://fsl.software) [![npm](https://img.shields.io/npm/dw/@settlemint/solidity-token-erc721a)](https://www.npmjs.com/package/@settlemint/solidity-token-erc721a) [![stars](https://img.shields.io/github/stars/settlemint/solidity-token-erc721a)](https://github.com/settlemint/solidity-token-erc721a)
[Documentation](https://console.settlemint.com/documentation/) • [Discord](https://discord.com/invite/Mt5yqFrey9) • [NPM](https://www.npmjs.com/package/@settlemint/solidity-token-erc721a) • [Issues](https://github.com/settlemint/solidity-token-erc721a/issues)
## Get started
Launch this smart contract set in SettleMint under the `Smart Contract Sets` section. This will automatically link it to your own blockchain node and make use of the private keys living in the platform.
If you want to use it separately, bootstrap a new project using
```shell
forge init my-project --template settlemint/solidity-token-erc721a
```Or if you want to use this set as a dependency of your own,
```shell
bun install @settlemint/solidity-token-erc721a
```## DX: Foundry & Hardhat hybrid
**Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.**
Foundry consists of:
- **Forge**: Ethereum testing framework (like Truffle, Hardhat and DappTools).
- **Cast**: Swiss army knife for interacting with EVM smart contracts, sending transactions and getting chain data.
- **Anvil**: Local Ethereum node, akin to Ganache, Hardhat Network.
- **Chisel**: Fast, utilitarian, and verbose solidity REPL.**Hardhat is a Flexible, Extensible, Fast Ethereum development environment for professionals in typescript**
Hardhat consists of:
- **Hardhat Runner**: Hardhat Runner is the main component you interact with when using Hardhat. It's a flexible and extensible task runner that helps you manage and automate the recurring tasks inherent to developing smart contracts and dApps.
- **Hardhat Ignition**: Declarative deployment system that enables you to deploy your smart contracts without navigating the mechanics of the deployment process.
- **Hardhat Network**: Declarative deployment system that enables you to deploy your smart contracts without navigating the mechanics of the deployment process.## Documentation
- Additional documentation can be found in the [docs folder](./docs).
- [SettleMint Documentation](https://console.settlemint.com/documentation/docs/using-platform/integrated-development-environment/)
- [Foundry Documentation](https://book.getfoundry.sh/)
- [Hardhat Documentation](https://hardhat.org/hardhat-runner/docs/getting-started)