algorand-session-wallet
v1.7.0
Published
Session wallet to allow persisted wallet connection across multiple wallets
Downloads
50
Readme
algorand-session-wallet
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()