Derive util for Valtio
Common functions used across Polkadot, derived from RPC calls and storage queries.
Cryptographic key pairs for the XRP Ledger
Ethereum Name Service (ENS) Name Normalizer
Pure javascript implementation of Bip32Ed25519, used for Cardano blockchain key pair.
Additional polkadot.js derives for Acala Network
Set the title on a pad in Etherpad, also includes real time updates to the UI
A function to create a derived Zustand store from stores
Cryptographic types and functions for Cardano
Universal Module for HKDF (Hash-based Key Derivation Function) in JavaScript
This package holds key identifiers for Exodus' own BIP43 purpose
Pure JS Cardano Wallet library
IOTA Signing Scheme
Cryptographic key pairs for the XRP Ledger
Webb JS API derived methods
Utilities for working with bolt07 data formats
Common functions used across Polkadot, derived from RPC calls and storage queries.
Key derivation based on Hierarchical Deterministic (HD)/Mnemonic keys and BIP32, for Kadena
Bitcoin BIP32 ('HD Wallet') path helpers.
This is a library that allows you to derive ed25519 private and public keys from mnemonic words(or seed, or other keys).
A command line interface for programmatic operations across Transcend.
Port of the OpenBSD bcrypt_pbkdf function to pure JS
This package provides support for Hierarchical Deterministic (HD) Wallet.
Simple runtime TypeScript validator library
Declarable provides a DSL to define states, derived values, and actions. It helps separate state management from business logic, creating cleaner, more maintainable, and easily testable classes.
chef-gen-flavor-base is a base class to make it easy to create 'flavors' for use with [chef-gen-flavors](https://github.com/jf647/chef-gen-flavors). chef-gen-flavors plugs into the 'chef generate' command provided by ChefDK to let you provide an alternate template for cookbooks and other chef components. This gem simply provides a class your flavor can derive from; templates are provided by separate gems, which you can host privately for use within your organization or publicly for the Chef community to use. An example flavor that demonstrates how to use this gem is distributed separately: [chef-gen-flavor-example](https://github.com/jf647/chef-gen-flavor-example) At present this is focused primarily on providing templates for generation of cookbooks, as this is where most organization-specific customization takes place. Support for the other artifacts that ChefDK can generate may work, but is not the focus of early releases.
A jig is an ordered sequence of objects (usually strings) and named _gaps_. When rendered as a string by Jig#to_s, the objects are rendered calling #to_s on each object in order. The gaps are skipped. A new jig may be constructed from an existing jig by 'plugging' one or more of the named gaps. The new jig shares the objects and their ordering from the original jig but with the named gap replaced with the 'plug'. Gaps may be plugged by any object or sequence of objects. When a gap is plugged with another jig, the contents (including gaps) are incorporated into the new jig. Several subclasses (Jig::XML, Jig::XHTML, Jig::CSS) are defined to help in the construction of XML, XHTML, and CSS documents. This is a jig with a single gap named :alpha. Jig.new(:alpha) # => <#Jig: [:alpha]> This is a jig with two objects, 'before' and 'after' separated by a gap named :middle. j = Jig.new('before', :middle, 'after) # => #<Jig: ["before", :middle, "after"]> The plug operation derives a new jig from the old jig. j.plug(:middle, ", during, and") # => #<Jig: ["before", ", during, and ", "after"]> This operation doesn't change j. It can be used again: j.plug(:middle, " and ") # => #<Jig: ["before", " and ", "after"]> There is a destructive version of plug that modifies the jig in place: j.plug!(:middle, "filled") # => #<Jig: ["before", "filled", "after"]> j # => #<Jig: ["before", "filled", "after"]> There are a number of ways to construct a Jig and many of them insert an implicit gap into the Jig. This gap is identified as :___ and is used as the default gap for plug operations when one isn't provided: