@rarimo/worldid-integration-contracts v1.0.1
WorldID integration contracts
This repository manages the smart contracts that handle Rarimo <> WorldID integration.
What
The repository consists of three smart contracts:
IdentityManagerthat stores and updates the WorldID state roots via Rarimo TSS transition functionVerifierthat verifies user ZK proofs and checks the validity of the root the proof is generated againstSemaphoreVerifierthat actually verifies ZK proofs (forked from WorldID contracts)
Together these smart contracts allow WorldID to become cross-chain leveraging Rarimo multichain technology.
Usage
Test
To run the tests, execute the following command:
npm run testOr to see the coverage, run:
npm run coverageDeployment
Prior deployment create the .env file following the example provided in .env.example. Also check out the required config in the deploy/config/config.json file.
The config structure is the following:
{
"signer": "0x0000000000000000000000000000000000000000",
"sourceStateContract": "0x0000000000000000000000000000000000000000",
"chainName": "CHAIN_NAME"
}Where signer is the address of Rarimo TSS signer, sourceStateContract is the address of WorldID manager contract to listed to, and chainName is the name of the network (e.g. Ethereum, Sepolia, Mumbai) where the contracts are being deployed to.
After the configuration is provided, execute:
npm run deploy-<network>Check the available options in the package.json.
Local Deployment
To deploy the contracts locally, run the following commands (in the different terminals):
npm run private-network
npm run deploy-localBindings
The command to generate the bindings is as follows:
npm run generate-typesDisclaimer
GLHF!