lightning
Version:
Lightning Network client library
15 lines (12 loc) • 328 B
TypeScript
import {
UnauthenticatedLightningArgs,
UnauthenticatedLightningMethod,
} from '../../typescript';
export type UnlockWalletArgs = UnauthenticatedLightningArgs<{
/** Wallet Password String */
password: string;
}>;
/**
* Unlock the wallet
*/
export const unlockWallet: UnauthenticatedLightningMethod<UnlockWalletArgs>;