near-textile-indexer

1.0.0 • Public • Published

near-textile-indexer

Event indexer for smart contract on NEAR using Textile as storage and query engine.

Problem

Doing intensive computation (sorting, etc) for get request is not possible on blockchain due to it's nature for decentralization.

One solution is to create an indexing layer that are decentralized. Textile provide the tools to create a decentralized database via its ThreadDB to help scale the get method for NEAR smart contract.

Installation

npm install near-textile-indexer

or

yarn add near-textile-indexer

How to use

Unlike Ethereum, NEAR does not have built-in Event. This indexer requires your smart contract to have the Event store.

Smart Contract

You can find the smart contract on code on example here.

You must create a PersistentVector that holds all the Event on smart contract with getEvent and getEventHeight public methods for querying the event.

PersistentVector

const events = new PersistentVector<Event>('events')

getEvent

export function getEvent(index: i32): Event {
    return events[index]
}

getEventHeight

export function getEventHeight(): i32 {
    return events.length
}

Event type

Event {
  collectionstring
  actionstring
  paramsstring[]
}

Indexer

If your smart contract is ready with all the requirement above, you can setup the indexer.

The indexer will generate setup.json that contains threadID and eventHeight.

const indexer = require('near-textile-indexer')
 
const config = {
  ...
}
 
indexer(config)

Config

const config = {
  // NEAR network ID
  networkId: string,
  // NEAR node url
  nodeUrl: string,
  // NEAR contract name
  contractName: string,
  // key generated via https://docs.textile.io/hub/apis/
    keyInfo: {
        key: process.env.TEXTILE_API_KEY
  },
  // admin private key generated via https://textileio.github.io/js-hub/docs/hub.privatekey
  privateKey: process.env.ADMIN_PRIVATE_KEY,
  // see https://textileio.github.io/js-hub/docs/hub.collectionconfig
    collections: CollectionConfig[],
    // callback called when new event found
    async processEvent(ctx, event, textileClient) {
        // see example for more information
    }
}

Query

You can easily query the data using @textile/hub on client or server side.

Here's the example code

const { Client, ThreadID, PrivateKey } = require('@textile/hub')
 
const keyInfo = {
    key: 'xxx',
}
const threadID = 'yyy'
 
const client = await Client.withKeyInfo(keyInfo)
const identity = PrivateKey.fromRandom()
await client.getToken(identity)
const tID = ThreadID.fromString(threadID)
const x = await client.find(tID, 'person', {})

License

MIT License

Readme

Keywords

none

Package Sidebar

Install

npm i near-textile-indexer

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

7.99 kB

Total Files

6

Last publish

Collaborators

  • hd_riqi