How to use the erpc.abi.encode_abi function in erpc

To help you get started, we’ve selected a few erpc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github mattdf / sc-tools / common / common.py View on Github external
def encodeParam(fsig, param, sig):
    return fsig[0:8] + abi.encode_abi(sig, param).encode("hex")