@skalenetwork/ima-js
Version:
Simple TS/JS library to interact with SKALE IMA
60 lines (59 loc) • 1.36 kB
TypeScript
declare const _default: {
abi: ({
type: string;
payable: boolean;
inputs: {
type: string;
name: string;
}[];
anonymous?: undefined;
name?: undefined;
constant?: undefined;
stateMutability?: undefined;
outputs?: undefined;
} | {
type: string;
anonymous: boolean;
name: string;
inputs: {
type: string;
name: string;
indexed: boolean;
}[];
payable?: undefined;
constant?: undefined;
stateMutability?: undefined;
outputs?: undefined;
} | {
type: string;
name: string;
constant: boolean;
stateMutability: string;
payable: boolean;
inputs: {
type: string;
name: string;
}[];
outputs: {
type: string;
name: string;
}[];
anonymous?: undefined;
} | {
type: string;
name: string;
constant: boolean;
payable: boolean;
inputs: {
type: string;
name: string;
}[];
outputs: {
type: string;
name: string;
}[];
anonymous?: undefined;
stateMutability?: undefined;
})[];
};
export default _default;