eosapi icon indicating copy to clipboard operation
eosapi copied to clipboard

eosapi is a simple, high-level and lightweight eosio sdk write by python

Results 2 eosapi issues
Sort by recently updated
recently updated
newest added

`abi_json_to_bin` has been deprecated - https://eosnetwork.com/blog/leap-v3-1-release-features/#29-abi-conversion-apis-are-deprecated Hence it's not possible to use following function ``` def abi_json_to_bin(self, code: str, action: str, args: Dict) -> bytes: url = self.rpc_host + "/v1/chain/abi_json_to_bin"...

``` def ripmed160(data): h = hashlib.new('ripemd160') h.update(data) return h.digest() ``` above code will cause a RIPEMD160 HASH error when signing a transaction. I had to change to in packer.py ```...