Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/anataliocs/avail-api-example

Typescript scripts that demonstrate interacting with an Avail node.
https://github.com/anataliocs/avail-api-example

blockchain npm ts-node typescript web3

Last synced: about 1 month ago
JSON representation

Typescript scripts that demonstrate interacting with an Avail node.

Awesome Lists containing this project

README

        

## Avail API Use Cases

Typescript `ts-node` scripts that demonstrate interacting with an Avail node.

Run an [Avail node on Spheron](https://docs.spheron.network/marketplace-guide/avail/)

### Install

Install:
```
npm i
```

Install ts-node if needed
```
npm i -g ts-node
```

### Create Local Config

Update: `config.ts`

```typescript
export default {
mnemonic: "", // The secret seed value for account used to sign transactions
ApiURL: "", // Api url
app_id: 0, // Application id
amount: 0, // Amount of tokens to transfer
receiver: "" // Receiver address
}
```

Connect to a node:
```
ts-node connect.ts
```

Subscribes to new blocks:
```
ts-node listen_new_blocks.ts
```