A complete blockchain implementation featuring: - synord: Full node with GHOSTDAG consensus - explorer-web: Modern React blockchain explorer with 3D DAG visualization - CLI wallet and tools - Smart contract SDK and example contracts (DEX, NFT, token) - WASM crypto library for browser/mobile
21 lines
636 B
TOML
21 lines
636 B
TOML
[package]
|
|
name = "synor-token"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "SYN-20 Token Contract for Synor"
|
|
authors = ["Synor Team <team@synor.cc>"]
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
synor-sdk = { path = "../../crates/synor-sdk", default-features = false }
|
|
borsh = { version = "1.3", default-features = false, features = ["derive"] }
|
|
|
|
[profile.release]
|
|
opt-level = "z" # Optimize for size
|
|
lto = true # Link-time optimization
|
|
codegen-units = 1 # Single codegen unit for better optimization
|
|
panic = "abort" # Abort on panic (smaller binaries)
|
|
strip = true # Strip symbols
|