0.5.5 • Published 28 days ago

algostack v0.5.5

Weekly downloads
-
License
MIT
Repository
-
Last release
28 days ago

AlgoStack.js

Everything you need to interact with the Algorand blockchain, all bundled together to make your life easier. All modules are optional, so you make your own compiled stack as small as possible.

Table of Contents

📦 What's in the stack?

⚡ Getting Started

First, import the main package, and all modules you need. Then initiate your AlgoStack with the desired options and modules.

const algostack = new AlgoStack(options: OptionsProps, modules: PlugableModules)

Example:

import AlgoStack from 'algostack';
import Client from 'algostack/client';
import Txns from 'algostack/txns';
import Query from 'algostack/query';

const algostack = new AlgoStack(
  {
    apiUrl: 'https://testnet-api.algonode.cloud',
    indexerUrl: 'https://testnet-idx.algonode.cloud', 
  }, 
  { Client, Txns, Query }
);

⚙️ Options

interface OptionsProps {
  // Indexer and Node urls used to interact with the blockchain
  indexerUrl?: string, // default: 'https://mainnet-idx.algonode.cloud'
  apiUrl?: string, // default: 'https://mainnet-api.algonode.cloud'
  apiPort?: number,
  apiToken?: string,
  

  // Persist wallet connections, even after refreshing
  // Only available in browsers
  persistConnection?: boolean // default: true,
  storageNamespace?: string // default: 'algostack',
}

🔌 Plugable Modules

interface PlugableModules {
  // Connect to Algorand using popular wallets
  // Currently available: MyAglo, Pera Wallet
  Client?: ClientModule,
  
  // Create, sign, send transactions and wait for confirmation 
  Txns?: TxnsModule,

  // Get data from the blockchain
  // Currently using the indexers only
  Query?: QueryModule,
} 
0.5.4

28 days ago

0.5.3

28 days ago

0.5.5

28 days ago

0.5.2

1 month ago

0.5.1

1 month ago

0.5.0

1 month ago

0.4.48

1 month ago

0.4.49

1 month ago

0.4.47

1 month ago

0.4.46

2 months ago

0.4.44

2 months ago

0.4.45

2 months ago

0.4.43

2 months ago

0.4.42

2 months ago

0.4.41

2 months ago

0.4.40

2 months ago

0.4.39

2 months ago

0.4.38

2 months ago

0.4.37

3 months ago

0.4.36

3 months ago

0.4.35

4 months ago

0.4.32

4 months ago

0.4.33

4 months ago

0.4.34

4 months ago

0.4.31

4 months ago

0.4.30

4 months ago

0.4.29

4 months ago

0.4.28

5 months ago

0.4.27

5 months ago

0.4.20

7 months ago

0.4.21

7 months ago

0.4.26

6 months ago

0.4.24

6 months ago

0.4.25

6 months ago

0.4.22

7 months ago

0.4.23

7 months ago

0.4.19

7 months ago

0.4.17

8 months ago

0.4.18

7 months ago

0.4.15

10 months ago

0.4.14

10 months ago

0.4.13

10 months ago

0.4.9

11 months ago

0.4.10

11 months ago

0.4.11

11 months ago

0.4.12

11 months ago

0.4.5

11 months ago

0.2.7

12 months ago

0.4.4

11 months ago

0.2.6

12 months ago

0.4.7

11 months ago

0.4.6

11 months ago

0.2.8

11 months ago

0.4.1

11 months ago

0.2.3

12 months ago

0.4.3

11 months ago

0.2.5

12 months ago

0.4.2

11 months ago

0.2.1

12 months ago

0.1.2

1 year ago

0.1.0

1 year ago

0.1.1

1 year ago

0.0.25

1 year ago

0.0.26

1 year ago

0.0.27

1 year ago

0.0.20

1 year ago

0.0.21

1 year ago

0.0.22

1 year ago

0.0.23

1 year ago

0.0.24

1 year ago

0.0.14

1 year ago

0.0.15

1 year ago

0.0.16

1 year ago

0.0.17

1 year ago

0.0.18

1 year ago

0.0.19

1 year ago

0.0.12

1 year ago

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago