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
12
13
14
15
pub mod client;
pub mod error;
pub mod intent;
pub mod signer;
pub mod types;

pub use client::{Client, SubmitResponse};
pub use error::VeilError;
pub use intent::intent::Intent;
pub use intent::payload::IntentPayload;
pub use intent::sign::SignedIntent;
pub use signer::Signer;
pub use types::Chain;
pub use types::Nonce;
pub use types::Signature;