0.2.32 • Published 3 days ago

@stackso/js-core v0.2.32

Weekly downloads
-
License
ISC
Repository
-
Last release
3 days ago

Stack's Onchain Points SDK

Bring loyaty points onchain.

Get Started

Sign up at stack.so to get your API key and create a point system.

Install

npm install @stackso/js-core

Usage

For complete docs on usage: https://docs.stack.so/

Initialize the client

import {StackClient} from "@stackso/js-core";

// Initialize the client
const stack = new StackClient({
  // Get your API key and point system id from the Stack dashboard (stack.so)
  apiKey: "YOUR_API_KEY", 
  pointSystemId: "YOUR_POINT_SYSTEM_ID",
});

Add points and tag the event type

await stack.track("signup", {
  points: 10,
  account: "0x627306090abaB3A6e1400e9345bC60c78a8BEf57"
});

await stack.track("signup", {
  points: 15,
  account: "0x2eeb301387D6BDa23E02fa0c7463507c68b597B5",
});

Get points for an account

await stack.getPoints("0x627306090abaB3A6e1400e9345bC60c78a8BEf57");
// => 10

Get leaderboard

await stack.getLeaderboard();
// => [
//   {account: "0x2eeb301387D6BDa23E02fa0c7463507c68b597B5", points: 15}, 
//   {account: "0x627306090abaB3A6e1400e9345bC60c78a8BEf57", points: 10}
// ]

// Pagination 
await stack.getLeaderboard({limit: 10, offset: 20});
0.2.32

3 days ago

0.2.31

7 days ago

0.2.30

16 days ago

0.2.29

16 days ago

0.2.28

17 days ago

0.2.27

20 days ago

0.2.26

20 days ago

0.2.25

21 days ago

0.2.24

22 days ago

0.2.23

22 days ago

0.2.22

22 days ago

0.2.21

1 month ago

0.2.20

1 month ago

0.2.19

1 month ago

0.2.18

1 month ago

0.2.17

2 months ago

0.2.16

2 months ago

0.2.15

2 months ago

0.2.14

2 months ago

0.2.13

2 months ago

0.2.12

2 months ago

0.2.11

2 months ago

0.2.10

2 months ago

0.2.9

2 months ago

0.2.7

2 months ago

0.2.6

2 months ago

0.2.8

2 months ago

0.2.5

2 months ago

0.2.4

2 months ago

0.2.3

3 months ago

0.2.1

3 months ago

0.2.0

3 months ago

0.1.15

3 months ago

0.1.16

3 months ago

0.1.13

4 months ago

0.1.14

4 months ago

0.1.12

4 months ago

0.1.10

5 months ago

0.1.11

5 months ago

0.1.9

5 months ago

0.1.8

5 months ago

0.1.2

5 months ago

0.1.7

5 months ago

0.1.4

5 months ago

0.1.3

5 months ago

0.1.6

5 months ago

0.1.5

5 months ago

0.1.1

5 months ago

0.1.0

5 months ago