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
31 lines
846 B
TOML
31 lines
846 B
TOML
[package]
|
|
name = "synor-sdk"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "SDK for developing Synor smart contracts"
|
|
keywords = ["synor", "smart-contracts", "wasm", "blockchain"]
|
|
categories = ["wasm", "development-tools"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[dependencies]
|
|
# Serialization (no-std compatible)
|
|
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
|
|
borsh = { version = "1.3", default-features = false, features = ["derive"] }
|
|
|
|
# Hashing (for types)
|
|
blake3 = { version = "1.5", default-features = false }
|
|
|
|
# Encoding
|
|
hex = { version = "0.4", default-features = false, features = ["alloc"] }
|
|
|
|
[dev-dependencies]
|
|
synor-vm = { path = "../synor-vm" }
|
|
synor-types = { path = "../synor-types" }
|