mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-05-18 15:09:51 +00:00
All mutable AMM instructions now require a `deadline: u64` field (Unix timestamp in milliseconds). Enforcement uses the LEZ-native timestamp validity window set on ProgramOutput; the runtime rejects the transaction if the sequencer submission timestamp is at or past the deadline. BREAKING CHANGE: AddLiquidity, RemoveLiquidity, SwapExactInput, SwapExactOutput, and NewDefinition instruction variants now require a `deadline` field. Closes #8
21 lines
654 B
TOML
21 lines
654 B
TOML
[package]
|
|
name = "ata-guest"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
[[bin]]
|
|
name = "ata"
|
|
path = "src/bin/ata.rs"
|
|
|
|
[dependencies]
|
|
spel-framework = { git = "https://github.com/logos-co/spel.git", rev = "9e7f2754e1d4cdb3ea36e63b1ff86c3af55488d3", package = "spel-framework" }
|
|
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc1" }
|
|
risc0-zkvm = { version = "=3.0.5", default-features = false }
|
|
ata_core = { path = "../../core" }
|
|
ata_program = { path = "../..", package = "ata_program" }
|
|
token_core = { path = "../../../token/core" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
borsh = "1.5"
|