quiamet
Version:
The web3 inject of bearby walet to access massa blockchain
21 lines • 708 B
TypeScript
import { OperationsType } from "config/operations";
import { CallParam } from "types/massa";
export declare class Transaction {
#private;
fee?: string;
gasPrice?: string;
gasLimit?: string;
coins?: string;
maxCoins?: string;
contract?: string;
functionName?: string;
parameters?: CallParam[];
unsafeParams?: Uint8Array;
recipient?: string;
deployer?: string;
readonly type: OperationsType;
readonly amount: string;
get payload(): any;
constructor(type: OperationsType, amount: string, recipient?: string, parameters?: CallParam[], unsafeParams?: Uint8Array, contract?: string, functionName?: string);
}
//# sourceMappingURL=transaction.d.ts.map