SDK Setup
Installation
npm install @entangle-labs/uip-sdkAPI
public async estimateExecutionWithGas({
srcChainId: bigint,
destChainId: bigint,
gasLimit: bigint
})public async estimateExecutionSolana(
input: SimulateExecuteLiteInput
)
export type SimulateExecuteLiteInput = {
connection: Connection;
payload: Buffer;
srcChain: bigint;
senderAddr: Buffer;
destChain: bigint;
destAddr: PublicKey;
accounts: AccountMeta[];
payerOverride?: PublicKey;
computeUnits?: number;
};Mode
Network Configuration
Usage
Last updated