neb.py icon indicating copy to clipboard operation
neb.py copied to clipboard

Nebulas Python API

Results 14 neb.py issues
Sort by recently updated
recently updated
newest added

Bumps [protobuf](https://github.com/protocolbuffers/protobuf) from 3.7.0 to 3.18.3. Release notes Sourced from protobuf's releases. Protocol Buffers v3.18.3 C++ Reduce memory consumption of MessageSet parsing This release addresses a Security Advisory for C++...

dependencies

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.24.1 to 1.26.5. Release notes Sourced from urllib3's releases. 1.26.5 :warning: IMPORTANT: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed...

dependencies

Bumps [rsa](https://github.com/sybrenstuvel/python-rsa) from 4.0 to 4.7. Changelog Sourced from rsa's changelog. Version 4.7 - released 2021-01-10 Fix #165: CVE-2020-25658 - Bleichenbacher-style timing oracle in PKCS#1 v1.5 decryption code Add padding...

dependencies

Bumps [pyyaml](https://github.com/yaml/pyyaml) from 3.13 to 5.4. Changelog Sourced from pyyaml's changelog. 5.4 (2021-01-19) yaml/pyyaml#407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA yaml/pyyaml#472 -- Fix for...

dependencies

Bumps [httplib2](https://github.com/httplib2/httplib2) from 0.12.1 to 0.19.0. Changelog Sourced from httplib2's changelog. 0.19.0 auth: parse headers using pyparsing instead of regexp httplib2/httplib2#182 auth: WSSE token needs to be string not bytes...

dependencies

The following line: https://github.com/nebulasio/neb.py/blob/27a2541dbbe59d9d5ee260ffe808cb2b6607286a/nebpysdk/src/core/Address.py#L83 Seems totally innecessary, as it doesn't uses the return value at all and the referenced parameters aren't mutated.

可以解决 python3.7 中依赖 `pyyaml==3.12` install failed

> (https://github.com/nebulasio/neb.py/blob/master/nebpysdk/src/core/Address.py#L125) ``` @classmethod def parse_from_bytes(cls, byte): if len(byte) != cls.__AddressLength or byte[0] != cls.__PaddingByte[0]: raise Exception("invalid address bytes") checksum = byte[cls.__AddressLength - cls.__AddressChecksumLength:] checkdata = byte[:cls.__AddressLength - cls.__AddressChecksumLength] if...

python version: 3.7 > beautifulsoup4==4.7.1 cachetools==3.1.0 certifi==2018.11.29 chardet==3.0.4 crypto==1.4.1 cytoolz==0.9.0.1 eth-hash==0.2.0 eth-keys==0.2.1 eth-typing==2.0.0 eth-utils==1.4.1 google==2.0.1 google-api-python-client==1.7.8 google-auth==1.6.3 google-auth-httplib2==0.0.3 httplib2==0.12.1 idna==2.8 Naked==0.1.31 protobuf==3.7.0 pyasn1==0.4.5 pyasn1-modules==0.2.4 pycryptodome==3.7.3 pyscrypt==1.6.2 PyYAML==3.13 requests==2.21.0 rsa==4.0 shellescape==3.4.1...

the param type of function call(self, from_addr: str, to_addr: str, value: int, nonce: int, gasprice: int, gaslimit: int, contract=None) in class Api is incorrect. the value must be string the...