xlassix / kwil-streamr

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kwil-Streamr

Kwil-Streamr is a collection of Kwil extensions that allows databases to natively sync with Streamr streams. Using these extensions, network operators can configure a Kwil network's validators to sync Streamr data into a database, without the need for a centralized oracle.

Sponsors

A huge thank you to the PowerPod team for sponsoring this extension. PowerPod is a revolutionary DePIN network building decentralized electric vehicle charging infrastructure. They are currently shipping their first product, Pulse, which can be found here, and are also working on several non-ev devices as well. Follow their journey to monetize every electron on X.

PowerPod Logo

Getting Started

Choose one of the links below to get started:

Build

To build from source, ensure you have Go 1.22+ installed, and run:

make build

In Your Own Kwil Binary

To use the Streamr extension in a custom Kwil binary, import the extensions found in extensions/ into your own Kwil binary and call the register function. The extensions should be registered using Go's package init function.

package main

import (
	"github.com/kwilteam/kwil-streamr/extensions"
)

func init() {
	err := extensions.RegisterExtensions()
	if err != nil {
		panic(err)
	}
}

About

License:MIT License


Languages

Language:Go 87.3%Language:Shell 8.9%Language:Dockerfile 2.9%Language:Makefile 0.8%