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

[ECHOT-298] Up library patch version >> 0.1.52: Update fee types, update sidechain config #4

Merged
merged 14 commits into from
Dec 18, 2019
5 changes: 5 additions & 0 deletions echopy/echobase/feetypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,18 @@ def __init__(self, *args, **kwargs):
operations["sidechain_eth_create_address"]: DefaultFee,
operations["sidechain_eth_approve_address"]: DefaultFee,
operations["sidechain_eth_deposit"]: DefaultFee,
operations["sidechain_eth_send_deposit"]: DefaultFee,
operations["sidechain_eth_withdraw"]: DefaultFee,
operations["sidechain_eth_send_withdraw"]: DefaultFee,
operations["sidechain_eth_approve_withdraw"]: DefaultFee,
operations["sidechain_eth_update_contract_address"]: DefaultFee,
operations["sidechain_issue"]: DefaultFee,
operations["sidechain_burn"]: DefaultFee,
operations["sidechain_erc20_register_token"]: Erc20RegisterToken,
operations["sidechain_erc20_deposit_token"]: DefaultFee,
operations["sidechain_erc20_send_deposit_token"]: DefaultFee,
operations["sidechain_erc20_withdraw_token"]: DefaultFee,
operations["sidechain_erc20_send_withdraw_token"]: DefaultFee,
operations["sidechain_erc20_approve_token_withdraw"]: DefaultFee,
operations["sidechain_erc20_issue"]: DefaultFee,
operations["sidechain_erc20_burn"]: DefaultFee,
Expand Down
2 changes: 1 addition & 1 deletion echopy/echobase/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def __init__(self, *args, **kwargs):
super().__init__(
OrderedDict(
[
("generate_eth_address", Int64(kwargs["generate_eth_address"]))
("create_eth_address", Int64(kwargs["create_eth_address"]))
]
)
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import setup, find_packages

VERSION = "0.1.51"
VERSION = "0.1.52"
packages = find_packages()
packages.remove('test')

Expand Down