Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/barnjamin/algorand-session-wallet


https://github.com/barnjamin/algorand-session-wallet

Last synced: 3 months ago
JSON representation

Lists

README

        

# algorand-session-wallet

*PRs welcome*

example: https://github.com/barnjamin/algorand-session-wallet-example

```sh
npm -i algorand-session-wallet
```

```js
const sw = new SessionWallet("TestNet", "algosigner-wallet")
if(!sw.connect()) return alert("Couldnt connect")

//...

const accts = sw.accountList()

//...

sw.signTxn([txnblobs])

//...

sw.disconnect()

```