Crates.io | walletkit-core |
lib.rs | walletkit-core |
version | 0.1.6 |
created_at | 2025-04-10 17:25:39.485033+00 |
updated_at | 2025-08-29 22:07:07.948134+00 |
description | Reference implementation for the World ID Protocol. Core functionality to use a World ID. |
homepage | https://docs.world.org |
repository | https://github.com/worldcoin/walletkit |
max_upload_size | |
id | 1628619 |
size | 226,385 |
WalletKit enables mobile applications to use World ID.
Part of the World ID SDK.
WalletKit can be used as a Rust crate, or directly as a Swift or Android package. WalletKit includes foreign bindings for direct usage in Swift/Kotlin through UniFFI.
To use WalletKit in another Rust project:
cargo install walletkit
To use WalletKit in an iOS app:
WalletKit is distributed through a separate repo specifically for Swift bindings. This repo contains all the binaries required and is a mirror of @worldcoin/walletkit
.
https://github.com/worldcoin/walletkit-swift
To use WalletKit in an Android app:
WalletKit's bindings for Kotlin are distributed through GitHub packages.
build.gradle
(App Level)dependencies {
/// ...
implementation "org.world:walletkit:VERSION"
}
Replace VERSION
with the desired WalletKit version.
WalletKit is broken down into separate crates, offering the following functionality.
walletkit-core
- Enables basic usage of a World ID to generate ZKPs using different credentials.WalletKit is generally centered around a World ID. The most basic usage requires initializing a WorldId
.
A World ID can then be used to generate Zero-Knowledge Proofs.
A ZKP is analogous to presenting a credential.
use walletkit::{proof::ProofContext, CredentialType, Environment, world_id::WorldId};
async fn example() {
let world_id = WorldId::new(b"not_a_real_secret", &Environment::Staging);
let context = ProofContext::new("app_ce4cb73cb75fc3b73b71ffb4de178410", Some("my_action".to_string()), None, CredentialType::Orb);
let proof = world_id.generate_proof(&context).await.unwrap();
println!(proof.to_json()); // the JSON output can be passed to the Developer Portal, World ID contracts, etc. for verification
}
WalletKit includes logging functionality that can be integrated with foreign language bindings. The logging system allows you to capture debug information and operational logs from the library.
Implement the Logger
trait and set it as the global logger:
use walletkit_core::logger::{Logger, LogLevel, set_logger};
use std::sync::Arc;
struct MyLogger;
impl Logger for MyLogger {
fn log(&self, level: LogLevel, message: String) {
println!("[{:?}] {}", level, message);
}
}
// Set the logger once at application startup
set_logger(Arc::new(MyLogger));
class WalletKitLoggerBridge: WalletKit.Logger {
static let shared = WalletKitLoggerBridge()
func log(level: WalletKit.LogLevel, message: String) {
// Forward to your app's logging system
Log.log(level.toCoreLevel(), message)
}
}
// Set up the logger in your app delegate
public func setupWalletKitLogger() {
WalletKit.setLogger(logger: WalletKitLoggerBridge.shared)
}
class WalletKitLoggerBridge : WalletKit.Logger {
companion object {
val shared = WalletKitLoggerBridge()
}
override fun log(level: WalletKit.LogLevel, message: String) {
// Forward to your app's logging system
Log.log(level.toCoreLevel(), message)
}
}
// Set up the logger in your application
fun setupWalletKitLogger() {
WalletKit.setLogger(WalletKitLoggerBridge.shared)
}