stratis-strapjs
Version:
Library for interacting with Stratis smart contracts.
18 lines (17 loc) • 392 B
TypeScript
export interface LocalCallResponse {
InternalTransfers: object[];
GasConsumed: number;
Revert: boolean;
ErrorMessage: string;
Return: any;
Logs: object[];
}
export interface LocalCall {
contractAddress: string;
methodName: string;
amount: number;
gasPrice: number;
gasLimit: number;
sender: string;
parameters: string[];
}