PHP WebShell
Текущая директория: /opt/BitGoJS/node_modules/algosdk/dist/esm/src/abi
Просмотр файла: transaction.js
export var ABITransactionType;
(function (ABITransactionType) {
/**
* Any transaction type
*/
ABITransactionType["any"] = "txn";
/**
* Payment transaction type
*/
ABITransactionType["pay"] = "pay";
/**
* Key registration transaction type
*/
ABITransactionType["keyreg"] = "keyreg";
/**
* Asset configuration transaction type
*/
ABITransactionType["acfg"] = "acfg";
/**
* Asset transfer transaction type
*/
ABITransactionType["axfer"] = "axfer";
/**
* Asset freeze transaction type
*/
ABITransactionType["afrz"] = "afrz";
/**
* Application transaction type
*/
ABITransactionType["appl"] = "appl";
})(ABITransactionType || (ABITransactionType = {}));
export function abiTypeIsTransaction(type) {
return (type === ABITransactionType.any ||
type === ABITransactionType.pay ||
type === ABITransactionType.keyreg ||
type === ABITransactionType.acfg ||
type === ABITransactionType.axfer ||
type === ABITransactionType.afrz ||
type === ABITransactionType.appl);
}
export function abiCheckTransactionType(type, txn) {
if (type === ABITransactionType.any) {
return true;
}
return txn.type && txn.type.toString() === type.toString();
}
//# sourceMappingURL=transaction.js.mapВыполнить команду
Для локальной разработки. Не используйте в интернете!