@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
11 lines (10 loc) • 608 B
JavaScript
export var TransactionType;
(function (TransactionType) {
TransactionType[TransactionType["GENERIC"] = 0] = "GENERIC";
TransactionType[TransactionType["FUNDING"] = 1] = "FUNDING";
TransactionType[TransactionType["DEPLOYMENT"] = 2] = "DEPLOYMENT";
TransactionType[TransactionType["INTERACTION"] = 3] = "INTERACTION";
TransactionType[TransactionType["MULTI_SIG"] = 4] = "MULTI_SIG";
TransactionType[TransactionType["CUSTOM_CODE"] = 5] = "CUSTOM_CODE";
TransactionType[TransactionType["CHALLENGE_SOLUTION"] = 6] = "CHALLENGE_SOLUTION";
})(TransactionType || (TransactionType = {}));