@aptos-labs/ts-sdk
Version:
Aptos TypeScript SDK
9 lines • 330 B
JavaScript
// Copyright © Aptos Foundation
// SPDX-License-Identifier: Apache-2.0
export function isKeylessSigner(obj) {
return (obj !== null &&
obj !== undefined &&
typeof obj.checkKeylessAccountValidity === "function" &&
typeof obj.waitForProofFetch === "function");
}
//# sourceMappingURL=keylessSigner.js.map