Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python SDK reference for get_error_message.
def get_error_message(error_signature: str) -> str: if not error_signature.startswith('0x'): error_signature = f'0x{error_signature}' error_signature = error_signature.lower() return CONTRACT_ERROR_MESSAGES.get(error_signature, error_signature)