interveil-sdk 0.1.0

A portable execution language for intent-based Solana transactions — build, sign, and submit intents without holding keys
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(clippy::module_inception)]

pub mod builder;
pub mod intent;
pub mod payload;
pub mod serialize;
pub mod sign;

pub use intent::Intent;
pub use payload::IntentPayload;
pub use sign::SignedIntent;