@wormhole-foundation/sdk-evm
Version:
SDK for EVM chains, used in conjunction with @wormhole-foundation/sdk
22 lines • 665 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EvmUnsignedTransaction = void 0;
/**
* An unsigned transaction for the EVM platform
*/
class EvmUnsignedTransaction {
transaction;
network;
chain;
description;
parallelizable;
constructor(transaction, network, chain, description, parallelizable = false) {
this.transaction = transaction;
this.network = network;
this.chain = chain;
this.description = description;
this.parallelizable = parallelizable;
}
}
exports.EvmUnsignedTransaction = EvmUnsignedTransaction;
//# sourceMappingURL=unsignedTransaction.js.map