Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add py.typed #8

Merged
merged 2 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion multiproof/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .standart import StandardMerkleTree, StandardMerkleTreeData
from .standard import StandardMerkleTree, StandardMerkleTreeData
Empty file added multiproof/py.typed
Empty file.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from web3 import Web3

from multiproof.bytes import to_hex
from multiproof.standart import (LeafValue, StandardMerkleTree,
from multiproof.standard import (LeafValue, StandardMerkleTree,
StandardMerkleTreeData)

ZERO_BYTES = bytearray(32)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "multiproof"
version = "v0.1.4"
version = "v0.1.5"
description = "A Python library to generate merkle trees and merkle proofs."
authors = ["StakeWise Labs <info@stakewise.io>"]
readme = "README.md"
Expand Down
Loading