verify-user
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

Verify User

An experiment to verify a user's crypto address and twitter account are linked without storing any user data using ZK-proofs. No identifiable data will be stored. All hashes are stored publicly on Arweave.

Use at your own risk. Suggestions welcomed :)

Demo here: verify-user-web3.vercel.app

Prerequisites

  • Arweave public and private keys
  • Twitter Developer API access

To install:

yarn add verify-user

or

npm install verify-user

Get started:

const twitterConfig = {
  bearer_token: process.env.BEARER_TOKEN,
}

const adminAddress = process.env.ARWEAVE_ADDRESS;
const arweaveKeyfile = process.env.ARWEAVE_KEY;

const client = new VerifyUserClient(twitterConfig, adminAddress, arweaveKeyfile);

Customize Options

const options = {
  projectName: 'verify_user', // used for arweave document naming
  twitterMessage: 'I am verifying my Twitter' // used for verifying tweets
}

Dependencies

Package Sidebar

Install

npm i verify-user

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

8.64 kB

Total Files

4

Last publish

Collaborators

  • straightupjac