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 🙏

© 2024 – Pkg Stats / Ryan Hefner

baseline-protocol-template

v1.0.0

Published

truffle box for baseline protocol

Downloads

24

Readme

Developer Tools 🛠️

Workflows 🧰

Organization Registry 💼

Each organization registered within the OrgRegistry first generates a secp256k1 keypair and uses the Ethereum public address representation as "primary key" for future resolution. This key SHOULD NOT sign transactions. A best practice is to use an HD wallet to rotate keys, preventing any account from signing more than a single transaction.

Note that an organization may not update its address.

struct Org {
    address orgAddress;
    bytes32 name;
    bytes messagingEndpoint;
    bytes whisperKey;
    bytes zkpPublicKey;
    bytes metadata;
}

struct OrgInterfaces {
    bytes32 groupName;
    address tokenAddress;
    address shieldAddress;
    address verifierAddress;
}

mapping (address => Org) orgMap;
mapping (uint => OrgInterfaces) orgInterfaceMap;
uint orgInterfaceCount;

Org[] public orgs;
mapping(address => address) managerMap;

event RegisterOrg(
    bytes32 _name,
    address _address,
    bytes _messagingEndpoint,
    bytes _whisperKey,
    bytes _zkpPublicKey,
    bytes _metadata
);

event UpdateOrg(
    bytes32 _name,
    address _address,
    bytes _messagingEndpoint,
    bytes _whisperKey,
    bytes _zkpPublicKey,
    bytes _metadata
);

Shield 🛡

Unlike the Radish34 Reference Implementation, the contracts package does not include a "shield" contract. Rather, it is up to each workgroup to determine a suitable shielding mechanism to ensure privacy. For example, the IBaselineRPC implementation within the Nethermind client used in the BRI-1 Reference Implementation ships with shield contract binaries (i.e., including the MerkleTreeSHA contract).

Registry Contracts Overview 🏢

Files Description Table

| File Name | SHA-1 Hash | | ----------------------------------- | ---------------------------------------- | | contracts/registry/IOrgRegistry.sol | 0514e15aa16c4c92f61c3cdc3f17d93e3ee56377 | | contracts/registry/OrgRegistry.sol | e0bb2ddd83c0d3373d6b58d50ec756a833ac88d0 | | contracts/registry/Registrar.sol | 6507a72d2283a5e2cc04bc99ea90ef1f878fe9b7 |

Contracts Description Table

| Contract | Type | Bases | | | | :--------------: | :-----------------------------: | :------------------------------------------------: | :------------: | :------------------------: | | └ | Function Name | Visibility | Mutability | Modifiers | | | | | | | | IOrgRegistry | Interface | | | | | └ | registerOrg | External ❗️ | 🛑 | NO❗️ | | └ | updateOrg | External ❗️ | 🛑 | NO❗️ | | └ | getOrgCount | External ❗️ | | NO❗️ | | └ | getOrg | External ❗️ | | NO❗️ | | | | | | | | OrgRegistry | Implementation | Ownable, ERC165Compatible, Registrar, IOrgRegistry | | | | └ | | Public ❗️ | 🛑 | ERC165Compatible Registrar | | └ | setInterfaces | Public ❗️ | 🛑 | onlyOwner | | └ | getInterfaces | External ❗️ | | NO❗️ | | └ | canImplementInterfaceForAddress | External ❗️ | | NO❗️ | | └ | assignManager | External ❗️ | 🛑 | onlyOwner | | └ | registerOrg | External ❗️ | 🛑 | onlyOwner | | └ | updateOrg | External ❗️ | 🛑 | NO❗️ | | └ | registerInterfaces | External ❗️ | 🛑 | onlyOwner | | └ | getOrgCount | External ❗️ | | NO❗️ | | └ | getOrg | External ❗️ | | NO❗️ | | └ | getInterfaceAddresses | External ❗️ | | NO❗️ | | | | | | | | Registrar | Implementation | | | | | └ | | Public ❗️ | 🛑 | NO❗️ | | └ | setInterfaceImplementation | Internal 🔒 | 🛑 | | | └ | interfaceAddr | External ❗️ | | NO❗️ | | └ | assignManagement | Internal 🔒 | 🛑 | | | └ | getManager | Public ❗️ | | NO❗️ |

Legend

| Symbol | Meaning | | :----: | ------------------------- | | 🛑 | Function can modify state | | 💵 | Function is payable |

Privacy Contracts Description Report 🔮

Files Description Table

| File Name | SHA-1 Hash | | ------------------------------- | ---------------------------------------- | | contracts/privacy/IShield.sol | c4b6e694bbdd4317e6fdc1e595e467cb10e5e1dd | | contracts/privacy/IVerifier.sol | ba4926ea2f01fde5d11362808fc1e573e69e31e3 | | contracts/privacy/Shield.sol | 14415a0a47a10c0865993bdc3c8a350c683dc69f |

Contracts Description Table

| Contract | Type | Bases | | | | :-----------: | :---------------: | :-----------------------: | :------------: | :--------------: | | └ | Function Name | Visibility | Mutability | Modifiers | | | | | | | | IShield | Interface | | | | | └ | getVerifier | External ❗️ | | NO❗️ | | └ | verifyAndPush | External ❗️ | 🛑 | NO❗️ | | | | | | | | IVerifier | Interface | | | | | └ | verify | External ❗️ | 🛑 | NO❗️ | | | | | | | | Shield | Implementation | IShield, MerkleTreeSHA256 | | | | └ | | Public ❗️ | 🛑 | MerkleTreeSHA256 | | └ | getVerifier | External ❗️ | | NO❗️ | | └ | verifyAndPush | External ❗️ | 🛑 | NO❗️ |

Legend

| Symbol | Meaning | | :----: | ------------------------- | | 🛑 | Function can modify state | | 💵 | Function is payable |

License

CC-0