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

Classic compatibility #26

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

This repository contains three diferent native clients ([JS](./js/), [Rust](./rust/), [Python](./python/)) to interact with Terra Core. These clients are automatically generated using protoc compiler and they are individually published to the different code repositories.

## IMPORTANT NOTE

**This is a fork of the official project, found at https://github.com/terra-money/terra.proto**

This version includes the missing market module, and some minor code changes to make it work on the Luna Classic chain.

It is specifically built to work with the Terra Classic SDK: https://pypi.org/project/terra-classic-sdk/

## Development

Each of the libraries have its own `Makefile` that contain 4 main entry commands:
Expand Down
10 changes: 9 additions & 1 deletion python/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# python implementation for terra.proto
# Python implementation for terra.proto

This is a version of terra.proto which specifically supports Terra Classic.

It is intended to be a drop-in replacement for terra.proto - it will install itself as terra.proto.

This is required if you are using the Terra Classic SDK.


Binary file removed python/dist/terra-proto-2.1.0.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added python/dist/terra_classic_proto-3.0.1.tar.gz
Binary file not shown.
Binary file removed python/dist/terra_proto-2.1.0-py3-none-any.whl
Binary file not shown.
14 changes: 7 additions & 7 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "terra-proto"
authors = ["Terraform Labs, PTE. <[email protected]>"]
name = "terra-classic-proto"
authors = ["Geoff Munn <[email protected]>"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
Expand All @@ -11,13 +11,13 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
description = "The Python Protobuf implementation for Terra"
homepage = "https://github.com/terra-money/terra.proto"
keywords = ["jigu", "blockchain", "terra", "defi", "crypto"]
description = "The Python Protobuf implementation for Terra Classic"
homepage = "https://github.com/geoffmunn/terra.proto"
keywords = ["jigu", "blockchain", "defi", "crypto", "terra", "terra classic", "luna classic", "luna classic sdk"]
license = "MIT"
packages = [{ include = "terra_proto" }]
readme = "README.md"
repository = "https://github.com/terra-money/terra.proto"
repository = "https://github.com/geoffmunn/terra.proto"
version = "3.0.1"

[tool.poetry.dependencies]
Expand Down Expand Up @@ -56,4 +56,4 @@ extend-ignore = "E203"

[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=1.3.0"]
18 changes: 18 additions & 0 deletions python/terra_proto/cosmos/vesting/v1beta1/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
Empty file.
Loading