@waku/rln
Version:
RLN (Rate Limiting Nullifier) implementation for Waku
15 lines (12 loc) • 313 B
JavaScript
import { baseX } from './base.js';
const base36 = baseX({
prefix: 'k',
name: 'base36',
alphabet: '0123456789abcdefghijklmnopqrstuvwxyz'
});
const base36upper = baseX({
prefix: 'K',
name: 'base36upper',
alphabet: '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
});
export { base36, base36upper };