Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ton-ion/tonion-contracts
TonIon Contracts is a reusable smart contract library and toolkit for the Tact language on the TON blockchain
https://github.com/ton-ion/tonion-contracts
developer-tools library smart-contracts tact ton tonion
Last synced: about 1 month ago
JSON representation
TonIon Contracts is a reusable smart contract library and toolkit for the Tact language on the TON blockchain
- Host: GitHub
- URL: https://github.com/ton-ion/tonion-contracts
- Owner: ton-ion
- License: mit
- Created: 2024-06-23T15:14:25.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-25T23:01:55.000Z (5 months ago)
- Last Synced: 2024-08-04T03:04:08.746Z (5 months ago)
- Topics: developer-tools, library, smart-contracts, tact, ton, tonion
- Language: TypeScript
- Homepage: https://tonion.tech/
- Size: 180 KB
- Stars: 17
- Watchers: 2
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-tact - Tonion
README
TonIon Contracts is a reusable smart contract library and toolkit for the Tact language on the TON blockchain. TonIon aims to provide reliable and efficient contract components to streamline the development of TON-based decentralized applications.
## Document
You can find Tonion documents on **[Tonion docs](https://tonion.tech)**
### Traits
add the `traits (contracts/traits)` to your project `contracts/imports`, then
Import the required contracts and traits in your Tact code.#### Sample Jetton Master:
```ts
import "@stdlib/deploy";
import "../imports/tonion/JettonMaster.tact";
import "../imports/tonion/JettonWallet.tact";contract MyJetton with JettonMaster, Deployable {
total_supply: Int as coins;
owner: Address;
jetton_content: Cell;
mintable: Bool;
init(owner: Address, content: Cell){
self.total_supply = 0;
self.owner = owner;
self.mintable = true;
self.jetton_content = content;
}override inline fun calculate_jetton_wallet_init(owner_address: Address): StateInit {
return initOf MyJettonWallet(owner_address, myAddress());
}}
```#### Sample Jetton Wallet:
```ts
import "@stdlib/deploy";
import "../imports/tonion/JettonMaster.tact";
import "../imports/tonion/JettonWallet.tact";contract MyJettonWallet with JettonWallet, Deployable {
balance: Int as coins = 0;
owner: Address;
jetton_master: Address;init(owner: Address, jetton_master: Address) {
self.owner = owner;
self.jetton_master = jetton_master;
}override inline fun calculate_jetton_wallet_init(owner_address: Address): StateInit {
return initOf MyJettonWallet(owner_address, self.jetton_master);
}
}
```### implementation
actually you can find implementation for the traits or TEPs in mock [contracts/mock](./contracts/mocks/) directory
### Tonion-CLI
We are working on a solution to use `npm` to install Tonion Contracts and import them directly into your contracts without copying the files manually.
Additionally, we are exploring potential changes in Tact to support importing directly from GitHub or similar platforms.## Traits
```plaintext
┌ contracts/traits
│
├── access
│ │
│ ├── OwnableTransferable2Step.tact ✅
│ │
│ └── AccessControl.tact ✅
│
├── utils
│ │
│ └── Counter.tact ✅
│
├── payments
│ │
│ └── PaymentSplitter.tact ✅
│
└── tokens
│
├── jetton
│ │
│ ├── JettonMaster.tact ✅
│ ├── JettonWallet.tact ✅
│ │
│ └── extensions
│ │
│ ├── MaxSupply.tact ✅
│ │
│ └── Approveable.tact ❓
│
│
└── NFT
│
├── NFTCollection.tact ⏳
├── NFTItem.tact ⏳
│
└── extensions
│
├── Editable.tact ⏳
│
├── MaxSupply.tact ⏳
│
└── Royalty.tact ⏳```
## Scripts
- **Build All Contracts**: Compiles all the contracts in the library.
```sh
npm run build:all
```- **Run Tests**: Executes the test suite using Jest.
```sh
npm test
```## Project Structure
```plaintext
┌── contracts
│ │
│ ├── traits
│ │ │
│ │ └── (trait categories)
│ │ │
│ │ └── (trait sub-categories)
│ │ │
│ │ └── (trait files)
│ ├── mocks
│ │ │
│ │ └── (mock categories)
│ │ │
│ │ └── (mock sub-categories)
│ │ │
│ │ └── (mock files)
├── tests
│ │
│ ├── (test categories)
│ │ │
│ │ └── (test files)
│ │
│ └── main.spec.ts
│
├── wrappers
│ │
│ └──(wrapper file)
│
├── package.json
│
└── README.md
```## Contributing
We welcome contributions from the community! If you'd like to contribute, please follow these steps:
1. Fork the repository.
2. Add a feature or fix a bug
3. Open a pull request.## Contributors
## License
This project is licensed under the MIT License - see the [MIT License](LICENSE) file for details.