Max
fa5f665604
Merge pull request #37 from MaxMustermann2/new-release-system
...
New release system
2 years ago
MaxMustermann2
e6a188251c
chore: update bumpver commit message
2 years ago
MaxMustermann2
e2aee5ef50
chore: add instructions to sign commit and tag
2 years ago
MaxMustermann2
2ebf783a4d
bump version 0.0.0 -> 0.1.0
2 years ago
MaxMustermann2
0dc407f9eb
chore: move to new build system
2 years ago
Max
4aac11191a
Merge pull request #36 from MaxMustermann2/version-upgrade
...
bump version
2 years ago
MaxMustermann2
28fcf53f18
bump version
2 years ago
Max
d12bde7328
Merge pull request #35 from MaxMustermann2/validator-sigs
...
add `hex_to_one`, fix `bech32` installation, bug fix
2 years ago
MaxMustermann2
1c90c914aa
docs: remove -1 as page option
2 years ago
MaxMustermann2
c89976f2c0
test(validator): update edit validator sign
...
for addition of bls key sig
2 years ago
MaxMustermann2
1dba8b1066
docs: update readme
...
- update testing instructions to work with `make debug` instead of
`make test-rpc`
- add signatures to `create` and `edit` validators
2 years ago
MaxMustermann2
ca6a6ae1a8
chore(yapf): run yapf
2 years ago
MaxMustermann2
98514c7a2c
chore(lint): resolve `pylint` complaints
2 years ago
MaxMustermann2
a3295b9650
chore: run `black` on all files
2 years ago
MaxMustermann2
2135d1050c
test: update tests to be independent of localnet
...
remove the requirement that tests must be run after `make test-rpc`. in
fact, these tests must be run independently of those.
test: document raw tx generation
2 years ago
MaxMustermann2
eb322498c4
fix(transaction): make error message singular
2 years ago
MaxMustermann2
c9125ba2de
fix(staking): remove -1 as default parameter
...
In Harmony release v4.3.8, this parameter was deprecated and it is no
longer possible to retrieve all pages.
2 years ago
MaxMustermann2
6e83b2c8fd
fix(contract): remove invalid reference to method
2 years ago
MaxMustermann2
3e4533d486
fix(util): pass int `chainId` through
2 years ago
MaxMustermann2
cfd550b553
feat(transaction): add send + confirm staking tx
2 years ago
MaxMustermann2
218fee615b
fix(account): add default param, get_nonce
...
- add a default `block_num` parameter 'latest' to get_account_nonce
- add get_nonce as an alias of get_account_nonce
2 years ago
MaxMustermann2
6d6c417fe5
fix(util): do not validate integer chainId
...
anybody can create a network with a new chainId. stop validating the
integers, but do validate the strings.
as a side effect, this means we accept Harmony's ethereum compatible
chain ids.
2 years ago
MaxMustermann2
2f0d840f6e
fix(signing): require `chainId` for staking signs
2 years ago
MaxMustermann2
7959415bb4
Merge tempoxylophone/pyhmy:master
2 years ago
mikefreemanwd
25a058d5dd
[feature]: Added utility function to convert from hex to one (other way from one to hex). Added vim .swp files to gitignore.
2 years ago
mikefreemanwd
ce1ae2bc4b
[bugfix]: Add bech32 submodule declaration.
2 years ago
mikefreemanwd
6bc1bbbb34
[bugfix]: Fix test command in Makefile.
2 years ago
MaxMustermann2
cdbdae85d1
Upgrade eth_account version
3 years ago
MaxMustermann2
4f266619fa
Add signature options to validator signing
...
The JSON RPC API has changed and now demands a BLS signature
with the BLS key(s) to be added.
3 years ago
Max
c81f9eff41
transaction.py: use correct endpoint
...
Fix for `send_and_confirm_raw_transaction` in getting tx_hash
3 years ago
Max
9f5e912b22
transaction.py: use correct endpoint
...
Fix for ` send_and_confirm_raw_transaction`
3 years ago
Max
8b62d70d4a
Create __init__.py
3 years ago
Ganesha Upadhyaya
668d7ef756
Merge pull request #22 from tshirtman/setup_cfg
...
move package config to setup.cfg
3 years ago
gabriel pettier
81be225cf6
move package config to setup.cfg
...
also set eth-account requirement version to 0.5.4
3 years ago
Ganesha Upadhyaya
099274bec1
Merge pull request #20 from MaxMustermann2/master
...
Resolve Bounty 7 (improve Harmony Python SDK)
3 years ago
Max Mustermann
719e314ba9
add syntax highlighting
4 years ago
Max Mustermann
c731326072
confirm transaction => block hash is non zero
4 years ago
Max Mustermann
751a95375a
Update README
4 years ago
Max Mustermann
1574b55003
Update comment for skipped test
4 years ago
Max Mustermann
686f3bc933
Update README.md to add dependencies installation instructions
4 years ago
Max Mustermann
15c289ffe4
add dependency
4 years ago
Max Mustermann
d19de0d9f0
Remove random file
4 years ago
Max Mustermann
b0bb5de4d3
Prepare for PR
4 years ago
Max Mustermann
c9cf502d21
Update README
4 years ago
Max Mustermann
bbc8ae5ca1
Update README
4 years ago
Max Mustermann
7a536e5724
Update README
4 years ago
Max Mustermann
9b5c08ce77
Update README
4 years ago
Ganesha Upadhyaya
7690a1ed62
Merge pull request #15 from Robovalidator/fix_test
...
Fix existing transaction tests
4 years ago
hsiung
24ba28d50f
Fix existing unit tests by generating a new raw transaction and specifying the shard 1 endpoint where needed
...
Test Plan:
Ran unit tests and saw that they passed:
~/code/pyhmy$ py.test tests/sdk-pyhmy/test_transaction.py --disable-warnings
===================================================================================================== test session starts ======================================================================================================
platform linux -- Python 3.8.6, pytest-6.2.2, py-1.10.0, pluggy-0.13.1 -- /usr/bin/python3
cachedir: .pytest_cache
rootdir: /home/hsiung/code/pyhmy, configfile: pytest.ini
collected 13 items
tests/sdk-pyhmy/test_transaction.py::test_get_pending_transactions PASSED [ 7%]
tests/sdk-pyhmy/test_transaction.py::test_get_transaction_by_hash PASSED [ 15%]
tests/sdk-pyhmy/test_transaction.py::test_get_transaction_receipt PASSED [ 23%]
tests/sdk-pyhmy/test_transaction.py::test_get_transaction_error_sink PASSED [ 30%]
tests/sdk-pyhmy/test_transaction.py::test_send_raw_transaction PASSED [ 38%]
tests/sdk-pyhmy/test_transaction.py::test_get_pending_cx_receipts PASSED [ 46%]
tests/sdk-pyhmy/test_transaction.py::test_get_cx_receipt_by_hash PASSED [ 53%]
tests/sdk-pyhmy/test_transaction.py::test_resend_cx_receipt PASSED [ 61%]
tests/sdk-pyhmy/test_transaction.py::test_get_staking_transaction_by_hash PASSED [ 69%]
tests/sdk-pyhmy/test_transaction.py::test_get_transaction_by_block_hash_and_index PASSED [ 76%]
tests/sdk-pyhmy/test_transaction.py::test_get_transaction_by_block_number_and_index PASSED [ 84%]
tests/sdk-pyhmy/test_transaction.py::test_get_staking_transaction_error_sink PASSED [ 92%]
tests/sdk-pyhmy/test_transaction.py::test_send_raw_staking_transaction PASSED [100%]
=============================================================================================== 13 passed, 16 warnings in 50.20s ===============================================================================================
4 years ago
Ganesha Upadhyaya
03f12126b5
Update README.md
4 years ago