Skip to content

v0.1.0

Choose a tag to compare

@reuvenpo reuvenpo released this 19 Jan 11:18
· 422 commits to master since this release
687b908

This is the first release of secret-toolkit. It supports:

  • secret-toolkit::snip20 - Helper types and functions for interaction with
    SNIP-20 contracts.
  • secret-toolkit::snip721 - Helper types and functions for interaction with
    SNIP-721 contracts.
  • secret-toolkit::crypto - Wrappers for known-to-work crypto primitives from
    ecosystem libraries. We include implementations for Sha256, Secp256k1 keys,
    and ChaChaRng.
  • secret-toolkit::storage - Types implementing useful storage managements
    techniques: AppendStore and TypedStore, using bincode2 by default.
  • secret-toolkit::serialization - marker types for overriding the storage
    format used by types in secret-toolkit::storage. Json and Bincode2.
  • secret-toolkit::utils - General utilities for writing contract code.
    • padding - tools for padding queries and responses.
    • calls - Tools for marking types as messages in queries and callbacks
      to other contracts.