@pangolindex/sdk
Version:
🛠An SDK for building applications on top of Pangolin.
19 lines (18 loc) • 482 B
TypeScript
export interface Bridge {
id: string;
name: string;
logo: string;
aggregator_address: string;
affiliate: string;
fee: number;
}
export interface BridgePartner {
name: string;
logo: string;
}
export declare const THORSWAP: Bridge;
export declare const LIFI: Bridge;
export declare const SQUID: Bridge;
export declare const RANGO: Bridge;
export declare const BRIDGES: Bridge[];
export declare const BRIDGE_PARTNERS: BridgePartner[];