Import Modules
Example Implementation
https://github.com/artfilabs/rewardsv1.git
Add Dependencies
Add the Artinals package to your Move.toml:
[package]
name = "your_package_name"
edition = "2024.beta"
[dependencies.Sui]
git = "https://github.com/MystenLabs/sui.git"
subdir = "crates/sui-framework/packages/sui-framework"
rev = "framework/testnet"
[dependencies.artinals]
git = "https://github.com/artfilabs/artinalsprotocolv1.git"
rev = "main"
subdir = "."
[addresses]
rewards = "0x0"
[dev-dependencies]
# none
[dev-addresses]
# none2. Import Modules
In your Move contract, import the required modules:
Core Features Integration
1. NFT Management (ART20)
2. Sales Integration (SALE)
3. Trading Pool Integration (TRADE)
Last updated