Javascript implementation of a standalone zkitter node
zkitter-js is an npm module and a CLI tool designed to make building on Zkitter easier.
To initialize Zkitter and sync with the network:
import {Zkitter} from "zkitter-js";
const zkitter = await Zkitter.initialize({
arbitrumHttpProvider: 'https://...',
});
// Sync with arbitrum registrar
await zkitter.syncUsers();
// Sync with zk groups on zkitter
await zkitter.syncGroup();
// Get all historical messages (30 days) from Waku store
await zkitter.queryAll();
// Subscribe to all future messages from everyone
await zkitter.subscribe();
To implement custom database instead of using default LevelDB:
import { Zkitter, GenericDBAdapterInterface, Post, Proof } from 'zkitter-js';
import postgres from 'postgres';
const sql = postgres({ /* options */ });
class PostgresDB implements GenericDBAdapterInterface {
async insertPost(post: Post, proof: Proof) {
const existing = await sql`
select * from posts
where hash = ${post.hash()}
`
if (!existing) {
await sql`
insert into posts (...)
values (...)
`
}
}
}
const zkitter = await Zkitter.initialize({
db: new PostgresDB(),
arbitrumHttpProvider: 'https://...',
});