npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@diotec360/sdk

v1.0.0

Published

DIOTEC 360 IA - Sovereign SDK for Mathematical Proof Verification

Readme

🏛️ DIOTEC 360 IA - Sovereign SDK

The First SDK That Proves, Not Hopes

npm version License: MIT

🌍 Overview

DIOTEC 360 IA Sovereign SDK is the world's first JavaScript SDK that uses Z3 Theorem Prover to mathematically verify financial transactions before execution. Built in Angola, designed for the world.

Why DIOTEC 360 IA?

Traditional software hopes transactions are correct. DIOTEC 360 IA proves they are.

  • Mathematical Verification: Every transaction verified by Z3 Theorem Prover
  • Merkle Proofs: Immutable audit trail for every operation
  • Zero Trust: Don't trust the code - verify the math
  • Banking Grade: Built for financial institutions
  • Sovereign: 100% Angolan technology

🚀 Quick Start

Installation

npm install @diotec360/sdk

Basic Usage

import { Diotec360SDK } from '@diotec360/sdk';

// Initialize SDK
const sdk = new Diotec360SDK({
  apiUrl: 'https://api.diotec360.com',
  apiKey: 'your-api-key'
});

// Verify a transfer
const result = await sdk.verifyIntent('transfer', {
  from: 'account_123',
  to: 'account_456',
  amount: 1000,
  balance: 5000
});

if (result.status === 'VERIFIED') {
  console.log('✅ Transfer mathematically proven correct');
  console.log('Merkle Proof:', result.merkle_proof);
} else {
  console.log('❌ Transfer failed verification');
  console.log('Reason:', result.error);
}

📚 Features

1. Intent Verification

Verify financial intents before execution:

// Transfer verification
await sdk.verifyIntent('transfer', { from, to, amount, balance });

// Escrow verification
await sdk.verifyIntent('escrow', { buyer, seller, amount, arbiter });

// Multi-signature verification
await sdk.verifyIntent('multisig', { signers, threshold, amount });

2. Merkle Proofs

Every verified transaction generates an immutable proof:

const result = await sdk.verifyIntent('transfer', params);
console.log(result.merkle_proof); // Cryptographic proof of verification

3. Real-time Verification

Get instant mathematical verification:

const result = await sdk.verifyIntent('transfer', params);
// Typical response time: 50-200ms

🏛️ Architecture

┌─────────────────┐
│   Your App      │
└────────┬────────┘
         │
         ▼
┌─────────────────┐
│  DIOTEC 360 SDK │
└────────┬────────┘
         │
         ▼
┌─────────────────┐
│   Z3 Prover     │  ◄── Mathematical Verification
└────────┬────────┘
         │
         ▼
┌─────────────────┐
│  Merkle Tree    │  ◄── Immutable Audit Trail
└─────────────────┘

📖 API Reference

Diotec360SDK(config)

Initialize the SDK.

Parameters:

  • config.apiUrl (string): API endpoint URL
  • config.apiKey (string): Your API key

sdk.verifyIntent(type, params)

Verify a financial intent.

Parameters:

  • type (string): Intent type ('transfer', 'escrow', 'multisig', etc.)
  • params (object): Intent parameters

Returns:

{
  status: 'VERIFIED' | 'FAILED',
  result?: string,
  error?: string,
  merkle_proof?: string,
  execution_time_ms?: number
}

sdk.listIntents()

Get all available intent templates.

Returns:

{
  intents: Array<{
    name: string,
    description: string,
    category: string,
    params: string[]
  }>
}

🎯 Use Cases

Banking

// Verify account balance before transfer
const result = await sdk.verifyIntent('transfer', {
  from: 'ACC001',
  to: 'ACC002',
  amount: 50000,
  balance: 100000
});

Escrow Services

// Verify escrow conditions
const result = await sdk.verifyIntent('escrow', {
  buyer: 'BUYER001',
  seller: 'SELLER001',
  amount: 10000,
  arbiter: 'ARBITER001'
});

Multi-signature Wallets

// Verify multi-sig requirements
const result = await sdk.verifyIntent('multisig', {
  signers: ['SIGNER1', 'SIGNER2', 'SIGNER3'],
  threshold: 2,
  amount: 25000
});

🔒 Security

  • Z3 Theorem Prover: Industry-standard formal verification
  • Merkle Trees: Cryptographic proof of all operations
  • Zero Trust: Every transaction mathematically verified
  • Immutable Audit Trail: Complete transaction history

🌍 Built in Angola, For the World

DIOTEC 360 IA is proudly developed in Angola by Dionísio Sebastião Barros. We believe African technology can lead the world in financial innovation.

📊 Performance

  • Verification Time: 50-200ms average
  • Throughput: 1000+ verifications/second
  • Accuracy: 100% (mathematical proof)
  • Uptime: 99.9% SLA

🤝 Support

  • Documentation: https://docs.diotec360.com
  • Email: [email protected]
  • GitHub: https://github.com/diotec-barros/diotec-360-ia-extension
  • Issues: https://github.com/diotec-barros/diotec-360-ia-extension/issues

📄 License

MIT License - see LICENSE file for details

🏆 Credits

Created by Dionísio Sebastião Barros
Powered by Z3 Theorem Prover (Microsoft Research)


DIOTEC 360 IA - Where Silicon Doesn't Lie 🏛️