algorand-session-wallet
September 1, 2021 ยท View on GitHub
PRs welcome
example: https://github.com/barnjamin/algorand-session-wallet-example
npm -i algorand-session-wallet
const sw = new SessionWallet("TestNet", "algosigner-wallet")
if(!sw.connect()) return alert("Couldnt connect")
//...
const accts = sw.accountList()
//...
sw.signTxn([txnblobs])
//...
sw.disconnect()