ton-ion / tonion-contracts

TonIon Contracts is a reusable smart contract library and toolkit for the Tact language on the TON blockchain

Home Page:https://tonion.tech/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TonIon


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

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:

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:

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 the mock contracts/mock 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

┌ contracts/traits
│
├── access
│   │
│   ├── OwnableTransferable2Step.tact ✅
│   │
│   └── AccessControl.tact ✅
│
├── utils
│   │
│   └── Counter.tact ✅
│   
├── payments
│   │
│   └── PaymentSplitter.tact ✅
│   
└── tokens
    │
    └── jetton
        │
        ├── Jetton.tact ✅
        │
        └── extensions
            │
            ├── MaxSupply.tact ✅
            │
            └── Approveable.tact ⏳

Scripts

  • Build All Contracts: Compiles all the contracts in the library.

    npm run build:all
  • Run Tests: Executes the test suite using Jest.

    npm test

Project Structure

┌── 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

ZigBalthazar
Zig Blathazar
kehiy
Kay
olumo-oke
olumo-oke

License

This project is licensed under the MIT License - see the MIT License file for details.

About

TonIon Contracts is a reusable smart contract library and toolkit for the Tact language on the TON blockchain

https://tonion.tech/

License:MIT License


Languages

Language:TypeScript 100.0%