near-api-js - v7.0.4
    Preparing search index...

    Type Alias RpcCallFunctionError

    RpcCallFunctionError:
        | { info: { block_reference: BlockReference }; name: "UNKNOWN_BLOCK" }
        | {
            info: {
                block_hash: CryptoHash;
                block_height: number;
                requested_account_id: AccountId;
            };
            name: "INVALID_ACCOUNT";
        }
        | {
            info: {
                block_hash: CryptoHash;
                block_height: number;
                requested_account_id: AccountId;
            };
            name: "UNKNOWN_ACCOUNT";
        }
        | {
            info: {
                block_hash: CryptoHash;
                block_height: number;
                contract_account_id: AccountId;
            };
            name: "NO_CONTRACT_CODE";
        }
        | {
            info: {
                block_hash: CryptoHash;
                block_height: number;
                vm_error: FunctionCallError;
            };
            name: "CONTRACT_EXECUTION_ERROR";
        }
        | { info: { error_message: string }; name: "INTERNAL_ERROR" }