@ledgerhq/coin-tron
Version:
Ledger Tron Coin integration
14 lines • 485 B
JavaScript
export function isTrongridExtraTxInfo(op) {
return (op !== null &&
typeof op === "object" &&
("frozenAmount" in op || "unfreezeAmount" in op || "votes" in op));
}
export function isTrongridExtraTxInfoRaw(op) {
return (op !== null &&
typeof op === "object" &&
("frozenAmount" in op || "unfreezeAmount" in op || "votes" in op));
}
export function isTronAccount(account) {
return "tronResources" in account;
}
//# sourceMappingURL=bridge.js.map