vialabs-stellar-common 0.1.2

Common interfaces, types, and utilities for Stellar contracts in the VIA cross-chain messaging system
Documentation
1
2
3
4
5
6
use soroban_sdk::{contractclient, BytesN, Env, Vec};

#[contractclient(name = "PosHandlerClient")]
pub trait PosHandlerInterface {
  fn message_validate(env: &Env, signatures: Vec<BytesN<64>>) -> bool;
}