From f2cdcb6adb875edf057cf2147b9da65e28527ad2 Mon Sep 17 00:00:00 2001 From: cor Date: Wed, 15 Jan 2025 15:02:24 +0000 Subject: [PATCH 1/7] fix(app): query stats --- app/src/lib/graphql/queries/stats.ts | 6 +++--- app/src/lib/queries/stats.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/src/lib/graphql/queries/stats.ts b/app/src/lib/graphql/queries/stats.ts index 24ee1c6a13..2530e009a5 100644 --- a/app/src/lib/graphql/queries/stats.ts +++ b/app/src/lib/graphql/queries/stats.ts @@ -2,7 +2,7 @@ import { graphql } from "gql.tada" export const statsQueryDocument = graphql(/* GraphQL */ ` query StatsQuery @cached(ttl: 5) { - v1_statistics { + v1_ibc_union_statistics { name value } @@ -11,7 +11,7 @@ export const statsQueryDocument = graphql(/* GraphQL */ ` export const transfersPerDayQueryDocument = graphql(/* GraphQL */ ` query TransfersPerDay($limit: Int!) @cached(ttl: 60) { - v1_daily_transfers(limit: $limit, order_by: {day: desc}) { + v1_ibc_union_daily_transfers(limit: $limit, order_by: {day: desc}) { count day } @@ -20,7 +20,7 @@ export const transfersPerDayQueryDocument = graphql(/* GraphQL */ ` export const packetsPerDayQueryDocument = graphql(/* GraphQL */ ` query PacketsPerDay($limit: Int!) { - v1_daily_packets(limit: $limit, order_by: {day: desc}) { + v1_ibc_union_daily_packets(limit: $limit, order_by: {day: desc}) { count } } diff --git a/app/src/lib/queries/stats.ts b/app/src/lib/queries/stats.ts index f247fb1e9c..1e41b48eb2 100644 --- a/app/src/lib/queries/stats.ts +++ b/app/src/lib/queries/stats.ts @@ -21,7 +21,7 @@ export const statsQuery = (): Readable, Err queryKey: ["stats"], queryFn: async () => { const response = await request(URLS().GRAPHQL, statsQueryDocument, {}) - return response.v1_statistics + return response.v1_ibc_union_statistics }, enabled: true, refetchInterval: 5_000, @@ -35,7 +35,7 @@ export const transfersPerDayQuery = ( queryKey: ["transfer-per-day"], queryFn: async () => { const response = await request(URLS().GRAPHQL, transfersPerDayQueryDocument, { limit }) - return response.v1_daily_transfers + return response.v1_ibc_union_daily_transfers }, enabled: true, refetchInterval: 6_000, From 7117840eb2859b28cd36965c4a8626cdfd241b5f Mon Sep 17 00:00:00 2001 From: cor Date: Wed, 15 Jan 2025 15:53:55 +0000 Subject: [PATCH 2/7] fix(app): daily transfers query --- app/src/generated/graphql-env.d.ts | 37514 +------------------------ app/src/lib/graphql/queries/stats.ts | 2 +- app/src/lib/queries/stats.ts | 2 +- 3 files changed, 448 insertions(+), 37070 deletions(-) diff --git a/app/src/generated/graphql-env.d.ts b/app/src/generated/graphql-env.d.ts index 3e3a6ef3b3..9de4e9a052 100644 --- a/app/src/generated/graphql-env.d.ts +++ b/app/src/generated/graphql-env.d.ts @@ -1,6 +1,447 @@ /* eslint-disable */ /* prettier-ignore */ +export type introspection_types = { + 'Boolean': unknown; + 'Boolean_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }]; }; + 'Int': unknown; + 'Int_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }]; }; + 'PfmArgs': { kind: 'OBJECT'; name: 'PfmArgs'; fields: { 'channel': { name: 'channel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'memo': { name: 'memo'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; }; }; + 'PfmArgs_bool_exp_bool_exp': { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'channel'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'memo'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'PfmArgs_enum_name': { name: 'PfmArgs_enum_name'; enumValues: 'channel' | 'memo'; }; + 'PfmArgs_order_by': { kind: 'INPUT_OBJECT'; name: 'PfmArgs_order_by'; isOneOf: false; inputFields: [{ name: 'channel'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'memo'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'Request': { kind: 'OBJECT'; name: 'Request'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'txHash': { name: 'txHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'String': unknown; + 'String_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_ilike'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_iregex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_like'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nilike'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_niregex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nlike'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nregex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nsimilar'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_regex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_similar'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'bigint': unknown; + 'bigint_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; }; }; defaultValue: null }]; }; + 'cursor_ordering': { name: 'cursor_ordering'; enumValues: 'ASC' | 'DESC'; }; + 'date': unknown; + 'date_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'date'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'date'; ofType: null; }; }; }; defaultValue: null }]; }; + 'dydx_faucetMutation': { kind: 'OBJECT'; name: 'dydx_faucetMutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'dydx_faucetQuery': { kind: 'OBJECT'; name: 'dydx_faucetQuery'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; + 'faucet2Mutation': { kind: 'OBJECT'; name: 'faucet2Mutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'faucet2Query': { kind: 'OBJECT'; name: 'faucet2Query'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; + 'get_route_arguments': { kind: 'INPUT_OBJECT'; name: 'get_route_arguments'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'forward_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; + 'jsonb': unknown; + 'jsonb_cast_exp': { kind: 'INPUT_OBJECT'; name: 'jsonb_cast_exp'; isOneOf: false; inputFields: [{ name: 'String'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'jsonb_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; isOneOf: false; inputFields: [{ name: '_cast'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_cast_exp'; ofType: null; }; defaultValue: null }, { name: '_contained_in'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_contains'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_eq'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_has_key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_has_keys_all'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_has_keys_any'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; }; }; defaultValue: null }]; }; + 'mutation_root': { kind: 'OBJECT'; name: 'mutation_root'; fields: { 'dydx_faucet': { name: 'dydx_faucet'; type: { kind: 'OBJECT'; name: 'dydx_faucetMutation'; ofType: null; } }; 'faucet2': { name: 'faucet2'; type: { kind: 'OBJECT'; name: 'faucet2Mutation'; ofType: null; } }; 'stride_faucet': { name: 'stride_faucet'; type: { kind: 'OBJECT'; name: 'stride_faucetMutation'; ofType: null; } }; }; }; + 'numeric': unknown; + 'numeric_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; }; }; defaultValue: null }]; }; + 'order_by': { name: 'order_by'; enumValues: 'asc' | 'asc_nulls_first' | 'asc_nulls_last' | 'desc' | 'desc_nulls_first' | 'desc_nulls_last'; }; + 'query_root': { kind: 'OBJECT'; name: 'query_root'; fields: { 'dydx_faucet': { name: 'dydx_faucet'; type: { kind: 'OBJECT'; name: 'dydx_faucetQuery'; ofType: null; } }; 'faucet2': { name: 'faucet2'; type: { kind: 'OBJECT'; name: 'faucet2Query'; ofType: null; } }; 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'stride_faucet': { name: 'stride_faucet'; type: { kind: 'OBJECT'; name: 'stride_faucetQuery'; ofType: null; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; + 'stride_faucetMutation': { kind: 'OBJECT'; name: 'stride_faucetMutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'stride_faucetQuery': { kind: 'OBJECT'; name: 'stride_faucetQuery'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; + 'subscription_root': { kind: 'OBJECT'; name: 'subscription_root'; fields: { 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet_stream': { name: 'v1_acknowledge_packet_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_assets_stream': { name: 'v1_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_chains_stream': { name: 'v1_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_ack_stream': { name: 'v1_channel_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm_stream': { name: 'v1_channel_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_init_stream': { name: 'v1_channel_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channel_open_try_stream': { name: 'v1_channel_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_channels_stream': { name: 'v1_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_clients_stream': { name: 'v1_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_config_stream': { name: 'v1_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_ack_stream': { name: 'v1_connection_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm_stream': { name: 'v1_connection_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_init_stream': { name: 'v1_connection_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connection_open_try_stream': { name: 'v1_connection_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_connections_stream': { name: 'v1_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_contracts_stream': { name: 'v1_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_packets_stream': { name: 'v1_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_daily_transfers_stream': { name: 'v1_daily_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_explorers_stream': { name: 'v1_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_faucets_stream': { name: 'v1_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_health_check_stream': { name: 'v1_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets_stream': { name: 'v1_ibc_union_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains_stream': { name: 'v1_ibc_union_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels_stream': { name: 'v1_ibc_union_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients_stream': { name: 'v1_ibc_union_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_config_stream': { name: 'v1_ibc_union_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections_stream': { name: 'v1_ibc_union_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts_stream': { name: 'v1_ibc_union_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders_stream': { name: 'v1_ibc_union_daily_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets_stream': { name: 'v1_ibc_union_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers_stream': { name: 'v1_ibc_union_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets_stream': { name: 'v1_ibc_union_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders_stream': { name: 'v1_ibc_union_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check_stream': { name: 'v1_ibc_union_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets_stream': { name: 'v1_ibc_union_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs_stream': { name: 'v1_ibc_union_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics_stream': { name: 'v1_ibc_union_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces_stream': { name: 'v1_ibc_union_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_index_status_stream': { name: 'v1_index_status_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_lightclient_update_stream': { name: 'v1_lightclient_update_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packet_effect_type_stream': { name: 'v1_packet_effect_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_packets_stream': { name: 'v1_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_rpcs_stream': { name: 'v1_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_address_stream': { name: 'v1_statistics_address_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_stream': { name: 'v1_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_tokens_type_stream': { name: 'v1_tokens_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_traces_stream': { name: 'v1_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type_stream': { name: 'v1_transfer_forwards_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_transfers_stream': { name: 'v1_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations_stream': { name: 'v1_ucs1_configurations_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; 'v1_ucs1_paths_stream': { name: 'v1_ucs1_paths_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; + 'timestamptz': unknown; + 'timestamptz_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; }; }; defaultValue: null }]; }; + 'v1_acknowledge_packet': { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'event_index': { name: 'event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'sequence': { name: 'sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_event_index': { name: 'transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_acknowledge_packet_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_acknowledge_packet_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_acknowledge_packet_select_column': { name: 'v1_acknowledge_packet_select_column'; enumValues: 'block_hash' | 'event_index' | 'height' | 'sequence' | 'source_channel_id' | 'source_port_id' | 'timestamp' | 'transaction_event_index' | 'transaction_hash' | 'transaction_index'; }; + 'v1_acknowledge_packet_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_acknowledge_packet_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets': { kind: 'OBJECT'; name: 'v1_assets'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_symbol': { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'faucets': { name: 'faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'gas_token': { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_assets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_avg_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'faucets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_max_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_min_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'faucets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_select_column': { name: 'v1_assets_select_column'; enumValues: 'decimals' | 'denom' | 'display_name' | 'display_symbol' | 'gas_token' | 'logo_uri'; }; + 'v1_assets_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_sum_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_variance_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_chains': { kind: 'OBJECT'; name: 'v1_chains'; fields: { 'addr_prefix': { name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'enabled_staging': { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'explorers': { name: 'explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpc_type': { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpcs': { name: 'rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'testnet': { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'ucs1_configurations': { name: 'ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; }; }; + 'v1_chains_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'addr_prefix'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'assets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'explorers'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpcs'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'ucs1_configurations'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_chains_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'assets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'explorers_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpcs_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'ucs1_configurations_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_aggregate_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_chains_select_column': { name: 'v1_chains_select_column'; enumValues: 'addr_prefix' | 'chain_id' | 'display_name' | 'enabled' | 'enabled_staging' | 'logo_uri' | 'rpc_type' | 'testnet'; }; + 'v1_chains_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_chains_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_chains_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_chains_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_chains_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_ack': { kind: 'OBJECT'; name: 'v1_channel_open_ack'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_channel_id': { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_channel_open_ack_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_ack_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_ack_select_column': { name: 'v1_channel_open_ack_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_channel_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_channel_open_ack_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_ack_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_confirm': { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_channel_id': { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_channel_open_confirm_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_confirm_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_confirm_select_column': { name: 'v1_channel_open_confirm_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_channel_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_channel_open_confirm_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_confirm_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_init': { kind: 'OBJECT'; name: 'v1_channel_open_init'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_channel_open_init_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_init_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_init_select_column': { name: 'v1_channel_open_init_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index' | 'version'; }; + 'v1_channel_open_init_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_init_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_try': { kind: 'OBJECT'; name: 'v1_channel_open_try'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_channel_id': { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_channel_open_try_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_try_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_try_select_column': { name: 'v1_channel_open_try_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_channel_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index' | 'version'; }; + 'v1_channel_open_try_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_try_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_channels': { kind: 'OBJECT'; name: 'v1_channels'; fields: { 'connection': { name: 'connection'; type: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_channels_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channels_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channels_order_by'; isOneOf: false; inputFields: [{ name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connections_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channels_select_column': { name: 'v1_channels_select_column'; enumValues: 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'version'; }; + 'v1_channels_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channels_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channels_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channels_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channels_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_clients': { kind: 'OBJECT'; name: 'v1_clients'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_chain_id': { name: 'counterparty_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_clients_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_clients_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_clients_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_clients_select_column': { name: 'v1_clients_select_column'; enumValues: 'client_id' | 'counterparty_chain_id'; }; + 'v1_clients_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_clients_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_clients_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_clients_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_clients_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_config': { kind: 'OBJECT'; name: 'v1_config'; fields: { 'key': { name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_config_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'key'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_config_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_config_order_by'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_config_select_column': { name: 'v1_config_select_column'; enumValues: 'key' | 'value'; }; + 'v1_config_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_config_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_config_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_config_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_config_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_ack': { kind: 'OBJECT'; name: 'v1_connection_open_ack'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_connection_id': { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_connection_open_ack_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_ack_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_ack_select_column': { name: 'v1_connection_open_ack_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'counterparty_connection_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_connection_open_ack_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_ack_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_confirm': { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_connection_id': { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_connection_open_confirm_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_confirm_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_confirm_select_column': { name: 'v1_connection_open_confirm_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'counterparty_connection_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_connection_open_confirm_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_confirm_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_init': { kind: 'OBJECT'; name: 'v1_connection_open_init'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_connection_open_init_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_init_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_init_select_column': { name: 'v1_connection_open_init_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_connection_open_init_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_init_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_try': { kind: 'OBJECT'; name: 'v1_connection_open_try'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_connection_id': { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_connection_open_try_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_try_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_try_select_column': { name: 'v1_connection_open_try_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'counterparty_connection_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_connection_open_try_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_try_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_connections': { kind: 'OBJECT'; name: 'v1_connections'; fields: { 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_client_id': { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_client_id': { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_connections_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connections_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connections_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connections_select_column': { name: 'v1_connections_select_column'; enumValues: 'destination_chain_id' | 'destination_client_id' | 'destination_connection_id' | 'source_chain_id' | 'source_client_id' | 'source_connection_id' | 'status'; }; + 'v1_connections_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connections_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connections_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connections_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connections_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_contracts': { kind: 'OBJECT'; name: 'v1_contracts'; fields: { 'abi': { name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'address': { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'created_at': { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'max_height': { name: 'max_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'min_height': { name: 'min_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'updated_at': { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_contracts_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'abi'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'max_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'min_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_contracts_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_order_by'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'min_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_contracts_select_column': { name: 'v1_contracts_select_column'; enumValues: 'abi' | 'address' | 'created_at' | 'description' | 'max_height' | 'min_height' | 'updated_at' | 'version'; }; + 'v1_contracts_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_contracts_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'max_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'min_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_packets': { kind: 'OBJECT'; name: 'v1_daily_packets'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; + 'v1_daily_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_packets_select_column': { name: 'v1_daily_packets_select_column'; enumValues: 'count' | 'day'; }; + 'v1_daily_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_transfers': { kind: 'OBJECT'; name: 'v1_daily_transfers'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; + 'v1_daily_transfers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_transfers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_transfers_select_column': { name: 'v1_daily_transfers_select_column'; enumValues: 'count' | 'day'; }; + 'v1_daily_transfers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_transfers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers': { kind: 'OBJECT'; name: 'v1_explorers'; fields: { 'address_url': { name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'block_url': { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'home_url': { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'tx_url': { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_explorers_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_max_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_min_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_select_column': { name: 'v1_explorers_select_column'; enumValues: 'address_url' | 'block_url' | 'description' | 'display_name' | 'home_url' | 'logo_uri' | 'tx_url'; }; + 'v1_explorers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets': { kind: 'OBJECT'; name: 'v1_faucets'; fields: { 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_faucets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_max_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_min_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_order_by'; isOneOf: false; inputFields: [{ name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_select_column': { name: 'v1_faucets_select_column'; enumValues: 'denom' | 'display_name' | 'enabled' | 'url'; }; + 'v1_faucets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_health_check': { kind: 'OBJECT'; name: 'v1_health_check'; fields: { 'result': { name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'test': { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_health_check_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'result'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_health_check_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_order_by'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_health_check_select_column': { name: 'v1_health_check_select_column'; enumValues: 'result' | 'test'; }; + 'v1_health_check_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_health_check_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets': { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_symbol': { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'faucets': { name: 'faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'gas_token': { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'unwrapped_chain': { name: 'unwrapped_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'unwrapped_denom': { name: 'unwrapped_denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_assets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_avg_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'faucets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_max_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_min_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'faucets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_select_column': { name: 'v1_ibc_union_assets_select_column'; enumValues: 'decimals' | 'denom' | 'display_name' | 'display_symbol' | 'gas_token' | 'logo_uri' | 'origin' | 'unwrapped_denom'; }; + 'v1_ibc_union_assets_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_sum_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_variance_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_chains': { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; fields: { 'addr_prefix': { name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'enabled_staging': { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'explorers': { name: 'explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpc_type': { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpcs': { name: 'rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'testnet': { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; }; + 'v1_ibc_union_chains_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'addr_prefix'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'assets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'explorers'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpcs'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_chains_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'assets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'explorers_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpcs_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_chains_select_column': { name: 'v1_ibc_union_chains_select_column'; enumValues: 'addr_prefix' | 'chain_id' | 'display_name' | 'enabled' | 'enabled_staging' | 'logo_uri' | 'rpc_type' | 'testnet'; }; + 'v1_ibc_union_chains_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_chains_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_channels': { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; fields: { 'connection': { name: 'connection'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internal_source_chain_id': { name: 'internal_source_chain_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_channels_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'internal_source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_channels_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_order_by'; isOneOf: false; inputFields: [{ name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'internal_source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_channels_select_column': { name: 'v1_ibc_union_channels_select_column'; enumValues: 'destination_chain_id' | 'destination_connection_id' | 'destination_port_id' | 'internal_source_chain_id' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'version'; }; + 'v1_ibc_union_channels_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_channels_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internal_source_chain_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_clients': { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'counterparty_chain': { name: 'counterparty_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; }; }; + 'v1_ibc_union_clients_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_clients_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_clients_select_column': { name: 'v1_ibc_union_clients_select_column'; enumValues: 'client_id'; }; + 'v1_ibc_union_clients_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_clients_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'client_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_config': { kind: 'OBJECT'; name: 'v1_ibc_union_config'; fields: { 'key': { name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_config_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'key'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_config_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_order_by'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_config_select_column': { name: 'v1_ibc_union_config_select_column'; enumValues: 'key' | 'value'; }; + 'v1_ibc_union_config_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_config_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_connections': { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; fields: { 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_client_id': { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_client_id': { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_connections_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_connections_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_connections_select_column': { name: 'v1_ibc_union_connections_select_column'; enumValues: 'destination_chain_id' | 'destination_client_id' | 'destination_connection_id' | 'source_chain_id' | 'source_client_id' | 'source_connection_id' | 'status'; }; + 'v1_ibc_union_connections_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_connections_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_contracts': { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; fields: { 'abi': { name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'address': { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'created_at': { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'end_height': { name: 'end_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'start_height': { name: 'start_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updated_at': { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_contracts_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'abi'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'end_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'start_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_contracts_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_order_by'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'end_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'start_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_contracts_select_column': { name: 'v1_ibc_union_contracts_select_column'; enumValues: 'abi' | 'address' | 'created_at' | 'description' | 'end_height' | 'start_height' | 'type' | 'updated_at' | 'version'; }; + 'v1_ibc_union_contracts_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_contracts_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'end_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'start_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_fungible_asset_orders': { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; + 'v1_ibc_union_daily_fungible_asset_orders_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_fungible_asset_orders_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_fungible_asset_orders_select_column': { name: 'v1_ibc_union_daily_fungible_asset_orders_select_column'; enumValues: 'count' | 'day'; }; + 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_packets': { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; + 'v1_ibc_union_daily_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_packets_select_column': { name: 'v1_ibc_union_daily_packets_select_column'; enumValues: 'count' | 'day'; }; + 'v1_ibc_union_daily_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers': { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; fields: { 'address_url': { name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'block_url': { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'home_url': { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'tx_url': { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_explorers_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_max_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_min_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_select_column': { name: 'v1_ibc_union_explorers_select_column'; enumValues: 'address_url' | 'block_url' | 'description' | 'display_name' | 'home_url' | 'logo_uri' | 'name' | 'tx_url'; }; + 'v1_ibc_union_explorers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets': { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; fields: { 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_faucets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_max_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_min_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_order_by'; isOneOf: false; inputFields: [{ name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_select_column': { name: 'v1_ibc_union_faucets_select_column'; enumValues: 'denom' | 'display_name' | 'enabled' | 'url'; }; + 'v1_ibc_union_faucets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_fungible_asset_orders': { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; fields: { 'ack_fill_type': { name: 'ack_fill_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ack_market_maker': { name: 'ack_market_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ack_tag': { name: 'ack_tag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement': { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement_decoded': { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'base_amount': { name: 'base_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token': { name: 'base_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token_details': { name: 'base_token_details'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; } }; 'base_token_name': { name: 'base_token_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token_path': { name: 'base_token_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token_symbol': { name: 'base_token_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'channel_version': { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data_decoded': { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'instruction_path': { name: 'instruction_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet': { name: 'packet'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; } }; 'packet_ack_block_hash': { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_event_index': { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_height': { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_ack_maker': { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_timestamp': { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_ack_transaction_event_index': { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_transaction_hash': { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_transaction_index': { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_block_hash': { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_event_index': { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_height': { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_recv_maker': { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_maker_msg': { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_timestamp': { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_recv_transaction_event_index': { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_transaction_hash': { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_transaction_index': { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_block_hash': { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_event_index': { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_height': { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_send_timestamp': { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_send_transaction_event_index': { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_transaction_hash': { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_transaction_index': { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'path': { name: 'path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote_amount': { name: 'quote_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote_token': { name: 'quote_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote_token_details': { name: 'quote_token_details'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; } }; 'receiver': { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'salt': { name: 'salt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timeout_height': { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timeout_timestamp': { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'write_ack_block_hash': { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_event_index': { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_height': { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'write_ack_timestamp': { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'write_ack_transaction_event_index': { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_transaction_hash': { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_transaction_index': { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_ibc_union_fungible_asset_orders_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'ack_fill_type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'ack_market_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'ack_tag'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_amount'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_path'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_symbol'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'instruction_path'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'path'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'quote_amount'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'quote_token'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'quote_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'salt'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_fungible_asset_orders_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_order_by'; isOneOf: false; inputFields: [{ name: 'ack_fill_type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'ack_market_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'ack_tag'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_path'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'instruction_path'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'path'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'quote_amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'quote_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'quote_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'salt'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_fungible_asset_orders_select_column': { name: 'v1_ibc_union_fungible_asset_orders_select_column'; enumValues: 'ack_fill_type' | 'ack_market_maker' | 'ack_tag' | 'acknowledgement' | 'acknowledgement_decoded' | 'base_amount' | 'base_token' | 'base_token_name' | 'base_token_path' | 'base_token_symbol' | 'channel_version' | 'data' | 'data_decoded' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'instruction_path' | 'packet_ack_block_hash' | 'packet_ack_event_index' | 'packet_ack_height' | 'packet_ack_maker' | 'packet_ack_timestamp' | 'packet_ack_transaction_event_index' | 'packet_ack_transaction_hash' | 'packet_ack_transaction_index' | 'packet_recv_block_hash' | 'packet_recv_event_index' | 'packet_recv_height' | 'packet_recv_maker' | 'packet_recv_maker_msg' | 'packet_recv_timestamp' | 'packet_recv_transaction_event_index' | 'packet_recv_transaction_hash' | 'packet_recv_transaction_index' | 'packet_send_block_hash' | 'packet_send_event_index' | 'packet_send_height' | 'packet_send_timestamp' | 'packet_send_transaction_event_index' | 'packet_send_transaction_hash' | 'packet_send_transaction_index' | 'path' | 'quote_amount' | 'quote_token' | 'receiver' | 'salt' | 'sender' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'timeout_height' | 'timeout_timestamp' | 'write_ack_block_hash' | 'write_ack_event_index' | 'write_ack_height' | 'write_ack_timestamp' | 'write_ack_transaction_event_index' | 'write_ack_transaction_hash' | 'write_ack_transaction_index'; }; + 'v1_ibc_union_fungible_asset_orders_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_fungible_asset_orders_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'ack_fill_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ack_market_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ack_tag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'base_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instruction_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'salt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_health_check': { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; fields: { 'result': { name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'test': { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_health_check_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'result'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_health_check_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_order_by'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_health_check_select_column': { name: 'v1_ibc_union_health_check_select_column'; enumValues: 'result' | 'test'; }; + 'v1_ibc_union_health_check_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_health_check_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_packets': { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; fields: { 'acknowledgement': { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement_decoded': { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'channel_version': { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data_decoded': { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'fungible_asset_order': { name: 'fungible_asset_order'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; } }; 'packet_ack_block_hash': { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_event_index': { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_height': { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_ack_maker': { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_timestamp': { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_ack_transaction_event_index': { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_transaction_hash': { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_transaction_index': { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_block_hash': { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_event_index': { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_height': { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_recv_maker': { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_maker_msg': { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_timestamp': { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_recv_transaction_event_index': { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_transaction_hash': { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_transaction_index': { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_block_hash': { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_event_index': { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_height': { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_send_timestamp': { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_send_transaction_event_index': { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_transaction_hash': { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_transaction_index': { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timeout_height': { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timeout_timestamp': { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'write_ack_block_hash': { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_event_index': { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_height': { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'write_ack_timestamp': { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'write_ack_transaction_event_index': { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_transaction_hash': { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_transaction_index': { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_ibc_union_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'fungible_asset_order'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_order_by'; isOneOf: false; inputFields: [{ name: 'acknowledgement'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'fungible_asset_order'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_packets_select_column': { name: 'v1_ibc_union_packets_select_column'; enumValues: 'acknowledgement' | 'acknowledgement_decoded' | 'channel_version' | 'data' | 'data_decoded' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'packet_ack_block_hash' | 'packet_ack_event_index' | 'packet_ack_height' | 'packet_ack_maker' | 'packet_ack_timestamp' | 'packet_ack_transaction_event_index' | 'packet_ack_transaction_hash' | 'packet_ack_transaction_index' | 'packet_recv_block_hash' | 'packet_recv_event_index' | 'packet_recv_height' | 'packet_recv_maker' | 'packet_recv_maker_msg' | 'packet_recv_timestamp' | 'packet_recv_transaction_event_index' | 'packet_recv_transaction_hash' | 'packet_recv_transaction_index' | 'packet_send_block_hash' | 'packet_send_event_index' | 'packet_send_height' | 'packet_send_timestamp' | 'packet_send_transaction_event_index' | 'packet_send_transaction_hash' | 'packet_send_transaction_index' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'timeout_height' | 'timeout_timestamp' | 'write_ack_block_hash' | 'write_ack_event_index' | 'write_ack_height' | 'write_ack_timestamp' | 'write_ack_transaction_event_index' | 'write_ack_transaction_hash' | 'write_ack_transaction_index'; }; + 'v1_ibc_union_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs': { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'contact': { name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_rpcs_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_max_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_min_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_select_column': { name: 'v1_ibc_union_rpcs_select_column'; enumValues: 'contact' | 'description' | 'enabled' | 'type' | 'url'; }; + 'v1_ibc_union_rpcs_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_statistics': { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; fields: { 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; + 'v1_ibc_union_statistics_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_statistics_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_order_by'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_statistics_select_column': { name: 'v1_ibc_union_statistics_select_column'; enumValues: 'name' | 'value'; }; + 'v1_ibc_union_statistics_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_statistics_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces': { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'initiating_transaction_hash': { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_traces_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_avg_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_max_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_min_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_select_column': { name: 'v1_ibc_union_traces_select_column'; enumValues: 'block_hash' | 'height' | 'initiating_transaction_hash' | 'timestamp' | 'transaction_hash' | 'type'; }; + 'v1_ibc_union_traces_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_sum_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_variance_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_index_status': { kind: 'OBJECT'; name: 'v1_index_status'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'tip_age_seconds': { name: 'tip_age_seconds'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; + 'v1_index_status_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_index_status_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_index_status_select_column': { name: 'v1_index_status_select_column'; enumValues: 'chain_id' | 'display_name' | 'height' | 'status' | 'timestamp' | 'tip_age_seconds'; }; + 'v1_index_status_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_index_status_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; + 'v1_lightclient_update': { kind: 'OBJECT'; name: 'v1_lightclient_update'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_chain': { name: 'counterparty_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'execution_height': { name: 'execution_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'revision_height': { name: 'revision_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_lightclient_update_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'execution_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'revision_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_lightclient_update_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'execution_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'revision_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_lightclient_update_select_column': { name: 'v1_lightclient_update_select_column'; enumValues: 'block_hash' | 'client_id' | 'execution_height' | 'height' | 'revision_height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_lightclient_update_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_lightclient_update_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'execution_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'revision_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type': { kind: 'OBJECT'; name: 'v1_packet_effect_type'; fields: { 'event': { name: 'event'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'event_index': { name: 'event_index'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; }; }; + 'v1_packet_effect_type_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_avg_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'event'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_max_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_min_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_order_by'; isOneOf: false; inputFields: [{ name: 'event'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_select_column': { name: 'v1_packet_effect_type_select_column'; enumValues: 'event' | 'event_index'; }; + 'v1_packet_effect_type_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'event'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_sum_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_variance_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packets': { kind: 'OBJECT'; name: 'v1_packets'; fields: { 'destination_block_hash': { name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_event_index': { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_event_json': { name: 'destination_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_height': { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_packet_data': { name: 'destination_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_sequence': { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_timeout_timestamp': { name: 'destination_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'destination_timestamp': { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'destination_transaction_event_index': { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_transaction_hash': { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_transaction_index': { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'effects': { name: 'effects'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; } }; 'source_block_hash': { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_event_index': { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_event_json': { name: 'source_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'source_height': { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_packet_data': { name: 'source_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_sequence': { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_timeout_timestamp': { name: 'source_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'source_timestamp': { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'source_transaction_event_index': { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_transaction_hash': { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_index': { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; } }; 'transfer': { name: 'transfer'; type: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; } }; }; }; + 'v1_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_event_json'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_packet_data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'effects'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_json'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_packet_data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packets_order_by'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_event_json'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_packet_data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'effects_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_json'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_packet_data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_order_by'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packets_select_column': { name: 'v1_packets_select_column'; enumValues: 'destination_block_hash' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_event_index' | 'destination_event_json' | 'destination_height' | 'destination_packet_data' | 'destination_port_id' | 'destination_sequence' | 'destination_timeout_timestamp' | 'destination_timestamp' | 'destination_transaction_event_index' | 'destination_transaction_hash' | 'destination_transaction_index' | 'source_block_hash' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_event_index' | 'source_event_json' | 'source_height' | 'source_packet_data' | 'source_port_id' | 'source_sequence' | 'source_timeout_timestamp' | 'source_timestamp' | 'source_transaction_event_index' | 'source_transaction_hash' | 'source_transaction_index'; }; + 'v1_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs': { kind: 'OBJECT'; name: 'v1_rpcs'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'contact': { name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_rpcs_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_max_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_min_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_select_column': { name: 'v1_rpcs_select_column'; enumValues: 'contact' | 'description' | 'enabled' | 'type' | 'url'; }; + 'v1_rpcs_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics': { kind: 'OBJECT'; name: 'v1_statistics'; fields: { 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; + 'v1_statistics_address': { kind: 'OBJECT'; name: 'v1_statistics_address'; fields: { 'normalized_address': { name: 'normalized_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'total': { name: 'total'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; }; }; + 'v1_statistics_address_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'normalized_address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'total'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_address_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_order_by'; isOneOf: false; inputFields: [{ name: 'normalized_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'total'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_address_select_column': { name: 'v1_statistics_address_select_column'; enumValues: 'normalized_address' | 'total'; }; + 'v1_statistics_address_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_address_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'normalized_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'total'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_order_by'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_select_column': { name: 'v1_statistics_select_column'; enumValues: 'name' | 'value'; }; + 'v1_statistics_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type': { kind: 'OBJECT'; name: 'v1_tokens_type'; fields: { 'amount': { name: 'amount'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_tokens_type_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_avg_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_max_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_min_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_select_column': { name: 'v1_tokens_type_select_column'; enumValues: 'amount' | 'denom'; }; + 'v1_tokens_type_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_sum_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_variance_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces': { kind: 'OBJECT'; name: 'v1_traces'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'initiating_transaction_hash': { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'order': { name: 'order'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_sequence': { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transfer': { name: 'transfer'; type: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_traces_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_avg_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_max_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_min_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_select_column': { name: 'v1_traces_select_column'; enumValues: 'data' | 'height' | 'initiating_transaction_hash' | 'order' | 'source_sequence' | 'timestamp' | 'transaction_hash' | 'type'; }; + 'v1_traces_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_sum_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_variance_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type': { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; fields: { 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiver': { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'retries': { name: 'retries'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_block_hash': { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_event_index': { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_height': { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_event_index': { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_transaction_hash': { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_index': { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'timeout': { name: 'timeout'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_transfer_forwards_type_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_avg_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_max_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_min_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_select_column': { name: 'v1_transfer_forwards_type_select_column'; enumValues: 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'receiver' | 'retries' | 'source_block_hash' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_event_index' | 'source_height' | 'source_port_id' | 'source_transaction_event_index' | 'source_transaction_hash' | 'source_transaction_index' | 'timeout'; }; + 'v1_transfer_forwards_type_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_sum_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_variance_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfers': { kind: 'OBJECT'; name: 'v1_transfers'; fields: { 'destination_block_hash': { name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_event_index': { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_height': { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_sequence': { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_timestamp': { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'destination_transaction_event_index': { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_transaction_hash': { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_transaction_index': { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'forwards': { name: 'forwards'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; } }; 'hop': { name: 'hop'; type: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; } }; 'normalized_receiver': { name: 'normalized_receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'normalized_sender': { name: 'normalized_sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet': { name: 'packet'; type: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; } }; 'packet_data': { name: 'packet_data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'pfm_destination_channel_id': { name: 'pfm_destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pfm_destination_port_id': { name: 'pfm_destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pfm_recv_sequence': { name: 'pfm_recv_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'pfm_sent_sequence': { name: 'pfm_sent_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'pfm_source_channel_id': { name: 'pfm_source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pfm_source_port_id': { name: 'pfm_source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiver': { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_block_hash': { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_event_index': { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_height': { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_sequence': { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_timestamp': { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'source_transaction_event_index': { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_transaction_hash': { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_index': { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'tokens': { name: 'tokens'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; }; }; + 'v1_transfers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'forwards'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'hop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'normalized_receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'normalized_sender'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_data'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_recv_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_sent_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tokens'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'forwards_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'hop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; ofType: null; }; defaultValue: null }, { name: 'normalized_receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'normalized_sender'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packets_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_recv_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_sent_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tokens_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfers_select_column': { name: 'v1_transfers_select_column'; enumValues: 'destination_block_hash' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_event_index' | 'destination_height' | 'destination_port_id' | 'destination_sequence' | 'destination_timestamp' | 'destination_transaction_event_index' | 'destination_transaction_hash' | 'destination_transaction_index' | 'normalized_receiver' | 'normalized_sender' | 'packet_data' | 'pfm_destination_channel_id' | 'pfm_destination_port_id' | 'pfm_recv_sequence' | 'pfm_sent_sequence' | 'pfm_source_channel_id' | 'pfm_source_port_id' | 'receiver' | 'sender' | 'source_block_hash' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_event_index' | 'source_height' | 'source_port_id' | 'source_sequence' | 'source_timestamp' | 'source_transaction_event_index' | 'source_transaction_hash' | 'source_transaction_index'; }; + 'v1_transfers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'normalized_receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'normalized_sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pfm_recv_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'pfm_sent_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations': { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; fields: { 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contract_address': { name: 'contract_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'forwards': { name: 'forwards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; }; }; + 'v1_ucs1_configurations_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'forwards'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_max_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_min_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'forwards_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_select_column': { name: 'v1_ucs1_configurations_select_column'; enumValues: 'channel_id' | 'connection_id' | 'contract_address' | 'port_id'; }; + 'v1_ucs1_configurations_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_paths': { kind: 'OBJECT'; name: 'v1_ucs1_paths'; fields: { 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; }; }; + 'v1_ucs1_paths_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_paths_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_paths_select_column': { name: 'v1_ucs1_paths_select_column'; enumValues: 'channel_id'; }; + 'v1_ucs1_paths_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_paths_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; +}; + /** An IntrospectionQuery representation of your schema. * * @remarks @@ -10,37074 +451,11 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - "__schema": { - "queryType": { - "name": "query_root" - }, - "mutationType": { - "name": "mutation_root" - }, - "subscriptionType": { - "name": "subscription_root" - }, - "types": [ - { - "kind": "SCALAR", - "name": "Boolean" - }, - { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Boolean" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Boolean" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "SCALAR", - "name": "Int" - }, - { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "PfmArgs", - "fields": [ - { - "name": "channel", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [], - "isDeprecated": false - }, - { - "name": "memo", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - } - } - }, - { - "name": "channel", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "memo", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "PfmArgs_enum_name", - "enumValues": [ - { - "name": "channel", - "isDeprecated": false - }, - { - "name": "memo", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_order_by", - "inputFields": [ - { - "name": "channel", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "memo", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "Request", - "fields": [ - { - "name": "address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [], - "isDeprecated": false - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - }, - "args": [], - "isDeprecated": false - }, - { - "name": "time", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [], - "isDeprecated": false - }, - { - "name": "txHash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "SCALAR", - "name": "String" - }, - { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_ilike", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - }, - { - "name": "_iregex", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_like", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nilike", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - }, - { - "name": "_niregex", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nlike", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nregex", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nsimilar", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_regex", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_similar", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "SCALAR", - "name": "bigint" - }, - { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "bigint" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "bigint" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "cursor_ordering", - "enumValues": [ - { - "name": "ASC", - "isDeprecated": false - }, - { - "name": "DESC", - "isDeprecated": false - } - ] - }, - { - "kind": "SCALAR", - "name": "date" - }, - { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "date" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "date" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "dydx_faucetMutation", - "fields": [ - { - "name": "send", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [ - { - "name": "captchaToken", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "toAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "dydx_faucetQuery", - "fields": [ - { - "name": "handledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "transfersForAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "unhandledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "faucet2Mutation", - "fields": [ - { - "name": "send", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [ - { - "name": "captchaToken", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "toAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "faucet2Query", - "fields": [ - { - "name": "handledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "transfersForAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "unhandledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "get_route_arguments", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "forward_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "receiver", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ], - "isOneOf": false - }, - { - "kind": "SCALAR", - "name": "jsonb" - }, - { - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", - "inputFields": [ - { - "name": "String", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "inputFields": [ - { - "name": "_cast", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp" - } - }, - { - "name": "_contained_in", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_contains", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_has_key", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_has_keys_all", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - }, - { - "name": "_has_keys_any", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "jsonb" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "jsonb" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "mutation_root", - "fields": [ - { - "name": "dydx_faucet", - "type": { - "kind": "OBJECT", - "name": "dydx_faucetMutation" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "faucet2", - "type": { - "kind": "OBJECT", - "name": "faucet2Mutation" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "stride_faucet", - "type": { - "kind": "OBJECT", - "name": "stride_faucetMutation" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "SCALAR", - "name": "numeric" - }, - { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "numeric" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "numeric" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "order_by", - "enumValues": [ - { - "name": "asc", - "isDeprecated": false - }, - { - "name": "asc_nulls_first", - "isDeprecated": false - }, - { - "name": "asc_nulls_last", - "isDeprecated": false - }, - { - "name": "desc", - "isDeprecated": false - }, - { - "name": "desc_nulls_first", - "isDeprecated": false - }, - { - "name": "desc_nulls_last", - "isDeprecated": false - } - ] - }, - { - "kind": "OBJECT", - "name": "query_root", - "fields": [ - { - "name": "dydx_faucet", - "type": { - "kind": "OBJECT", - "name": "dydx_faucetQuery" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "faucet2", - "type": { - "kind": "OBJECT", - "name": "faucet2Query" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "get_route", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "PfmArgs" - } - } - } - }, - "args": [ - { - "name": "args", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "get_route_arguments" - } - } - }, - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "PfmArgs_enum_name" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "stride_faucet", - "type": { - "kind": "OBJECT", - "name": "stride_faucetQuery" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "v1_acknowledge_packet", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_acknowledge_packet" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_acknowledge_packet_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_chains", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_chains" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_chains_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_ack", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_ack" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_ack_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_confirm", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_confirm" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_confirm_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_init", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_init" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_init_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_try", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_try" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_try_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channels", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channels" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channels_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_clients", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_clients" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_clients_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_config", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_config" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_config_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_ack", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_ack" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_ack_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_confirm", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_confirm" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_confirm_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_init", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_init" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_init_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_try", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_try" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_try_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connections", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connections" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connections_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_contracts", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_contracts" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_contracts_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_daily_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_transfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_transfers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_daily_transfers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_health_check", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_health_check" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_health_check_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_chains", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_chains_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_channels", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_channels" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_channels_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_clients", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_clients" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_clients_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_config", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_config" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_config_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_connections", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_connections" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_connections_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_contracts", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_contracts" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_contracts_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_fungible_asset_orders", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_daily_fungible_asset_orders_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_daily_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_fungible_asset_orders", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_fungible_asset_orders_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_health_check", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_health_check" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_health_check_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_statistics", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_statistics" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_statistics_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_index_status", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_index_status" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_index_status_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_lightclient_update", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_lightclient_update" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_lightclient_update_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packet_effect_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packet_effect_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packet_effect_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_statistics_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics_address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics_address" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_statistics_address_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_tokens_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_tokens_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_tokens_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfer_forwards_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfer_forwards_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_configurations", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_paths", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_paths" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_paths_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "stride_faucetMutation", - "fields": [ - { - "name": "send", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [ - { - "name": "captchaToken", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "toAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "stride_faucetQuery", - "fields": [ - { - "name": "handledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "transfersForAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "unhandledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "subscription_root", - "fields": [ - { - "name": "get_route", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "PfmArgs" - } - } - } - }, - "args": [ - { - "name": "args", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "get_route_arguments" - } - } - }, - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "PfmArgs_enum_name" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_acknowledge_packet", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_acknowledge_packet" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_acknowledge_packet_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_acknowledge_packet_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_acknowledge_packet" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_assets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_assets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_chains", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_chains" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_chains_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_chains_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_chains" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_ack", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_ack" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_ack_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_ack_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_ack" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_confirm", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_confirm" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_confirm_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_confirm_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_confirm" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_init", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_init" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_init_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_init_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_init" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_try", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_try" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_try_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_try_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_try" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channels", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channels" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channels_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channels_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channels" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_clients", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_clients" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_clients_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_clients_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_clients" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_config", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_config" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_config_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_config_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_config" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_ack", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_ack" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_ack_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_ack_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_ack" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_confirm", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_confirm" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_confirm_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_confirm_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_confirm" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_init", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_init" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_init_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_init_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_init" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_try", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_try" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_try_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_try_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_try" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connections", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connections" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connections_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connections_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connections" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_contracts", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_contracts" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_contracts_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_contracts_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_contracts" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_daily_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_packets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_packets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_transfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_transfers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_daily_transfers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_transfers_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_transfers" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_explorers_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_explorers" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_faucets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_faucets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_health_check", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_health_check" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_health_check_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_health_check_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_health_check" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_assets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_chains", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_chains_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_chains_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_channels", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_channels" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_channels_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_channels_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_channels" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_clients", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_clients" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_clients_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_clients_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_clients" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_config", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_config" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_config_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_config_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_config" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_connections", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_connections" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_connections_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_connections_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_connections" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_contracts", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_contracts" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_contracts_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_contracts_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_contracts" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_fungible_asset_orders", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_daily_fungible_asset_orders_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_fungible_asset_orders_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_daily_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_packets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_packets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_explorers_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_faucets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_fungible_asset_orders", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_fungible_asset_orders_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_fungible_asset_orders_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_health_check", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_health_check" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_health_check_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_health_check_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_health_check" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_packets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_packets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_rpcs_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_statistics", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_statistics" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_statistics_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_statistics_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_statistics" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_traces_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_index_status", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_index_status" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_index_status_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_index_status_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_index_status" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_lightclient_update", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_lightclient_update" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_lightclient_update_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_lightclient_update_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_lightclient_update" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packet_effect_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packet_effect_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packet_effect_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packet_effect_type_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packet_effect_type" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_rpcs_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_rpcs" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_statistics_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics_address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics_address" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_statistics_address_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics_address_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics_address" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_tokens_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_tokens_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_tokens_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_tokens_type_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_tokens_type" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_traces_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_traces" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfer_forwards_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfer_forwards_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfer_forwards_type_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfers_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfers" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_configurations", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_configurations_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_paths", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_paths" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_paths_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_paths_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_paths" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "SCALAR", - "name": "timestamptz" - }, - { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "timestamptz" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "timestamptz" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_acknowledge_packet", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_acknowledge_packet_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "event_index", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "sequence", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_event_index", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_assets", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "decimals", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "gas_token", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_avg_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "decimals", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "faucets", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - }, - { - "name": "gas_token", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_max_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_min_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "faucets_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_aggregate_order_by" - } - }, - { - "name": "gas_token", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_assets_select_column", - "enumValues": [ - { - "name": "decimals", - "isDeprecated": false - }, - { - "name": "denom", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "display_symbol", - "isDeprecated": false - }, - { - "name": "gas_token", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_pop_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_samp_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stream_cursor_value_input", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "gas_token", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_sum_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_var_pop_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_var_samp_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_variance_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_chains", - "fields": [ - { - "name": "addr_prefix", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled_staging", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "rpc_type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "testnet", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "ucs1_configurations", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - } - }, - { - "name": "addr_prefix", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "assets", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - }, - { - "name": "chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "explorers", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "rpcs", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - }, - { - "name": "testnet", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "ucs1_configurations", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by", - "inputFields": [ - { - "name": "addr_prefix", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "assets_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_aggregate_order_by" - } - }, - { - "name": "chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "explorers_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_aggregate_order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "rpcs_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_aggregate_order_by" - } - }, - { - "name": "testnet", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "ucs1_configurations_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_aggregate_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_chains_select_column", - "enumValues": [ - { - "name": "addr_prefix", - "isDeprecated": false - }, - { - "name": "chain_id", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "enabled_staging", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "rpc_type", - "isDeprecated": false - }, - { - "name": "testnet", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_chains_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_chains_stream_cursor_value_input", - "inputFields": [ - { - "name": "addr_prefix", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "testnet", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channel_open_ack", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channel_open_ack_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channel_open_confirm", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channel_open_confirm_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channel_open_init", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channel_open_init_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channel_open_try", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channel_open_try_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channels", - "fields": [ - { - "name": "connection", - "type": { - "kind": "OBJECT", - "name": "v1_connections" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - } - }, - { - "name": "connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channels_order_by", - "inputFields": [ - { - "name": "connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channels_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channels_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channels_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_clients", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_clients_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_clients_select_column", - "enumValues": [ - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "counterparty_chain_id", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_clients_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_clients_stream_cursor_value_input", - "inputFields": [ - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_config", - "fields": [ - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - } - }, - { - "name": "key", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_config_order_by", - "inputFields": [ - { - "name": "key", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_config_select_column", - "enumValues": [ - { - "name": "key", - "isDeprecated": false - }, - { - "name": "value", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_config_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_config_stream_cursor_value_input", - "inputFields": [ - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connection_open_ack", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connection_open_ack_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connection_open_confirm", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connection_open_confirm_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connection_open_init", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connection_open_init_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connection_open_try", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connection_open_try_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connections", - "fields": [ - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connections_order_by", - "inputFields": [ - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connections_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_client_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_client_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connections_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connections_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_contracts", - "fields": [ - { - "name": "abi", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "address", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "created_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "max_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "min_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "updated_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - } - }, - { - "name": "abi", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "address", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "created_at", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "max_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "min_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "updated_at", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_order_by", - "inputFields": [ - { - "name": "abi", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "created_at", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "min_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "updated_at", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_contracts_select_column", - "enumValues": [ - { - "name": "abi", - "isDeprecated": false - }, - { - "name": "address", - "isDeprecated": false - }, - { - "name": "created_at", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "max_height", - "isDeprecated": false - }, - { - "name": "min_height", - "isDeprecated": false - }, - { - "name": "updated_at", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_stream_cursor_value_input", - "inputFields": [ - { - "name": "abi", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "address", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "created_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "max_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "min_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "updated_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_daily_packets", - "fields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - } - }, - { - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "day", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "day", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_daily_packets_select_column", - "enumValues": [ - { - "name": "count", - "isDeprecated": false - }, - { - "name": "day", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_stream_cursor_value_input", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_daily_transfers", - "fields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - } - }, - { - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "day", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "day", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_daily_transfers_select_column", - "enumValues": [ - { - "name": "count", - "isDeprecated": false - }, - { - "name": "day", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_stream_cursor_value_input", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_explorers", - "fields": [ - { - "name": "address_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "block_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "home_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "tx_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - } - }, - { - "name": "address_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "block_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "home_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "tx_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_max_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_min_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_explorers_select_column", - "enumValues": [ - { - "name": "address_url", - "isDeprecated": false - }, - { - "name": "block_url", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "home_url", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "tx_url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_stream_cursor_value_input", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "block_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "home_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "tx_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_faucets", - "fields": [ - { - "name": "asset", - "type": { - "kind": "OBJECT", - "name": "v1_assets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - } - }, - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_max_order_by", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_min_order_by", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_order_by", - "inputFields": [ - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_faucets_select_column", - "enumValues": [ - { - "name": "denom", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_stream_cursor_value_input", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_health_check", - "fields": [ - { - "name": "result", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "test", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - } - }, - { - "name": "result", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "test", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_order_by", - "inputFields": [ - { - "name": "result", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "test", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_health_check_select_column", - "enumValues": [ - { - "name": "result", - "isDeprecated": false - }, - { - "name": "test", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_stream_cursor_value_input", - "inputFields": [ - { - "name": "result", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "test", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_assets", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "decimals", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "gas_token", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "origin", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "unwrapped_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_avg_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "decimals", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "faucets", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - }, - { - "name": "gas_token", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "origin", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "unwrapped_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_max_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "origin", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_min_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "origin", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "faucets_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_aggregate_order_by" - } - }, - { - "name": "gas_token", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "origin", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "unwrapped_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_assets_select_column", - "enumValues": [ - { - "name": "decimals", - "isDeprecated": false - }, - { - "name": "denom", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "display_symbol", - "isDeprecated": false - }, - { - "name": "gas_token", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "origin", - "isDeprecated": false - }, - { - "name": "unwrapped_denom", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_pop_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_samp_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stream_cursor_value_input", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "gas_token", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "origin", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_sum_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_var_pop_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_var_samp_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_variance_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_chains", - "fields": [ - { - "name": "addr_prefix", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled_staging", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "rpc_type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "testnet", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - } - }, - { - "name": "addr_prefix", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "assets", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - }, - { - "name": "chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "explorers", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "rpcs", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - }, - { - "name": "testnet", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by", - "inputFields": [ - { - "name": "addr_prefix", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "assets_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_aggregate_order_by" - } - }, - { - "name": "chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "explorers_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_aggregate_order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "rpcs_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_aggregate_order_by" - } - }, - { - "name": "testnet", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_chains_select_column", - "enumValues": [ - { - "name": "addr_prefix", - "isDeprecated": false - }, - { - "name": "chain_id", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "enabled_staging", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "rpc_type", - "isDeprecated": false - }, - { - "name": "testnet", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_stream_cursor_value_input", - "inputFields": [ - { - "name": "addr_prefix", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "testnet", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_channels", - "fields": [ - { - "name": "connection", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_connections" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "internal_source_chain_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - } - }, - { - "name": "connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "internal_source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_order_by", - "inputFields": [ - { - "name": "connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "internal_source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_channels_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "internal_source_chain_id", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "internal_source_chain_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_clients", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "counterparty_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_clients_select_column", - "enumValues": [ - { - "name": "client_id", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_stream_cursor_value_input", - "inputFields": [ - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_config", - "fields": [ - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - } - }, - { - "name": "key", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_order_by", - "inputFields": [ - { - "name": "key", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_config_select_column", - "enumValues": [ - { - "name": "key", - "isDeprecated": false - }, - { - "name": "value", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_stream_cursor_value_input", - "inputFields": [ - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_connections", - "fields": [ - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_client_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_client_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_order_by", - "inputFields": [ - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_connections_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_client_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_client_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_contracts", - "fields": [ - { - "name": "abi", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "address", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "created_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "end_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "start_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "updated_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - } - }, - { - "name": "abi", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "address", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "created_at", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "end_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "start_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "updated_at", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_order_by", - "inputFields": [ - { - "name": "abi", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "created_at", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "end_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "start_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "updated_at", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_contracts_select_column", - "enumValues": [ - { - "name": "abi", - "isDeprecated": false - }, - { - "name": "address", - "isDeprecated": false - }, - { - "name": "created_at", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "end_height", - "isDeprecated": false - }, - { - "name": "start_height", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - }, - { - "name": "updated_at", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_stream_cursor_value_input", - "inputFields": [ - { - "name": "abi", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "address", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "created_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "end_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "start_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "updated_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders", - "fields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - } - }, - { - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "day", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "day", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_daily_fungible_asset_orders_select_column", - "enumValues": [ - { - "name": "count", - "isDeprecated": false - }, - { - "name": "day", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_packets", - "fields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - } - }, - { - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "day", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "day", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_daily_packets_select_column", - "enumValues": [ - { - "name": "count", - "isDeprecated": false - }, - { - "name": "day", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_stream_cursor_value_input", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers", - "fields": [ - { - "name": "address_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "block_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "home_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "tx_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - } - }, - { - "name": "address_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "block_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "home_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "tx_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_max_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_min_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_explorers_select_column", - "enumValues": [ - { - "name": "address_url", - "isDeprecated": false - }, - { - "name": "block_url", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "home_url", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "name", - "isDeprecated": false - }, - { - "name": "tx_url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_stream_cursor_value_input", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "block_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "home_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "tx_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets", - "fields": [ - { - "name": "asset", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - } - }, - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_max_order_by", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_min_order_by", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_order_by", - "inputFields": [ - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_faucets_select_column", - "enumValues": [ - { - "name": "denom", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_stream_cursor_value_input", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders", - "fields": [ - { - "name": "ack_fill_type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "ack_market_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "ack_tag", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "acknowledgement", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "base_amount", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "base_token", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "base_token_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "base_token_path", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "base_token_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "instruction_path", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_packets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "quote_amount", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "quote_token", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "salt", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - } - }, - { - "name": "ack_fill_type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "ack_market_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "ack_tag", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "acknowledgement", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "base_amount", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "base_token", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "base_token_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "base_token_path", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "base_token_symbol", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "channel_version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "data", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "instruction_path", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "path", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "quote_amount", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "quote_token", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "salt", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "sender", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_order_by", - "inputFields": [ - { - "name": "ack_fill_type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "ack_market_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "ack_tag", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "acknowledgement", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_token", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_token_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_token_path", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_token_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "channel_version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "instruction_path", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_order_by" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "path", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "quote_amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "quote_token", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "salt", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "sender", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "traces_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_aggregate_order_by" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_fungible_asset_orders_select_column", - "enumValues": [ - { - "name": "ack_fill_type", - "isDeprecated": false - }, - { - "name": "ack_market_maker", - "isDeprecated": false - }, - { - "name": "ack_tag", - "isDeprecated": false - }, - { - "name": "acknowledgement", - "isDeprecated": false - }, - { - "name": "acknowledgement_decoded", - "isDeprecated": false - }, - { - "name": "base_amount", - "isDeprecated": false - }, - { - "name": "base_token", - "isDeprecated": false - }, - { - "name": "base_token_name", - "isDeprecated": false - }, - { - "name": "base_token_path", - "isDeprecated": false - }, - { - "name": "base_token_symbol", - "isDeprecated": false - }, - { - "name": "channel_version", - "isDeprecated": false - }, - { - "name": "data", - "isDeprecated": false - }, - { - "name": "data_decoded", - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "instruction_path", - "isDeprecated": false - }, - { - "name": "packet_ack_block_hash", - "isDeprecated": false - }, - { - "name": "packet_ack_event_index", - "isDeprecated": false - }, - { - "name": "packet_ack_height", - "isDeprecated": false - }, - { - "name": "packet_ack_maker", - "isDeprecated": false - }, - { - "name": "packet_ack_timestamp", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_index", - "isDeprecated": false - }, - { - "name": "packet_recv_block_hash", - "isDeprecated": false - }, - { - "name": "packet_recv_event_index", - "isDeprecated": false - }, - { - "name": "packet_recv_height", - "isDeprecated": false - }, - { - "name": "packet_recv_maker", - "isDeprecated": false - }, - { - "name": "packet_recv_maker_msg", - "isDeprecated": false - }, - { - "name": "packet_recv_timestamp", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_index", - "isDeprecated": false - }, - { - "name": "packet_send_block_hash", - "isDeprecated": false - }, - { - "name": "packet_send_event_index", - "isDeprecated": false - }, - { - "name": "packet_send_height", - "isDeprecated": false - }, - { - "name": "packet_send_timestamp", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_index", - "isDeprecated": false - }, - { - "name": "path", - "isDeprecated": false - }, - { - "name": "quote_amount", - "isDeprecated": false - }, - { - "name": "quote_token", - "isDeprecated": false - }, - { - "name": "receiver", - "isDeprecated": false - }, - { - "name": "salt", - "isDeprecated": false - }, - { - "name": "sender", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "timeout_height", - "isDeprecated": false - }, - { - "name": "timeout_timestamp", - "isDeprecated": false - }, - { - "name": "write_ack_block_hash", - "isDeprecated": false - }, - { - "name": "write_ack_event_index", - "isDeprecated": false - }, - { - "name": "write_ack_height", - "isDeprecated": false - }, - { - "name": "write_ack_timestamp", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_event_index", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_hash", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_value_input", - "inputFields": [ - { - "name": "ack_fill_type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "ack_market_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "ack_tag", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "acknowledgement", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "base_amount", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "base_token", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "base_token_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "base_token_path", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "base_token_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_version", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "instruction_path", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "quote_amount", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "quote_token", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "salt", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_health_check", - "fields": [ - { - "name": "result", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "test", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - } - }, - { - "name": "result", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "test", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_order_by", - "inputFields": [ - { - "name": "result", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "test", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_health_check_select_column", - "enumValues": [ - { - "name": "result", - "isDeprecated": false - }, - { - "name": "test", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_stream_cursor_value_input", - "inputFields": [ - { - "name": "result", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "test", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_packets", - "fields": [ - { - "name": "acknowledgement", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "channel_version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "fungible_asset_order", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - } - }, - { - "name": "acknowledgement", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "channel_version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "data", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "fungible_asset_order", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_order_by", - "inputFields": [ - { - "name": "acknowledgement", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "channel_version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "fungible_asset_order", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_order_by" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "traces_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_aggregate_order_by" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_packets_select_column", - "enumValues": [ - { - "name": "acknowledgement", - "isDeprecated": false - }, - { - "name": "acknowledgement_decoded", - "isDeprecated": false - }, - { - "name": "channel_version", - "isDeprecated": false - }, - { - "name": "data", - "isDeprecated": false - }, - { - "name": "data_decoded", - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "packet_ack_block_hash", - "isDeprecated": false - }, - { - "name": "packet_ack_event_index", - "isDeprecated": false - }, - { - "name": "packet_ack_height", - "isDeprecated": false - }, - { - "name": "packet_ack_maker", - "isDeprecated": false - }, - { - "name": "packet_ack_timestamp", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_index", - "isDeprecated": false - }, - { - "name": "packet_recv_block_hash", - "isDeprecated": false - }, - { - "name": "packet_recv_event_index", - "isDeprecated": false - }, - { - "name": "packet_recv_height", - "isDeprecated": false - }, - { - "name": "packet_recv_maker", - "isDeprecated": false - }, - { - "name": "packet_recv_maker_msg", - "isDeprecated": false - }, - { - "name": "packet_recv_timestamp", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_index", - "isDeprecated": false - }, - { - "name": "packet_send_block_hash", - "isDeprecated": false - }, - { - "name": "packet_send_event_index", - "isDeprecated": false - }, - { - "name": "packet_send_height", - "isDeprecated": false - }, - { - "name": "packet_send_timestamp", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_index", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "timeout_height", - "isDeprecated": false - }, - { - "name": "timeout_timestamp", - "isDeprecated": false - }, - { - "name": "write_ack_block_hash", - "isDeprecated": false - }, - { - "name": "write_ack_event_index", - "isDeprecated": false - }, - { - "name": "write_ack_height", - "isDeprecated": false - }, - { - "name": "write_ack_timestamp", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_event_index", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_hash", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_stream_cursor_value_input", - "inputFields": [ - { - "name": "acknowledgement", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "channel_version", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "contact", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "contact", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_max_order_by", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_min_order_by", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_rpcs_select_column", - "enumValues": [ - { - "name": "contact", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - }, - { - "name": "url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_stream_cursor_value_input", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_statistics", - "fields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - } - }, - { - "name": "name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_order_by", - "inputFields": [ - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_statistics_select_column", - "enumValues": [ - { - "name": "name", - "isDeprecated": false - }, - { - "name": "value", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_stream_cursor_value_input", - "inputFields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_traces", - "fields": [ - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "order", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_avg_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_max_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_min_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column", - "enumValues": [ - { - "name": "height", - "isDeprecated": false - }, - { - "name": "initiating_transaction_hash", - "isDeprecated": false - }, - { - "name": "order", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_pop_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_samp_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stream_cursor_value_input", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "order", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_sum_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_var_pop_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_var_samp_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_variance_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_index_status", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "tip_age_seconds", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "tip_age_seconds", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tip_age_seconds", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_index_status_select_column", - "enumValues": [ - { - "name": "chain_id", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "tip_age_seconds", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_stream_cursor_value_input", - "inputFields": [ - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "tip_age_seconds", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_lightclient_update", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "execution_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "revision_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "execution_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "revision_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "execution_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "revision_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_lightclient_update_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "execution_height", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "revision_height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "execution_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "revision_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_packet_effect_type", - "fields": [ - { - "name": "event", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "event_index", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_avg_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - } - }, - { - "name": "event", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_max_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_min_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_order_by", - "inputFields": [ - { - "name": "event", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_packet_effect_type_select_column", - "enumValues": [ - { - "name": "event", - "isDeprecated": false - }, - { - "name": "event_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_pop_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_samp_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stream_cursor_value_input", - "inputFields": [ - { - "name": "event", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "event_index", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_sum_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_var_pop_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_var_samp_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_variance_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_packets", - "fields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_event_json", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "destination_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_packet_data", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "effects", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packet_effect_type" - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packet_effect_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_event_json", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_packet_data", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "traces", - "type": { - "kind": "OBJECT", - "name": "v1_traces" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transfer", - "type": { - "kind": "OBJECT", - "name": "v1_transfers" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - } - }, - { - "name": "destination_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_event_json", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "destination_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "destination_packet_data", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "destination_timeout_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "effects", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_event_json", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "source_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_packet_data", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_timeout_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - }, - { - "name": "transfer", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packets_order_by", - "inputFields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_event_json", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_packet_data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_timeout_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "effects_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_aggregate_order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_json", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_packet_data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_timeout_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by" - } - }, - { - "name": "transfer", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_packets_select_column", - "enumValues": [ - { - "name": "destination_block_hash", - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_event_index", - "isDeprecated": false - }, - { - "name": "destination_event_json", - "isDeprecated": false - }, - { - "name": "destination_height", - "isDeprecated": false - }, - { - "name": "destination_packet_data", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "destination_sequence", - "isDeprecated": false - }, - { - "name": "destination_timeout_timestamp", - "isDeprecated": false - }, - { - "name": "destination_timestamp", - "isDeprecated": false - }, - { - "name": "destination_transaction_event_index", - "isDeprecated": false - }, - { - "name": "destination_transaction_hash", - "isDeprecated": false - }, - { - "name": "destination_transaction_index", - "isDeprecated": false - }, - { - "name": "source_block_hash", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_event_index", - "isDeprecated": false - }, - { - "name": "source_event_json", - "isDeprecated": false - }, - { - "name": "source_height", - "isDeprecated": false - }, - { - "name": "source_packet_data", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "source_sequence", - "isDeprecated": false - }, - { - "name": "source_timeout_timestamp", - "isDeprecated": false - }, - { - "name": "source_timestamp", - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packets_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_event_json", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "destination_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "destination_packet_data", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "destination_timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_event_json", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_packet_data", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_rpcs", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "contact", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "contact", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_max_order_by", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_min_order_by", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_rpcs_select_column", - "enumValues": [ - { - "name": "contact", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - }, - { - "name": "url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_stream_cursor_value_input", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_statistics", - "fields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "v1_statistics_address", - "fields": [ - { - "name": "normalized_address", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "total", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - } - }, - { - "name": "normalized_address", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "total", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_order_by", - "inputFields": [ - { - "name": "normalized_address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "total", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_statistics_address_select_column", - "enumValues": [ - { - "name": "normalized_address", - "isDeprecated": false - }, - { - "name": "total", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_stream_cursor_value_input", - "inputFields": [ - { - "name": "normalized_address", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "total", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - } - }, - { - "name": "name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_order_by", - "inputFields": [ - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_statistics_select_column", - "enumValues": [ - { - "name": "name", - "isDeprecated": false - }, - { - "name": "value", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_stream_cursor_value_input", - "inputFields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_tokens_type", - "fields": [ - { - "name": "amount", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "asset", - "type": { - "kind": "OBJECT", - "name": "v1_assets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_avg_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - } - }, - { - "name": "amount", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_max_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_min_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_tokens_type_select_column", - "enumValues": [ - { - "name": "amount", - "isDeprecated": false - }, - { - "name": "denom", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_pop_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_samp_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stream_cursor_value_input", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_sum_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_var_pop_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_var_samp_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_variance_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_traces", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "order", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transfer", - "type": { - "kind": "OBJECT", - "name": "v1_transfers" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_avg_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "data", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transfer", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_max_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_min_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transfer", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_traces_select_column", - "enumValues": [ - { - "name": "data", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "initiating_transaction_hash", - "isDeprecated": false - }, - { - "name": "order", - "isDeprecated": false - }, - { - "name": "source_sequence", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_pop_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_samp_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stream_cursor_value_input", - "inputFields": [ - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "order", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_sum_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_var_pop_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_var_samp_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_variance_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type", - "fields": [ - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "retries", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_avg_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "retries", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "timeout", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_max_order_by", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_min_order_by", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_order_by", - "inputFields": [ - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_transfer_forwards_type_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "receiver", - "isDeprecated": false - }, - { - "name": "retries", - "isDeprecated": false - }, - { - "name": "source_block_hash", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_event_index", - "isDeprecated": false - }, - { - "name": "source_height", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "isDeprecated": false - }, - { - "name": "timeout", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_pop_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_samp_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "retries", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "timeout", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_sum_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_var_pop_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_var_samp_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_variance_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_transfers", - "fields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "forwards", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type" - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfer_forwards_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "hop", - "type": { - "kind": "OBJECT", - "name": "v1_transfers" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "normalized_receiver", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "normalized_sender", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet", - "type": { - "kind": "OBJECT", - "name": "v1_packets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_data", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "pfm_destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_recv_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_sent_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "tokens", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_tokens_type" - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_tokens_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - } - }, - { - "name": "destination_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "forwards", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - }, - { - "name": "hop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - }, - { - "name": "normalized_receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "normalized_sender", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - }, - { - "name": "packet_data", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "pfm_destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "pfm_destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "pfm_recv_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "pfm_sent_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "pfm_source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "pfm_source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "sender", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "tokens", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by", - "inputFields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "forwards_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_aggregate_order_by" - } - }, - { - "name": "hop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - }, - { - "name": "normalized_receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "normalized_sender", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_order_by" - } - }, - { - "name": "packet_data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_recv_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_sent_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "sender", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tokens_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_aggregate_order_by" - } - }, - { - "name": "traces_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_aggregate_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_transfers_select_column", - "enumValues": [ - { - "name": "destination_block_hash", - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_event_index", - "isDeprecated": false - }, - { - "name": "destination_height", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "destination_sequence", - "isDeprecated": false - }, - { - "name": "destination_timestamp", - "isDeprecated": false - }, - { - "name": "destination_transaction_event_index", - "isDeprecated": false - }, - { - "name": "destination_transaction_hash", - "isDeprecated": false - }, - { - "name": "destination_transaction_index", - "isDeprecated": false - }, - { - "name": "normalized_receiver", - "isDeprecated": false - }, - { - "name": "normalized_sender", - "isDeprecated": false - }, - { - "name": "packet_data", - "isDeprecated": false - }, - { - "name": "pfm_destination_channel_id", - "isDeprecated": false - }, - { - "name": "pfm_destination_port_id", - "isDeprecated": false - }, - { - "name": "pfm_recv_sequence", - "isDeprecated": false - }, - { - "name": "pfm_sent_sequence", - "isDeprecated": false - }, - { - "name": "pfm_source_channel_id", - "isDeprecated": false - }, - { - "name": "pfm_source_port_id", - "isDeprecated": false - }, - { - "name": "receiver", - "isDeprecated": false - }, - { - "name": "sender", - "isDeprecated": false - }, - { - "name": "source_block_hash", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_event_index", - "isDeprecated": false - }, - { - "name": "source_height", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "source_sequence", - "isDeprecated": false - }, - { - "name": "source_timestamp", - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "normalized_receiver", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "normalized_sender", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_data", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "pfm_destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "pfm_destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "pfm_recv_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "pfm_sent_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "pfm_source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "pfm_source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ucs1_configurations", - "fields": [ - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "contract_address", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "forwards", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "contract_address", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "forwards", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_max_order_by", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "contract_address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_min_order_by", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "contract_address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "contract_address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "forwards_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_aggregate_order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column", - "enumValues": [ - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "contract_address", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_stream_cursor_value_input", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "contract_address", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ucs1_paths", - "fields": [ - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_order_by", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ucs1_paths_select_column", - "enumValues": [ - { - "name": "channel_id", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_stream_cursor_value_input", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - } - ], - "directives": [] - } + name: never; + query: 'query_root'; + mutation: 'mutation_root'; + subscription: 'subscription_root'; + types: introspection_types; }; import * as gqlTada from 'gql.tada'; diff --git a/app/src/lib/graphql/queries/stats.ts b/app/src/lib/graphql/queries/stats.ts index 2530e009a5..c77b1e4a4c 100644 --- a/app/src/lib/graphql/queries/stats.ts +++ b/app/src/lib/graphql/queries/stats.ts @@ -11,7 +11,7 @@ export const statsQueryDocument = graphql(/* GraphQL */ ` export const transfersPerDayQueryDocument = graphql(/* GraphQL */ ` query TransfersPerDay($limit: Int!) @cached(ttl: 60) { - v1_ibc_union_daily_transfers(limit: $limit, order_by: {day: desc}) { + v1_ibc_union_daily_fungible_asset_orders(limit: $limit, order_by: {day: desc}) { count day } diff --git a/app/src/lib/queries/stats.ts b/app/src/lib/queries/stats.ts index 1e41b48eb2..e1a7f0d468 100644 --- a/app/src/lib/queries/stats.ts +++ b/app/src/lib/queries/stats.ts @@ -35,7 +35,7 @@ export const transfersPerDayQuery = ( queryKey: ["transfer-per-day"], queryFn: async () => { const response = await request(URLS().GRAPHQL, transfersPerDayQueryDocument, { limit }) - return response.v1_ibc_union_daily_transfers + return response.v1_ibc_union_daily_fungible_asset_orders }, enabled: true, refetchInterval: 6_000, From 3661e2f297e061cb2194ff7992c14a0c0be6b4f3 Mon Sep 17 00:00:00 2001 From: cor Date: Wed, 15 Jan 2025 16:22:56 +0000 Subject: [PATCH 3/7] fix(app): update v1_ibc_union_packets queries --- app/src/lib/graphql/fragments/packets.ts | 58 +++++++++-------- app/src/lib/graphql/queries/packets.ts | 80 ++++++++++++------------ 2 files changed, 72 insertions(+), 66 deletions(-) diff --git a/app/src/lib/graphql/fragments/packets.ts b/app/src/lib/graphql/fragments/packets.ts index 7ae27473bc..4291920db7 100644 --- a/app/src/lib/graphql/fragments/packets.ts +++ b/app/src/lib/graphql/fragments/packets.ts @@ -1,38 +1,42 @@ import { graphql } from "gql.tada" export const packetListDataFragment = graphql(/* GraphQL */ ` - fragment PacketListData on v1_packets { + fragment PacketListData on v1_ibc_union_packets { source_chain_id source_connection_id source_channel_id source_port_id - source_block_hash - source_timestamp - source_sequence + packet_send_block_hash + packet_send_timestamp destination_chain_id destination_connection_id destination_channel_id destination_port_id - destination_block_hash - destination_timestamp - destination_sequence + packet_recv_block_hash + packet_recv_timestamp + source_chain { + chain_id + } + destination_chain { + chain_id + } } `) export const packetDetailsFragment = graphql(/* GraphQL */ ` - fragment PacketDetails on v1_packets { + fragment PacketDetails on v1_ibc_union_packets { source_chain_id, - source_block_hash, - source_height, - source_timestamp, - source_transaction_hash, - source_transaction_index, - source_sequence, + packet_send_block_hash, + packet_send_height, + packet_send_timestamp, + packet_send_transaction_hash, + packet_send_transaction_index, source_port_id, source_channel_id, - source_timeout_timestamp, - source_event_json, - source_packet_data, + timeout_timestamp + timeout_height + data + data_decoded source_chain_id, source_connection_id, source_channel_id, @@ -42,16 +46,18 @@ export const packetDetailsFragment = graphql(/* GraphQL */ ` destination_channel_id, destination_port_id, destination_chain_id, - destination_block_hash, - destination_height, - destination_timestamp, - destination_transaction_hash, - destination_transaction_index, - destination_sequence, + packet_recv_block_hash, + packet_recv_height, + packet_recv_timestamp, + packet_recv_transaction_hash, + packet_recv_transaction_index, destination_port_id, destination_channel_id, - destination_timeout_timestamp, - destination_event_json, - destination_packet_data + source_chain { + chain_id + } + destination_chain { + chain_id + } } `) diff --git a/app/src/lib/graphql/queries/packets.ts b/app/src/lib/graphql/queries/packets.ts index f815d221c1..c0869c4065 100644 --- a/app/src/lib/graphql/queries/packets.ts +++ b/app/src/lib/graphql/queries/packets.ts @@ -4,7 +4,7 @@ import { packetListDataFragment } from "$lib/graphql/fragments/packets" export const packetsLatestQuery = graphql( /* GraphQL */ ` query PacketsLatestQuery($limit: Int = 100) { - v1_packets(limit: $limit, order_by: { source_timestamp: desc_nulls_last }) { + v1_ibc_union_packets(limit: $limit, order_by: { packet_send_timestamp: desc_nulls_last }) { ...PacketListData } } @@ -16,20 +16,20 @@ export const packetsTimestampQuery = graphql( /* GraphQL */ ` query PacketsTimestampQuery($limit: Int! = 100, $timestamp: timestamptz!) @cached(ttl: 1000) { - newer: v1_packets( + newer: v1_ibc_union_packets( limit: $limit - order_by: [{ source_timestamp: asc }, { destination_timestamp: asc }] - where: { source_timestamp: { _gte: $timestamp } } + order_by: [{ packet_send_timestamp: asc }, { packet_recv_timestamp: asc }] + where: { packet_send_timestamp: { _gte: $timestamp } } ) { ...PacketListData } - older: v1_packets( + older: v1_ibc_union_packets( limit: $limit order_by: [ - { source_timestamp: desc } - { destination_timestamp: desc } + { packet_send_timestamp: desc } + { packet_recv_timestamp: desc } ] - where: { source_timestamp: { _lt: $timestamp } } + where: { packet_send_timestamp: { _lt: $timestamp } } ) { ...PacketListData } @@ -41,12 +41,12 @@ export const packetsTimestampQuery = graphql( export const packetsByChainLatestQuery = graphql( /* GraphQL */ ` query PacketsByChainLatestQuery($limit: Int, $chain_id: String!) { - v1_packets( + v1_ibc_union_packets( limit: $limit - order_by: { source_timestamp: desc_nulls_last } + order_by: { packet_send_timestamp: desc_nulls_last } where: { _or: [ - { source_chain_id: { _eq: $chain_id }} - { destination_chain_id: { _eq: $chain_id }} + { source_chain: {chain_id: { _eq: $chain_id }}} + { destination_chain: {chain_id: { _eq: $chain_id }}} ]} ) { ...PacketListData @@ -59,16 +59,16 @@ export const packetsByChainLatestQuery = graphql( export const packetsByChainTimestampQuery = graphql( /* GraphQL */ ` query PacketsByChainTimestampQuery($limit: Int!, $chain_id: String!, $timestamp: timestamptz!) @cached(ttl: 1000) { - newer: v1_packets( + newer: v1_ibc_union_packets( limit: $limit - order_by: [{ source_timestamp: asc }, { destination_timestamp: asc }] + order_by: [{ packet_send_timestamp: asc }, { packet_recv_timestamp: asc }] where: { _and: [ - { source_timestamp: { _gte: $timestamp } } + { packet_send_timestamp: { _gte: $timestamp } } { _or: [ - { source_chain_id: { _eq: $chain_id }} - { destination_chain_id: { _eq: $chain_id }} + { source_chain: {chain_id: { _eq: $chain_id }}} + { destination_chain: {chain_id: { _eq: $chain_id }}} ] } ] @@ -77,12 +77,12 @@ export const packetsByChainTimestampQuery = graphql( ) { ...PacketListData } - older: v1_packets( + older: v1_ibc_union_packets( limit: $limit - order_by: [ { source_timestamp: desc } { destination_timestamp: desc } ] + order_by: [ { packet_send_timestamp: desc } { packet_recv_timestamp: desc } ] where: { _and: [ - { source_timestamp: { _lt: $timestamp } } + { packet_send_timestamp: { _lt: $timestamp } } { _or: [ { source_chain_id: { _eq: $chain_id }} @@ -101,10 +101,10 @@ export const packetsByChainTimestampQuery = graphql( export const packetsByConnectionIdLatestQuery = graphql( /* GraphQL */ ` - query PacketsByConnectionIdLatestQuery($limit: Int!, $chain_id: String!, $connection_id: String!) { - v1_packets( + query PacketsByConnectionIdLatestQuery($limit: Int!, $chain_id: String!, $connection_id: Int!) { + v1_ibc_union_packets( limit: $limit - order_by: { source_timestamp: desc_nulls_last } + order_by: { packet_send_timestamp: desc_nulls_last } where: { _or: [ { _and: [{source_chain_id: { _eq: $chain_id }} {source_connection_id: { _eq: $connection_id }}] } @@ -121,13 +121,13 @@ export const packetsByConnectionIdLatestQuery = graphql( export const packetsByConnectionIdTimestampQuery = graphql( /* GraphQL */ ` - query PacketsByConnectionIdTimestampQuery($limit: Int!, $chain_id: String!, $connection_id: String!, $timestamp: timestamptz!) @cached(ttl: 1000) { - newer: v1_packets( + query PacketsByConnectionIdTimestampQuery($limit: Int!, $chain_id: String!, $connection_id: Int!, $timestamp: timestamptz!) @cached(ttl: 1000) { + newer: v1_ibc_union_packets( limit: $limit - order_by: [{ source_timestamp: asc }, { destination_timestamp: asc }] + order_by: [{ packet_send_timestamp: asc }, { packet_recv_timestamp: asc }] where: { _and: [ - { source_timestamp: { _gte: $timestamp } } + { packet_send_timestamp: { _gte: $timestamp } } { _or: [ { _and: [{source_chain_id: { _eq: $chain_id }} {source_connection_id: { _eq: $connection_id }}] } @@ -140,12 +140,12 @@ export const packetsByConnectionIdTimestampQuery = graphql( ) { ...PacketListData } - older: v1_packets( + older: v1_ibc_union_packets( limit: $limit - order_by: [ { source_timestamp: desc } { destination_timestamp: desc } ] + order_by: [ { packet_send_timestamp: desc } { packet_recv_timestamp: desc } ] where: { _and: [ - { source_timestamp: { _lt: $timestamp } } + { packet_send_timestamp: { _lt: $timestamp } } { _or: [ { _and: [{source_chain_id: { _eq: $chain_id }} {source_connection_id: { _eq: $connection_id }}] } @@ -164,10 +164,10 @@ export const packetsByConnectionIdTimestampQuery = graphql( export const packetsByChannelIdLatestQuery = graphql( /* GraphQL */ ` - query PacketsByChannelIdLatestQuery($limit: Int!, $chain_id: String!, $connection_id: String!, $channel_id: String!) { - v1_packets( + query PacketsByChannelIdLatestQuery($limit: Int!, $chain_id: String!, $connection_id: Int!, $channel_id: Int!) { + v1_ibc_union_packets( limit: $limit - order_by: { source_timestamp: desc_nulls_last } + order_by: { packet_send_timestamp: desc_nulls_last } where: { _or: [ { _and: [{source_chain_id: { _eq: $chain_id }} {source_connection_id: { _eq: $connection_id }} {source_channel_id: { _eq: $channel_id }}] } @@ -184,13 +184,13 @@ export const packetsByChannelIdLatestQuery = graphql( export const packetsByChannelIdTimestampQuery = graphql( /* GraphQL */ ` - query PacketsByChannelIdTimestampQuery($limit: Int!, $chain_id: String!, $connection_id: String!, $channel_id: String!, $timestamp: timestamptz!) @cached(ttl: 1000) { - newer: v1_packets( + query PacketsByChannelIdTimestampQuery($limit: Int!, $chain_id: String!, $connection_id: Int!, $channel_id: Int!, $timestamp: timestamptz!) @cached(ttl: 1000) { + newer: v1_ibc_union_packets( limit: $limit - order_by: [{ source_timestamp: asc }, { destination_timestamp: asc }] + order_by: [{ packet_send_timestamp: asc }, { packet_recv_timestamp: asc }] where: { _and: [ - { source_timestamp: { _gte: $timestamp } } + { packet_send_timestamp: { _gte: $timestamp } } { _or: [ { _and: [{source_chain_id: { _eq: $chain_id }} {source_connection_id: { _eq: $connection_id }} {source_channel_id: { _eq: $channel_id }}] } @@ -203,12 +203,12 @@ export const packetsByChannelIdTimestampQuery = graphql( ) { ...PacketListData } - older: v1_packets( + older: v1_ibc_union_packets( limit: $limit - order_by: [ { source_timestamp: desc } { destination_timestamp: desc } ] + order_by: [ { packet_send_timestamp: desc } { packet_recv_timestamp: desc } ] where: { _and: [ - { source_timestamp: { _lt: $timestamp } } + { packet_send_timestamp: { _lt: $timestamp } } { _or: [ { _and: [{source_chain_id: { _eq: $chain_id }} {source_connection_id: { _eq: $connection_id }} {source_channel_id: { _eq: $channel_id }}] } From db7e2162a6aea681352bd42ddf3d0004dd79e7e9 Mon Sep 17 00:00:00 2001 From: cor Date: Wed, 15 Jan 2025 17:08:07 +0000 Subject: [PATCH 4/7] fix(app): ibc-union connections --- app/src/lib/graphql/queries/connections.ts | 2 +- app/src/routes/explorer/(components)/table-connections.svelte | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/lib/graphql/queries/connections.ts b/app/src/lib/graphql/queries/connections.ts index d0a1b4f7c0..95c533be8b 100644 --- a/app/src/lib/graphql/queries/connections.ts +++ b/app/src/lib/graphql/queries/connections.ts @@ -2,7 +2,7 @@ import { graphql } from "gql.tada" export const connectionsQuery = graphql(/* GraphQL */ ` query ConnectionsQuery($limit: Int = 100) @cached(ttl: 30) { - v1_connections( + v1_ibc_union_connections( order_by: [ {status: asc}, {source_chain_id: asc}, diff --git a/app/src/routes/explorer/(components)/table-connections.svelte b/app/src/routes/explorer/(components)/table-connections.svelte index a319a647df..2d3f0abe94 100644 --- a/app/src/routes/explorer/(components)/table-connections.svelte +++ b/app/src/routes/explorer/(components)/table-connections.svelte @@ -17,9 +17,9 @@ let connections = createQuery({ retryDelay: attempt => Math.min(attempt > 1 ? 2 ** attempt * 1000 : 1000, 30 * 1000), // expo backoff queryFn: async () => request(URLS().GRAPHQL, connectionsQuery, {}), select: data => { - if (!data.v1_connections) raise("error fetching transfers") + if (!data.v1_ibc_union_connections) raise("error fetching transfers") - return data.v1_connections.map(connection => ({ + return data.v1_ibc_union_connections.map(connection => ({ source: { chain_display_name: connection.source_chain?.display_name, chain_id: connection.destination_chain_id ?? "unknown", From 8fdf67d8a82086b7469f856a1238962f805c49c6 Mon Sep 17 00:00:00 2001 From: cor Date: Wed, 15 Jan 2025 17:46:55 +0000 Subject: [PATCH 5/7] fix(app): connections and basic packet fixes --- app/src/generated/graphql-env.d.ts | 37561 +++++++++++++++- app/src/generated/schema.graphql | 48 +- .../components/table-cells/cell-copy.svelte | 2 + .../table-cells/cell-origin-connection.svelte | 6 +- app/src/lib/graphql/queries/channels.ts | 2 +- app/src/lib/graphql/queries/connections.ts | 2 +- app/src/lib/graphql/queries/index-status.ts | 4 +- app/src/lib/graphql/queries/packet-details.ts | 7 +- app/src/lib/queries/packets.ts | 30 +- 9 files changed, 37174 insertions(+), 488 deletions(-) diff --git a/app/src/generated/graphql-env.d.ts b/app/src/generated/graphql-env.d.ts index 9de4e9a052..419ace4a29 100644 --- a/app/src/generated/graphql-env.d.ts +++ b/app/src/generated/graphql-env.d.ts @@ -1,447 +1,6 @@ /* eslint-disable */ /* prettier-ignore */ -export type introspection_types = { - 'Boolean': unknown; - 'Boolean_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }]; }; - 'Int': unknown; - 'Int_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }]; }; - 'PfmArgs': { kind: 'OBJECT'; name: 'PfmArgs'; fields: { 'channel': { name: 'channel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'memo': { name: 'memo'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; }; }; - 'PfmArgs_bool_exp_bool_exp': { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'channel'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'memo'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'PfmArgs_enum_name': { name: 'PfmArgs_enum_name'; enumValues: 'channel' | 'memo'; }; - 'PfmArgs_order_by': { kind: 'INPUT_OBJECT'; name: 'PfmArgs_order_by'; isOneOf: false; inputFields: [{ name: 'channel'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'memo'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'Request': { kind: 'OBJECT'; name: 'Request'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'txHash': { name: 'txHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'String': unknown; - 'String_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_ilike'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_iregex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_like'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nilike'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_niregex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nlike'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nregex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nsimilar'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_regex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_similar'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'bigint': unknown; - 'bigint_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; }; }; defaultValue: null }]; }; - 'cursor_ordering': { name: 'cursor_ordering'; enumValues: 'ASC' | 'DESC'; }; - 'date': unknown; - 'date_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'date'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'date'; ofType: null; }; }; }; defaultValue: null }]; }; - 'dydx_faucetMutation': { kind: 'OBJECT'; name: 'dydx_faucetMutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'dydx_faucetQuery': { kind: 'OBJECT'; name: 'dydx_faucetQuery'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; - 'faucet2Mutation': { kind: 'OBJECT'; name: 'faucet2Mutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'faucet2Query': { kind: 'OBJECT'; name: 'faucet2Query'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; - 'get_route_arguments': { kind: 'INPUT_OBJECT'; name: 'get_route_arguments'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'forward_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; - 'jsonb': unknown; - 'jsonb_cast_exp': { kind: 'INPUT_OBJECT'; name: 'jsonb_cast_exp'; isOneOf: false; inputFields: [{ name: 'String'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'jsonb_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; isOneOf: false; inputFields: [{ name: '_cast'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_cast_exp'; ofType: null; }; defaultValue: null }, { name: '_contained_in'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_contains'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_eq'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_has_key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_has_keys_all'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_has_keys_any'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; }; }; defaultValue: null }]; }; - 'mutation_root': { kind: 'OBJECT'; name: 'mutation_root'; fields: { 'dydx_faucet': { name: 'dydx_faucet'; type: { kind: 'OBJECT'; name: 'dydx_faucetMutation'; ofType: null; } }; 'faucet2': { name: 'faucet2'; type: { kind: 'OBJECT'; name: 'faucet2Mutation'; ofType: null; } }; 'stride_faucet': { name: 'stride_faucet'; type: { kind: 'OBJECT'; name: 'stride_faucetMutation'; ofType: null; } }; }; }; - 'numeric': unknown; - 'numeric_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; }; }; defaultValue: null }]; }; - 'order_by': { name: 'order_by'; enumValues: 'asc' | 'asc_nulls_first' | 'asc_nulls_last' | 'desc' | 'desc_nulls_first' | 'desc_nulls_last'; }; - 'query_root': { kind: 'OBJECT'; name: 'query_root'; fields: { 'dydx_faucet': { name: 'dydx_faucet'; type: { kind: 'OBJECT'; name: 'dydx_faucetQuery'; ofType: null; } }; 'faucet2': { name: 'faucet2'; type: { kind: 'OBJECT'; name: 'faucet2Query'; ofType: null; } }; 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'stride_faucet': { name: 'stride_faucet'; type: { kind: 'OBJECT'; name: 'stride_faucetQuery'; ofType: null; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; - 'stride_faucetMutation': { kind: 'OBJECT'; name: 'stride_faucetMutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'stride_faucetQuery': { kind: 'OBJECT'; name: 'stride_faucetQuery'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; - 'subscription_root': { kind: 'OBJECT'; name: 'subscription_root'; fields: { 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet_stream': { name: 'v1_acknowledge_packet_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_assets_stream': { name: 'v1_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_chains_stream': { name: 'v1_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_ack_stream': { name: 'v1_channel_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm_stream': { name: 'v1_channel_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_init_stream': { name: 'v1_channel_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channel_open_try_stream': { name: 'v1_channel_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_channels_stream': { name: 'v1_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_clients_stream': { name: 'v1_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_config_stream': { name: 'v1_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_ack_stream': { name: 'v1_connection_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm_stream': { name: 'v1_connection_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_init_stream': { name: 'v1_connection_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connection_open_try_stream': { name: 'v1_connection_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_connections_stream': { name: 'v1_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_contracts_stream': { name: 'v1_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_packets_stream': { name: 'v1_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_daily_transfers_stream': { name: 'v1_daily_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_explorers_stream': { name: 'v1_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_faucets_stream': { name: 'v1_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_health_check_stream': { name: 'v1_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets_stream': { name: 'v1_ibc_union_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains_stream': { name: 'v1_ibc_union_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels_stream': { name: 'v1_ibc_union_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients_stream': { name: 'v1_ibc_union_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_config_stream': { name: 'v1_ibc_union_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections_stream': { name: 'v1_ibc_union_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts_stream': { name: 'v1_ibc_union_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders_stream': { name: 'v1_ibc_union_daily_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets_stream': { name: 'v1_ibc_union_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers_stream': { name: 'v1_ibc_union_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets_stream': { name: 'v1_ibc_union_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders_stream': { name: 'v1_ibc_union_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check_stream': { name: 'v1_ibc_union_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets_stream': { name: 'v1_ibc_union_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs_stream': { name: 'v1_ibc_union_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics_stream': { name: 'v1_ibc_union_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces_stream': { name: 'v1_ibc_union_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_index_status_stream': { name: 'v1_index_status_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_lightclient_update_stream': { name: 'v1_lightclient_update_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packet_effect_type_stream': { name: 'v1_packet_effect_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_packets_stream': { name: 'v1_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_rpcs_stream': { name: 'v1_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_address_stream': { name: 'v1_statistics_address_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_stream': { name: 'v1_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_tokens_type_stream': { name: 'v1_tokens_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_traces_stream': { name: 'v1_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type_stream': { name: 'v1_transfer_forwards_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_transfers_stream': { name: 'v1_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations_stream': { name: 'v1_ucs1_configurations_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; 'v1_ucs1_paths_stream': { name: 'v1_ucs1_paths_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; - 'timestamptz': unknown; - 'timestamptz_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; }; }; defaultValue: null }]; }; - 'v1_acknowledge_packet': { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'event_index': { name: 'event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'sequence': { name: 'sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_event_index': { name: 'transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_acknowledge_packet_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_acknowledge_packet_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_acknowledge_packet_select_column': { name: 'v1_acknowledge_packet_select_column'; enumValues: 'block_hash' | 'event_index' | 'height' | 'sequence' | 'source_channel_id' | 'source_port_id' | 'timestamp' | 'transaction_event_index' | 'transaction_hash' | 'transaction_index'; }; - 'v1_acknowledge_packet_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_acknowledge_packet_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets': { kind: 'OBJECT'; name: 'v1_assets'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_symbol': { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'faucets': { name: 'faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'gas_token': { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_assets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_variance_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_avg_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'faucets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_max_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_min_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'faucets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_select_column': { name: 'v1_assets_select_column'; enumValues: 'decimals' | 'denom' | 'display_name' | 'display_symbol' | 'gas_token' | 'logo_uri'; }; - 'v1_assets_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_sum_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_assets_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_variance_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_chains': { kind: 'OBJECT'; name: 'v1_chains'; fields: { 'addr_prefix': { name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'enabled_staging': { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'explorers': { name: 'explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpc_type': { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpcs': { name: 'rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'testnet': { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'ucs1_configurations': { name: 'ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; }; }; - 'v1_chains_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'addr_prefix'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'assets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'explorers'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpcs'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'ucs1_configurations'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_chains_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'assets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'explorers_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpcs_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'ucs1_configurations_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_aggregate_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_chains_select_column': { name: 'v1_chains_select_column'; enumValues: 'addr_prefix' | 'chain_id' | 'display_name' | 'enabled' | 'enabled_staging' | 'logo_uri' | 'rpc_type' | 'testnet'; }; - 'v1_chains_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_chains_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_chains_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_chains_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_chains_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_ack': { kind: 'OBJECT'; name: 'v1_channel_open_ack'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_channel_id': { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_channel_open_ack_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_ack_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_ack_select_column': { name: 'v1_channel_open_ack_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_channel_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; - 'v1_channel_open_ack_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_ack_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_confirm': { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_channel_id': { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_channel_open_confirm_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_confirm_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_confirm_select_column': { name: 'v1_channel_open_confirm_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_channel_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; - 'v1_channel_open_confirm_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_confirm_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_init': { kind: 'OBJECT'; name: 'v1_channel_open_init'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_channel_open_init_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_init_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_init_select_column': { name: 'v1_channel_open_init_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index' | 'version'; }; - 'v1_channel_open_init_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_init_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_try': { kind: 'OBJECT'; name: 'v1_channel_open_try'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_channel_id': { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_channel_open_try_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_try_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_try_select_column': { name: 'v1_channel_open_try_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_channel_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index' | 'version'; }; - 'v1_channel_open_try_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_channel_open_try_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_channels': { kind: 'OBJECT'; name: 'v1_channels'; fields: { 'connection': { name: 'connection'; type: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_channels_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_channels_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channels_order_by'; isOneOf: false; inputFields: [{ name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connections_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_channels_select_column': { name: 'v1_channels_select_column'; enumValues: 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'version'; }; - 'v1_channels_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channels_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channels_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_channels_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channels_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_clients': { kind: 'OBJECT'; name: 'v1_clients'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_chain_id': { name: 'counterparty_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_clients_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_clients_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_clients_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_clients_select_column': { name: 'v1_clients_select_column'; enumValues: 'client_id' | 'counterparty_chain_id'; }; - 'v1_clients_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_clients_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_clients_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_clients_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_clients_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_config': { kind: 'OBJECT'; name: 'v1_config'; fields: { 'key': { name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_config_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'key'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_config_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_config_order_by'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_config_select_column': { name: 'v1_config_select_column'; enumValues: 'key' | 'value'; }; - 'v1_config_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_config_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_config_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_config_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_config_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_ack': { kind: 'OBJECT'; name: 'v1_connection_open_ack'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_connection_id': { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_connection_open_ack_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_ack_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_ack_select_column': { name: 'v1_connection_open_ack_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'counterparty_connection_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; - 'v1_connection_open_ack_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_ack_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_confirm': { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_connection_id': { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_connection_open_confirm_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_confirm_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_confirm_select_column': { name: 'v1_connection_open_confirm_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'counterparty_connection_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; - 'v1_connection_open_confirm_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_confirm_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_init': { kind: 'OBJECT'; name: 'v1_connection_open_init'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_connection_open_init_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_init_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_init_select_column': { name: 'v1_connection_open_init_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; - 'v1_connection_open_init_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_init_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_try': { kind: 'OBJECT'; name: 'v1_connection_open_try'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_connection_id': { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_connection_open_try_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_try_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_try_select_column': { name: 'v1_connection_open_try_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'counterparty_connection_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; - 'v1_connection_open_try_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_connection_open_try_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_connections': { kind: 'OBJECT'; name: 'v1_connections'; fields: { 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_client_id': { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_client_id': { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_connections_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_connections_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connections_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_connections_select_column': { name: 'v1_connections_select_column'; enumValues: 'destination_chain_id' | 'destination_client_id' | 'destination_connection_id' | 'source_chain_id' | 'source_client_id' | 'source_connection_id' | 'status'; }; - 'v1_connections_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connections_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connections_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_connections_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connections_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_contracts': { kind: 'OBJECT'; name: 'v1_contracts'; fields: { 'abi': { name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'address': { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'created_at': { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'max_height': { name: 'max_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'min_height': { name: 'min_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'updated_at': { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_contracts_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'abi'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'max_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'min_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_contracts_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_order_by'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'min_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_contracts_select_column': { name: 'v1_contracts_select_column'; enumValues: 'abi' | 'address' | 'created_at' | 'description' | 'max_height' | 'min_height' | 'updated_at' | 'version'; }; - 'v1_contracts_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_contracts_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'max_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'min_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_daily_packets': { kind: 'OBJECT'; name: 'v1_daily_packets'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; - 'v1_daily_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_daily_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_daily_packets_select_column': { name: 'v1_daily_packets_select_column'; enumValues: 'count' | 'day'; }; - 'v1_daily_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_daily_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; - 'v1_daily_transfers': { kind: 'OBJECT'; name: 'v1_daily_transfers'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; - 'v1_daily_transfers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_daily_transfers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_daily_transfers_select_column': { name: 'v1_daily_transfers_select_column'; enumValues: 'count' | 'day'; }; - 'v1_daily_transfers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_daily_transfers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; - 'v1_explorers': { kind: 'OBJECT'; name: 'v1_explorers'; fields: { 'address_url': { name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'block_url': { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'home_url': { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'tx_url': { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_explorers_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_min_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_explorers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_explorers_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_max_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_explorers_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_min_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_explorers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_explorers_select_column': { name: 'v1_explorers_select_column'; enumValues: 'address_url' | 'block_url' | 'description' | 'display_name' | 'home_url' | 'logo_uri' | 'tx_url'; }; - 'v1_explorers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_explorers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_faucets': { kind: 'OBJECT'; name: 'v1_faucets'; fields: { 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_faucets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_min_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_faucets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_faucets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_max_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_faucets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_min_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_faucets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_order_by'; isOneOf: false; inputFields: [{ name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_faucets_select_column': { name: 'v1_faucets_select_column'; enumValues: 'denom' | 'display_name' | 'enabled' | 'url'; }; - 'v1_faucets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_faucets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_health_check': { kind: 'OBJECT'; name: 'v1_health_check'; fields: { 'result': { name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'test': { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_health_check_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'result'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_health_check_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_order_by'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_health_check_select_column': { name: 'v1_health_check_select_column'; enumValues: 'result' | 'test'; }; - 'v1_health_check_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_health_check_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets': { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_symbol': { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'faucets': { name: 'faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'gas_token': { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'unwrapped_chain': { name: 'unwrapped_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'unwrapped_denom': { name: 'unwrapped_denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_assets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_variance_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_avg_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'faucets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_max_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_min_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'faucets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_select_column': { name: 'v1_ibc_union_assets_select_column'; enumValues: 'decimals' | 'denom' | 'display_name' | 'display_symbol' | 'gas_token' | 'logo_uri' | 'origin' | 'unwrapped_denom'; }; - 'v1_ibc_union_assets_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_sum_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_assets_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_variance_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_chains': { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; fields: { 'addr_prefix': { name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'enabled_staging': { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'explorers': { name: 'explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpc_type': { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpcs': { name: 'rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'testnet': { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; }; - 'v1_ibc_union_chains_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'addr_prefix'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'assets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'explorers'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpcs'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_chains_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'assets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'explorers_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpcs_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_chains_select_column': { name: 'v1_ibc_union_chains_select_column'; enumValues: 'addr_prefix' | 'chain_id' | 'display_name' | 'enabled' | 'enabled_staging' | 'logo_uri' | 'rpc_type' | 'testnet'; }; - 'v1_ibc_union_chains_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_chains_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_channels': { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; fields: { 'connection': { name: 'connection'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internal_source_chain_id': { name: 'internal_source_chain_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_channels_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'internal_source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_channels_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_order_by'; isOneOf: false; inputFields: [{ name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'internal_source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_channels_select_column': { name: 'v1_ibc_union_channels_select_column'; enumValues: 'destination_chain_id' | 'destination_connection_id' | 'destination_port_id' | 'internal_source_chain_id' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'version'; }; - 'v1_ibc_union_channels_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_channels_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internal_source_chain_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_clients': { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'counterparty_chain': { name: 'counterparty_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; }; }; - 'v1_ibc_union_clients_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_clients_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_clients_select_column': { name: 'v1_ibc_union_clients_select_column'; enumValues: 'client_id'; }; - 'v1_ibc_union_clients_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_clients_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'client_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_config': { kind: 'OBJECT'; name: 'v1_ibc_union_config'; fields: { 'key': { name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_config_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'key'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_config_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_order_by'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_config_select_column': { name: 'v1_ibc_union_config_select_column'; enumValues: 'key' | 'value'; }; - 'v1_ibc_union_config_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_config_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_connections': { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; fields: { 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_client_id': { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_client_id': { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_connections_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_connections_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_connections_select_column': { name: 'v1_ibc_union_connections_select_column'; enumValues: 'destination_chain_id' | 'destination_client_id' | 'destination_connection_id' | 'source_chain_id' | 'source_client_id' | 'source_connection_id' | 'status'; }; - 'v1_ibc_union_connections_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_connections_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_contracts': { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; fields: { 'abi': { name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'address': { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'created_at': { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'end_height': { name: 'end_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'start_height': { name: 'start_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updated_at': { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_contracts_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'abi'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'end_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'start_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_contracts_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_order_by'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'end_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'start_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_contracts_select_column': { name: 'v1_ibc_union_contracts_select_column'; enumValues: 'abi' | 'address' | 'created_at' | 'description' | 'end_height' | 'start_height' | 'type' | 'updated_at' | 'version'; }; - 'v1_ibc_union_contracts_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_contracts_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'end_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'start_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_daily_fungible_asset_orders': { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; - 'v1_ibc_union_daily_fungible_asset_orders_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_daily_fungible_asset_orders_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_daily_fungible_asset_orders_select_column': { name: 'v1_ibc_union_daily_fungible_asset_orders_select_column'; enumValues: 'count' | 'day'; }; - 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_daily_packets': { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; - 'v1_ibc_union_daily_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_daily_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_daily_packets_select_column': { name: 'v1_ibc_union_daily_packets_select_column'; enumValues: 'count' | 'day'; }; - 'v1_ibc_union_daily_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_daily_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_explorers': { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; fields: { 'address_url': { name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'block_url': { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'home_url': { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'tx_url': { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_explorers_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_min_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_explorers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_explorers_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_max_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_explorers_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_min_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_explorers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_explorers_select_column': { name: 'v1_ibc_union_explorers_select_column'; enumValues: 'address_url' | 'block_url' | 'description' | 'display_name' | 'home_url' | 'logo_uri' | 'name' | 'tx_url'; }; - 'v1_ibc_union_explorers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_explorers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_faucets': { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; fields: { 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_faucets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_min_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_faucets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_faucets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_max_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_faucets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_min_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_faucets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_order_by'; isOneOf: false; inputFields: [{ name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_faucets_select_column': { name: 'v1_ibc_union_faucets_select_column'; enumValues: 'denom' | 'display_name' | 'enabled' | 'url'; }; - 'v1_ibc_union_faucets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_faucets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_fungible_asset_orders': { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; fields: { 'ack_fill_type': { name: 'ack_fill_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ack_market_maker': { name: 'ack_market_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ack_tag': { name: 'ack_tag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement': { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement_decoded': { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'base_amount': { name: 'base_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token': { name: 'base_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token_details': { name: 'base_token_details'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; } }; 'base_token_name': { name: 'base_token_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token_path': { name: 'base_token_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token_symbol': { name: 'base_token_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'channel_version': { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data_decoded': { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'instruction_path': { name: 'instruction_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet': { name: 'packet'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; } }; 'packet_ack_block_hash': { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_event_index': { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_height': { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_ack_maker': { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_timestamp': { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_ack_transaction_event_index': { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_transaction_hash': { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_transaction_index': { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_block_hash': { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_event_index': { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_height': { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_recv_maker': { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_maker_msg': { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_timestamp': { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_recv_transaction_event_index': { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_transaction_hash': { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_transaction_index': { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_block_hash': { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_event_index': { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_height': { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_send_timestamp': { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_send_transaction_event_index': { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_transaction_hash': { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_transaction_index': { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'path': { name: 'path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote_amount': { name: 'quote_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote_token': { name: 'quote_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote_token_details': { name: 'quote_token_details'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; } }; 'receiver': { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'salt': { name: 'salt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timeout_height': { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timeout_timestamp': { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'write_ack_block_hash': { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_event_index': { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_height': { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'write_ack_timestamp': { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'write_ack_transaction_event_index': { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_transaction_hash': { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_transaction_index': { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_ibc_union_fungible_asset_orders_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'ack_fill_type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'ack_market_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'ack_tag'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_amount'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_path'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_symbol'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'instruction_path'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'path'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'quote_amount'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'quote_token'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'quote_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'salt'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_fungible_asset_orders_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_order_by'; isOneOf: false; inputFields: [{ name: 'ack_fill_type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'ack_market_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'ack_tag'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_path'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'instruction_path'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'path'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'quote_amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'quote_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'quote_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'salt'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_fungible_asset_orders_select_column': { name: 'v1_ibc_union_fungible_asset_orders_select_column'; enumValues: 'ack_fill_type' | 'ack_market_maker' | 'ack_tag' | 'acknowledgement' | 'acknowledgement_decoded' | 'base_amount' | 'base_token' | 'base_token_name' | 'base_token_path' | 'base_token_symbol' | 'channel_version' | 'data' | 'data_decoded' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'instruction_path' | 'packet_ack_block_hash' | 'packet_ack_event_index' | 'packet_ack_height' | 'packet_ack_maker' | 'packet_ack_timestamp' | 'packet_ack_transaction_event_index' | 'packet_ack_transaction_hash' | 'packet_ack_transaction_index' | 'packet_recv_block_hash' | 'packet_recv_event_index' | 'packet_recv_height' | 'packet_recv_maker' | 'packet_recv_maker_msg' | 'packet_recv_timestamp' | 'packet_recv_transaction_event_index' | 'packet_recv_transaction_hash' | 'packet_recv_transaction_index' | 'packet_send_block_hash' | 'packet_send_event_index' | 'packet_send_height' | 'packet_send_timestamp' | 'packet_send_transaction_event_index' | 'packet_send_transaction_hash' | 'packet_send_transaction_index' | 'path' | 'quote_amount' | 'quote_token' | 'receiver' | 'salt' | 'sender' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'timeout_height' | 'timeout_timestamp' | 'write_ack_block_hash' | 'write_ack_event_index' | 'write_ack_height' | 'write_ack_timestamp' | 'write_ack_transaction_event_index' | 'write_ack_transaction_hash' | 'write_ack_transaction_index'; }; - 'v1_ibc_union_fungible_asset_orders_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_fungible_asset_orders_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'ack_fill_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ack_market_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ack_tag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'base_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instruction_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'salt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_health_check': { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; fields: { 'result': { name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'test': { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_health_check_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'result'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_health_check_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_order_by'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_health_check_select_column': { name: 'v1_ibc_union_health_check_select_column'; enumValues: 'result' | 'test'; }; - 'v1_ibc_union_health_check_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_health_check_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_packets': { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; fields: { 'acknowledgement': { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement_decoded': { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'channel_version': { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data_decoded': { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'fungible_asset_order': { name: 'fungible_asset_order'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; } }; 'packet_ack_block_hash': { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_event_index': { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_height': { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_ack_maker': { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_timestamp': { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_ack_transaction_event_index': { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_transaction_hash': { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_transaction_index': { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_block_hash': { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_event_index': { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_height': { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_recv_maker': { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_maker_msg': { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_timestamp': { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_recv_transaction_event_index': { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_transaction_hash': { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_transaction_index': { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_block_hash': { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_event_index': { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_height': { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_send_timestamp': { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_send_transaction_event_index': { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_transaction_hash': { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_transaction_index': { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timeout_height': { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timeout_timestamp': { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'write_ack_block_hash': { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_event_index': { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_height': { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'write_ack_timestamp': { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'write_ack_transaction_event_index': { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_transaction_hash': { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_transaction_index': { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_ibc_union_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'fungible_asset_order'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_order_by'; isOneOf: false; inputFields: [{ name: 'acknowledgement'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'fungible_asset_order'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_packets_select_column': { name: 'v1_ibc_union_packets_select_column'; enumValues: 'acknowledgement' | 'acknowledgement_decoded' | 'channel_version' | 'data' | 'data_decoded' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'packet_ack_block_hash' | 'packet_ack_event_index' | 'packet_ack_height' | 'packet_ack_maker' | 'packet_ack_timestamp' | 'packet_ack_transaction_event_index' | 'packet_ack_transaction_hash' | 'packet_ack_transaction_index' | 'packet_recv_block_hash' | 'packet_recv_event_index' | 'packet_recv_height' | 'packet_recv_maker' | 'packet_recv_maker_msg' | 'packet_recv_timestamp' | 'packet_recv_transaction_event_index' | 'packet_recv_transaction_hash' | 'packet_recv_transaction_index' | 'packet_send_block_hash' | 'packet_send_event_index' | 'packet_send_height' | 'packet_send_timestamp' | 'packet_send_transaction_event_index' | 'packet_send_transaction_hash' | 'packet_send_transaction_index' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'timeout_height' | 'timeout_timestamp' | 'write_ack_block_hash' | 'write_ack_event_index' | 'write_ack_height' | 'write_ack_timestamp' | 'write_ack_transaction_event_index' | 'write_ack_transaction_hash' | 'write_ack_transaction_index'; }; - 'v1_ibc_union_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_rpcs': { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'contact': { name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_rpcs_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_min_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_rpcs_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_rpcs_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_max_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_rpcs_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_min_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_rpcs_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_rpcs_select_column': { name: 'v1_ibc_union_rpcs_select_column'; enumValues: 'contact' | 'description' | 'enabled' | 'type' | 'url'; }; - 'v1_ibc_union_rpcs_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_rpcs_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_statistics': { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; fields: { 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; - 'v1_ibc_union_statistics_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_statistics_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_order_by'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_statistics_select_column': { name: 'v1_ibc_union_statistics_select_column'; enumValues: 'name' | 'value'; }; - 'v1_ibc_union_statistics_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_statistics_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces': { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'initiating_transaction_hash': { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_ibc_union_traces_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_variance_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_avg_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_max_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_min_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_select_column': { name: 'v1_ibc_union_traces_select_column'; enumValues: 'block_hash' | 'height' | 'initiating_transaction_hash' | 'timestamp' | 'transaction_hash' | 'type'; }; - 'v1_ibc_union_traces_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_sum_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ibc_union_traces_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_variance_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_index_status': { kind: 'OBJECT'; name: 'v1_index_status'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'tip_age_seconds': { name: 'tip_age_seconds'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; - 'v1_index_status_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_index_status_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_index_status_select_column': { name: 'v1_index_status_select_column'; enumValues: 'chain_id' | 'display_name' | 'height' | 'status' | 'timestamp' | 'tip_age_seconds'; }; - 'v1_index_status_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_index_status_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; - 'v1_lightclient_update': { kind: 'OBJECT'; name: 'v1_lightclient_update'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_chain': { name: 'counterparty_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'execution_height': { name: 'execution_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'revision_height': { name: 'revision_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - 'v1_lightclient_update_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'execution_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'revision_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_lightclient_update_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'execution_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'revision_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_lightclient_update_select_column': { name: 'v1_lightclient_update_select_column'; enumValues: 'block_hash' | 'client_id' | 'execution_height' | 'height' | 'revision_height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; - 'v1_lightclient_update_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_lightclient_update_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'execution_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'revision_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type': { kind: 'OBJECT'; name: 'v1_packet_effect_type'; fields: { 'event': { name: 'event'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'event_index': { name: 'event_index'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; }; }; - 'v1_packet_effect_type_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_variance_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_avg_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'event'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_max_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_min_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_order_by'; isOneOf: false; inputFields: [{ name: 'event'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_select_column': { name: 'v1_packet_effect_type_select_column'; enumValues: 'event' | 'event_index'; }; - 'v1_packet_effect_type_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'event'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_sum_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packet_effect_type_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_variance_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packets': { kind: 'OBJECT'; name: 'v1_packets'; fields: { 'destination_block_hash': { name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_event_index': { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_event_json': { name: 'destination_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_height': { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_packet_data': { name: 'destination_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_sequence': { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_timeout_timestamp': { name: 'destination_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'destination_timestamp': { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'destination_transaction_event_index': { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_transaction_hash': { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_transaction_index': { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'effects': { name: 'effects'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; } }; 'source_block_hash': { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_event_index': { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_event_json': { name: 'source_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'source_height': { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_packet_data': { name: 'source_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_sequence': { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_timeout_timestamp': { name: 'source_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'source_timestamp': { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'source_transaction_event_index': { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_transaction_hash': { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_index': { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; } }; 'transfer': { name: 'transfer'; type: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; } }; }; }; - 'v1_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_event_json'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_packet_data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'effects'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_json'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_packet_data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packets_order_by'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_event_json'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_packet_data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'effects_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_json'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_packet_data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_order_by'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_packets_select_column': { name: 'v1_packets_select_column'; enumValues: 'destination_block_hash' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_event_index' | 'destination_event_json' | 'destination_height' | 'destination_packet_data' | 'destination_port_id' | 'destination_sequence' | 'destination_timeout_timestamp' | 'destination_timestamp' | 'destination_transaction_event_index' | 'destination_transaction_hash' | 'destination_transaction_index' | 'source_block_hash' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_event_index' | 'source_event_json' | 'source_height' | 'source_packet_data' | 'source_port_id' | 'source_sequence' | 'source_timeout_timestamp' | 'source_timestamp' | 'source_transaction_event_index' | 'source_transaction_hash' | 'source_transaction_index'; }; - 'v1_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_rpcs': { kind: 'OBJECT'; name: 'v1_rpcs'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'contact': { name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_rpcs_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_min_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_rpcs_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_rpcs_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_max_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_rpcs_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_min_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_rpcs_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_rpcs_select_column': { name: 'v1_rpcs_select_column'; enumValues: 'contact' | 'description' | 'enabled' | 'type' | 'url'; }; - 'v1_rpcs_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_rpcs_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_statistics': { kind: 'OBJECT'; name: 'v1_statistics'; fields: { 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; - 'v1_statistics_address': { kind: 'OBJECT'; name: 'v1_statistics_address'; fields: { 'normalized_address': { name: 'normalized_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'total': { name: 'total'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; }; }; - 'v1_statistics_address_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'normalized_address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'total'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_statistics_address_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_order_by'; isOneOf: false; inputFields: [{ name: 'normalized_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'total'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_statistics_address_select_column': { name: 'v1_statistics_address_select_column'; enumValues: 'normalized_address' | 'total'; }; - 'v1_statistics_address_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_statistics_address_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'normalized_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'total'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }]; }; - 'v1_statistics_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_statistics_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_order_by'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_statistics_select_column': { name: 'v1_statistics_select_column'; enumValues: 'name' | 'value'; }; - 'v1_statistics_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_statistics_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type': { kind: 'OBJECT'; name: 'v1_tokens_type'; fields: { 'amount': { name: 'amount'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_tokens_type_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_variance_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_avg_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_max_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_min_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_select_column': { name: 'v1_tokens_type_select_column'; enumValues: 'amount' | 'denom'; }; - 'v1_tokens_type_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_sum_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_tokens_type_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_variance_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces': { kind: 'OBJECT'; name: 'v1_traces'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'initiating_transaction_hash': { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'order': { name: 'order'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_sequence': { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transfer': { name: 'transfer'; type: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_traces_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_variance_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_avg_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_max_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_min_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_select_column': { name: 'v1_traces_select_column'; enumValues: 'data' | 'height' | 'initiating_transaction_hash' | 'order' | 'source_sequence' | 'timestamp' | 'transaction_hash' | 'type'; }; - 'v1_traces_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_sum_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_traces_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_variance_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type': { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; fields: { 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiver': { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'retries': { name: 'retries'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_block_hash': { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_event_index': { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_height': { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_event_index': { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_transaction_hash': { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_index': { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'timeout': { name: 'timeout'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'v1_transfer_forwards_type_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_variance_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_avg_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_max_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_min_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_select_column': { name: 'v1_transfer_forwards_type_select_column'; enumValues: 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'receiver' | 'retries' | 'source_block_hash' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_event_index' | 'source_height' | 'source_port_id' | 'source_transaction_event_index' | 'source_transaction_hash' | 'source_transaction_index' | 'timeout'; }; - 'v1_transfer_forwards_type_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_sum_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfer_forwards_type_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_variance_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfers': { kind: 'OBJECT'; name: 'v1_transfers'; fields: { 'destination_block_hash': { name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_event_index': { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_height': { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_sequence': { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_timestamp': { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'destination_transaction_event_index': { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_transaction_hash': { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_transaction_index': { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'forwards': { name: 'forwards'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; } }; 'hop': { name: 'hop'; type: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; } }; 'normalized_receiver': { name: 'normalized_receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'normalized_sender': { name: 'normalized_sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet': { name: 'packet'; type: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; } }; 'packet_data': { name: 'packet_data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'pfm_destination_channel_id': { name: 'pfm_destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pfm_destination_port_id': { name: 'pfm_destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pfm_recv_sequence': { name: 'pfm_recv_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'pfm_sent_sequence': { name: 'pfm_sent_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'pfm_source_channel_id': { name: 'pfm_source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pfm_source_port_id': { name: 'pfm_source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiver': { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_block_hash': { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_event_index': { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_height': { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_sequence': { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_timestamp': { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'source_transaction_event_index': { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_transaction_hash': { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_index': { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'tokens': { name: 'tokens'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; }; }; - 'v1_transfers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'forwards'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'hop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'normalized_receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'normalized_sender'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_data'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_recv_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_sent_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tokens'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'forwards_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'hop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; ofType: null; }; defaultValue: null }, { name: 'normalized_receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'normalized_sender'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packets_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_recv_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_sent_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tokens_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfers_select_column': { name: 'v1_transfers_select_column'; enumValues: 'destination_block_hash' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_event_index' | 'destination_height' | 'destination_port_id' | 'destination_sequence' | 'destination_timestamp' | 'destination_transaction_event_index' | 'destination_transaction_hash' | 'destination_transaction_index' | 'normalized_receiver' | 'normalized_sender' | 'packet_data' | 'pfm_destination_channel_id' | 'pfm_destination_port_id' | 'pfm_recv_sequence' | 'pfm_sent_sequence' | 'pfm_source_channel_id' | 'pfm_source_port_id' | 'receiver' | 'sender' | 'source_block_hash' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_event_index' | 'source_height' | 'source_port_id' | 'source_sequence' | 'source_timestamp' | 'source_transaction_event_index' | 'source_transaction_hash' | 'source_transaction_index'; }; - 'v1_transfers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_transfers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'normalized_receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'normalized_sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pfm_recv_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'pfm_sent_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_configurations': { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; fields: { 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contract_address': { name: 'contract_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'forwards': { name: 'forwards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; }; }; - 'v1_ucs1_configurations_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_min_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_configurations_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'forwards'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_configurations_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_max_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_configurations_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_min_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_configurations_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'forwards_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_configurations_select_column': { name: 'v1_ucs1_configurations_select_column'; enumValues: 'channel_id' | 'connection_id' | 'contract_address' | 'port_id'; }; - 'v1_ucs1_configurations_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_configurations_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_paths': { kind: 'OBJECT'; name: 'v1_ucs1_paths'; fields: { 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; }; }; - 'v1_ucs1_paths_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_paths_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_paths_select_column': { name: 'v1_ucs1_paths_select_column'; enumValues: 'channel_id'; }; - 'v1_ucs1_paths_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; - 'v1_ucs1_paths_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; -}; - /** An IntrospectionQuery representation of your schema. * * @remarks @@ -451,11 +10,37121 @@ export type introspection_types = { * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - name: never; - query: 'query_root'; - mutation: 'mutation_root'; - subscription: 'subscription_root'; - types: introspection_types; + "__schema": { + "queryType": { + "name": "query_root" + }, + "mutationType": { + "name": "mutation_root" + }, + "subscriptionType": { + "name": "subscription_root" + }, + "types": [ + { + "kind": "SCALAR", + "name": "Boolean" + }, + { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp", + "inputFields": [ + { + "name": "_eq", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_gt", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_gte", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_in", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean" + } + } + } + }, + { + "name": "_is_null", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_lt", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_nin", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean" + } + } + } + } + ], + "isOneOf": false + }, + { + "kind": "SCALAR", + "name": "Int" + }, + { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp", + "inputFields": [ + { + "name": "_eq", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "_gt", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "_gte", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "_in", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + } + }, + { + "name": "_is_null", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_lt", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "_nin", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "PfmArgs", + "fields": [ + { + "name": "channel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + }, + "args": [], + "isDeprecated": false + }, + { + "name": "memo", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "PfmArgs_bool_exp_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PfmArgs_bool_exp_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "PfmArgs_bool_exp_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PfmArgs_bool_exp_bool_exp" + } + } + } + }, + { + "name": "channel", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "memo", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "PfmArgs_enum_name", + "enumValues": [ + { + "name": "channel", + "isDeprecated": false + }, + { + "name": "memo", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "PfmArgs_order_by", + "inputFields": [ + { + "name": "channel", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "memo", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "Request", + "fields": [ + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + }, + "args": [], + "isDeprecated": false + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + }, + "args": [], + "isDeprecated": false + }, + { + "name": "time", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + }, + "args": [], + "isDeprecated": false + }, + { + "name": "txHash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "SCALAR", + "name": "String" + }, + { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "inputFields": [ + { + "name": "_eq", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_gt", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_gte", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_ilike", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_in", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + } + }, + { + "name": "_iregex", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_is_null", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_like", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_lt", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_nilike", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_nin", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + } + }, + { + "name": "_niregex", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_nlike", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_nregex", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_nsimilar", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_regex", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_similar", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "SCALAR", + "name": "bigint" + }, + { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "inputFields": [ + { + "name": "_eq", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "_gt", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "_gte", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "_in", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "bigint" + } + } + } + }, + { + "name": "_is_null", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_lt", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "_nin", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "bigint" + } + } + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "cursor_ordering", + "enumValues": [ + { + "name": "ASC", + "isDeprecated": false + }, + { + "name": "DESC", + "isDeprecated": false + } + ] + }, + { + "kind": "SCALAR", + "name": "date" + }, + { + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp", + "inputFields": [ + { + "name": "_eq", + "type": { + "kind": "SCALAR", + "name": "date" + } + }, + { + "name": "_gt", + "type": { + "kind": "SCALAR", + "name": "date" + } + }, + { + "name": "_gte", + "type": { + "kind": "SCALAR", + "name": "date" + } + }, + { + "name": "_in", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "date" + } + } + } + }, + { + "name": "_is_null", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_lt", + "type": { + "kind": "SCALAR", + "name": "date" + } + }, + { + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "date" + } + }, + { + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "date" + } + }, + { + "name": "_nin", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "date" + } + } + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "dydx_faucetMutation", + "fields": [ + { + "name": "send", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + }, + "args": [ + { + "name": "captchaToken", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + }, + { + "name": "toAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "dydx_faucetQuery", + "fields": [ + { + "name": "handledTransfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Request" + } + } + } + }, + "args": [ + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offsetTime", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "transfersForAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Request" + } + } + } + }, + "args": [ + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offsetTime", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "unhandledTransfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Request" + } + } + } + }, + "args": [ + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offsetTime", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "faucet2Mutation", + "fields": [ + { + "name": "send", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + }, + "args": [ + { + "name": "captchaToken", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + }, + { + "name": "toAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "faucet2Query", + "fields": [ + { + "name": "handledTransfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Request" + } + } + } + }, + "args": [ + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offsetTime", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "transfersForAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Request" + } + } + } + }, + "args": [ + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offsetTime", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "unhandledTransfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Request" + } + } + } + }, + "args": [ + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offsetTime", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "get_route_arguments", + "inputFields": [ + { + "name": "destination_chain_id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + }, + { + "name": "forward_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "receiver", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + } + ], + "isOneOf": false + }, + { + "kind": "SCALAR", + "name": "jsonb" + }, + { + "kind": "INPUT_OBJECT", + "name": "jsonb_cast_exp", + "inputFields": [ + { + "name": "String", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", + "inputFields": [ + { + "name": "_cast", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_cast_exp" + } + }, + { + "name": "_contained_in", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "_contains", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "_eq", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "_gt", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "_gte", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "_has_key", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "_has_keys_all", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + } + }, + { + "name": "_has_keys_any", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + } + }, + { + "name": "_in", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "jsonb" + } + } + } + }, + { + "name": "_is_null", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_lt", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "_nin", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "jsonb" + } + } + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "mutation_root", + "fields": [ + { + "name": "dydx_faucet", + "type": { + "kind": "OBJECT", + "name": "dydx_faucetMutation" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "faucet2", + "type": { + "kind": "OBJECT", + "name": "faucet2Mutation" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "stride_faucet", + "type": { + "kind": "OBJECT", + "name": "stride_faucetMutation" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "SCALAR", + "name": "numeric" + }, + { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp", + "inputFields": [ + { + "name": "_eq", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "_gt", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "_gte", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "_in", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "numeric" + } + } + } + }, + { + "name": "_is_null", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_lt", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "_nin", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "numeric" + } + } + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "order_by", + "enumValues": [ + { + "name": "asc", + "isDeprecated": false + }, + { + "name": "asc_nulls_first", + "isDeprecated": false + }, + { + "name": "asc_nulls_last", + "isDeprecated": false + }, + { + "name": "desc", + "isDeprecated": false + }, + { + "name": "desc_nulls_first", + "isDeprecated": false + }, + { + "name": "desc_nulls_last", + "isDeprecated": false + } + ] + }, + { + "kind": "OBJECT", + "name": "query_root", + "fields": [ + { + "name": "dydx_faucet", + "type": { + "kind": "OBJECT", + "name": "dydx_faucetQuery" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "faucet2", + "type": { + "kind": "OBJECT", + "name": "faucet2Query" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "get_route", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PfmArgs" + } + } + } + }, + "args": [ + { + "name": "args", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "get_route_arguments" + } + } + }, + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PfmArgs_enum_name" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PfmArgs_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "PfmArgs_bool_exp_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "stride_faucet", + "type": { + "kind": "OBJECT", + "name": "stride_faucetQuery" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "v1_acknowledge_packet", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_acknowledge_packet" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_acknowledge_packet_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_assets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_assets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_assets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_chains", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_chains" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_chains_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_ack", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_ack" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channel_open_ack_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_confirm", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_confirm" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channel_open_confirm_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_init", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_init" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channel_open_init_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_try", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_try" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channel_open_try_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channels", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channels" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channels_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_clients", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_clients" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_clients_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_config", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_config" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_config_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_config_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_config_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_ack", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_ack" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connection_open_ack_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_confirm", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_confirm" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connection_open_confirm_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_init", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_init" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connection_open_init_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_try", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_try" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connection_open_try_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connections", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connections" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connections_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_contracts", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_contracts" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_contracts_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_daily_packets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_daily_packets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_daily_packets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_daily_transfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_daily_transfers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_daily_transfers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_explorers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_explorers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_explorers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_faucets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_faucets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_faucets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_health_check", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_health_check" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_health_check_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_assets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_assets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_assets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_chains", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_chains_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_channels", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_channels" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_channels_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_clients", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_clients" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_clients_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_config", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_config" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_config_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_connections", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_connections" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_connections_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_contracts", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_contracts" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_contracts_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_daily_fungible_asset_orders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_daily_fungible_asset_orders_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_daily_packets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_daily_packets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_daily_packets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_explorers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_explorers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_explorers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_faucets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_faucets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_faucets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_fungible_asset_orders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_fungible_asset_orders" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_fungible_asset_orders_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_health_check", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_health_check" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_health_check_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_packets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_packets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_packets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_rpcs", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_rpcs" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_rpcs_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_statistics", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_statistics" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_statistics_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_traces", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_traces" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_traces_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_index_status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_index_status" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_index_status_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_lightclient_update", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_lightclient_update" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_lightclient_update_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_packet_effect_type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_packet_effect_type" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_packet_effect_type_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_packets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_packets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_packets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_rpcs", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_rpcs" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_rpcs_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_statistics", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_statistics" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_statistics_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_statistics_address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_statistics_address" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_statistics_address_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_tokens_type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_tokens_type" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_tokens_type_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_traces", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_traces" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_traces_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_transfer_forwards_type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_transfer_forwards_type" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_transfer_forwards_type_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_transfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_transfers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_transfers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ucs1_configurations", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ucs1_configurations" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ucs1_configurations_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ucs1_paths", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ucs1_paths" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ucs1_paths_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_bool_exp" + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "stride_faucetMutation", + "fields": [ + { + "name": "send", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + }, + "args": [ + { + "name": "captchaToken", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + }, + { + "name": "toAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "stride_faucetQuery", + "fields": [ + { + "name": "handledTransfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Request" + } + } + } + }, + "args": [ + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offsetTime", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "transfersForAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Request" + } + } + } + }, + "args": [ + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String" + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offsetTime", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "unhandledTransfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Request" + } + } + } + }, + "args": [ + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offsetTime", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "subscription_root", + "fields": [ + { + "name": "get_route", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PfmArgs" + } + } + } + }, + "args": [ + { + "name": "args", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "get_route_arguments" + } + } + }, + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PfmArgs_enum_name" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PfmArgs_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "PfmArgs_bool_exp_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_acknowledge_packet", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_acknowledge_packet" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_acknowledge_packet_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_acknowledge_packet_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_acknowledge_packet" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_assets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_assets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_assets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_assets_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_assets" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_chains", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_chains" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_chains_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_chains_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_chains" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_ack", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_ack" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channel_open_ack_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_ack_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_ack" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_confirm", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_confirm" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channel_open_confirm_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_confirm_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_confirm" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_init", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_init" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channel_open_init_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_init_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_init" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_try", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_try" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channel_open_try_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channel_open_try_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channel_open_try" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channels", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channels" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_channels_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_channels_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_channels" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_clients", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_clients" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_clients_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_clients_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_clients" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_config", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_config" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_config_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_config_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_config_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_config_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_config" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_config_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_config_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_ack", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_ack" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connection_open_ack_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_ack_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_ack" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_confirm", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_confirm" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connection_open_confirm_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_confirm_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_confirm" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_init", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_init" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connection_open_init_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_init_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_init" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_try", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_try" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connection_open_try_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connection_open_try_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connection_open_try" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connections", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connections" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_connections_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_connections_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_connections" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_contracts", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_contracts" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_contracts_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_contracts_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_contracts" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_daily_packets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_daily_packets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_daily_packets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_daily_packets_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_daily_packets" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_daily_transfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_daily_transfers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_daily_transfers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_daily_transfers_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_daily_transfers" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_explorers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_explorers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_explorers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_explorers_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_explorers" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_faucets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_faucets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_faucets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_faucets_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_faucets" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_health_check", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_health_check" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_health_check_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_health_check_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_health_check" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_assets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_assets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_assets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_assets_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_assets" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_chains", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_chains_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_chains_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_channels", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_channels" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_channels_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_channels_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_channels" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_clients", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_clients" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_clients_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_clients_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_clients" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_config", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_config" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_config_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_config_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_config" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_connections", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_connections" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_connections_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_connections_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_connections" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_contracts", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_contracts" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_contracts_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_contracts_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_contracts" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_daily_fungible_asset_orders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_daily_fungible_asset_orders_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_daily_fungible_asset_orders_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_daily_packets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_daily_packets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_daily_packets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_daily_packets_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_daily_packets" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_explorers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_explorers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_explorers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_explorers_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_explorers" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_faucets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_faucets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_faucets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_faucets_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_faucets" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_fungible_asset_orders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_fungible_asset_orders" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_fungible_asset_orders_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_fungible_asset_orders_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_fungible_asset_orders" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_health_check", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_health_check" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_health_check_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_health_check_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_health_check" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_packets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_packets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_packets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_packets_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_packets" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_rpcs", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_rpcs" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_rpcs_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_rpcs_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_rpcs" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_statistics", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_statistics" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_statistics_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_statistics_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_statistics" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_traces", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_traces" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_traces_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ibc_union_traces_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_traces" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_index_status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_index_status" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_index_status_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_index_status_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_index_status" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_lightclient_update", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_lightclient_update" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_lightclient_update_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_lightclient_update_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_lightclient_update" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_packet_effect_type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_packet_effect_type" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_packet_effect_type_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_packet_effect_type_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_packet_effect_type" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_packets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_packets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_packets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_packets_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_packets" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_rpcs", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_rpcs" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_rpcs_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_rpcs_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_rpcs" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_statistics", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_statistics" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_statistics_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_statistics_address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_statistics_address" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_statistics_address_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_statistics_address_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_statistics_address" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_statistics_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_statistics" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_tokens_type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_tokens_type" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_tokens_type_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_tokens_type_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_tokens_type" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_traces", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_traces" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_traces_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_traces_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_traces" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_transfer_forwards_type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_transfer_forwards_type" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_transfer_forwards_type_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_transfer_forwards_type_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_transfer_forwards_type" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_transfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_transfers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_transfers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_transfers_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_transfers" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ucs1_configurations", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ucs1_configurations" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ucs1_configurations_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ucs1_configurations_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ucs1_configurations" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ucs1_paths", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ucs1_paths" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ucs1_paths_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "v1_ucs1_paths_stream", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ucs1_paths" + } + } + } + }, + "args": [ + { + "name": "batch_size", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int" + } + } + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_stream_cursor_input" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_bool_exp" + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "SCALAR", + "name": "timestamptz" + }, + { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "inputFields": [ + { + "name": "_eq", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "_gt", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "_gte", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "_in", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "timestamptz" + } + } + } + }, + { + "name": "_is_null", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "_lt", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "_nin", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "timestamptz" + } + } + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_acknowledge_packet", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "sequence", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_acknowledge_packet_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "event_index", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "sequence", + "isDeprecated": false + }, + { + "name": "source_channel_id", + "isDeprecated": false + }, + { + "name": "source_port_id", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_event_index", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_acknowledge_packet_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_assets", + "fields": [ + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "decimals", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_symbol", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "faucets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_faucets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_faucets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "gas_token", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_aggregate_order_by", + "inputFields": [ + { + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_avg_order_by" + } + }, + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_min_order_by" + } + }, + { + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stddev_order_by" + } + }, + { + "name": "stddev_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stddev_pop_order_by" + } + }, + { + "name": "stddev_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stddev_samp_order_by" + } + }, + { + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_sum_order_by" + } + }, + { + "name": "var_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_var_pop_order_by" + } + }, + { + "name": "var_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_var_samp_order_by" + } + }, + { + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_variance_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_avg_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + } + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "decimals", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "denom", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "faucets", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_bool_exp" + } + }, + { + "name": "gas_token", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_max_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_min_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_order_by", + "inputFields": [ + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "faucets_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_aggregate_order_by" + } + }, + { + "name": "gas_token", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_assets_select_column", + "enumValues": [ + { + "name": "decimals", + "isDeprecated": false + }, + { + "name": "denom", + "isDeprecated": false + }, + { + "name": "display_name", + "isDeprecated": false + }, + { + "name": "display_symbol", + "isDeprecated": false + }, + { + "name": "gas_token", + "isDeprecated": false + }, + { + "name": "logo_uri", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stddev_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stddev_pop_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stddev_samp_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_stream_cursor_value_input", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "gas_token", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_sum_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_var_pop_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_var_samp_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_assets_variance_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_chains", + "fields": [ + { + "name": "addr_prefix", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "assets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_assets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_assets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "enabled_staging", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "explorers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_explorers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_explorers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "rpc_type", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "rpcs", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_rpcs" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_rpcs_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "testnet", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "ucs1_configurations", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ucs1_configurations" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ucs1_configurations_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + } + } + }, + { + "name": "addr_prefix", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "assets", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + }, + { + "name": "chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "enabled", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "enabled_staging", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "explorers", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_bool_exp" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "rpc_type", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "rpcs", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_bool_exp" + } + }, + { + "name": "testnet", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "ucs1_configurations", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by", + "inputFields": [ + { + "name": "addr_prefix", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "assets_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_aggregate_order_by" + } + }, + { + "name": "chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "enabled", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "enabled_staging", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "explorers_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_aggregate_order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "rpc_type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "rpcs_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_aggregate_order_by" + } + }, + { + "name": "testnet", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "ucs1_configurations_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_aggregate_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_chains_select_column", + "enumValues": [ + { + "name": "addr_prefix", + "isDeprecated": false + }, + { + "name": "chain_id", + "isDeprecated": false + }, + { + "name": "display_name", + "isDeprecated": false + }, + { + "name": "enabled", + "isDeprecated": false + }, + { + "name": "enabled_staging", + "isDeprecated": false + }, + { + "name": "logo_uri", + "isDeprecated": false + }, + { + "name": "rpc_type", + "isDeprecated": false + }, + { + "name": "testnet", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_chains_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_chains_stream_cursor_value_input", + "inputFields": [ + { + "name": "addr_prefix", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "enabled_staging", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "rpc_type", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "testnet", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_channel_open_ack", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_channel_open_ack_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "channel_id", + "isDeprecated": false + }, + { + "name": "connection_id", + "isDeprecated": false + }, + { + "name": "counterparty_channel_id", + "isDeprecated": false + }, + { + "name": "counterparty_port_id", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "port_id", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_ack_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_channel_open_confirm", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_channel_open_confirm_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "channel_id", + "isDeprecated": false + }, + { + "name": "connection_id", + "isDeprecated": false + }, + { + "name": "counterparty_channel_id", + "isDeprecated": false + }, + { + "name": "counterparty_port_id", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "port_id", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_confirm_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_channel_open_init", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "version", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "version", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_channel_open_init_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "channel_id", + "isDeprecated": false + }, + { + "name": "connection_id", + "isDeprecated": false + }, + { + "name": "counterparty_port_id", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "port_id", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + }, + { + "name": "version", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_init_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_channel_open_try", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "version", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "version", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_channel_open_try_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "channel_id", + "isDeprecated": false + }, + { + "name": "connection_id", + "isDeprecated": false + }, + { + "name": "counterparty_channel_id", + "isDeprecated": false + }, + { + "name": "counterparty_port_id", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "port_id", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + }, + { + "name": "version", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channel_open_try_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_channels", + "fields": [ + { + "name": "connection", + "type": { + "kind": "OBJECT", + "name": "v1_connections" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channels_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_bool_exp" + } + } + } + }, + { + "name": "connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_bool_exp" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "status", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "version", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channels_order_by", + "inputFields": [ + { + "name": "connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_order_by" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "version", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_channels_select_column", + "enumValues": [ + { + "name": "destination_chain_id", + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "isDeprecated": false + }, + { + "name": "destination_port_id", + "isDeprecated": false + }, + { + "name": "source_chain_id", + "isDeprecated": false + }, + { + "name": "source_channel_id", + "isDeprecated": false + }, + { + "name": "source_connection_id", + "isDeprecated": false + }, + { + "name": "source_port_id", + "isDeprecated": false + }, + { + "name": "status", + "isDeprecated": false + }, + { + "name": "version", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channels_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_channels_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_channels_stream_cursor_value_input", + "inputFields": [ + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_clients", + "fields": [ + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_clients_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_bool_exp" + } + } + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_clients_order_by", + "inputFields": [ + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_clients_select_column", + "enumValues": [ + { + "name": "client_id", + "isDeprecated": false + }, + { + "name": "counterparty_chain_id", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_clients_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_clients_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_clients_stream_cursor_value_input", + "inputFields": [ + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_config", + "fields": [ + { + "name": "key", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_config_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_config_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_config_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_config_bool_exp" + } + } + } + }, + { + "name": "key", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "value", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_config_order_by", + "inputFields": [ + { + "name": "key", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "value", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_config_select_column", + "enumValues": [ + { + "name": "key", + "isDeprecated": false + }, + { + "name": "value", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_config_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_config_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_config_stream_cursor_value_input", + "inputFields": [ + { + "name": "key", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_connection_open_ack", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_connection_open_ack_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "client_id", + "isDeprecated": false + }, + { + "name": "connection_id", + "isDeprecated": false + }, + { + "name": "counterparty_client_id", + "isDeprecated": false + }, + { + "name": "counterparty_connection_id", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_ack_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_connection_open_confirm", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_connection_open_confirm_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "client_id", + "isDeprecated": false + }, + { + "name": "connection_id", + "isDeprecated": false + }, + { + "name": "counterparty_client_id", + "isDeprecated": false + }, + { + "name": "counterparty_connection_id", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_confirm_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_connection_open_init", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_connection_open_init_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "client_id", + "isDeprecated": false + }, + { + "name": "connection_id", + "isDeprecated": false + }, + { + "name": "counterparty_client_id", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_init_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_connection_open_try", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_connection_open_try_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "client_id", + "isDeprecated": false + }, + { + "name": "connection_id", + "isDeprecated": false + }, + { + "name": "counterparty_client_id", + "isDeprecated": false + }, + { + "name": "counterparty_connection_id", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connection_open_try_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "counterparty_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_connections", + "fields": [ + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connections_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_bool_exp" + } + } + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "status", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connections_order_by", + "inputFields": [ + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_connections_select_column", + "enumValues": [ + { + "name": "destination_chain_id", + "isDeprecated": false + }, + { + "name": "destination_client_id", + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "isDeprecated": false + }, + { + "name": "source_chain_id", + "isDeprecated": false + }, + { + "name": "source_client_id", + "isDeprecated": false + }, + { + "name": "source_connection_id", + "isDeprecated": false + }, + { + "name": "status", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connections_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_connections_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_connections_stream_cursor_value_input", + "inputFields": [ + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_contracts", + "fields": [ + { + "name": "abi", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "created_at", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "max_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "min_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "updated_at", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_bool_exp" + } + } + } + }, + { + "name": "abi", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "address", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "created_at", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "max_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "min_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "updated_at", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "version", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_order_by", + "inputFields": [ + { + "name": "abi", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "address", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "created_at", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "min_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "updated_at", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "version", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_contracts_select_column", + "enumValues": [ + { + "name": "abi", + "isDeprecated": false + }, + { + "name": "address", + "isDeprecated": false + }, + { + "name": "created_at", + "isDeprecated": false + }, + { + "name": "description", + "isDeprecated": false + }, + { + "name": "max_height", + "isDeprecated": false + }, + { + "name": "min_height", + "isDeprecated": false + }, + { + "name": "updated_at", + "isDeprecated": false + }, + { + "name": "version", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_contracts_stream_cursor_value_input", + "inputFields": [ + { + "name": "abi", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "created_at", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "max_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "min_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "updated_at", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_daily_packets", + "fields": [ + { + "name": "count", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "day", + "type": { + "kind": "SCALAR", + "name": "date" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_bool_exp" + } + } + } + }, + { + "name": "count", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "day", + "type": { + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "day", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_daily_packets_select_column", + "enumValues": [ + { + "name": "count", + "isDeprecated": false + }, + { + "name": "day", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_daily_packets_stream_cursor_value_input", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "day", + "type": { + "kind": "SCALAR", + "name": "date" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_daily_transfers", + "fields": [ + { + "name": "count", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "day", + "type": { + "kind": "SCALAR", + "name": "date" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_bool_exp" + } + } + } + }, + { + "name": "count", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "day", + "type": { + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "day", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_daily_transfers_select_column", + "enumValues": [ + { + "name": "count", + "isDeprecated": false + }, + { + "name": "day", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_daily_transfers_stream_cursor_value_input", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "day", + "type": { + "kind": "SCALAR", + "name": "date" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_explorers", + "fields": [ + { + "name": "address_url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "block_url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "home_url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "tx_url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_aggregate_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_min_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_bool_exp" + } + } + } + }, + { + "name": "address_url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "block_url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "home_url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "tx_url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_max_order_by", + "inputFields": [ + { + "name": "address_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "block_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "home_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "tx_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_min_order_by", + "inputFields": [ + { + "name": "address_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "block_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "home_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "tx_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_order_by", + "inputFields": [ + { + "name": "address_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "block_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "home_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "tx_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_explorers_select_column", + "enumValues": [ + { + "name": "address_url", + "isDeprecated": false + }, + { + "name": "block_url", + "isDeprecated": false + }, + { + "name": "description", + "isDeprecated": false + }, + { + "name": "display_name", + "isDeprecated": false + }, + { + "name": "home_url", + "isDeprecated": false + }, + { + "name": "logo_uri", + "isDeprecated": false + }, + { + "name": "tx_url", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_explorers_stream_cursor_value_input", + "inputFields": [ + { + "name": "address_url", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "block_url", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "home_url", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "tx_url", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_faucets", + "fields": [ + { + "name": "asset", + "type": { + "kind": "OBJECT", + "name": "v1_assets" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_aggregate_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_min_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_bool_exp" + } + } + } + }, + { + "name": "asset", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "denom", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "enabled", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_max_order_by", + "inputFields": [ + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_min_order_by", + "inputFields": [ + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_order_by", + "inputFields": [ + { + "name": "asset", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "enabled", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_faucets_select_column", + "enumValues": [ + { + "name": "denom", + "isDeprecated": false + }, + { + "name": "display_name", + "isDeprecated": false + }, + { + "name": "enabled", + "isDeprecated": false + }, + { + "name": "url", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_faucets_stream_cursor_value_input", + "inputFields": [ + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_health_check", + "fields": [ + { + "name": "result", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "test", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_bool_exp" + } + } + } + }, + { + "name": "result", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "test", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_order_by", + "inputFields": [ + { + "name": "result", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "test", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_health_check_select_column", + "enumValues": [ + { + "name": "result", + "isDeprecated": false + }, + { + "name": "test", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_health_check_stream_cursor_value_input", + "inputFields": [ + { + "name": "result", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "test", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_assets", + "fields": [ + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "decimals", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_symbol", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "faucets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_faucets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_faucets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "gas_token", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "origin", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "unwrapped_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "unwrapped_denom", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_aggregate_order_by", + "inputFields": [ + { + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_avg_order_by" + } + }, + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_min_order_by" + } + }, + { + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stddev_order_by" + } + }, + { + "name": "stddev_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stddev_pop_order_by" + } + }, + { + "name": "stddev_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stddev_samp_order_by" + } + }, + { + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_sum_order_by" + } + }, + { + "name": "var_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_var_pop_order_by" + } + }, + { + "name": "var_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_var_samp_order_by" + } + }, + { + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_variance_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_avg_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + } + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "decimals", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "denom", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "faucets", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_bool_exp" + } + }, + { + "name": "gas_token", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "origin", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "unwrapped_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "unwrapped_denom", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_max_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "origin", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "unwrapped_denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_min_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "origin", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "unwrapped_denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_order_by", + "inputFields": [ + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "faucets_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_aggregate_order_by" + } + }, + { + "name": "gas_token", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "origin", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "unwrapped_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "unwrapped_denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_assets_select_column", + "enumValues": [ + { + "name": "decimals", + "isDeprecated": false + }, + { + "name": "denom", + "isDeprecated": false + }, + { + "name": "display_name", + "isDeprecated": false + }, + { + "name": "display_symbol", + "isDeprecated": false + }, + { + "name": "gas_token", + "isDeprecated": false + }, + { + "name": "logo_uri", + "isDeprecated": false + }, + { + "name": "origin", + "isDeprecated": false + }, + { + "name": "unwrapped_denom", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stddev_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stddev_pop_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stddev_samp_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_stream_cursor_value_input", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_symbol", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "gas_token", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "origin", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "unwrapped_denom", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_sum_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_var_pop_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_var_samp_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_variance_order_by", + "inputFields": [ + { + "name": "decimals", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_chains", + "fields": [ + { + "name": "addr_prefix", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "assets", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_assets" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_assets_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "enabled_staging", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "explorers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_explorers" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_explorers_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "rpc_type", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "rpcs", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_rpcs" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_rpcs_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "testnet", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + } + } + }, + { + "name": "addr_prefix", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "assets", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + }, + { + "name": "chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "enabled", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "enabled_staging", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "explorers", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_bool_exp" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "rpc_type", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "rpcs", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_bool_exp" + } + }, + { + "name": "testnet", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by", + "inputFields": [ + { + "name": "addr_prefix", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "assets_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_aggregate_order_by" + } + }, + { + "name": "chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "enabled", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "enabled_staging", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "explorers_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_aggregate_order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "rpc_type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "rpcs_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_aggregate_order_by" + } + }, + { + "name": "testnet", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_chains_select_column", + "enumValues": [ + { + "name": "addr_prefix", + "isDeprecated": false + }, + { + "name": "chain_id", + "isDeprecated": false + }, + { + "name": "display_name", + "isDeprecated": false + }, + { + "name": "enabled", + "isDeprecated": false + }, + { + "name": "enabled_staging", + "isDeprecated": false + }, + { + "name": "logo_uri", + "isDeprecated": false + }, + { + "name": "rpc_type", + "isDeprecated": false + }, + { + "name": "testnet", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_stream_cursor_value_input", + "inputFields": [ + { + "name": "addr_prefix", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "enabled_staging", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "rpc_type", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "testnet", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_channels", + "fields": [ + { + "name": "connection", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_connections" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "internal_source_chain_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_bool_exp" + } + } + } + }, + { + "name": "connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_bool_exp" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "internal_source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "status", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "version", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_order_by", + "inputFields": [ + { + "name": "connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_order_by" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "internal_source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "version", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_channels_select_column", + "enumValues": [ + { + "name": "destination_chain_id", + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "isDeprecated": false + }, + { + "name": "destination_port_id", + "isDeprecated": false + }, + { + "name": "internal_source_chain_id", + "isDeprecated": false + }, + { + "name": "source_chain_id", + "isDeprecated": false + }, + { + "name": "source_channel_id", + "isDeprecated": false + }, + { + "name": "source_connection_id", + "isDeprecated": false + }, + { + "name": "source_port_id", + "isDeprecated": false + }, + { + "name": "status", + "isDeprecated": false + }, + { + "name": "version", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_channels_stream_cursor_value_input", + "inputFields": [ + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "internal_source_chain_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_clients", + "fields": [ + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_bool_exp" + } + } + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "counterparty_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_order_by", + "inputFields": [ + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_clients_select_column", + "enumValues": [ + { + "name": "client_id", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_clients_stream_cursor_value_input", + "inputFields": [ + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_config", + "fields": [ + { + "name": "key", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_bool_exp" + } + } + } + }, + { + "name": "key", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "value", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_order_by", + "inputFields": [ + { + "name": "key", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "value", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_config_select_column", + "enumValues": [ + { + "name": "key", + "isDeprecated": false + }, + { + "name": "value", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_config_stream_cursor_value_input", + "inputFields": [ + { + "name": "key", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_connections", + "fields": [ + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_client_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_client_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_bool_exp" + } + } + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "status", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_order_by", + "inputFields": [ + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_connections_select_column", + "enumValues": [ + { + "name": "destination_chain_id", + "isDeprecated": false + }, + { + "name": "destination_client_id", + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "isDeprecated": false + }, + { + "name": "source_chain_id", + "isDeprecated": false + }, + { + "name": "source_client_id", + "isDeprecated": false + }, + { + "name": "source_connection_id", + "isDeprecated": false + }, + { + "name": "status", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_connections_stream_cursor_value_input", + "inputFields": [ + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_client_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_client_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_contracts", + "fields": [ + { + "name": "abi", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "created_at", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "end_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "start_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "updated_at", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_bool_exp" + } + } + } + }, + { + "name": "abi", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "address", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "created_at", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "end_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "start_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "updated_at", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "version", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_order_by", + "inputFields": [ + { + "name": "abi", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "address", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "created_at", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "end_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "start_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "updated_at", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "version", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_contracts_select_column", + "enumValues": [ + { + "name": "abi", + "isDeprecated": false + }, + { + "name": "address", + "isDeprecated": false + }, + { + "name": "created_at", + "isDeprecated": false + }, + { + "name": "description", + "isDeprecated": false + }, + { + "name": "end_height", + "isDeprecated": false + }, + { + "name": "start_height", + "isDeprecated": false + }, + { + "name": "type", + "isDeprecated": false + }, + { + "name": "updated_at", + "isDeprecated": false + }, + { + "name": "version", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_contracts_stream_cursor_value_input", + "inputFields": [ + { + "name": "abi", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "address", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "created_at", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "end_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "start_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "updated_at", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "version", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders", + "fields": [ + { + "name": "count", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "day", + "type": { + "kind": "SCALAR", + "name": "date" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" + } + } + } + }, + { + "name": "count", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "day", + "type": { + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "day", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_daily_fungible_asset_orders_select_column", + "enumValues": [ + { + "name": "count", + "isDeprecated": false + }, + { + "name": "day", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "day", + "type": { + "kind": "SCALAR", + "name": "date" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_daily_packets", + "fields": [ + { + "name": "count", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "day", + "type": { + "kind": "SCALAR", + "name": "date" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_bool_exp" + } + } + } + }, + { + "name": "count", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "day", + "type": { + "kind": "INPUT_OBJECT", + "name": "date_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "day", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_daily_packets_select_column", + "enumValues": [ + { + "name": "count", + "isDeprecated": false + }, + { + "name": "day", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_daily_packets_stream_cursor_value_input", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "day", + "type": { + "kind": "SCALAR", + "name": "date" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_explorers", + "fields": [ + { + "name": "address_url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "block_url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "home_url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "tx_url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_aggregate_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_min_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_bool_exp" + } + } + } + }, + { + "name": "address_url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "block_url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "home_url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "tx_url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_max_order_by", + "inputFields": [ + { + "name": "address_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "block_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "home_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "tx_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_min_order_by", + "inputFields": [ + { + "name": "address_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "block_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "home_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "tx_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_order_by", + "inputFields": [ + { + "name": "address_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "block_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "home_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "tx_url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_explorers_select_column", + "enumValues": [ + { + "name": "address_url", + "isDeprecated": false + }, + { + "name": "block_url", + "isDeprecated": false + }, + { + "name": "description", + "isDeprecated": false + }, + { + "name": "display_name", + "isDeprecated": false + }, + { + "name": "home_url", + "isDeprecated": false + }, + { + "name": "logo_uri", + "isDeprecated": false + }, + { + "name": "name", + "isDeprecated": false + }, + { + "name": "tx_url", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_explorers_stream_cursor_value_input", + "inputFields": [ + { + "name": "address_url", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "block_url", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "home_url", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "logo_uri", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "tx_url", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_faucets", + "fields": [ + { + "name": "asset", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_assets" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_aggregate_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_min_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_bool_exp" + } + } + } + }, + { + "name": "asset", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "denom", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "enabled", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_max_order_by", + "inputFields": [ + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_min_order_by", + "inputFields": [ + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_order_by", + "inputFields": [ + { + "name": "asset", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "enabled", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_faucets_select_column", + "enumValues": [ + { + "name": "denom", + "isDeprecated": false + }, + { + "name": "display_name", + "isDeprecated": false + }, + { + "name": "enabled", + "isDeprecated": false + }, + { + "name": "url", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_faucets_stream_cursor_value_input", + "inputFields": [ + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_fungible_asset_orders", + "fields": [ + { + "name": "ack_fill_type", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "ack_market_maker", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "ack_tag", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "acknowledgement", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "acknowledgement_decoded", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "base_amount", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "base_token", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "base_token_details", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_assets" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "base_token_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "base_token_path", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "base_token_symbol", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "channel_version", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "data", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "data_decoded", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "instruction_path", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_packets" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_maker", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_maker", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_maker_msg", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "quote_amount", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "quote_token", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "quote_token_details", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_assets" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "receiver", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "salt", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "sender", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timeout_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timeout_timestamp", + "type": { + "kind": "SCALAR", + "name": "numeric" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "traces", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_traces" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_traces_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "write_ack_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_bool_exp" + } + } + } + }, + { + "name": "ack_fill_type", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "ack_market_maker", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "ack_tag", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "acknowledgement", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "acknowledgement_decoded", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + }, + { + "name": "base_amount", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "base_token", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "base_token_details", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + }, + { + "name": "base_token_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "base_token_path", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "base_token_symbol", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "channel_version", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "data", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "data_decoded", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "instruction_path", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_bool_exp" + } + }, + { + "name": "packet_ack_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_ack_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_ack_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "packet_ack_maker", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_ack_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "packet_ack_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_ack_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_ack_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_recv_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_recv_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_recv_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "packet_recv_maker", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_recv_maker_msg", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_recv_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "packet_recv_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_recv_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_recv_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_send_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_send_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_send_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "packet_send_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "packet_send_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_send_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_send_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "path", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "quote_amount", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "quote_token", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "quote_token_details", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_bool_exp" + } + }, + { + "name": "receiver", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "salt", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "sender", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "status", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "timeout_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "timeout_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp" + } + }, + { + "name": "traces", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + }, + { + "name": "write_ack_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "write_ack_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "write_ack_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "write_ack_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "write_ack_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "write_ack_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "write_ack_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_order_by", + "inputFields": [ + { + "name": "ack_fill_type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "ack_market_maker", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "ack_tag", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "acknowledgement", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "acknowledgement_decoded", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "base_amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "base_token", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "base_token_details", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_order_by" + } + }, + { + "name": "base_token_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "base_token_path", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "base_token_symbol", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "channel_version", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "data", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "data_decoded", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "instruction_path", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_order_by" + } + }, + { + "name": "packet_ack_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_maker", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_maker", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_maker_msg", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "path", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "quote_amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "quote_token", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "quote_token_details", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_assets_order_by" + } + }, + { + "name": "receiver", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "salt", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "sender", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timeout_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timeout_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "traces_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_aggregate_order_by" + } + }, + { + "name": "write_ack_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_fungible_asset_orders_select_column", + "enumValues": [ + { + "name": "ack_fill_type", + "isDeprecated": false + }, + { + "name": "ack_market_maker", + "isDeprecated": false + }, + { + "name": "ack_tag", + "isDeprecated": false + }, + { + "name": "acknowledgement", + "isDeprecated": false + }, + { + "name": "acknowledgement_decoded", + "isDeprecated": false + }, + { + "name": "base_amount", + "isDeprecated": false + }, + { + "name": "base_token", + "isDeprecated": false + }, + { + "name": "base_token_name", + "isDeprecated": false + }, + { + "name": "base_token_path", + "isDeprecated": false + }, + { + "name": "base_token_symbol", + "isDeprecated": false + }, + { + "name": "channel_version", + "isDeprecated": false + }, + { + "name": "data", + "isDeprecated": false + }, + { + "name": "data_decoded", + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "isDeprecated": false + }, + { + "name": "destination_port_id", + "isDeprecated": false + }, + { + "name": "instruction_path", + "isDeprecated": false + }, + { + "name": "packet_ack_block_hash", + "isDeprecated": false + }, + { + "name": "packet_ack_event_index", + "isDeprecated": false + }, + { + "name": "packet_ack_height", + "isDeprecated": false + }, + { + "name": "packet_ack_maker", + "isDeprecated": false + }, + { + "name": "packet_ack_timestamp", + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_event_index", + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_hash", + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_index", + "isDeprecated": false + }, + { + "name": "packet_recv_block_hash", + "isDeprecated": false + }, + { + "name": "packet_recv_event_index", + "isDeprecated": false + }, + { + "name": "packet_recv_height", + "isDeprecated": false + }, + { + "name": "packet_recv_maker", + "isDeprecated": false + }, + { + "name": "packet_recv_maker_msg", + "isDeprecated": false + }, + { + "name": "packet_recv_timestamp", + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_event_index", + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_hash", + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_index", + "isDeprecated": false + }, + { + "name": "packet_send_block_hash", + "isDeprecated": false + }, + { + "name": "packet_send_event_index", + "isDeprecated": false + }, + { + "name": "packet_send_height", + "isDeprecated": false + }, + { + "name": "packet_send_timestamp", + "isDeprecated": false + }, + { + "name": "packet_send_transaction_event_index", + "isDeprecated": false + }, + { + "name": "packet_send_transaction_hash", + "isDeprecated": false + }, + { + "name": "packet_send_transaction_index", + "isDeprecated": false + }, + { + "name": "path", + "isDeprecated": false + }, + { + "name": "quote_amount", + "isDeprecated": false + }, + { + "name": "quote_token", + "isDeprecated": false + }, + { + "name": "receiver", + "isDeprecated": false + }, + { + "name": "salt", + "isDeprecated": false + }, + { + "name": "sender", + "isDeprecated": false + }, + { + "name": "source_chain_id", + "isDeprecated": false + }, + { + "name": "source_channel_id", + "isDeprecated": false + }, + { + "name": "source_connection_id", + "isDeprecated": false + }, + { + "name": "source_port_id", + "isDeprecated": false + }, + { + "name": "status", + "isDeprecated": false + }, + { + "name": "timeout_height", + "isDeprecated": false + }, + { + "name": "timeout_timestamp", + "isDeprecated": false + }, + { + "name": "write_ack_block_hash", + "isDeprecated": false + }, + { + "name": "write_ack_event_index", + "isDeprecated": false + }, + { + "name": "write_ack_height", + "isDeprecated": false + }, + { + "name": "write_ack_timestamp", + "isDeprecated": false + }, + { + "name": "write_ack_transaction_event_index", + "isDeprecated": false + }, + { + "name": "write_ack_transaction_hash", + "isDeprecated": false + }, + { + "name": "write_ack_transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_value_input", + "inputFields": [ + { + "name": "ack_fill_type", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "ack_market_maker", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "ack_tag", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "acknowledgement", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "acknowledgement_decoded", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "base_amount", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "base_token", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "base_token_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "base_token_path", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "base_token_symbol", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "channel_version", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "data", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "data_decoded", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "instruction_path", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_ack_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_ack_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_ack_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "packet_ack_maker", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_ack_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "packet_ack_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_ack_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_ack_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_recv_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_recv_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_recv_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "packet_recv_maker", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_recv_maker_msg", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_recv_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "packet_recv_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_recv_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_recv_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_send_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_send_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_send_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "packet_send_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "packet_send_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_send_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_send_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "quote_amount", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "quote_token", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "receiver", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "salt", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "sender", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "timeout_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "timeout_timestamp", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "write_ack_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "write_ack_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "write_ack_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "write_ack_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "write_ack_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "write_ack_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "write_ack_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_health_check", + "fields": [ + { + "name": "result", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "test", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_bool_exp" + } + } + } + }, + { + "name": "result", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "test", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_order_by", + "inputFields": [ + { + "name": "result", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "test", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_health_check_select_column", + "enumValues": [ + { + "name": "result", + "isDeprecated": false + }, + { + "name": "test", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_health_check_stream_cursor_value_input", + "inputFields": [ + { + "name": "result", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "test", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_packets", + "fields": [ + { + "name": "acknowledgement", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "acknowledgement_decoded", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "channel_version", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "data", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "data_decoded", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "fungible_asset_order", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_fungible_asset_orders" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_maker", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_maker", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_maker_msg", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_send_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timeout_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timeout_timestamp", + "type": { + "kind": "SCALAR", + "name": "numeric" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "traces", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ibc_union_traces" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ibc_union_traces_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "write_ack_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "write_ack_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_bool_exp" + } + } + } + }, + { + "name": "acknowledgement", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "acknowledgement_decoded", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + }, + { + "name": "channel_version", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "data", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "data_decoded", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "fungible_asset_order", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_bool_exp" + } + }, + { + "name": "packet_ack_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_ack_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_ack_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "packet_ack_maker", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_ack_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "packet_ack_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_ack_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_ack_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_recv_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_recv_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_recv_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "packet_recv_maker", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_recv_maker_msg", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_recv_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "packet_recv_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_recv_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_recv_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_send_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_send_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_send_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "packet_send_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "packet_send_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "packet_send_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet_send_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "status", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "timeout_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "timeout_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp" + } + }, + { + "name": "traces", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + }, + { + "name": "write_ack_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "write_ack_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "write_ack_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "write_ack_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "write_ack_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "write_ack_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "write_ack_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_order_by", + "inputFields": [ + { + "name": "acknowledgement", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "acknowledgement_decoded", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "channel_version", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "data", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "data_decoded", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "fungible_asset_order", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_fungible_asset_orders_order_by" + } + }, + { + "name": "packet_ack_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_maker", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_ack_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_maker", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_maker_msg", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_recv_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet_send_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timeout_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timeout_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "traces_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_aggregate_order_by" + } + }, + { + "name": "write_ack_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "write_ack_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_packets_select_column", + "enumValues": [ + { + "name": "acknowledgement", + "isDeprecated": false + }, + { + "name": "acknowledgement_decoded", + "isDeprecated": false + }, + { + "name": "channel_version", + "isDeprecated": false + }, + { + "name": "data", + "isDeprecated": false + }, + { + "name": "data_decoded", + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "isDeprecated": false + }, + { + "name": "destination_port_id", + "isDeprecated": false + }, + { + "name": "packet_ack_block_hash", + "isDeprecated": false + }, + { + "name": "packet_ack_event_index", + "isDeprecated": false + }, + { + "name": "packet_ack_height", + "isDeprecated": false + }, + { + "name": "packet_ack_maker", + "isDeprecated": false + }, + { + "name": "packet_ack_timestamp", + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_event_index", + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_hash", + "isDeprecated": false + }, + { + "name": "packet_ack_transaction_index", + "isDeprecated": false + }, + { + "name": "packet_recv_block_hash", + "isDeprecated": false + }, + { + "name": "packet_recv_event_index", + "isDeprecated": false + }, + { + "name": "packet_recv_height", + "isDeprecated": false + }, + { + "name": "packet_recv_maker", + "isDeprecated": false + }, + { + "name": "packet_recv_maker_msg", + "isDeprecated": false + }, + { + "name": "packet_recv_timestamp", + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_event_index", + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_hash", + "isDeprecated": false + }, + { + "name": "packet_recv_transaction_index", + "isDeprecated": false + }, + { + "name": "packet_send_block_hash", + "isDeprecated": false + }, + { + "name": "packet_send_event_index", + "isDeprecated": false + }, + { + "name": "packet_send_height", + "isDeprecated": false + }, + { + "name": "packet_send_timestamp", + "isDeprecated": false + }, + { + "name": "packet_send_transaction_event_index", + "isDeprecated": false + }, + { + "name": "packet_send_transaction_hash", + "isDeprecated": false + }, + { + "name": "packet_send_transaction_index", + "isDeprecated": false + }, + { + "name": "source_chain_id", + "isDeprecated": false + }, + { + "name": "source_channel_id", + "isDeprecated": false + }, + { + "name": "source_connection_id", + "isDeprecated": false + }, + { + "name": "source_port_id", + "isDeprecated": false + }, + { + "name": "status", + "isDeprecated": false + }, + { + "name": "timeout_height", + "isDeprecated": false + }, + { + "name": "timeout_timestamp", + "isDeprecated": false + }, + { + "name": "write_ack_block_hash", + "isDeprecated": false + }, + { + "name": "write_ack_event_index", + "isDeprecated": false + }, + { + "name": "write_ack_height", + "isDeprecated": false + }, + { + "name": "write_ack_timestamp", + "isDeprecated": false + }, + { + "name": "write_ack_transaction_event_index", + "isDeprecated": false + }, + { + "name": "write_ack_transaction_hash", + "isDeprecated": false + }, + { + "name": "write_ack_transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_packets_stream_cursor_value_input", + "inputFields": [ + { + "name": "acknowledgement", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "acknowledgement_decoded", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "channel_version", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "data", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "data_decoded", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_ack_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_ack_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_ack_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "packet_ack_maker", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_ack_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "packet_ack_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_ack_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_ack_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_recv_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_recv_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_recv_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "packet_recv_maker", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_recv_maker_msg", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_recv_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "packet_recv_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_recv_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_recv_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_send_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_send_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_send_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "packet_send_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "packet_send_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "packet_send_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_send_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "timeout_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "timeout_timestamp", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "write_ack_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "write_ack_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "write_ack_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "write_ack_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "write_ack_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "write_ack_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "write_ack_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_rpcs", + "fields": [ + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "contact", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_aggregate_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_min_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_bool_exp" + } + } + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "contact", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "enabled", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_max_order_by", + "inputFields": [ + { + "name": "contact", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_min_order_by", + "inputFields": [ + { + "name": "contact", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_order_by", + "inputFields": [ + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "contact", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "enabled", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_rpcs_select_column", + "enumValues": [ + { + "name": "contact", + "isDeprecated": false + }, + { + "name": "description", + "isDeprecated": false + }, + { + "name": "enabled", + "isDeprecated": false + }, + { + "name": "type", + "isDeprecated": false + }, + { + "name": "url", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_rpcs_stream_cursor_value_input", + "inputFields": [ + { + "name": "contact", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_statistics", + "fields": [ + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "numeric" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_bool_exp" + } + } + } + }, + { + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "value", + "type": { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_order_by", + "inputFields": [ + { + "name": "name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "value", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_statistics_select_column", + "enumValues": [ + { + "name": "name", + "isDeprecated": false + }, + { + "name": "value", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_statistics_stream_cursor_value_input", + "inputFields": [ + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ibc_union_traces", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_ibc_union_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_aggregate_order_by", + "inputFields": [ + { + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_avg_order_by" + } + }, + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_min_order_by" + } + }, + { + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stddev_order_by" + } + }, + { + "name": "stddev_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stddev_pop_order_by" + } + }, + { + "name": "stddev_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stddev_samp_order_by" + } + }, + { + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_sum_order_by" + } + }, + { + "name": "var_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_var_pop_order_by" + } + }, + { + "name": "var_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_var_samp_order_by" + } + }, + { + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_variance_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_avg_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_bool_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_max_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_min_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_chains_order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ibc_union_traces_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "initiating_transaction_hash", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "type", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stddev_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stddev_pop_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stddev_samp_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_sum_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_var_pop_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_var_samp_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ibc_union_traces_variance_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_index_status", + "fields": [ + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "tip_age_seconds", + "type": { + "kind": "SCALAR", + "name": "numeric" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_bool_exp" + } + } + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "display_name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "status", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "tip_age_seconds", + "type": { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_order_by", + "inputFields": [ + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "display_name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "tip_age_seconds", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_index_status_select_column", + "enumValues": [ + { + "name": "chain_id", + "isDeprecated": false + }, + { + "name": "display_name", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "status", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "tip_age_seconds", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_index_status_stream_cursor_value_input", + "inputFields": [ + { + "name": "chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "display_name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "tip_age_seconds", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_lightclient_update", + "fields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "counterparty_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "execution_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "revision_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_bool_exp" + } + } + } + }, + { + "name": "block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "client_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "counterparty_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "execution_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "revision_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_order_by", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "client_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "counterparty_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "execution_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "revision_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_lightclient_update_select_column", + "enumValues": [ + { + "name": "block_hash", + "isDeprecated": false + }, + { + "name": "client_id", + "isDeprecated": false + }, + { + "name": "execution_height", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "revision_height", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_lightclient_update_stream_cursor_value_input", + "inputFields": [ + { + "name": "block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "client_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "execution_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "revision_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_packet_effect_type", + "fields": [ + { + "name": "event", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "event_index", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_aggregate_order_by", + "inputFields": [ + { + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_avg_order_by" + } + }, + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_min_order_by" + } + }, + { + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stddev_order_by" + } + }, + { + "name": "stddev_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stddev_pop_order_by" + } + }, + { + "name": "stddev_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stddev_samp_order_by" + } + }, + { + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_sum_order_by" + } + }, + { + "name": "var_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_var_pop_order_by" + } + }, + { + "name": "var_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_var_samp_order_by" + } + }, + { + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_variance_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_avg_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_bool_exp" + } + } + } + }, + { + "name": "event", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + }, + { + "name": "event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_max_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_min_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_order_by", + "inputFields": [ + { + "name": "event", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_packet_effect_type_select_column", + "enumValues": [ + { + "name": "event", + "isDeprecated": false + }, + { + "name": "event_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stddev_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stddev_pop_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stddev_samp_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_stream_cursor_value_input", + "inputFields": [ + { + "name": "event", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "event_index", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_sum_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_var_pop_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_var_samp_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_variance_order_by", + "inputFields": [ + { + "name": "event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_packets", + "fields": [ + { + "name": "destination_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_event_json", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "destination_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_packet_data", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_timeout_timestamp", + "type": { + "kind": "SCALAR", + "name": "numeric" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "effects", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_packet_effect_type" + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_packet_effect_type_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "source_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_event_json", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "source_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_packet_data", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_timeout_timestamp", + "type": { + "kind": "SCALAR", + "name": "numeric" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "traces", + "type": { + "kind": "OBJECT", + "name": "v1_traces" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transfer", + "type": { + "kind": "OBJECT", + "name": "v1_transfers" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packets_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_bool_exp" + } + } + } + }, + { + "name": "destination_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_event_json", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + }, + { + "name": "destination_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "destination_packet_data", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_sequence", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "destination_timeout_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp" + } + }, + { + "name": "destination_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "destination_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "effects", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_bool_exp" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_event_json", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + }, + { + "name": "source_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "source_packet_data", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "source_timeout_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp" + } + }, + { + "name": "source_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "traces", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp" + } + }, + { + "name": "transfer", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packets_order_by", + "inputFields": [ + { + "name": "destination_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_event_json", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_packet_data", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_timeout_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "effects_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packet_effect_type_aggregate_order_by" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_json", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_packet_data", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_timeout_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "traces", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_order_by" + } + }, + { + "name": "transfer", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_packets_select_column", + "enumValues": [ + { + "name": "destination_block_hash", + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "isDeprecated": false + }, + { + "name": "destination_event_index", + "isDeprecated": false + }, + { + "name": "destination_event_json", + "isDeprecated": false + }, + { + "name": "destination_height", + "isDeprecated": false + }, + { + "name": "destination_packet_data", + "isDeprecated": false + }, + { + "name": "destination_port_id", + "isDeprecated": false + }, + { + "name": "destination_sequence", + "isDeprecated": false + }, + { + "name": "destination_timeout_timestamp", + "isDeprecated": false + }, + { + "name": "destination_timestamp", + "isDeprecated": false + }, + { + "name": "destination_transaction_event_index", + "isDeprecated": false + }, + { + "name": "destination_transaction_hash", + "isDeprecated": false + }, + { + "name": "destination_transaction_index", + "isDeprecated": false + }, + { + "name": "source_block_hash", + "isDeprecated": false + }, + { + "name": "source_chain_id", + "isDeprecated": false + }, + { + "name": "source_channel_id", + "isDeprecated": false + }, + { + "name": "source_connection_id", + "isDeprecated": false + }, + { + "name": "source_event_index", + "isDeprecated": false + }, + { + "name": "source_event_json", + "isDeprecated": false + }, + { + "name": "source_height", + "isDeprecated": false + }, + { + "name": "source_packet_data", + "isDeprecated": false + }, + { + "name": "source_port_id", + "isDeprecated": false + }, + { + "name": "source_sequence", + "isDeprecated": false + }, + { + "name": "source_timeout_timestamp", + "isDeprecated": false + }, + { + "name": "source_timestamp", + "isDeprecated": false + }, + { + "name": "source_transaction_event_index", + "isDeprecated": false + }, + { + "name": "source_transaction_hash", + "isDeprecated": false + }, + { + "name": "source_transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packets_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_packets_stream_cursor_value_input", + "inputFields": [ + { + "name": "destination_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_event_json", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "destination_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "destination_packet_data", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "destination_timeout_timestamp", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "destination_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "destination_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_event_json", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "source_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "source_packet_data", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "source_timeout_timestamp", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "source_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_rpcs", + "fields": [ + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "contact", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_aggregate_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_min_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_bool_exp" + } + } + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "contact", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "enabled", + "type": { + "kind": "INPUT_OBJECT", + "name": "Boolean_comparison_exp" + } + }, + { + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "url", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_max_order_by", + "inputFields": [ + { + "name": "contact", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_min_order_by", + "inputFields": [ + { + "name": "contact", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_order_by", + "inputFields": [ + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "contact", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "description", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "enabled", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "url", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_rpcs_select_column", + "enumValues": [ + { + "name": "contact", + "isDeprecated": false + }, + { + "name": "description", + "isDeprecated": false + }, + { + "name": "enabled", + "isDeprecated": false + }, + { + "name": "type", + "isDeprecated": false + }, + { + "name": "url", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_rpcs_stream_cursor_value_input", + "inputFields": [ + { + "name": "contact", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean" + } + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_statistics", + "fields": [ + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "numeric" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "v1_statistics_address", + "fields": [ + { + "name": "normalized_address", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "total", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_bool_exp" + } + } + } + }, + { + "name": "normalized_address", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "total", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_order_by", + "inputFields": [ + { + "name": "normalized_address", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "total", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_statistics_address_select_column", + "enumValues": [ + { + "name": "normalized_address", + "isDeprecated": false + }, + { + "name": "total", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_address_stream_cursor_value_input", + "inputFields": [ + { + "name": "normalized_address", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "total", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_bool_exp" + } + } + } + }, + { + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "value", + "type": { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_order_by", + "inputFields": [ + { + "name": "name", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "value", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_statistics_select_column", + "enumValues": [ + { + "name": "name", + "isDeprecated": false + }, + { + "name": "value", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_statistics_stream_cursor_value_input", + "inputFields": [ + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "value", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_tokens_type", + "fields": [ + { + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "numeric" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "asset", + "type": { + "kind": "OBJECT", + "name": "v1_assets" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_aggregate_order_by", + "inputFields": [ + { + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_avg_order_by" + } + }, + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_min_order_by" + } + }, + { + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stddev_order_by" + } + }, + { + "name": "stddev_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stddev_pop_order_by" + } + }, + { + "name": "stddev_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stddev_samp_order_by" + } + }, + { + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_sum_order_by" + } + }, + { + "name": "var_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_var_pop_order_by" + } + }, + { + "name": "var_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_var_samp_order_by" + } + }, + { + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_variance_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_avg_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_bool_exp" + } + } + } + }, + { + "name": "amount", + "type": { + "kind": "INPUT_OBJECT", + "name": "numeric_comparison_exp" + } + }, + { + "name": "asset", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_bool_exp" + } + }, + { + "name": "denom", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_max_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_min_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "asset", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_assets_order_by" + } + }, + { + "name": "denom", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_tokens_type_select_column", + "enumValues": [ + { + "name": "amount", + "isDeprecated": false + }, + { + "name": "denom", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stddev_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stddev_pop_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stddev_samp_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_stream_cursor_value_input", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "numeric" + } + }, + { + "name": "denom", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_sum_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_var_pop_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_var_samp_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_variance_order_by", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_traces", + "fields": [ + { + "name": "chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "data", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "order", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "transfer", + "type": { + "kind": "OBJECT", + "name": "v1_transfers" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_aggregate_order_by", + "inputFields": [ + { + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_avg_order_by" + } + }, + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_min_order_by" + } + }, + { + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stddev_order_by" + } + }, + { + "name": "stddev_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stddev_pop_order_by" + } + }, + { + "name": "stddev_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stddev_samp_order_by" + } + }, + { + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_sum_order_by" + } + }, + { + "name": "var_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_var_pop_order_by" + } + }, + { + "name": "var_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_var_samp_order_by" + } + }, + { + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_variance_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_avg_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp" + } + } + } + }, + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "data", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + }, + { + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "order", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "transfer", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp" + } + }, + { + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_max_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_min_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_order_by", + "inputFields": [ + { + "name": "chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "data", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "transfer", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_order_by" + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_traces_select_column", + "enumValues": [ + { + "name": "data", + "isDeprecated": false + }, + { + "name": "height", + "isDeprecated": false + }, + { + "name": "initiating_transaction_hash", + "isDeprecated": false + }, + { + "name": "order", + "isDeprecated": false + }, + { + "name": "source_sequence", + "isDeprecated": false + }, + { + "name": "timestamp", + "isDeprecated": false + }, + { + "name": "transaction_hash", + "isDeprecated": false + }, + { + "name": "type", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stddev_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stddev_pop_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stddev_samp_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_stream_cursor_value_input", + "inputFields": [ + { + "name": "data", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "initiating_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "order", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_sum_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_var_pop_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_var_samp_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_traces_variance_order_by", + "inputFields": [ + { + "name": "height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "order", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_transfer_forwards_type", + "fields": [ + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "receiver", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "retries", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "timeout", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_aggregate_order_by", + "inputFields": [ + { + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_avg_order_by" + } + }, + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_min_order_by" + } + }, + { + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stddev_order_by" + } + }, + { + "name": "stddev_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stddev_pop_order_by" + } + }, + { + "name": "stddev_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stddev_samp_order_by" + } + }, + { + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_sum_order_by" + } + }, + { + "name": "var_pop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_var_pop_order_by" + } + }, + { + "name": "var_samp", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_var_samp_order_by" + } + }, + { + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_variance_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_avg_order_by", + "inputFields": [ + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_bool_exp" + } + } + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "receiver", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "retries", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "timeout", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_max_order_by", + "inputFields": [ + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "receiver", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timeout", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_min_order_by", + "inputFields": [ + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "receiver", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timeout", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_order_by", + "inputFields": [ + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "receiver", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "timeout", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_transfer_forwards_type_select_column", + "enumValues": [ + { + "name": "destination_chain_id", + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "isDeprecated": false + }, + { + "name": "destination_port_id", + "isDeprecated": false + }, + { + "name": "receiver", + "isDeprecated": false + }, + { + "name": "retries", + "isDeprecated": false + }, + { + "name": "source_block_hash", + "isDeprecated": false + }, + { + "name": "source_chain_id", + "isDeprecated": false + }, + { + "name": "source_channel_id", + "isDeprecated": false + }, + { + "name": "source_connection_id", + "isDeprecated": false + }, + { + "name": "source_event_index", + "isDeprecated": false + }, + { + "name": "source_height", + "isDeprecated": false + }, + { + "name": "source_port_id", + "isDeprecated": false + }, + { + "name": "source_transaction_event_index", + "isDeprecated": false + }, + { + "name": "source_transaction_hash", + "isDeprecated": false + }, + { + "name": "source_transaction_index", + "isDeprecated": false + }, + { + "name": "timeout", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stddev_order_by", + "inputFields": [ + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stddev_pop_order_by", + "inputFields": [ + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stddev_samp_order_by", + "inputFields": [ + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_stream_cursor_value_input", + "inputFields": [ + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "receiver", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "retries", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "timeout", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_sum_order_by", + "inputFields": [ + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_var_pop_order_by", + "inputFields": [ + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_var_samp_order_by", + "inputFields": [ + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_variance_order_by", + "inputFields": [ + { + "name": "retries", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_transfers", + "fields": [ + { + "name": "destination_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "forwards", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_transfer_forwards_type" + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_transfer_forwards_type_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "hop", + "type": { + "kind": "OBJECT", + "name": "v1_transfers" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "normalized_receiver", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "normalized_sender", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet", + "type": { + "kind": "OBJECT", + "name": "v1_packets" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "packet_data", + "type": { + "kind": "SCALAR", + "name": "jsonb" + }, + "args": [ + { + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isDeprecated": false + }, + { + "name": "pfm_destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "pfm_destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "pfm_recv_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "pfm_sent_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "pfm_source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "pfm_source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "receiver", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "sender", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "tokens", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_tokens_type" + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_tokens_type_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "traces", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_traces" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_traces_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp" + } + } + ], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp" + } + } + } + }, + { + "name": "destination_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_sequence", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "destination_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "destination_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "destination_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "forwards", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_bool_exp" + } + }, + { + "name": "hop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_bool_exp" + } + }, + { + "name": "normalized_receiver", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "normalized_sender", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "packet", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_bool_exp" + } + }, + { + "name": "packet_data", + "type": { + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp" + } + }, + { + "name": "pfm_destination_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "pfm_destination_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "pfm_recv_sequence", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "pfm_sent_sequence", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "pfm_source_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "pfm_source_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "receiver", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "sender", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_height", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp" + } + }, + { + "name": "source_timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "INPUT_OBJECT", + "name": "Int_comparison_exp" + } + }, + { + "name": "tokens", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_bool_exp" + } + }, + { + "name": "traces", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_bool_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_order_by", + "inputFields": [ + { + "name": "destination_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "forwards_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfer_forwards_type_aggregate_order_by" + } + }, + { + "name": "hop", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_order_by" + } + }, + { + "name": "normalized_receiver", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "normalized_sender", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "packet", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_packets_order_by" + } + }, + { + "name": "packet_data", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "pfm_destination_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "pfm_destination_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "pfm_recv_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "pfm_sent_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "pfm_source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "pfm_source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "receiver", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "sender", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_height", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_timestamp", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "tokens_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_tokens_type_aggregate_order_by" + } + }, + { + "name": "traces_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_traces_aggregate_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_transfers_select_column", + "enumValues": [ + { + "name": "destination_block_hash", + "isDeprecated": false + }, + { + "name": "destination_chain_id", + "isDeprecated": false + }, + { + "name": "destination_channel_id", + "isDeprecated": false + }, + { + "name": "destination_connection_id", + "isDeprecated": false + }, + { + "name": "destination_event_index", + "isDeprecated": false + }, + { + "name": "destination_height", + "isDeprecated": false + }, + { + "name": "destination_port_id", + "isDeprecated": false + }, + { + "name": "destination_sequence", + "isDeprecated": false + }, + { + "name": "destination_timestamp", + "isDeprecated": false + }, + { + "name": "destination_transaction_event_index", + "isDeprecated": false + }, + { + "name": "destination_transaction_hash", + "isDeprecated": false + }, + { + "name": "destination_transaction_index", + "isDeprecated": false + }, + { + "name": "normalized_receiver", + "isDeprecated": false + }, + { + "name": "normalized_sender", + "isDeprecated": false + }, + { + "name": "packet_data", + "isDeprecated": false + }, + { + "name": "pfm_destination_channel_id", + "isDeprecated": false + }, + { + "name": "pfm_destination_port_id", + "isDeprecated": false + }, + { + "name": "pfm_recv_sequence", + "isDeprecated": false + }, + { + "name": "pfm_sent_sequence", + "isDeprecated": false + }, + { + "name": "pfm_source_channel_id", + "isDeprecated": false + }, + { + "name": "pfm_source_port_id", + "isDeprecated": false + }, + { + "name": "receiver", + "isDeprecated": false + }, + { + "name": "sender", + "isDeprecated": false + }, + { + "name": "source_block_hash", + "isDeprecated": false + }, + { + "name": "source_chain_id", + "isDeprecated": false + }, + { + "name": "source_channel_id", + "isDeprecated": false + }, + { + "name": "source_connection_id", + "isDeprecated": false + }, + { + "name": "source_event_index", + "isDeprecated": false + }, + { + "name": "source_height", + "isDeprecated": false + }, + { + "name": "source_port_id", + "isDeprecated": false + }, + { + "name": "source_sequence", + "isDeprecated": false + }, + { + "name": "source_timestamp", + "isDeprecated": false + }, + { + "name": "source_transaction_event_index", + "isDeprecated": false + }, + { + "name": "source_transaction_hash", + "isDeprecated": false + }, + { + "name": "source_transaction_index", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_transfers_stream_cursor_value_input", + "inputFields": [ + { + "name": "destination_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "destination_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "destination_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "destination_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "destination_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "normalized_receiver", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "normalized_sender", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "packet_data", + "type": { + "kind": "SCALAR", + "name": "jsonb" + } + }, + { + "name": "pfm_destination_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "pfm_destination_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "pfm_recv_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "pfm_sent_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "pfm_source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "pfm_source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "receiver", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "sender", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_block_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_chain_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_height", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "source_port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_sequence", + "type": { + "kind": "SCALAR", + "name": "bigint" + } + }, + { + "name": "source_timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz" + } + }, + { + "name": "source_transaction_event_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "source_transaction_hash", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "source_transaction_index", + "type": { + "kind": "SCALAR", + "name": "Int" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ucs1_configurations", + "fields": [ + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "contract_address", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "forwards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "v1_ucs1_configurations" + } + } + } + }, + "args": [ + { + "name": "distinct_on", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "v1_ucs1_configurations_select_column" + } + } + } + }, + { + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int" + } + }, + { + "name": "order_by", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_order_by" + } + } + } + }, + { + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + } + ], + "isDeprecated": false + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_aggregate_order_by", + "inputFields": [ + { + "name": "count", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_max_order_by" + } + }, + { + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_min_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + } + } + }, + { + "name": "channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "connection_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "contract_address", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "forwards", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_bool_exp" + } + }, + { + "name": "port_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_max_order_by", + "inputFields": [ + { + "name": "channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "contract_address", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_min_order_by", + "inputFields": [ + { + "name": "channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "contract_address", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_order_by", + "inputFields": [ + { + "name": "channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "connection_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "contract_address", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "forwards_aggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_aggregate_order_by" + } + }, + { + "name": "port_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ucs1_configurations_select_column", + "enumValues": [ + { + "name": "channel_id", + "isDeprecated": false + }, + { + "name": "connection_id", + "isDeprecated": false + }, + { + "name": "contract_address", + "isDeprecated": false + }, + { + "name": "port_id", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_configurations_stream_cursor_value_input", + "inputFields": [ + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "connection_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "contract_address", + "type": { + "kind": "SCALAR", + "name": "String" + } + }, + { + "name": "port_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + }, + { + "kind": "OBJECT", + "name": "v1_ucs1_paths", + "fields": [ + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "destination_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + }, + { + "name": "source_chain", + "type": { + "kind": "OBJECT", + "name": "v1_chains" + }, + "args": [], + "isDeprecated": false + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_bool_exp", + "inputFields": [ + { + "name": "_and", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_bool_exp" + } + } + } + }, + { + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_bool_exp" + } + }, + { + "name": "_or", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_bool_exp" + } + } + } + }, + { + "name": "channel_id", + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_bool_exp" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_order_by", + "inputFields": [ + { + "name": "channel_id", + "type": { + "kind": "ENUM", + "name": "order_by" + } + }, + { + "name": "destination_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + }, + { + "name": "source_chain", + "type": { + "kind": "INPUT_OBJECT", + "name": "v1_chains_order_by" + } + } + ], + "isOneOf": false + }, + { + "kind": "ENUM", + "name": "v1_ucs1_paths_select_column", + "enumValues": [ + { + "name": "channel_id", + "isDeprecated": false + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_stream_cursor_input", + "inputFields": [ + { + "name": "initial_value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_stream_cursor_value_input" + } + } + }, + { + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "cursor_ordering" + } + } + ], + "isOneOf": false + }, + { + "kind": "INPUT_OBJECT", + "name": "v1_ucs1_paths_stream_cursor_value_input", + "inputFields": [ + { + "name": "channel_id", + "type": { + "kind": "SCALAR", + "name": "String" + } + } + ], + "isOneOf": false + } + ], + "directives": [] + } }; import * as gqlTada from 'gql.tada'; diff --git a/app/src/generated/schema.graphql b/app/src/generated/schema.graphql index e5f731e685..f0cdb42271 100644 --- a/app/src/generated/schema.graphql +++ b/app/src/generated/schema.graphql @@ -6126,6 +6126,7 @@ type v1_ibc_union_channels { """An object relationship""" destination_chain: v1_ibc_union_chains destination_chain_id: String + destination_channel_id: Int destination_connection_id: Int destination_port_id: String internal_source_chain_id: Int @@ -6150,6 +6151,7 @@ input v1_ibc_union_channels_bool_exp { connection: v1_ibc_union_connections_bool_exp destination_chain: v1_ibc_union_chains_bool_exp destination_chain_id: String_comparison_exp + destination_channel_id: Int_comparison_exp destination_connection_id: Int_comparison_exp destination_port_id: String_comparison_exp internal_source_chain_id: Int_comparison_exp @@ -6167,6 +6169,7 @@ input v1_ibc_union_channels_order_by { connection: v1_ibc_union_connections_order_by destination_chain: v1_ibc_union_chains_order_by destination_chain_id: order_by + destination_channel_id: order_by destination_connection_id: order_by destination_port_id: order_by internal_source_chain_id: order_by @@ -6186,6 +6189,9 @@ enum v1_ibc_union_channels_select_column { """column name""" destination_chain_id + """column name""" + destination_channel_id + """column name""" destination_connection_id @@ -6228,6 +6234,7 @@ input v1_ibc_union_channels_stream_cursor_input { """Initial value of the column from where the streaming should start""" input v1_ibc_union_channels_stream_cursor_value_input { destination_chain_id: String + destination_channel_id: Int destination_connection_id: Int destination_port_id: String internal_source_chain_id: Int @@ -6915,6 +6922,9 @@ type v1_ibc_union_fungible_asset_orders { ): jsonb base_amount: String base_token: String + + """An object relationship""" + base_token_details: v1_ibc_union_assets base_token_name: String base_token_path: String base_token_symbol: String @@ -6962,6 +6972,9 @@ type v1_ibc_union_fungible_asset_orders { path: String quote_amount: String quote_token: String + + """An object relationship""" + quote_token_details: v1_ibc_union_assets receiver: String salt: String sender: String @@ -7016,6 +7029,7 @@ input v1_ibc_union_fungible_asset_orders_bool_exp { acknowledgement_decoded: jsonb_comparison_exp base_amount: String_comparison_exp base_token: String_comparison_exp + base_token_details: v1_ibc_union_assets_bool_exp base_token_name: String_comparison_exp base_token_path: String_comparison_exp base_token_symbol: String_comparison_exp @@ -7056,6 +7070,7 @@ input v1_ibc_union_fungible_asset_orders_bool_exp { path: String_comparison_exp quote_amount: String_comparison_exp quote_token: String_comparison_exp + quote_token_details: v1_ibc_union_assets_bool_exp receiver: String_comparison_exp salt: String_comparison_exp sender: String_comparison_exp @@ -7088,6 +7103,7 @@ input v1_ibc_union_fungible_asset_orders_order_by { acknowledgement_decoded: order_by base_amount: order_by base_token: order_by + base_token_details: v1_ibc_union_assets_order_by base_token_name: order_by base_token_path: order_by base_token_symbol: order_by @@ -7128,6 +7144,7 @@ input v1_ibc_union_fungible_asset_orders_order_by { path: order_by quote_amount: order_by quote_token: order_by + quote_token_details: v1_ibc_union_assets_order_by receiver: order_by salt: order_by sender: order_by @@ -8043,9 +8060,12 @@ input v1_ibc_union_statistics_stream_cursor_value_input { columns and relationships of "v1_ibc_union.traces" """ type v1_ibc_union_traces { + block_hash: String + + """An object relationship""" + chain: v1_ibc_union_chains height: bigint initiating_transaction_hash: String - order: Int timestamp: timestamptz transaction_hash: String type: String @@ -8073,7 +8093,6 @@ order by avg() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_avg_order_by { height: order_by - order: order_by } """ @@ -8083,9 +8102,10 @@ input v1_ibc_union_traces_bool_exp { _and: [v1_ibc_union_traces_bool_exp!] _not: v1_ibc_union_traces_bool_exp _or: [v1_ibc_union_traces_bool_exp!] + block_hash: String_comparison_exp + chain: v1_ibc_union_chains_bool_exp height: bigint_comparison_exp initiating_transaction_hash: String_comparison_exp - order: Int_comparison_exp timestamp: timestamptz_comparison_exp transaction_hash: String_comparison_exp type: String_comparison_exp @@ -8095,9 +8115,9 @@ input v1_ibc_union_traces_bool_exp { order by max() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_max_order_by { + block_hash: order_by height: order_by initiating_transaction_hash: order_by - order: order_by timestamp: order_by transaction_hash: order_by type: order_by @@ -8107,9 +8127,9 @@ input v1_ibc_union_traces_max_order_by { order by min() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_min_order_by { + block_hash: order_by height: order_by initiating_transaction_hash: order_by - order: order_by timestamp: order_by transaction_hash: order_by type: order_by @@ -8117,9 +8137,10 @@ input v1_ibc_union_traces_min_order_by { """Ordering options when selecting data from "v1_ibc_union.traces".""" input v1_ibc_union_traces_order_by { + block_hash: order_by + chain: v1_ibc_union_chains_order_by height: order_by initiating_transaction_hash: order_by - order: order_by timestamp: order_by transaction_hash: order_by type: order_by @@ -8130,13 +8151,13 @@ select columns of table "v1_ibc_union.traces" """ enum v1_ibc_union_traces_select_column { """column name""" - height + block_hash """column name""" - initiating_transaction_hash + height """column name""" - order + initiating_transaction_hash """column name""" timestamp @@ -8153,7 +8174,6 @@ order by stddev() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_stddev_order_by { height: order_by - order: order_by } """ @@ -8161,7 +8181,6 @@ order by stddev_pop() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_stddev_pop_order_by { height: order_by - order: order_by } """ @@ -8169,7 +8188,6 @@ order by stddev_samp() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_stddev_samp_order_by { height: order_by - order: order_by } """ @@ -8185,9 +8203,9 @@ input v1_ibc_union_traces_stream_cursor_input { """Initial value of the column from where the streaming should start""" input v1_ibc_union_traces_stream_cursor_value_input { + block_hash: String height: bigint initiating_transaction_hash: String - order: Int timestamp: timestamptz transaction_hash: String type: String @@ -8198,7 +8216,6 @@ order by sum() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_sum_order_by { height: order_by - order: order_by } """ @@ -8206,7 +8223,6 @@ order by var_pop() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_var_pop_order_by { height: order_by - order: order_by } """ @@ -8214,7 +8230,6 @@ order by var_samp() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_var_samp_order_by { height: order_by - order: order_by } """ @@ -8222,7 +8237,6 @@ order by variance() on columns of table "v1_ibc_union.traces" """ input v1_ibc_union_traces_variance_order_by { height: order_by - order: order_by } """ diff --git a/app/src/lib/components/table-cells/cell-copy.svelte b/app/src/lib/components/table-cells/cell-copy.svelte index d741f9685c..8173b67ecd 100644 --- a/app/src/lib/components/table-cells/cell-copy.svelte +++ b/app/src/lib/components/table-cells/cell-copy.svelte @@ -7,6 +7,7 @@ import { truncate } from "$lib/utilities/format.ts" import { copyTextAction } from "$lib/actions/copy.ts" export let value: string +export let label: string | null = null export let trunc = 0 let copyClicked = false @@ -18,6 +19,7 @@ export { buttonClass as class }
+ {#if label}{label}{/if} {#if trunc} {truncate(value, trunc)} {:else} diff --git a/app/src/lib/components/table-cells/cell-origin-connection.svelte b/app/src/lib/components/table-cells/cell-origin-connection.svelte index e3d73ce788..04a621b326 100644 --- a/app/src/lib/components/table-cells/cell-origin-connection.svelte +++ b/app/src/lib/components/table-cells/cell-origin-connection.svelte @@ -12,7 +12,7 @@ export let value: {
- - - + + +
diff --git a/app/src/lib/graphql/queries/channels.ts b/app/src/lib/graphql/queries/channels.ts index 35cc0347d0..3bb58e8b2d 100644 --- a/app/src/lib/graphql/queries/channels.ts +++ b/app/src/lib/graphql/queries/channels.ts @@ -2,7 +2,7 @@ import { graphql } from "gql.tada" export const channelsQuery = graphql(/* GraphQL */ `query ChannelsQuery($limit: Int = 500) @cached(ttl: 30) { - v1_channels( + v1_ibc_union_channels( where: {source_chain: {enabled: {_eq: true}}, destination_chain: {enabled: {_eq: true}}}, order_by: [ {status: asc}, diff --git a/app/src/lib/graphql/queries/connections.ts b/app/src/lib/graphql/queries/connections.ts index 95c533be8b..7e140bc8ae 100644 --- a/app/src/lib/graphql/queries/connections.ts +++ b/app/src/lib/graphql/queries/connections.ts @@ -13,7 +13,7 @@ query ConnectionsQuery($limit: Int = 100) @cached(ttl: 30) { {destination_connection_id: asc} ], limit: $limit, - where: { status: {_eq: "CONFIRM"}, source_chain: {enabled: {_eq: true}}, destination_chain: {enabled: {_eq: true}}}) { + where: { status: {_eq: "CONFIRM"}, }) { source_chain_id destination_chain_id source_client_id diff --git a/app/src/lib/graphql/queries/index-status.ts b/app/src/lib/graphql/queries/index-status.ts index 1e06f9fe93..62f4a69406 100644 --- a/app/src/lib/graphql/queries/index-status.ts +++ b/app/src/lib/graphql/queries/index-status.ts @@ -2,10 +2,10 @@ import { graphql } from "gql.tada" export const indexStatusQuery = graphql(/* GraphQL */ ` query IndexStatusQuery { - chains: v1_chains(where: {enabled:{_eq:true}}) { + chains: v1_ibc_union_chains(where: {enabled:{_eq:true}}) { chain_id } - statuses: v1_index_status(order_by: {status: desc}) { + statuses: v1_ibc_union_index_status(order_by: {status: desc}) { chain_id display_name height diff --git a/app/src/lib/graphql/queries/packet-details.ts b/app/src/lib/graphql/queries/packet-details.ts index b783a6e3c0..96e2fd8df0 100644 --- a/app/src/lib/graphql/queries/packet-details.ts +++ b/app/src/lib/graphql/queries/packet-details.ts @@ -3,14 +3,15 @@ import { packetDetailsFragment } from "$lib/graphql/fragments/packets.ts" export const packetDetailsQueryDocument = graphql( /* GraphQL */ ` - query PacketDetailsQuery($chain_id: String!, $connection_id: String!, $channel_id: String! $sequence: bigint) + query PacketDetailsQuery($chain_id: String!, $connection_id: Int!, $channel_id: Int!) @cached(ttl: 1) { - v1_packets( + v1_ibc_union_packets( where: { _and: [ {source_chain_id: { _eq: $chain_id }} {source_connection_id: { _eq: $connection_id }} {source_channel_id: { _eq: $channel_id }} - {source_sequence: { _eq: $sequence }} + # TODO: add packet hash + # {source_sequence: { _eq: $sequence }} ] } ) { ...PacketDetails diff --git a/app/src/lib/queries/packets.ts b/app/src/lib/queries/packets.ts index e65f28f530..0843445b99 100644 --- a/app/src/lib/queries/packets.ts +++ b/app/src/lib/queries/packets.ts @@ -50,10 +50,10 @@ const packetTransform = (p: FragmentOf) => { type PacketsReturnType = Promise>> export async function packetsLatest({ limit = 12 }: { limit?: number } = {}): PacketsReturnType { - const { v1_packets } = await request(URLS().GRAPHQL, packetsLatestQuery, { + const { v1_ibc_union_packets } = await request(URLS().GRAPHQL, packetsLatestQuery, { limit }) - return v1_packets.map(packetTransform) + return v1_ibc_union_packets.map(packetTransform) } export async function packetsTimestamp({ @@ -72,11 +72,11 @@ export async function packetsByChainIdLatest({ limit, chain_id }: { limit: number; chain_id: string }): PacketsReturnType { - const { v1_packets } = await request(URLS().GRAPHQL, packetsByChainLatestQuery, { + const { v1_ibc_union_packets } = await request(URLS().GRAPHQL, packetsByChainLatestQuery, { limit, chain_id }) - return v1_packets.map(packetTransform) + return v1_ibc_union_packets.map(packetTransform) } export async function packetsByChainIdTimestamp({ @@ -96,13 +96,13 @@ export async function packetsByConnectionIdLatest({ limit, chain_id, connection_id -}: { limit: number; chain_id: string; connection_id: string }): PacketsReturnType { - const { v1_packets } = await request(URLS().GRAPHQL, packetsByConnectionIdLatestQuery, { +}: { limit: number; chain_id: string; connection_id: number }): PacketsReturnType { + const { v1_ibc_union_packets } = await request(URLS().GRAPHQL, packetsByConnectionIdLatestQuery, { limit, chain_id, connection_id }) - return v1_packets.map(packetTransform) + return v1_ibc_union_packets.map(packetTransform) } export async function packetsByConnectionIdTimestamp({ @@ -113,7 +113,7 @@ export async function packetsByConnectionIdTimestamp({ }: { limit: number chain_id: string - connection_id: string + connection_id: number timestamp: string }): PacketsReturnType { const { newer, older } = await request(URLS().GRAPHQL, packetsByConnectionIdTimestampQuery, { @@ -133,16 +133,16 @@ export async function packetsByChannelIdLatest({ }: { limit: number chain_id: string - connection_id: string + connection_id: number channel_id: string }): PacketsReturnType { - const { v1_packets } = await request(URLS().GRAPHQL, packetsByChannelIdLatestQuery, { + const { v1_ibc_union_packets } = await request(URLS().GRAPHQL, packetsByChannelIdLatestQuery, { limit, chain_id, connection_id, channel_id }) - return v1_packets.map(packetTransform) + return v1_ibc_union_packets.map(packetTransform) } export async function packetsByChannelIdTimestamp({ @@ -154,7 +154,7 @@ export async function packetsByChannelIdTimestamp({ }: { limit: number chain_id: string - connection_id: string + connection_id: number channel_id: string timestamp: string }): PacketsReturnType { @@ -218,7 +218,7 @@ export const packetsByChainIdQuery = ( export const packetsByConnectionIdQuery = ( limit: number, chain_id: string, - connection_id: string, + connection_id: number, timestamp: Readable ) => createQuery( @@ -251,7 +251,7 @@ export const packetsByConnectionIdQuery = ( export const packetsByChannelIdQuery = ( limit: number, chain_id: string, - connection_id: string, + connection_id: number, channel_id: string, timestamp: Readable ) => @@ -285,7 +285,7 @@ export const packetsByChannelIdQuery = ( export const packetDetailsQuery = ( chain_id: string, - connection_id: string, + connection_id: number, channel_id: string, sequence: number ) => From 250107d51c814be4081ca88951829f22f0f8756f Mon Sep 17 00:00:00 2001 From: cor Date: Wed, 15 Jan 2025 18:07:57 +0000 Subject: [PATCH 6/7] fix(app): channel fetching --- app/src/generated/graphql-env.d.ts | 37561 +--------------- .../table-cells/cell-origin-channel.svelte | 8 +- app/src/lib/graphql/queries/channels.ts | 2 +- .../(components)/table-channels.svelte | 2 +- 4 files changed, 452 insertions(+), 37121 deletions(-) diff --git a/app/src/generated/graphql-env.d.ts b/app/src/generated/graphql-env.d.ts index 419ace4a29..c28da148a1 100644 --- a/app/src/generated/graphql-env.d.ts +++ b/app/src/generated/graphql-env.d.ts @@ -1,6 +1,447 @@ /* eslint-disable */ /* prettier-ignore */ +export type introspection_types = { + 'Boolean': unknown; + 'Boolean_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }]; }; + 'Int': unknown; + 'Int_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }]; }; + 'PfmArgs': { kind: 'OBJECT'; name: 'PfmArgs'; fields: { 'channel': { name: 'channel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'memo': { name: 'memo'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; }; }; + 'PfmArgs_bool_exp_bool_exp': { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PfmArgs_bool_exp_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'channel'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'memo'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'PfmArgs_enum_name': { name: 'PfmArgs_enum_name'; enumValues: 'channel' | 'memo'; }; + 'PfmArgs_order_by': { kind: 'INPUT_OBJECT'; name: 'PfmArgs_order_by'; isOneOf: false; inputFields: [{ name: 'channel'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'memo'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'Request': { kind: 'OBJECT'; name: 'Request'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'txHash': { name: 'txHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'String': unknown; + 'String_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_ilike'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_iregex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_like'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nilike'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_niregex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nlike'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nregex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_nsimilar'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_regex'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_similar'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'bigint': unknown; + 'bigint_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; }; }; defaultValue: null }]; }; + 'cursor_ordering': { name: 'cursor_ordering'; enumValues: 'ASC' | 'DESC'; }; + 'date': unknown; + 'date_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'date'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'date'; ofType: null; }; }; }; defaultValue: null }]; }; + 'dydx_faucetMutation': { kind: 'OBJECT'; name: 'dydx_faucetMutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'dydx_faucetQuery': { kind: 'OBJECT'; name: 'dydx_faucetQuery'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; + 'faucet2Mutation': { kind: 'OBJECT'; name: 'faucet2Mutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'faucet2Query': { kind: 'OBJECT'; name: 'faucet2Query'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; + 'get_route_arguments': { kind: 'INPUT_OBJECT'; name: 'get_route_arguments'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'forward_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; + 'jsonb': unknown; + 'jsonb_cast_exp': { kind: 'INPUT_OBJECT'; name: 'jsonb_cast_exp'; isOneOf: false; inputFields: [{ name: 'String'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'jsonb_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; isOneOf: false; inputFields: [{ name: '_cast'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_cast_exp'; ofType: null; }; defaultValue: null }, { name: '_contained_in'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_contains'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_eq'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_has_key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_has_keys_all'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_has_keys_any'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; }; }; defaultValue: null }]; }; + 'mutation_root': { kind: 'OBJECT'; name: 'mutation_root'; fields: { 'dydx_faucet': { name: 'dydx_faucet'; type: { kind: 'OBJECT'; name: 'dydx_faucetMutation'; ofType: null; } }; 'faucet2': { name: 'faucet2'; type: { kind: 'OBJECT'; name: 'faucet2Mutation'; ofType: null; } }; 'stride_faucet': { name: 'stride_faucet'; type: { kind: 'OBJECT'; name: 'stride_faucetMutation'; ofType: null; } }; }; }; + 'numeric': unknown; + 'numeric_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; }; }; defaultValue: null }]; }; + 'order_by': { name: 'order_by'; enumValues: 'asc' | 'asc_nulls_first' | 'asc_nulls_last' | 'desc' | 'desc_nulls_first' | 'desc_nulls_last'; }; + 'query_root': { kind: 'OBJECT'; name: 'query_root'; fields: { 'dydx_faucet': { name: 'dydx_faucet'; type: { kind: 'OBJECT'; name: 'dydx_faucetQuery'; ofType: null; } }; 'faucet2': { name: 'faucet2'; type: { kind: 'OBJECT'; name: 'faucet2Query'; ofType: null; } }; 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'stride_faucet': { name: 'stride_faucet'; type: { kind: 'OBJECT'; name: 'stride_faucetQuery'; ofType: null; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; + 'stride_faucetMutation': { kind: 'OBJECT'; name: 'stride_faucetMutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'stride_faucetQuery': { kind: 'OBJECT'; name: 'stride_faucetQuery'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; + 'subscription_root': { kind: 'OBJECT'; name: 'subscription_root'; fields: { 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet_stream': { name: 'v1_acknowledge_packet_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_assets_stream': { name: 'v1_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_chains_stream': { name: 'v1_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_ack_stream': { name: 'v1_channel_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm_stream': { name: 'v1_channel_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_init_stream': { name: 'v1_channel_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channel_open_try_stream': { name: 'v1_channel_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_channels_stream': { name: 'v1_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_clients_stream': { name: 'v1_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_config_stream': { name: 'v1_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_ack_stream': { name: 'v1_connection_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm_stream': { name: 'v1_connection_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_init_stream': { name: 'v1_connection_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connection_open_try_stream': { name: 'v1_connection_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_connections_stream': { name: 'v1_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_contracts_stream': { name: 'v1_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_packets_stream': { name: 'v1_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_daily_transfers_stream': { name: 'v1_daily_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_explorers_stream': { name: 'v1_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_faucets_stream': { name: 'v1_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_health_check_stream': { name: 'v1_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets_stream': { name: 'v1_ibc_union_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains_stream': { name: 'v1_ibc_union_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels_stream': { name: 'v1_ibc_union_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients_stream': { name: 'v1_ibc_union_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_config_stream': { name: 'v1_ibc_union_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections_stream': { name: 'v1_ibc_union_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts_stream': { name: 'v1_ibc_union_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders_stream': { name: 'v1_ibc_union_daily_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets_stream': { name: 'v1_ibc_union_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers_stream': { name: 'v1_ibc_union_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets_stream': { name: 'v1_ibc_union_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders_stream': { name: 'v1_ibc_union_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check_stream': { name: 'v1_ibc_union_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets_stream': { name: 'v1_ibc_union_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs_stream': { name: 'v1_ibc_union_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics_stream': { name: 'v1_ibc_union_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces_stream': { name: 'v1_ibc_union_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_index_status_stream': { name: 'v1_index_status_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_lightclient_update_stream': { name: 'v1_lightclient_update_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packet_effect_type_stream': { name: 'v1_packet_effect_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_packets_stream': { name: 'v1_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_rpcs_stream': { name: 'v1_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_address_stream': { name: 'v1_statistics_address_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_stream': { name: 'v1_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_tokens_type_stream': { name: 'v1_tokens_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_traces_stream': { name: 'v1_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type_stream': { name: 'v1_transfer_forwards_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_transfers_stream': { name: 'v1_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations_stream': { name: 'v1_ucs1_configurations_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; 'v1_ucs1_paths_stream': { name: 'v1_ucs1_paths_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; + 'timestamptz': unknown; + 'timestamptz_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; }; }; defaultValue: null }]; }; + 'v1_acknowledge_packet': { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'event_index': { name: 'event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'sequence': { name: 'sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_event_index': { name: 'transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_acknowledge_packet_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_acknowledge_packet_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_acknowledge_packet_select_column': { name: 'v1_acknowledge_packet_select_column'; enumValues: 'block_hash' | 'event_index' | 'height' | 'sequence' | 'source_channel_id' | 'source_port_id' | 'timestamp' | 'transaction_event_index' | 'transaction_hash' | 'transaction_index'; }; + 'v1_acknowledge_packet_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_acknowledge_packet_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_acknowledge_packet_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets': { kind: 'OBJECT'; name: 'v1_assets'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_symbol': { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'faucets': { name: 'faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'gas_token': { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_assets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_avg_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'faucets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_max_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_min_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'faucets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_select_column': { name: 'v1_assets_select_column'; enumValues: 'decimals' | 'denom' | 'display_name' | 'display_symbol' | 'gas_token' | 'logo_uri'; }; + 'v1_assets_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_assets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_assets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_sum_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_assets_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_assets_variance_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_chains': { kind: 'OBJECT'; name: 'v1_chains'; fields: { 'addr_prefix': { name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'enabled_staging': { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'explorers': { name: 'explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpc_type': { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpcs': { name: 'rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'testnet': { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'ucs1_configurations': { name: 'ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; }; }; + 'v1_chains_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'addr_prefix'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'assets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'explorers'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpcs'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'ucs1_configurations'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_chains_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'assets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'explorers_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpcs_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'ucs1_configurations_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_aggregate_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_chains_select_column': { name: 'v1_chains_select_column'; enumValues: 'addr_prefix' | 'chain_id' | 'display_name' | 'enabled' | 'enabled_staging' | 'logo_uri' | 'rpc_type' | 'testnet'; }; + 'v1_chains_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_chains_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_chains_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_chains_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_chains_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_ack': { kind: 'OBJECT'; name: 'v1_channel_open_ack'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_channel_id': { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_channel_open_ack_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_ack_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_ack_select_column': { name: 'v1_channel_open_ack_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_channel_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_channel_open_ack_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_ack_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_ack_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_confirm': { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_channel_id': { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_channel_open_confirm_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_confirm_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_confirm_select_column': { name: 'v1_channel_open_confirm_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_channel_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_channel_open_confirm_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_confirm_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_confirm_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_init': { kind: 'OBJECT'; name: 'v1_channel_open_init'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_channel_open_init_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_init_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_init_select_column': { name: 'v1_channel_open_init_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index' | 'version'; }; + 'v1_channel_open_init_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_init_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_init_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_try': { kind: 'OBJECT'; name: 'v1_channel_open_try'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_channel_id': { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_port_id': { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_channel_open_try_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_try_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_try_select_column': { name: 'v1_channel_open_try_select_column'; enumValues: 'block_hash' | 'channel_id' | 'connection_id' | 'counterparty_channel_id' | 'counterparty_port_id' | 'height' | 'port_id' | 'timestamp' | 'transaction_hash' | 'transaction_index' | 'version'; }; + 'v1_channel_open_try_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channel_open_try_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channel_open_try_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_channels': { kind: 'OBJECT'; name: 'v1_channels'; fields: { 'connection': { name: 'connection'; type: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_channels_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_channels_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_channels_order_by'; isOneOf: false; inputFields: [{ name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connections_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_channels_select_column': { name: 'v1_channels_select_column'; enumValues: 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'version'; }; + 'v1_channels_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_channels_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_channels_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_channels_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_channels_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_clients': { kind: 'OBJECT'; name: 'v1_clients'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_chain_id': { name: 'counterparty_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_clients_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_clients_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_clients_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_clients_select_column': { name: 'v1_clients_select_column'; enumValues: 'client_id' | 'counterparty_chain_id'; }; + 'v1_clients_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_clients_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_clients_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_clients_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_clients_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_config': { kind: 'OBJECT'; name: 'v1_config'; fields: { 'key': { name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_config_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'key'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_config_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_config_order_by'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_config_select_column': { name: 'v1_config_select_column'; enumValues: 'key' | 'value'; }; + 'v1_config_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_config_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_config_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_config_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_config_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_ack': { kind: 'OBJECT'; name: 'v1_connection_open_ack'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_connection_id': { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_connection_open_ack_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_ack_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_ack_select_column': { name: 'v1_connection_open_ack_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'counterparty_connection_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_connection_open_ack_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_ack_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_ack_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_confirm': { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_connection_id': { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_connection_open_confirm_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_confirm_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_confirm_select_column': { name: 'v1_connection_open_confirm_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'counterparty_connection_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_connection_open_confirm_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_confirm_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_confirm_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_init': { kind: 'OBJECT'; name: 'v1_connection_open_init'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_connection_open_init_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_init_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_init_select_column': { name: 'v1_connection_open_init_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_connection_open_init_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_init_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_init_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_try': { kind: 'OBJECT'; name: 'v1_connection_open_try'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_client_id': { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_connection_id': { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_connection_open_try_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_try_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_try_select_column': { name: 'v1_connection_open_try_select_column'; enumValues: 'block_hash' | 'client_id' | 'connection_id' | 'counterparty_client_id' | 'counterparty_connection_id' | 'height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_connection_open_try_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connection_open_try_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connection_open_try_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'counterparty_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_connections': { kind: 'OBJECT'; name: 'v1_connections'; fields: { 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_client_id': { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_client_id': { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_connections_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_connections_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_connections_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_connections_select_column': { name: 'v1_connections_select_column'; enumValues: 'destination_chain_id' | 'destination_client_id' | 'destination_connection_id' | 'source_chain_id' | 'source_client_id' | 'source_connection_id' | 'status'; }; + 'v1_connections_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_connections_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_connections_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_connections_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_connections_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_contracts': { kind: 'OBJECT'; name: 'v1_contracts'; fields: { 'abi': { name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'address': { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'created_at': { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'max_height': { name: 'max_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'min_height': { name: 'min_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'updated_at': { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_contracts_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'abi'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'max_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'min_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_contracts_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_order_by'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'min_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_contracts_select_column': { name: 'v1_contracts_select_column'; enumValues: 'abi' | 'address' | 'created_at' | 'description' | 'max_height' | 'min_height' | 'updated_at' | 'version'; }; + 'v1_contracts_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_contracts_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_contracts_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_contracts_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'max_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'min_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_packets': { kind: 'OBJECT'; name: 'v1_daily_packets'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; + 'v1_daily_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_packets_select_column': { name: 'v1_daily_packets_select_column'; enumValues: 'count' | 'day'; }; + 'v1_daily_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_transfers': { kind: 'OBJECT'; name: 'v1_daily_transfers'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; + 'v1_daily_transfers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_transfers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_transfers_select_column': { name: 'v1_daily_transfers_select_column'; enumValues: 'count' | 'day'; }; + 'v1_daily_transfers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_daily_transfers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_daily_transfers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers': { kind: 'OBJECT'; name: 'v1_explorers'; fields: { 'address_url': { name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'block_url': { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'home_url': { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'tx_url': { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_explorers_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_max_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_min_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_select_column': { name: 'v1_explorers_select_column'; enumValues: 'address_url' | 'block_url' | 'description' | 'display_name' | 'home_url' | 'logo_uri' | 'tx_url'; }; + 'v1_explorers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_explorers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_explorers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_explorers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets': { kind: 'OBJECT'; name: 'v1_faucets'; fields: { 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_faucets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_max_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_min_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_order_by'; isOneOf: false; inputFields: [{ name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_select_column': { name: 'v1_faucets_select_column'; enumValues: 'denom' | 'display_name' | 'enabled' | 'url'; }; + 'v1_faucets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_faucets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_faucets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_faucets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_health_check': { kind: 'OBJECT'; name: 'v1_health_check'; fields: { 'result': { name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'test': { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_health_check_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'result'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_health_check_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_order_by'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_health_check_select_column': { name: 'v1_health_check_select_column'; enumValues: 'result' | 'test'; }; + 'v1_health_check_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_health_check_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_health_check_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_health_check_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets': { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_symbol': { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'faucets': { name: 'faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'gas_token': { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'unwrapped_chain': { name: 'unwrapped_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'unwrapped_denom': { name: 'unwrapped_denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_assets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_avg_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'faucets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_max_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_min_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'faucets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_select_column': { name: 'v1_ibc_union_assets_select_column'; enumValues: 'decimals' | 'denom' | 'display_name' | 'display_symbol' | 'gas_token' | 'logo_uri' | 'origin' | 'unwrapped_denom'; }; + 'v1_ibc_union_assets_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gas_token'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unwrapped_denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_sum_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_assets_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_variance_order_by'; isOneOf: false; inputFields: [{ name: 'decimals'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_chains': { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; fields: { 'addr_prefix': { name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'enabled_staging': { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'explorers': { name: 'explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpc_type': { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rpcs': { name: 'rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'testnet': { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; }; + 'v1_ibc_union_chains_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'addr_prefix'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'assets'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'explorers'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'rpcs'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_chains_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'assets_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'explorers_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'rpcs_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_chains_select_column': { name: 'v1_ibc_union_chains_select_column'; enumValues: 'addr_prefix' | 'chain_id' | 'display_name' | 'enabled' | 'enabled_staging' | 'logo_uri' | 'rpc_type' | 'testnet'; }; + 'v1_ibc_union_chains_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_chains_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'addr_prefix'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'enabled_staging'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rpc_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'testnet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_channels': { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; fields: { 'connection': { name: 'connection'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'internal_source_chain_id': { name: 'internal_source_chain_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_channels_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'internal_source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_channels_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_order_by'; isOneOf: false; inputFields: [{ name: 'connection'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'internal_source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_channels_select_column': { name: 'v1_ibc_union_channels_select_column'; enumValues: 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'internal_source_chain_id' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'version'; }; + 'v1_ibc_union_channels_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_channels_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_channels_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'internal_source_chain_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_clients': { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'counterparty_chain': { name: 'counterparty_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; }; }; + 'v1_ibc_union_clients_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_clients_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_clients_select_column': { name: 'v1_ibc_union_clients_select_column'; enumValues: 'client_id'; }; + 'v1_ibc_union_clients_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_clients_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_clients_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'client_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_config': { kind: 'OBJECT'; name: 'v1_ibc_union_config'; fields: { 'key': { name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_config_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'key'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_config_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_order_by'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_config_select_column': { name: 'v1_ibc_union_config_select_column'; enumValues: 'key' | 'value'; }; + 'v1_ibc_union_config_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_config_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_config_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_connections': { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; fields: { 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_client_id': { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_client_id': { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_connections_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_connections_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_connections_select_column': { name: 'v1_ibc_union_connections_select_column'; enumValues: 'destination_chain_id' | 'destination_client_id' | 'destination_connection_id' | 'source_chain_id' | 'source_client_id' | 'source_connection_id' | 'status'; }; + 'v1_ibc_union_connections_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_connections_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_connections_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_client_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_contracts': { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; fields: { 'abi': { name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'address': { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'created_at': { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'end_height': { name: 'end_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'start_height': { name: 'start_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updated_at': { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_contracts_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'abi'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'end_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'start_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_contracts_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_order_by'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'end_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'start_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_contracts_select_column': { name: 'v1_ibc_union_contracts_select_column'; enumValues: 'abi' | 'address' | 'created_at' | 'description' | 'end_height' | 'start_height' | 'type' | 'updated_at' | 'version'; }; + 'v1_ibc_union_contracts_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_contracts_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_contracts_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'abi'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'created_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'end_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'start_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'updated_at'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_fungible_asset_orders': { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; + 'v1_ibc_union_daily_fungible_asset_orders_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_fungible_asset_orders_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_fungible_asset_orders_select_column': { name: 'v1_ibc_union_daily_fungible_asset_orders_select_column'; enumValues: 'count' | 'day'; }; + 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_packets': { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; fields: { 'count': { name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'day': { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; } }; }; }; + 'v1_ibc_union_daily_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'count'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'INPUT_OBJECT'; name: 'date_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_packets_select_column': { name: 'v1_ibc_union_daily_packets_select_column'; enumValues: 'count' | 'day'; }; + 'v1_ibc_union_daily_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_daily_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_daily_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'day'; type: { kind: 'SCALAR'; name: 'date'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers': { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; fields: { 'address_url': { name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'block_url': { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'home_url': { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'logo_uri': { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'tx_url': { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_explorers_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_max_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_min_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_order_by'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_select_column': { name: 'v1_ibc_union_explorers_select_column'; enumValues: 'address_url' | 'block_url' | 'description' | 'display_name' | 'home_url' | 'logo_uri' | 'name' | 'tx_url'; }; + 'v1_ibc_union_explorers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_explorers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_explorers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'address_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'block_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'home_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logo_uri'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tx_url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets': { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; fields: { 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_faucets_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_max_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_min_order_by'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_order_by'; isOneOf: false; inputFields: [{ name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_select_column': { name: 'v1_ibc_union_faucets_select_column'; enumValues: 'denom' | 'display_name' | 'enabled' | 'url'; }; + 'v1_ibc_union_faucets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_faucets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_faucets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_fungible_asset_orders': { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; fields: { 'ack_fill_type': { name: 'ack_fill_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ack_market_maker': { name: 'ack_market_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ack_tag': { name: 'ack_tag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement': { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement_decoded': { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'base_amount': { name: 'base_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token': { name: 'base_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token_details': { name: 'base_token_details'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; } }; 'base_token_name': { name: 'base_token_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token_path': { name: 'base_token_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'base_token_symbol': { name: 'base_token_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'channel_version': { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data_decoded': { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'instruction_path': { name: 'instruction_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet': { name: 'packet'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; } }; 'packet_ack_block_hash': { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_event_index': { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_height': { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_ack_maker': { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_timestamp': { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_ack_transaction_event_index': { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_transaction_hash': { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_transaction_index': { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_block_hash': { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_event_index': { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_height': { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_recv_maker': { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_maker_msg': { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_timestamp': { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_recv_transaction_event_index': { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_transaction_hash': { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_transaction_index': { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_block_hash': { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_event_index': { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_height': { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_send_timestamp': { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_send_transaction_event_index': { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_transaction_hash': { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_transaction_index': { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'path': { name: 'path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote_amount': { name: 'quote_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote_token': { name: 'quote_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'quote_token_details': { name: 'quote_token_details'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; } }; 'receiver': { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'salt': { name: 'salt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timeout_height': { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timeout_timestamp': { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'write_ack_block_hash': { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_event_index': { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_height': { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'write_ack_timestamp': { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'write_ack_transaction_event_index': { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_transaction_hash': { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_transaction_index': { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_ibc_union_fungible_asset_orders_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'ack_fill_type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'ack_market_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'ack_tag'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_amount'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_path'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'base_token_symbol'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'instruction_path'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'path'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'quote_amount'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'quote_token'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'quote_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'salt'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_fungible_asset_orders_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_order_by'; isOneOf: false; inputFields: [{ name: 'ack_fill_type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'ack_market_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'ack_tag'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_path'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'base_token_symbol'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'instruction_path'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'path'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'quote_amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'quote_token'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'quote_token_details'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'salt'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_fungible_asset_orders_select_column': { name: 'v1_ibc_union_fungible_asset_orders_select_column'; enumValues: 'ack_fill_type' | 'ack_market_maker' | 'ack_tag' | 'acknowledgement' | 'acknowledgement_decoded' | 'base_amount' | 'base_token' | 'base_token_name' | 'base_token_path' | 'base_token_symbol' | 'channel_version' | 'data' | 'data_decoded' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'instruction_path' | 'packet_ack_block_hash' | 'packet_ack_event_index' | 'packet_ack_height' | 'packet_ack_maker' | 'packet_ack_timestamp' | 'packet_ack_transaction_event_index' | 'packet_ack_transaction_hash' | 'packet_ack_transaction_index' | 'packet_recv_block_hash' | 'packet_recv_event_index' | 'packet_recv_height' | 'packet_recv_maker' | 'packet_recv_maker_msg' | 'packet_recv_timestamp' | 'packet_recv_transaction_event_index' | 'packet_recv_transaction_hash' | 'packet_recv_transaction_index' | 'packet_send_block_hash' | 'packet_send_event_index' | 'packet_send_height' | 'packet_send_timestamp' | 'packet_send_transaction_event_index' | 'packet_send_transaction_hash' | 'packet_send_transaction_index' | 'path' | 'quote_amount' | 'quote_token' | 'receiver' | 'salt' | 'sender' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'timeout_height' | 'timeout_timestamp' | 'write_ack_block_hash' | 'write_ack_event_index' | 'write_ack_height' | 'write_ack_timestamp' | 'write_ack_transaction_event_index' | 'write_ack_transaction_hash' | 'write_ack_transaction_index'; }; + 'v1_ibc_union_fungible_asset_orders_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_fungible_asset_orders_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'ack_fill_type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ack_market_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ack_tag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'base_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'base_token_symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'instruction_path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'path'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_amount'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quote_token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'salt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_health_check': { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; fields: { 'result': { name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'test': { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_health_check_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'result'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_health_check_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_order_by'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_health_check_select_column': { name: 'v1_ibc_union_health_check_select_column'; enumValues: 'result' | 'test'; }; + 'v1_ibc_union_health_check_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_health_check_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_packets': { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; fields: { 'acknowledgement': { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement_decoded': { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'channel_version': { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data_decoded': { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'fungible_asset_order': { name: 'fungible_asset_order'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; } }; 'packet_ack_block_hash': { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_event_index': { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_height': { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_ack_maker': { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_timestamp': { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_ack_transaction_event_index': { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_transaction_hash': { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_transaction_index': { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_block_hash': { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_event_index': { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_height': { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_recv_maker': { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_maker_msg': { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_timestamp': { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_recv_transaction_event_index': { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_transaction_hash': { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_transaction_index': { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_block_hash': { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_event_index': { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_height': { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_send_timestamp': { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_send_transaction_event_index': { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_transaction_hash': { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_transaction_index': { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timeout_height': { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timeout_timestamp': { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'write_ack_block_hash': { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_event_index': { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_height': { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'write_ack_timestamp': { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'write_ack_transaction_event_index': { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_transaction_hash': { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_transaction_index': { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_ibc_union_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'fungible_asset_order'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_order_by'; isOneOf: false; inputFields: [{ name: 'acknowledgement'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'fungible_asset_order'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_packets_select_column': { name: 'v1_ibc_union_packets_select_column'; enumValues: 'acknowledgement' | 'acknowledgement_decoded' | 'channel_version' | 'data' | 'data_decoded' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'packet_ack_block_hash' | 'packet_ack_event_index' | 'packet_ack_height' | 'packet_ack_maker' | 'packet_ack_timestamp' | 'packet_ack_transaction_event_index' | 'packet_ack_transaction_hash' | 'packet_ack_transaction_index' | 'packet_recv_block_hash' | 'packet_recv_event_index' | 'packet_recv_height' | 'packet_recv_maker' | 'packet_recv_maker_msg' | 'packet_recv_timestamp' | 'packet_recv_transaction_event_index' | 'packet_recv_transaction_hash' | 'packet_recv_transaction_index' | 'packet_send_block_hash' | 'packet_send_event_index' | 'packet_send_height' | 'packet_send_timestamp' | 'packet_send_transaction_event_index' | 'packet_send_transaction_hash' | 'packet_send_transaction_index' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_port_id' | 'status' | 'timeout_height' | 'timeout_timestamp' | 'write_ack_block_hash' | 'write_ack_event_index' | 'write_ack_height' | 'write_ack_timestamp' | 'write_ack_transaction_event_index' | 'write_ack_transaction_hash' | 'write_ack_transaction_index'; }; + 'v1_ibc_union_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs': { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'contact': { name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_rpcs_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_max_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_min_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_select_column': { name: 'v1_ibc_union_rpcs_select_column'; enumValues: 'contact' | 'description' | 'enabled' | 'type' | 'url'; }; + 'v1_ibc_union_rpcs_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_rpcs_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_rpcs_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_statistics': { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; fields: { 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; + 'v1_ibc_union_statistics_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_statistics_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_order_by'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_statistics_select_column': { name: 'v1_ibc_union_statistics_select_column'; enumValues: 'name' | 'value'; }; + 'v1_ibc_union_statistics_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_statistics_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_statistics_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces': { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'initiating_transaction_hash': { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_ibc_union_traces_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_avg_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_max_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_min_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_select_column': { name: 'v1_ibc_union_traces_select_column'; enumValues: 'block_hash' | 'height' | 'initiating_transaction_hash' | 'timestamp' | 'transaction_hash' | 'type'; }; + 'v1_ibc_union_traces_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_sum_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_traces_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_variance_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_index_status': { kind: 'OBJECT'; name: 'v1_index_status'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'tip_age_seconds': { name: 'tip_age_seconds'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; + 'v1_index_status_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_index_status_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_index_status_select_column': { name: 'v1_index_status_select_column'; enumValues: 'chain_id' | 'display_name' | 'height' | 'status' | 'timestamp' | 'tip_age_seconds'; }; + 'v1_index_status_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_index_status_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_index_status_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_index_status_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; + 'v1_lightclient_update': { kind: 'OBJECT'; name: 'v1_lightclient_update'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'client_id': { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'counterparty_chain': { name: 'counterparty_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'execution_height': { name: 'execution_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'revision_height': { name: 'revision_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + 'v1_lightclient_update_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'execution_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'revision_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_lightclient_update_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_order_by'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'counterparty_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'execution_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'revision_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_lightclient_update_select_column': { name: 'v1_lightclient_update_select_column'; enumValues: 'block_hash' | 'client_id' | 'execution_height' | 'height' | 'revision_height' | 'timestamp' | 'transaction_hash' | 'transaction_index'; }; + 'v1_lightclient_update_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_lightclient_update_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_lightclient_update_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'client_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'execution_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'revision_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type': { kind: 'OBJECT'; name: 'v1_packet_effect_type'; fields: { 'event': { name: 'event'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'event_index': { name: 'event_index'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; }; }; + 'v1_packet_effect_type_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_avg_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'event'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_max_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_min_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_order_by'; isOneOf: false; inputFields: [{ name: 'event'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_select_column': { name: 'v1_packet_effect_type_select_column'; enumValues: 'event' | 'event_index'; }; + 'v1_packet_effect_type_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'event'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'event_index'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_sum_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packet_effect_type_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_variance_order_by'; isOneOf: false; inputFields: [{ name: 'event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packets': { kind: 'OBJECT'; name: 'v1_packets'; fields: { 'destination_block_hash': { name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_event_index': { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_event_json': { name: 'destination_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_height': { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_packet_data': { name: 'destination_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_sequence': { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_timeout_timestamp': { name: 'destination_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'destination_timestamp': { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'destination_transaction_event_index': { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_transaction_hash': { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_transaction_index': { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'effects': { name: 'effects'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; } }; 'source_block_hash': { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_event_index': { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_event_json': { name: 'source_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'source_height': { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_packet_data': { name: 'source_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_sequence': { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_timeout_timestamp': { name: 'source_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'source_timestamp': { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'source_transaction_event_index': { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_transaction_hash': { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_index': { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; } }; 'transfer': { name: 'transfer'; type: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; } }; }; }; + 'v1_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_event_json'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_packet_data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'effects'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_json'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_packet_data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_packets_order_by'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_event_json'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_packet_data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'effects_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packet_effect_type_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_json'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_packet_data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_order_by'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_packets_select_column': { name: 'v1_packets_select_column'; enumValues: 'destination_block_hash' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_event_index' | 'destination_event_json' | 'destination_height' | 'destination_packet_data' | 'destination_port_id' | 'destination_sequence' | 'destination_timeout_timestamp' | 'destination_timestamp' | 'destination_transaction_event_index' | 'destination_transaction_hash' | 'destination_transaction_index' | 'source_block_hash' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_event_index' | 'source_event_json' | 'source_height' | 'source_packet_data' | 'source_port_id' | 'source_sequence' | 'source_timeout_timestamp' | 'source_timestamp' | 'source_transaction_event_index' | 'source_transaction_hash' | 'source_transaction_index'; }; + 'v1_packets_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_packets_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_packets_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_packets_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_packets_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_event_json'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_packet_data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs': { kind: 'OBJECT'; name: 'v1_rpcs'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'contact': { name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_rpcs_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'INPUT_OBJECT'; name: 'Boolean_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_max_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_min_order_by'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'contact'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_select_column': { name: 'v1_rpcs_select_column'; enumValues: 'contact' | 'description' | 'enabled' | 'type' | 'url'; }; + 'v1_rpcs_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_rpcs_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_rpcs_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'contact'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics': { kind: 'OBJECT'; name: 'v1_statistics'; fields: { 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; + 'v1_statistics_address': { kind: 'OBJECT'; name: 'v1_statistics_address'; fields: { 'normalized_address': { name: 'normalized_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'total': { name: 'total'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; }; }; + 'v1_statistics_address_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'normalized_address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'total'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_address_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_order_by'; isOneOf: false; inputFields: [{ name: 'normalized_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'total'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_address_select_column': { name: 'v1_statistics_address_select_column'; enumValues: 'normalized_address' | 'total'; }; + 'v1_statistics_address_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_address_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_address_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'normalized_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'total'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_order_by'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_select_column': { name: 'v1_statistics_select_column'; enumValues: 'name' | 'value'; }; + 'v1_statistics_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_statistics_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_statistics_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_statistics_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type': { kind: 'OBJECT'; name: 'v1_tokens_type'; fields: { 'amount': { name: 'amount'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; } }; 'denom': { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_tokens_type_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_avg_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_max_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_min_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'asset'; type: { kind: 'INPUT_OBJECT'; name: 'v1_assets_order_by'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_select_column': { name: 'v1_tokens_type_select_column'; enumValues: 'amount' | 'denom'; }; + 'v1_tokens_type_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: 'denom'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_sum_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_tokens_type_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_variance_order_by'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces': { kind: 'OBJECT'; name: 'v1_traces'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'initiating_transaction_hash': { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'order': { name: 'order'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_sequence': { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transfer': { name: 'transfer'; type: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_traces_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_avg_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_max_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_min_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'transfer'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_select_column': { name: 'v1_traces_select_column'; enumValues: 'data' | 'height' | 'initiating_transaction_hash' | 'order' | 'source_sequence' | 'timestamp' | 'transaction_hash' | 'type'; }; + 'v1_traces_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_traces_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_traces_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'initiating_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_sum_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_traces_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_traces_variance_order_by'; isOneOf: false; inputFields: [{ name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'order'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type': { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; fields: { 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiver': { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'retries': { name: 'retries'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_block_hash': { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_event_index': { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_height': { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_event_index': { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_transaction_hash': { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_index': { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'timeout': { name: 'timeout'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'v1_transfer_forwards_type_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'avg'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_avg_order_by'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_min_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'stddev_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'sum'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_sum_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_pop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_pop_order_by'; ofType: null; }; defaultValue: null }, { name: 'var_samp'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_samp_order_by'; ofType: null; }; defaultValue: null }, { name: 'variance'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_variance_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_avg_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_avg_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_max_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_min_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_order_by'; isOneOf: false; inputFields: [{ name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_select_column': { name: 'v1_transfer_forwards_type_select_column'; enumValues: 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_port_id' | 'receiver' | 'retries' | 'source_block_hash' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_event_index' | 'source_height' | 'source_port_id' | 'source_transaction_event_index' | 'source_transaction_hash' | 'source_transaction_index' | 'timeout'; }; + 'v1_transfer_forwards_type_stddev_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_stddev_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_pop_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_stddev_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stddev_samp_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'retries'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timeout'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_sum_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_sum_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_var_pop_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_pop_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_var_samp_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_var_samp_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfer_forwards_type_variance_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_variance_order_by'; isOneOf: false; inputFields: [{ name: 'retries'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfers': { kind: 'OBJECT'; name: 'v1_transfers'; fields: { 'destination_block_hash': { name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_event_index': { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_height': { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_sequence': { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'destination_timestamp': { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'destination_transaction_event_index': { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_transaction_hash': { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_transaction_index': { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'forwards': { name: 'forwards'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; } }; 'hop': { name: 'hop'; type: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; } }; 'normalized_receiver': { name: 'normalized_receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'normalized_sender': { name: 'normalized_sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet': { name: 'packet'; type: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; } }; 'packet_data': { name: 'packet_data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'pfm_destination_channel_id': { name: 'pfm_destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pfm_destination_port_id': { name: 'pfm_destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pfm_recv_sequence': { name: 'pfm_recv_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'pfm_sent_sequence': { name: 'pfm_sent_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'pfm_source_channel_id': { name: 'pfm_source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'pfm_source_port_id': { name: 'pfm_source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiver': { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_block_hash': { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_event_index': { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_height': { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_sequence': { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_timestamp': { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'source_transaction_event_index': { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_transaction_hash': { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_transaction_index': { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'tokens': { name: 'tokens'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; }; }; + 'v1_transfers_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'destination_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'forwards'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'hop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'normalized_receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'normalized_sender'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_data'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_recv_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_sent_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tokens'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfers_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'forwards_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfer_forwards_type_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'hop'; type: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_order_by'; ofType: null; }; defaultValue: null }, { name: 'normalized_receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'normalized_sender'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet'; type: { kind: 'INPUT_OBJECT'; name: 'v1_packets_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_recv_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_sent_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tokens_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_tokens_type_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfers_select_column': { name: 'v1_transfers_select_column'; enumValues: 'destination_block_hash' | 'destination_chain_id' | 'destination_channel_id' | 'destination_connection_id' | 'destination_event_index' | 'destination_height' | 'destination_port_id' | 'destination_sequence' | 'destination_timestamp' | 'destination_transaction_event_index' | 'destination_transaction_hash' | 'destination_transaction_index' | 'normalized_receiver' | 'normalized_sender' | 'packet_data' | 'pfm_destination_channel_id' | 'pfm_destination_port_id' | 'pfm_recv_sequence' | 'pfm_sent_sequence' | 'pfm_source_channel_id' | 'pfm_source_port_id' | 'receiver' | 'sender' | 'source_block_hash' | 'source_chain_id' | 'source_channel_id' | 'source_connection_id' | 'source_event_index' | 'source_height' | 'source_port_id' | 'source_sequence' | 'source_timestamp' | 'source_transaction_event_index' | 'source_transaction_hash' | 'source_transaction_index'; }; + 'v1_transfers_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_transfers_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_transfers_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_transfers_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'destination_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'destination_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'destination_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'normalized_receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'normalized_sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'packet_data'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pfm_destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pfm_recv_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'pfm_sent_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pfm_source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'source_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations': { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; fields: { 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'connection_id': { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'contract_address': { name: 'contract_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'forwards': { name: 'forwards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'port_id': { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; }; }; + 'v1_ucs1_configurations_aggregate_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_aggregate_order_by'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_max_order_by'; ofType: null; }; defaultValue: null }, { name: 'min'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_min_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'forwards'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_max_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_max_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_min_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_min_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'forwards_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_select_column': { name: 'v1_ucs1_configurations_select_column'; enumValues: 'channel_id' | 'connection_id' | 'contract_address' | 'port_id'; }; + 'v1_ucs1_configurations_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_configurations_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_configurations_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'connection_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contract_address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_paths': { kind: 'OBJECT'; name: 'v1_ucs1_paths'; fields: { 'channel_id': { name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; }; }; + 'v1_ucs1_paths_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_bool_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_paths_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_order_by'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_chains_order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_paths_select_column': { name: 'v1_ucs1_paths_select_column'; enumValues: 'channel_id'; }; + 'v1_ucs1_paths_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ucs1_paths_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ucs1_paths_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; +}; + /** An IntrospectionQuery representation of your schema. * * @remarks @@ -10,37121 +451,11 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - "__schema": { - "queryType": { - "name": "query_root" - }, - "mutationType": { - "name": "mutation_root" - }, - "subscriptionType": { - "name": "subscription_root" - }, - "types": [ - { - "kind": "SCALAR", - "name": "Boolean" - }, - { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Boolean" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Boolean" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "SCALAR", - "name": "Int" - }, - { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "PfmArgs", - "fields": [ - { - "name": "channel", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [], - "isDeprecated": false - }, - { - "name": "memo", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - } - } - }, - { - "name": "channel", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "memo", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "PfmArgs_enum_name", - "enumValues": [ - { - "name": "channel", - "isDeprecated": false - }, - { - "name": "memo", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_order_by", - "inputFields": [ - { - "name": "channel", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "memo", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "Request", - "fields": [ - { - "name": "address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [], - "isDeprecated": false - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - }, - "args": [], - "isDeprecated": false - }, - { - "name": "time", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [], - "isDeprecated": false - }, - { - "name": "txHash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "SCALAR", - "name": "String" - }, - { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_ilike", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - }, - { - "name": "_iregex", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_like", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nilike", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - }, - { - "name": "_niregex", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nlike", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nregex", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_nsimilar", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_regex", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_similar", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "SCALAR", - "name": "bigint" - }, - { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "bigint" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "bigint" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "cursor_ordering", - "enumValues": [ - { - "name": "ASC", - "isDeprecated": false - }, - { - "name": "DESC", - "isDeprecated": false - } - ] - }, - { - "kind": "SCALAR", - "name": "date" - }, - { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "date" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "date" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "date" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "dydx_faucetMutation", - "fields": [ - { - "name": "send", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [ - { - "name": "captchaToken", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "toAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "dydx_faucetQuery", - "fields": [ - { - "name": "handledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "transfersForAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "unhandledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "faucet2Mutation", - "fields": [ - { - "name": "send", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [ - { - "name": "captchaToken", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "toAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "faucet2Query", - "fields": [ - { - "name": "handledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "transfersForAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "unhandledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "get_route_arguments", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "forward_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "receiver", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ], - "isOneOf": false - }, - { - "kind": "SCALAR", - "name": "jsonb" - }, - { - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", - "inputFields": [ - { - "name": "String", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "inputFields": [ - { - "name": "_cast", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp" - } - }, - { - "name": "_contained_in", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_contains", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_has_key", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "_has_keys_all", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - }, - { - "name": "_has_keys_any", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "jsonb" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "jsonb" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "mutation_root", - "fields": [ - { - "name": "dydx_faucet", - "type": { - "kind": "OBJECT", - "name": "dydx_faucetMutation" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "faucet2", - "type": { - "kind": "OBJECT", - "name": "faucet2Mutation" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "stride_faucet", - "type": { - "kind": "OBJECT", - "name": "stride_faucetMutation" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "SCALAR", - "name": "numeric" - }, - { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "numeric" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "numeric" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "order_by", - "enumValues": [ - { - "name": "asc", - "isDeprecated": false - }, - { - "name": "asc_nulls_first", - "isDeprecated": false - }, - { - "name": "asc_nulls_last", - "isDeprecated": false - }, - { - "name": "desc", - "isDeprecated": false - }, - { - "name": "desc_nulls_first", - "isDeprecated": false - }, - { - "name": "desc_nulls_last", - "isDeprecated": false - } - ] - }, - { - "kind": "OBJECT", - "name": "query_root", - "fields": [ - { - "name": "dydx_faucet", - "type": { - "kind": "OBJECT", - "name": "dydx_faucetQuery" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "faucet2", - "type": { - "kind": "OBJECT", - "name": "faucet2Query" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "get_route", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "PfmArgs" - } - } - } - }, - "args": [ - { - "name": "args", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "get_route_arguments" - } - } - }, - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "PfmArgs_enum_name" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "stride_faucet", - "type": { - "kind": "OBJECT", - "name": "stride_faucetQuery" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "v1_acknowledge_packet", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_acknowledge_packet" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_acknowledge_packet_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_chains", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_chains" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_chains_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_ack", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_ack" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_ack_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_confirm", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_confirm" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_confirm_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_init", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_init" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_init_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_try", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_try" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_try_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channels", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channels" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channels_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_clients", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_clients" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_clients_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_config", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_config" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_config_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_ack", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_ack" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_ack_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_confirm", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_confirm" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_confirm_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_init", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_init" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_init_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_try", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_try" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_try_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connections", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connections" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connections_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_contracts", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_contracts" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_contracts_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_daily_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_transfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_transfers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_daily_transfers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_health_check", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_health_check" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_health_check_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_chains", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_chains_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_channels", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_channels" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_channels_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_clients", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_clients" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_clients_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_config", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_config" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_config_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_connections", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_connections" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_connections_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_contracts", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_contracts" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_contracts_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_fungible_asset_orders", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_daily_fungible_asset_orders_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_daily_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_fungible_asset_orders", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_fungible_asset_orders_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_health_check", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_health_check" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_health_check_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_statistics", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_statistics" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_statistics_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_index_status", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_index_status" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_index_status_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_lightclient_update", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_lightclient_update" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_lightclient_update_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packet_effect_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packet_effect_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packet_effect_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_statistics_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics_address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics_address" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_statistics_address_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_tokens_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_tokens_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_tokens_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfer_forwards_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfer_forwards_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_configurations", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_paths", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_paths" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_paths_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "stride_faucetMutation", - "fields": [ - { - "name": "send", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "args": [ - { - "name": "captchaToken", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "toAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "stride_faucetQuery", - "fields": [ - { - "name": "handledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "transfersForAddress", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "unhandledTransfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "Request" - } - } - } - }, - "args": [ - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offsetTime", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "subscription_root", - "fields": [ - { - "name": "get_route", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "PfmArgs" - } - } - } - }, - "args": [ - { - "name": "args", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "get_route_arguments" - } - } - }, - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "PfmArgs_enum_name" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "PfmArgs_bool_exp_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_acknowledge_packet", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_acknowledge_packet" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_acknowledge_packet_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_acknowledge_packet_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_acknowledge_packet" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_assets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_assets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_chains", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_chains" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_chains_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_chains_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_chains" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_ack", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_ack" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_ack_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_ack_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_ack" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_confirm", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_confirm" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_confirm_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_confirm_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_confirm" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_init", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_init" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_init_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_init_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_init" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_try", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_try" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channel_open_try_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channel_open_try_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channel_open_try" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channels", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channels" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_channels_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_channels_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_channels" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_clients", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_clients" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_clients_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_clients_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_clients" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_config", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_config" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_config_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_config_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_config" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_ack", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_ack" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_ack_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_ack_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_ack" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_confirm", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_confirm" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_confirm_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_confirm_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_confirm" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_init", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_init" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_init_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_init_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_init" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_try", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_try" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connection_open_try_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connection_open_try_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connection_open_try" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connections", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connections" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_connections_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_connections_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_connections" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_contracts", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_contracts" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_contracts_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_contracts_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_contracts" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_daily_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_packets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_packets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_transfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_transfers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_daily_transfers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_daily_transfers_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_daily_transfers" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_explorers_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_explorers" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_faucets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_faucets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_health_check", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_health_check" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_health_check_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_health_check_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_health_check" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_assets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_chains", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_chains_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_chains_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_channels", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_channels" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_channels_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_channels_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_channels" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_clients", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_clients" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_clients_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_clients_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_clients" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_config", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_config" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_config_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_config_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_config" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_connections", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_connections" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_connections_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_connections_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_connections" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_contracts", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_contracts" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_contracts_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_contracts_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_contracts" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_fungible_asset_orders", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_daily_fungible_asset_orders_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_fungible_asset_orders_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_daily_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_daily_packets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_packets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_explorers_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_faucets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_fungible_asset_orders", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_fungible_asset_orders_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_fungible_asset_orders_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_health_check", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_health_check" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_health_check_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_health_check_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_health_check" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_packets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_packets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_rpcs_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_statistics", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_statistics" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_statistics_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_statistics_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_statistics" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ibc_union_traces_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_index_status", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_index_status" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_index_status_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_index_status_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_index_status" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_lightclient_update", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_lightclient_update" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_lightclient_update_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_lightclient_update_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_lightclient_update" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packet_effect_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packet_effect_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packet_effect_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packet_effect_type_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packet_effect_type" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_packets_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packets" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_rpcs_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_rpcs" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_statistics_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics_address", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics_address" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_statistics_address_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics_address_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics_address" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_statistics_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_statistics" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_tokens_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_tokens_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_tokens_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_tokens_type_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_tokens_type" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_traces_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_traces" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfer_forwards_type", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfer_forwards_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfer_forwards_type_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_transfers_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfers" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_configurations", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_configurations_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_paths", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_paths" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_paths_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "v1_ucs1_paths_stream", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_paths" - } - } - } - }, - "args": [ - { - "name": "batch_size", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "cursor", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_stream_cursor_input" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "SCALAR", - "name": "timestamptz" - }, - { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "inputFields": [ - { - "name": "_eq", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_gt", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_gte", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_in", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "timestamptz" - } - } - } - }, - { - "name": "_is_null", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "_lt", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_lte", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_neq", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "_nin", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "SCALAR", - "name": "timestamptz" - } - } - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_acknowledge_packet", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_acknowledge_packet_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "event_index", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "sequence", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_event_index", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_acknowledge_packet_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_assets", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "decimals", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "gas_token", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_avg_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "decimals", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "faucets", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - }, - { - "name": "gas_token", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_max_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_min_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "faucets_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_aggregate_order_by" - } - }, - { - "name": "gas_token", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_assets_select_column", - "enumValues": [ - { - "name": "decimals", - "isDeprecated": false - }, - { - "name": "denom", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "display_symbol", - "isDeprecated": false - }, - { - "name": "gas_token", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_pop_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stddev_samp_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_stream_cursor_value_input", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "gas_token", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_sum_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_var_pop_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_var_samp_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_assets_variance_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_chains", - "fields": [ - { - "name": "addr_prefix", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled_staging", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "rpc_type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "testnet", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "ucs1_configurations", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - } - }, - { - "name": "addr_prefix", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "assets", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - }, - { - "name": "chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "explorers", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "rpcs", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - }, - { - "name": "testnet", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "ucs1_configurations", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by", - "inputFields": [ - { - "name": "addr_prefix", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "assets_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_aggregate_order_by" - } - }, - { - "name": "chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "explorers_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_aggregate_order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "rpcs_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_aggregate_order_by" - } - }, - { - "name": "testnet", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "ucs1_configurations_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_aggregate_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_chains_select_column", - "enumValues": [ - { - "name": "addr_prefix", - "isDeprecated": false - }, - { - "name": "chain_id", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "enabled_staging", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "rpc_type", - "isDeprecated": false - }, - { - "name": "testnet", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_chains_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_chains_stream_cursor_value_input", - "inputFields": [ - { - "name": "addr_prefix", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "testnet", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channel_open_ack", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channel_open_ack_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_ack_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channel_open_confirm", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channel_open_confirm_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_confirm_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channel_open_init", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channel_open_init_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_init_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channel_open_try", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channel_open_try_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_channel_id", - "isDeprecated": false - }, - { - "name": "counterparty_port_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channel_open_try_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_channels", - "fields": [ - { - "name": "connection", - "type": { - "kind": "OBJECT", - "name": "v1_connections" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_bool_exp" - } - } - } - }, - { - "name": "connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channels_order_by", - "inputFields": [ - { - "name": "connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_channels_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channels_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_channels_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_channels_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_clients", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_clients_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_clients_select_column", - "enumValues": [ - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "counterparty_chain_id", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_clients_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_clients_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_clients_stream_cursor_value_input", - "inputFields": [ - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_config", - "fields": [ - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_bool_exp" - } - } - } - }, - { - "name": "key", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_config_order_by", - "inputFields": [ - { - "name": "key", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_config_select_column", - "enumValues": [ - { - "name": "key", - "isDeprecated": false - }, - { - "name": "value", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_config_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_config_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_config_stream_cursor_value_input", - "inputFields": [ - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connection_open_ack", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connection_open_ack_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_ack_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connection_open_confirm", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connection_open_confirm_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_confirm_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connection_open_init", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connection_open_init_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_init_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connection_open_try", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connection_open_try_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "counterparty_client_id", - "isDeprecated": false - }, - { - "name": "counterparty_connection_id", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connection_open_try_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "counterparty_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_connections", - "fields": [ - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_bool_exp" - } - } - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connections_order_by", - "inputFields": [ - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_connections_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_client_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_client_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connections_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_connections_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_connections_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_contracts", - "fields": [ - { - "name": "abi", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "address", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "created_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "max_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "min_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "updated_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_bool_exp" - } - } - } - }, - { - "name": "abi", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "address", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "created_at", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "max_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "min_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "updated_at", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_order_by", - "inputFields": [ - { - "name": "abi", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "created_at", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "min_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "updated_at", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_contracts_select_column", - "enumValues": [ - { - "name": "abi", - "isDeprecated": false - }, - { - "name": "address", - "isDeprecated": false - }, - { - "name": "created_at", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "max_height", - "isDeprecated": false - }, - { - "name": "min_height", - "isDeprecated": false - }, - { - "name": "updated_at", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_contracts_stream_cursor_value_input", - "inputFields": [ - { - "name": "abi", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "address", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "created_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "max_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "min_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "updated_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_daily_packets", - "fields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_bool_exp" - } - } - } - }, - { - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "day", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "day", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_daily_packets_select_column", - "enumValues": [ - { - "name": "count", - "isDeprecated": false - }, - { - "name": "day", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_packets_stream_cursor_value_input", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_daily_transfers", - "fields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_bool_exp" - } - } - } - }, - { - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "day", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "day", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_daily_transfers_select_column", - "enumValues": [ - { - "name": "count", - "isDeprecated": false - }, - { - "name": "day", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_daily_transfers_stream_cursor_value_input", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_explorers", - "fields": [ - { - "name": "address_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "block_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "home_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "tx_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_bool_exp" - } - } - } - }, - { - "name": "address_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "block_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "home_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "tx_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_max_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_min_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_explorers_select_column", - "enumValues": [ - { - "name": "address_url", - "isDeprecated": false - }, - { - "name": "block_url", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "home_url", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "tx_url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_explorers_stream_cursor_value_input", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "block_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "home_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "tx_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_faucets", - "fields": [ - { - "name": "asset", - "type": { - "kind": "OBJECT", - "name": "v1_assets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_bool_exp" - } - } - } - }, - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_max_order_by", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_min_order_by", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_order_by", - "inputFields": [ - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_faucets_select_column", - "enumValues": [ - { - "name": "denom", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_faucets_stream_cursor_value_input", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_health_check", - "fields": [ - { - "name": "result", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "test", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_bool_exp" - } - } - } - }, - { - "name": "result", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "test", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_order_by", - "inputFields": [ - { - "name": "result", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "test", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_health_check_select_column", - "enumValues": [ - { - "name": "result", - "isDeprecated": false - }, - { - "name": "test", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_health_check_stream_cursor_value_input", - "inputFields": [ - { - "name": "result", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "test", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_assets", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "decimals", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "faucets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_faucets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "gas_token", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "origin", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "unwrapped_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_avg_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "decimals", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "faucets", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - }, - { - "name": "gas_token", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "origin", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "unwrapped_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_max_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "origin", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_min_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "origin", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "faucets_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_aggregate_order_by" - } - }, - { - "name": "gas_token", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "origin", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "unwrapped_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_assets_select_column", - "enumValues": [ - { - "name": "decimals", - "isDeprecated": false - }, - { - "name": "denom", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "display_symbol", - "isDeprecated": false - }, - { - "name": "gas_token", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "origin", - "isDeprecated": false - }, - { - "name": "unwrapped_denom", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_pop_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stddev_samp_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_stream_cursor_value_input", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "gas_token", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "origin", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "unwrapped_denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_sum_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_var_pop_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_var_samp_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_variance_order_by", - "inputFields": [ - { - "name": "decimals", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_chains", - "fields": [ - { - "name": "addr_prefix", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "assets", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_assets_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled_staging", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "explorers", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_explorers_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "rpc_type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "rpcs", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_rpcs_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "testnet", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - } - }, - { - "name": "addr_prefix", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "assets", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - }, - { - "name": "chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "explorers", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "rpcs", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - }, - { - "name": "testnet", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by", - "inputFields": [ - { - "name": "addr_prefix", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "assets_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_aggregate_order_by" - } - }, - { - "name": "chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "explorers_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_aggregate_order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "rpcs_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_aggregate_order_by" - } - }, - { - "name": "testnet", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_chains_select_column", - "enumValues": [ - { - "name": "addr_prefix", - "isDeprecated": false - }, - { - "name": "chain_id", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "enabled_staging", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "rpc_type", - "isDeprecated": false - }, - { - "name": "testnet", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_stream_cursor_value_input", - "inputFields": [ - { - "name": "addr_prefix", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "enabled_staging", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "rpc_type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "testnet", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_channels", - "fields": [ - { - "name": "connection", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_connections" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "internal_source_chain_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_bool_exp" - } - } - } - }, - { - "name": "connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "internal_source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_order_by", - "inputFields": [ - { - "name": "connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "internal_source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_channels_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "internal_source_chain_id", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_channels_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "internal_source_chain_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_clients", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "counterparty_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_clients_select_column", - "enumValues": [ - { - "name": "client_id", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_clients_stream_cursor_value_input", - "inputFields": [ - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_config", - "fields": [ - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_bool_exp" - } - } - } - }, - { - "name": "key", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_order_by", - "inputFields": [ - { - "name": "key", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_config_select_column", - "enumValues": [ - { - "name": "key", - "isDeprecated": false - }, - { - "name": "value", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_config_stream_cursor_value_input", - "inputFields": [ - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_connections", - "fields": [ - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_client_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_client_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_bool_exp" - } - } - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_order_by", - "inputFields": [ - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_connections_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_client_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_client_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_connections_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_client_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_client_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_contracts", - "fields": [ - { - "name": "abi", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "address", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "created_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "end_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "start_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "updated_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_bool_exp" - } - } - } - }, - { - "name": "abi", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "address", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "created_at", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "end_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "start_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "updated_at", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_order_by", - "inputFields": [ - { - "name": "abi", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "created_at", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "end_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "start_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "updated_at", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_contracts_select_column", - "enumValues": [ - { - "name": "abi", - "isDeprecated": false - }, - { - "name": "address", - "isDeprecated": false - }, - { - "name": "created_at", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "end_height", - "isDeprecated": false - }, - { - "name": "start_height", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - }, - { - "name": "updated_at", - "isDeprecated": false - }, - { - "name": "version", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_contracts_stream_cursor_value_input", - "inputFields": [ - { - "name": "abi", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "address", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "created_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "end_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "start_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "updated_at", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "version", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders", - "fields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_bool_exp" - } - } - } - }, - { - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "day", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "day", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_daily_fungible_asset_orders_select_column", - "enumValues": [ - { - "name": "count", - "isDeprecated": false - }, - { - "name": "day", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_fungible_asset_orders_stream_cursor_value_input", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_daily_packets", - "fields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_bool_exp" - } - } - } - }, - { - "name": "count", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "day", - "type": { - "kind": "INPUT_OBJECT", - "name": "date_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "day", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_daily_packets_select_column", - "enumValues": [ - { - "name": "count", - "isDeprecated": false - }, - { - "name": "day", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_daily_packets_stream_cursor_value_input", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "day", - "type": { - "kind": "SCALAR", - "name": "date" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_explorers", - "fields": [ - { - "name": "address_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "block_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "home_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "tx_url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_bool_exp" - } - } - } - }, - { - "name": "address_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "block_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "home_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "tx_url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_max_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_min_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_order_by", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "block_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "home_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tx_url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_explorers_select_column", - "enumValues": [ - { - "name": "address_url", - "isDeprecated": false - }, - { - "name": "block_url", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "home_url", - "isDeprecated": false - }, - { - "name": "logo_uri", - "isDeprecated": false - }, - { - "name": "name", - "isDeprecated": false - }, - { - "name": "tx_url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_explorers_stream_cursor_value_input", - "inputFields": [ - { - "name": "address_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "block_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "home_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "logo_uri", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "tx_url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_faucets", - "fields": [ - { - "name": "asset", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_bool_exp" - } - } - } - }, - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_max_order_by", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_min_order_by", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_order_by", - "inputFields": [ - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_faucets_select_column", - "enumValues": [ - { - "name": "denom", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_faucets_stream_cursor_value_input", - "inputFields": [ - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders", - "fields": [ - { - "name": "ack_fill_type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "ack_market_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "ack_tag", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "acknowledgement", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "base_amount", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "base_token", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "base_token_details", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "base_token_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "base_token_path", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "base_token_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "channel_version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "instruction_path", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_packets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "quote_amount", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "quote_token", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "quote_token_details", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_assets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "salt", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - } - } - }, - { - "name": "ack_fill_type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "ack_market_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "ack_tag", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "acknowledgement", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "base_amount", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "base_token", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "base_token_details", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - }, - { - "name": "base_token_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "base_token_path", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "base_token_symbol", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "channel_version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "data", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "instruction_path", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "path", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "quote_amount", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "quote_token", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "quote_token_details", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_bool_exp" - } - }, - { - "name": "receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "salt", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "sender", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_order_by", - "inputFields": [ - { - "name": "ack_fill_type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "ack_market_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "ack_tag", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "acknowledgement", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_token", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_token_details", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - }, - { - "name": "base_token_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_token_path", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "base_token_symbol", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "channel_version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "instruction_path", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_order_by" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "path", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "quote_amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "quote_token", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "quote_token_details", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_assets_order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "salt", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "sender", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "traces_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_aggregate_order_by" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_fungible_asset_orders_select_column", - "enumValues": [ - { - "name": "ack_fill_type", - "isDeprecated": false - }, - { - "name": "ack_market_maker", - "isDeprecated": false - }, - { - "name": "ack_tag", - "isDeprecated": false - }, - { - "name": "acknowledgement", - "isDeprecated": false - }, - { - "name": "acknowledgement_decoded", - "isDeprecated": false - }, - { - "name": "base_amount", - "isDeprecated": false - }, - { - "name": "base_token", - "isDeprecated": false - }, - { - "name": "base_token_name", - "isDeprecated": false - }, - { - "name": "base_token_path", - "isDeprecated": false - }, - { - "name": "base_token_symbol", - "isDeprecated": false - }, - { - "name": "channel_version", - "isDeprecated": false - }, - { - "name": "data", - "isDeprecated": false - }, - { - "name": "data_decoded", - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "instruction_path", - "isDeprecated": false - }, - { - "name": "packet_ack_block_hash", - "isDeprecated": false - }, - { - "name": "packet_ack_event_index", - "isDeprecated": false - }, - { - "name": "packet_ack_height", - "isDeprecated": false - }, - { - "name": "packet_ack_maker", - "isDeprecated": false - }, - { - "name": "packet_ack_timestamp", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_index", - "isDeprecated": false - }, - { - "name": "packet_recv_block_hash", - "isDeprecated": false - }, - { - "name": "packet_recv_event_index", - "isDeprecated": false - }, - { - "name": "packet_recv_height", - "isDeprecated": false - }, - { - "name": "packet_recv_maker", - "isDeprecated": false - }, - { - "name": "packet_recv_maker_msg", - "isDeprecated": false - }, - { - "name": "packet_recv_timestamp", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_index", - "isDeprecated": false - }, - { - "name": "packet_send_block_hash", - "isDeprecated": false - }, - { - "name": "packet_send_event_index", - "isDeprecated": false - }, - { - "name": "packet_send_height", - "isDeprecated": false - }, - { - "name": "packet_send_timestamp", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_index", - "isDeprecated": false - }, - { - "name": "path", - "isDeprecated": false - }, - { - "name": "quote_amount", - "isDeprecated": false - }, - { - "name": "quote_token", - "isDeprecated": false - }, - { - "name": "receiver", - "isDeprecated": false - }, - { - "name": "salt", - "isDeprecated": false - }, - { - "name": "sender", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "timeout_height", - "isDeprecated": false - }, - { - "name": "timeout_timestamp", - "isDeprecated": false - }, - { - "name": "write_ack_block_hash", - "isDeprecated": false - }, - { - "name": "write_ack_event_index", - "isDeprecated": false - }, - { - "name": "write_ack_height", - "isDeprecated": false - }, - { - "name": "write_ack_timestamp", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_event_index", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_hash", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_stream_cursor_value_input", - "inputFields": [ - { - "name": "ack_fill_type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "ack_market_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "ack_tag", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "acknowledgement", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "base_amount", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "base_token", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "base_token_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "base_token_path", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "base_token_symbol", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channel_version", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "instruction_path", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "quote_amount", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "quote_token", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "salt", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_health_check", - "fields": [ - { - "name": "result", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "test", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_bool_exp" - } - } - } - }, - { - "name": "result", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "test", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_order_by", - "inputFields": [ - { - "name": "result", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "test", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_health_check_select_column", - "enumValues": [ - { - "name": "result", - "isDeprecated": false - }, - { - "name": "test", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_health_check_stream_cursor_value_input", - "inputFields": [ - { - "name": "result", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "test", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_packets", - "fields": [ - { - "name": "acknowledgement", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "channel_version", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "fungible_asset_order", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_fungible_asset_orders" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ibc_union_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_bool_exp" - } - } - } - }, - { - "name": "acknowledgement", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "channel_version", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "data", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "fungible_asset_order", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_bool_exp" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_order_by", - "inputFields": [ - { - "name": "acknowledgement", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "channel_version", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "fungible_asset_order", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_fungible_asset_orders_order_by" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "traces_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_aggregate_order_by" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_packets_select_column", - "enumValues": [ - { - "name": "acknowledgement", - "isDeprecated": false - }, - { - "name": "acknowledgement_decoded", - "isDeprecated": false - }, - { - "name": "channel_version", - "isDeprecated": false - }, - { - "name": "data", - "isDeprecated": false - }, - { - "name": "data_decoded", - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "packet_ack_block_hash", - "isDeprecated": false - }, - { - "name": "packet_ack_event_index", - "isDeprecated": false - }, - { - "name": "packet_ack_height", - "isDeprecated": false - }, - { - "name": "packet_ack_maker", - "isDeprecated": false - }, - { - "name": "packet_ack_timestamp", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_ack_transaction_index", - "isDeprecated": false - }, - { - "name": "packet_recv_block_hash", - "isDeprecated": false - }, - { - "name": "packet_recv_event_index", - "isDeprecated": false - }, - { - "name": "packet_recv_height", - "isDeprecated": false - }, - { - "name": "packet_recv_maker", - "isDeprecated": false - }, - { - "name": "packet_recv_maker_msg", - "isDeprecated": false - }, - { - "name": "packet_recv_timestamp", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_recv_transaction_index", - "isDeprecated": false - }, - { - "name": "packet_send_block_hash", - "isDeprecated": false - }, - { - "name": "packet_send_event_index", - "isDeprecated": false - }, - { - "name": "packet_send_height", - "isDeprecated": false - }, - { - "name": "packet_send_timestamp", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_event_index", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_hash", - "isDeprecated": false - }, - { - "name": "packet_send_transaction_index", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "timeout_height", - "isDeprecated": false - }, - { - "name": "timeout_timestamp", - "isDeprecated": false - }, - { - "name": "write_ack_block_hash", - "isDeprecated": false - }, - { - "name": "write_ack_event_index", - "isDeprecated": false - }, - { - "name": "write_ack_height", - "isDeprecated": false - }, - { - "name": "write_ack_timestamp", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_event_index", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_hash", - "isDeprecated": false - }, - { - "name": "write_ack_transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_packets_stream_cursor_value_input", - "inputFields": [ - { - "name": "acknowledgement", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "acknowledgement_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "channel_version", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "data_decoded", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_ack_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_recv_maker", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_maker_msg", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_recv_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_recv_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_recv_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_send_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "packet_send_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "packet_send_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "packet_send_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_send_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timeout_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "write_ack_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "write_ack_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "write_ack_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "write_ack_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "write_ack_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "write_ack_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "write_ack_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_rpcs", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "contact", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "contact", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_max_order_by", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_min_order_by", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_rpcs_select_column", - "enumValues": [ - { - "name": "contact", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - }, - { - "name": "url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_rpcs_stream_cursor_value_input", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_statistics", - "fields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_bool_exp" - } - } - } - }, - { - "name": "name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_order_by", - "inputFields": [ - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_statistics_select_column", - "enumValues": [ - { - "name": "name", - "isDeprecated": false - }, - { - "name": "value", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_statistics_stream_cursor_value_input", - "inputFields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ibc_union_traces", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_ibc_union_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_avg_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_bool_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_max_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_min_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_chains_order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ibc_union_traces_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "initiating_transaction_hash", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_pop_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stddev_samp_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_sum_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_var_pop_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_var_samp_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ibc_union_traces_variance_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_index_status", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "tip_age_seconds", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "display_name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "status", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "tip_age_seconds", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "display_name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "status", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tip_age_seconds", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_index_status_select_column", - "enumValues": [ - { - "name": "chain_id", - "isDeprecated": false - }, - { - "name": "display_name", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "status", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "tip_age_seconds", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_index_status_stream_cursor_value_input", - "inputFields": [ - { - "name": "chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "display_name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "status", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "tip_age_seconds", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_lightclient_update", - "fields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "counterparty_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "execution_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "revision_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_bool_exp" - } - } - } - }, - { - "name": "block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "client_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "counterparty_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "execution_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "revision_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_order_by", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "client_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "counterparty_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "execution_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "revision_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_lightclient_update_select_column", - "enumValues": [ - { - "name": "block_hash", - "isDeprecated": false - }, - { - "name": "client_id", - "isDeprecated": false - }, - { - "name": "execution_height", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "revision_height", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_lightclient_update_stream_cursor_value_input", - "inputFields": [ - { - "name": "block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "client_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "execution_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "revision_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_packet_effect_type", - "fields": [ - { - "name": "event", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "event_index", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_avg_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - } - }, - { - "name": "event", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_max_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_min_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_order_by", - "inputFields": [ - { - "name": "event", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_packet_effect_type_select_column", - "enumValues": [ - { - "name": "event", - "isDeprecated": false - }, - { - "name": "event_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_pop_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stddev_samp_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_stream_cursor_value_input", - "inputFields": [ - { - "name": "event", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "event_index", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_sum_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_var_pop_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_var_samp_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_variance_order_by", - "inputFields": [ - { - "name": "event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_packets", - "fields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_event_json", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "destination_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_packet_data", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "effects", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_packet_effect_type" - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_packet_effect_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_event_json", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_packet_data", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "traces", - "type": { - "kind": "OBJECT", - "name": "v1_traces" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transfer", - "type": { - "kind": "OBJECT", - "name": "v1_transfers" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - } - } - }, - { - "name": "destination_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_event_json", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "destination_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "destination_packet_data", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "destination_timeout_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "effects", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_bool_exp" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_event_json", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "source_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_packet_data", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_timeout_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - }, - { - "name": "transfer", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packets_order_by", - "inputFields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_event_json", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_packet_data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_timeout_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "effects_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packet_effect_type_aggregate_order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_json", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_packet_data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_timeout_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by" - } - }, - { - "name": "transfer", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_packets_select_column", - "enumValues": [ - { - "name": "destination_block_hash", - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_event_index", - "isDeprecated": false - }, - { - "name": "destination_event_json", - "isDeprecated": false - }, - { - "name": "destination_height", - "isDeprecated": false - }, - { - "name": "destination_packet_data", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "destination_sequence", - "isDeprecated": false - }, - { - "name": "destination_timeout_timestamp", - "isDeprecated": false - }, - { - "name": "destination_timestamp", - "isDeprecated": false - }, - { - "name": "destination_transaction_event_index", - "isDeprecated": false - }, - { - "name": "destination_transaction_hash", - "isDeprecated": false - }, - { - "name": "destination_transaction_index", - "isDeprecated": false - }, - { - "name": "source_block_hash", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_event_index", - "isDeprecated": false - }, - { - "name": "source_event_json", - "isDeprecated": false - }, - { - "name": "source_height", - "isDeprecated": false - }, - { - "name": "source_packet_data", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "source_sequence", - "isDeprecated": false - }, - { - "name": "source_timeout_timestamp", - "isDeprecated": false - }, - { - "name": "source_timestamp", - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packets_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_packets_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_event_json", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "destination_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "destination_packet_data", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "destination_timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_event_json", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_packet_data", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_timeout_timestamp", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_rpcs", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "contact", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "contact", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "description", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "enabled", - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "url", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_max_order_by", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_min_order_by", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "contact", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "description", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "enabled", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "url", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_rpcs_select_column", - "enumValues": [ - { - "name": "contact", - "isDeprecated": false - }, - { - "name": "description", - "isDeprecated": false - }, - { - "name": "enabled", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - }, - { - "name": "url", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_rpcs_stream_cursor_value_input", - "inputFields": [ - { - "name": "contact", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "url", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_statistics", - "fields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "v1_statistics_address", - "fields": [ - { - "name": "normalized_address", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "total", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_bool_exp" - } - } - } - }, - { - "name": "normalized_address", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "total", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_order_by", - "inputFields": [ - { - "name": "normalized_address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "total", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_statistics_address_select_column", - "enumValues": [ - { - "name": "normalized_address", - "isDeprecated": false - }, - { - "name": "total", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_address_stream_cursor_value_input", - "inputFields": [ - { - "name": "normalized_address", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "total", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_bool_exp" - } - } - } - }, - { - "name": "name", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "value", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_order_by", - "inputFields": [ - { - "name": "name", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "value", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_statistics_select_column", - "enumValues": [ - { - "name": "name", - "isDeprecated": false - }, - { - "name": "value", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_statistics_stream_cursor_value_input", - "inputFields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_tokens_type", - "fields": [ - { - "name": "amount", - "type": { - "kind": "SCALAR", - "name": "numeric" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "asset", - "type": { - "kind": "OBJECT", - "name": "v1_assets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_avg_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - } - }, - { - "name": "amount", - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp" - } - }, - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_bool_exp" - } - }, - { - "name": "denom", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_max_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_min_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "asset", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_assets_order_by" - } - }, - { - "name": "denom", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_tokens_type_select_column", - "enumValues": [ - { - "name": "amount", - "isDeprecated": false - }, - { - "name": "denom", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_pop_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stddev_samp_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_stream_cursor_value_input", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "SCALAR", - "name": "numeric" - } - }, - { - "name": "denom", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_sum_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_var_pop_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_var_samp_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_variance_order_by", - "inputFields": [ - { - "name": "amount", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_traces", - "fields": [ - { - "name": "chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "order", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "transfer", - "type": { - "kind": "OBJECT", - "name": "v1_transfers" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_avg_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - } - }, - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "data", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "order", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "transfer", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - }, - { - "name": "type", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_max_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_min_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by", - "inputFields": [ - { - "name": "chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "transfer", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - }, - { - "name": "type", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_traces_select_column", - "enumValues": [ - { - "name": "data", - "isDeprecated": false - }, - { - "name": "height", - "isDeprecated": false - }, - { - "name": "initiating_transaction_hash", - "isDeprecated": false - }, - { - "name": "order", - "isDeprecated": false - }, - { - "name": "source_sequence", - "isDeprecated": false - }, - { - "name": "timestamp", - "isDeprecated": false - }, - { - "name": "transaction_hash", - "isDeprecated": false - }, - { - "name": "type", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_pop_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stddev_samp_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_stream_cursor_value_input", - "inputFields": [ - { - "name": "data", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "initiating_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "order", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_sum_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_var_pop_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_var_samp_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_traces_variance_order_by", - "inputFields": [ - { - "name": "height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "order", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type", - "fields": [ - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "retries", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "timeout", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_aggregate_order_by", - "inputFields": [ - { - "name": "avg", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_avg_order_by" - } - }, - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_min_order_by" - } - }, - { - "name": "stddev", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_order_by" - } - }, - { - "name": "stddev_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_pop_order_by" - } - }, - { - "name": "stddev_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_samp_order_by" - } - }, - { - "name": "sum", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_sum_order_by" - } - }, - { - "name": "var_pop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_var_pop_order_by" - } - }, - { - "name": "var_samp", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_var_samp_order_by" - } - }, - { - "name": "variance", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_variance_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_avg_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "retries", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "timeout", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_max_order_by", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_min_order_by", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_order_by", - "inputFields": [ - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "timeout", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_transfer_forwards_type_select_column", - "enumValues": [ - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "receiver", - "isDeprecated": false - }, - { - "name": "retries", - "isDeprecated": false - }, - { - "name": "source_block_hash", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_event_index", - "isDeprecated": false - }, - { - "name": "source_height", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "isDeprecated": false - }, - { - "name": "timeout", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_pop_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stddev_samp_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "retries", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "timeout", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_sum_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_var_pop_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_var_samp_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_variance_order_by", - "inputFields": [ - { - "name": "retries", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_transfers", - "fields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "forwards", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_transfer_forwards_type" - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_transfer_forwards_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "hop", - "type": { - "kind": "OBJECT", - "name": "v1_transfers" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "normalized_receiver", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "normalized_sender", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet", - "type": { - "kind": "OBJECT", - "name": "v1_packets" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "packet_data", - "type": { - "kind": "SCALAR", - "name": "jsonb" - }, - "args": [ - { - "name": "path", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isDeprecated": false - }, - { - "name": "pfm_destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_recv_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_sent_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "pfm_source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "tokens", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_tokens_type" - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_tokens_type_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "traces", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_traces" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_traces_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - } - } - }, - { - "name": "destination_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "forwards", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_bool_exp" - } - }, - { - "name": "hop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_bool_exp" - } - }, - { - "name": "normalized_receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "normalized_sender", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "packet", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_bool_exp" - } - }, - { - "name": "packet_data", - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp" - } - }, - { - "name": "pfm_destination_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "pfm_destination_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "pfm_recv_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "pfm_sent_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "pfm_source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "pfm_source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "receiver", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "sender", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_height", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp" - } - }, - { - "name": "tokens", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_bool_exp" - } - }, - { - "name": "traces", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by", - "inputFields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "forwards_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfer_forwards_type_aggregate_order_by" - } - }, - { - "name": "hop", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_order_by" - } - }, - { - "name": "normalized_receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "normalized_sender", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "packet", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_packets_order_by" - } - }, - { - "name": "packet_data", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_destination_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_destination_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_recv_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_sent_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "pfm_source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "receiver", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "sender", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_height", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "tokens_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_tokens_type_aggregate_order_by" - } - }, - { - "name": "traces_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_traces_aggregate_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_transfers_select_column", - "enumValues": [ - { - "name": "destination_block_hash", - "isDeprecated": false - }, - { - "name": "destination_chain_id", - "isDeprecated": false - }, - { - "name": "destination_channel_id", - "isDeprecated": false - }, - { - "name": "destination_connection_id", - "isDeprecated": false - }, - { - "name": "destination_event_index", - "isDeprecated": false - }, - { - "name": "destination_height", - "isDeprecated": false - }, - { - "name": "destination_port_id", - "isDeprecated": false - }, - { - "name": "destination_sequence", - "isDeprecated": false - }, - { - "name": "destination_timestamp", - "isDeprecated": false - }, - { - "name": "destination_transaction_event_index", - "isDeprecated": false - }, - { - "name": "destination_transaction_hash", - "isDeprecated": false - }, - { - "name": "destination_transaction_index", - "isDeprecated": false - }, - { - "name": "normalized_receiver", - "isDeprecated": false - }, - { - "name": "normalized_sender", - "isDeprecated": false - }, - { - "name": "packet_data", - "isDeprecated": false - }, - { - "name": "pfm_destination_channel_id", - "isDeprecated": false - }, - { - "name": "pfm_destination_port_id", - "isDeprecated": false - }, - { - "name": "pfm_recv_sequence", - "isDeprecated": false - }, - { - "name": "pfm_sent_sequence", - "isDeprecated": false - }, - { - "name": "pfm_source_channel_id", - "isDeprecated": false - }, - { - "name": "pfm_source_port_id", - "isDeprecated": false - }, - { - "name": "receiver", - "isDeprecated": false - }, - { - "name": "sender", - "isDeprecated": false - }, - { - "name": "source_block_hash", - "isDeprecated": false - }, - { - "name": "source_chain_id", - "isDeprecated": false - }, - { - "name": "source_channel_id", - "isDeprecated": false - }, - { - "name": "source_connection_id", - "isDeprecated": false - }, - { - "name": "source_event_index", - "isDeprecated": false - }, - { - "name": "source_height", - "isDeprecated": false - }, - { - "name": "source_port_id", - "isDeprecated": false - }, - { - "name": "source_sequence", - "isDeprecated": false - }, - { - "name": "source_timestamp", - "isDeprecated": false - }, - { - "name": "source_transaction_event_index", - "isDeprecated": false - }, - { - "name": "source_transaction_hash", - "isDeprecated": false - }, - { - "name": "source_transaction_index", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_transfers_stream_cursor_value_input", - "inputFields": [ - { - "name": "destination_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "destination_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "destination_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "destination_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "destination_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "normalized_receiver", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "normalized_sender", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "packet_data", - "type": { - "kind": "SCALAR", - "name": "jsonb" - } - }, - { - "name": "pfm_destination_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "pfm_destination_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "pfm_recv_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "pfm_sent_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "pfm_source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "pfm_source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "receiver", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_block_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_chain_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_height", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_sequence", - "type": { - "kind": "SCALAR", - "name": "bigint" - } - }, - { - "name": "source_timestamp", - "type": { - "kind": "SCALAR", - "name": "timestamptz" - } - }, - { - "name": "source_transaction_event_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "source_transaction_hash", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "source_transaction_index", - "type": { - "kind": "SCALAR", - "name": "Int" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ucs1_configurations", - "fields": [ - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "contract_address", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "forwards", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "OBJECT", - "name": "v1_ucs1_configurations" - } - } - } - }, - "args": [ - { - "name": "distinct_on", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column" - } - } - } - }, - { - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int" - } - }, - { - "name": "order_by", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by" - } - } - } - }, - { - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - ], - "isDeprecated": false - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_aggregate_order_by", - "inputFields": [ - { - "name": "count", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "max", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_max_order_by" - } - }, - { - "name": "min", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_min_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - } - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "connection_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "contract_address", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "forwards", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_bool_exp" - } - }, - { - "name": "port_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_max_order_by", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "contract_address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_min_order_by", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "contract_address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_order_by", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "connection_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "contract_address", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "forwards_aggregate", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_aggregate_order_by" - } - }, - { - "name": "port_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ucs1_configurations_select_column", - "enumValues": [ - { - "name": "channel_id", - "isDeprecated": false - }, - { - "name": "connection_id", - "isDeprecated": false - }, - { - "name": "contract_address", - "isDeprecated": false - }, - { - "name": "port_id", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_configurations_stream_cursor_value_input", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "connection_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "contract_address", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "port_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - }, - { - "kind": "OBJECT", - "name": "v1_ucs1_paths", - "fields": [ - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "destination_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - }, - { - "name": "source_chain", - "type": { - "kind": "OBJECT", - "name": "v1_chains" - }, - "args": [], - "isDeprecated": false - } - ], - "interfaces": [] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp", - "inputFields": [ - { - "name": "_and", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - } - }, - { - "name": "_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - }, - { - "name": "_or", - "type": { - "kind": "LIST", - "ofType": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_bool_exp" - } - } - } - }, - { - "name": "channel_id", - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_bool_exp" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_order_by", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "ENUM", - "name": "order_by" - } - }, - { - "name": "destination_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - }, - { - "name": "source_chain", - "type": { - "kind": "INPUT_OBJECT", - "name": "v1_chains_order_by" - } - } - ], - "isOneOf": false - }, - { - "kind": "ENUM", - "name": "v1_ucs1_paths_select_column", - "enumValues": [ - { - "name": "channel_id", - "isDeprecated": false - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_stream_cursor_input", - "inputFields": [ - { - "name": "initial_value", - "type": { - "kind": "NON_NULL", - "ofType": { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_stream_cursor_value_input" - } - } - }, - { - "name": "ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering" - } - } - ], - "isOneOf": false - }, - { - "kind": "INPUT_OBJECT", - "name": "v1_ucs1_paths_stream_cursor_value_input", - "inputFields": [ - { - "name": "channel_id", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "isOneOf": false - } - ], - "directives": [] - } + name: never; + query: 'query_root'; + mutation: 'mutation_root'; + subscription: 'subscription_root'; + types: introspection_types; }; import * as gqlTada from 'gql.tada'; diff --git a/app/src/lib/components/table-cells/cell-origin-channel.svelte b/app/src/lib/components/table-cells/cell-origin-channel.svelte index 8af1aa442e..c174f02bc1 100644 --- a/app/src/lib/components/table-cells/cell-origin-channel.svelte +++ b/app/src/lib/components/table-cells/cell-origin-channel.svelte @@ -13,8 +13,8 @@ export let value: {
{#if value.chain_display_name}{/if} - {#if value.chain_id}{/if} - {#if value.connection_id}{/if} - {#if value.channel_id}{/if} -
{#if value.port_id}{/if}
+ {#if value.chain_id}{/if} + {#if value.connection_id}{/if} + {#if value.channel_id}{/if} + {#if value.port_id}{/if}
diff --git a/app/src/lib/graphql/queries/channels.ts b/app/src/lib/graphql/queries/channels.ts index 3bb58e8b2d..f06679f809 100644 --- a/app/src/lib/graphql/queries/channels.ts +++ b/app/src/lib/graphql/queries/channels.ts @@ -3,7 +3,7 @@ import { graphql } from "gql.tada" export const channelsQuery = graphql(/* GraphQL */ `query ChannelsQuery($limit: Int = 500) @cached(ttl: 30) { v1_ibc_union_channels( - where: {source_chain: {enabled: {_eq: true}}, destination_chain: {enabled: {_eq: true}}}, + # where: {source_chain: {enabled: {_eq: true}}, destination_chain: {enabled: {_eq: true}}}, order_by: [ {status: asc}, {source_chain_id: asc}, diff --git a/app/src/routes/explorer/(components)/table-channels.svelte b/app/src/routes/explorer/(components)/table-channels.svelte index ae5b72fbf0..ccf258aacf 100644 --- a/app/src/routes/explorer/(components)/table-channels.svelte +++ b/app/src/routes/explorer/(components)/table-channels.svelte @@ -16,7 +16,7 @@ let channels = createQuery({ retryDelay: attempt => Math.min(attempt > 1 ? 2 ** attempt * 1000 : 1000, 30 * 1000), queryFn: async () => request(URLS().GRAPHQL, channelsQuery, {}), select: data => - data.v1_channels.map(channel => ({ + data.v1_ibc_union_channels.map(channel => ({ source_chain: { chain_display_name: channel.destination_chain?.display_name ?? "unknown", chain_id: channel.source_chain_id ?? "unknown", From 7946a93d8ba75d4b558d75c7a3934a97ac2dd52a Mon Sep 17 00:00:00 2001 From: cor Date: Wed, 15 Jan 2025 18:18:53 +0000 Subject: [PATCH 7/7] fix(app): index status fetching --- app/src/generated/graphql-env.d.ts | 10 ++++++++-- app/src/lib/graphql/queries/index-status.ts | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/app/src/generated/graphql-env.d.ts b/app/src/generated/graphql-env.d.ts index c28da148a1..1ce444675b 100644 --- a/app/src/generated/graphql-env.d.ts +++ b/app/src/generated/graphql-env.d.ts @@ -30,10 +30,10 @@ export type introspection_types = { 'numeric': unknown; 'numeric_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; }; }; defaultValue: null }]; }; 'order_by': { name: 'order_by'; enumValues: 'asc' | 'asc_nulls_first' | 'asc_nulls_last' | 'desc' | 'desc_nulls_first' | 'desc_nulls_last'; }; - 'query_root': { kind: 'OBJECT'; name: 'query_root'; fields: { 'dydx_faucet': { name: 'dydx_faucet'; type: { kind: 'OBJECT'; name: 'dydx_faucetQuery'; ofType: null; } }; 'faucet2': { name: 'faucet2'; type: { kind: 'OBJECT'; name: 'faucet2Query'; ofType: null; } }; 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'stride_faucet': { name: 'stride_faucet'; type: { kind: 'OBJECT'; name: 'stride_faucetQuery'; ofType: null; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; + 'query_root': { kind: 'OBJECT'; name: 'query_root'; fields: { 'dydx_faucet': { name: 'dydx_faucet'; type: { kind: 'OBJECT'; name: 'dydx_faucetQuery'; ofType: null; } }; 'faucet2': { name: 'faucet2'; type: { kind: 'OBJECT'; name: 'faucet2Query'; ofType: null; } }; 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'stride_faucet': { name: 'stride_faucet'; type: { kind: 'OBJECT'; name: 'stride_faucetQuery'; ofType: null; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_index_status': { name: 'v1_ibc_union_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_index_status'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; 'stride_faucetMutation': { kind: 'OBJECT'; name: 'stride_faucetMutation'; fields: { 'send': { name: 'send'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'stride_faucetQuery': { kind: 'OBJECT'; name: 'stride_faucetQuery'; fields: { 'handledTransfers': { name: 'handledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'transfersForAddress': { name: 'transfersForAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; 'unhandledTransfers': { name: 'unhandledTransfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Request'; ofType: null; }; }; }; } }; }; }; - 'subscription_root': { kind: 'OBJECT'; name: 'subscription_root'; fields: { 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet_stream': { name: 'v1_acknowledge_packet_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_assets_stream': { name: 'v1_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_chains_stream': { name: 'v1_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_ack_stream': { name: 'v1_channel_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm_stream': { name: 'v1_channel_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_init_stream': { name: 'v1_channel_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channel_open_try_stream': { name: 'v1_channel_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_channels_stream': { name: 'v1_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_clients_stream': { name: 'v1_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_config_stream': { name: 'v1_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_ack_stream': { name: 'v1_connection_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm_stream': { name: 'v1_connection_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_init_stream': { name: 'v1_connection_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connection_open_try_stream': { name: 'v1_connection_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_connections_stream': { name: 'v1_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_contracts_stream': { name: 'v1_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_packets_stream': { name: 'v1_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_daily_transfers_stream': { name: 'v1_daily_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_explorers_stream': { name: 'v1_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_faucets_stream': { name: 'v1_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_health_check_stream': { name: 'v1_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets_stream': { name: 'v1_ibc_union_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains_stream': { name: 'v1_ibc_union_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels_stream': { name: 'v1_ibc_union_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients_stream': { name: 'v1_ibc_union_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_config_stream': { name: 'v1_ibc_union_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections_stream': { name: 'v1_ibc_union_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts_stream': { name: 'v1_ibc_union_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders_stream': { name: 'v1_ibc_union_daily_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets_stream': { name: 'v1_ibc_union_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers_stream': { name: 'v1_ibc_union_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets_stream': { name: 'v1_ibc_union_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders_stream': { name: 'v1_ibc_union_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check_stream': { name: 'v1_ibc_union_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets_stream': { name: 'v1_ibc_union_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs_stream': { name: 'v1_ibc_union_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics_stream': { name: 'v1_ibc_union_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces_stream': { name: 'v1_ibc_union_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_index_status_stream': { name: 'v1_index_status_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_lightclient_update_stream': { name: 'v1_lightclient_update_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packet_effect_type_stream': { name: 'v1_packet_effect_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_packets_stream': { name: 'v1_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_rpcs_stream': { name: 'v1_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_address_stream': { name: 'v1_statistics_address_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_stream': { name: 'v1_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_tokens_type_stream': { name: 'v1_tokens_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_traces_stream': { name: 'v1_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type_stream': { name: 'v1_transfer_forwards_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_transfers_stream': { name: 'v1_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations_stream': { name: 'v1_ucs1_configurations_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; 'v1_ucs1_paths_stream': { name: 'v1_ucs1_paths_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; + 'subscription_root': { kind: 'OBJECT'; name: 'subscription_root'; fields: { 'get_route': { name: 'get_route'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PfmArgs'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet': { name: 'v1_acknowledge_packet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_acknowledge_packet_stream': { name: 'v1_acknowledge_packet_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; ofType: null; }; }; }; } }; 'v1_assets': { name: 'v1_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_assets_stream': { name: 'v1_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_assets'; ofType: null; }; }; }; } }; 'v1_chains': { name: 'v1_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_chains_stream': { name: 'v1_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; }; }; }; } }; 'v1_channel_open_ack': { name: 'v1_channel_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_ack_stream': { name: 'v1_channel_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_ack'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm': { name: 'v1_channel_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_confirm_stream': { name: 'v1_channel_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_confirm'; ofType: null; }; }; }; } }; 'v1_channel_open_init': { name: 'v1_channel_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_init_stream': { name: 'v1_channel_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_init'; ofType: null; }; }; }; } }; 'v1_channel_open_try': { name: 'v1_channel_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channel_open_try_stream': { name: 'v1_channel_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channel_open_try'; ofType: null; }; }; }; } }; 'v1_channels': { name: 'v1_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_channels_stream': { name: 'v1_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_channels'; ofType: null; }; }; }; } }; 'v1_clients': { name: 'v1_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_clients_stream': { name: 'v1_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_clients'; ofType: null; }; }; }; } }; 'v1_config': { name: 'v1_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_config_stream': { name: 'v1_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_config'; ofType: null; }; }; }; } }; 'v1_connection_open_ack': { name: 'v1_connection_open_ack'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_ack_stream': { name: 'v1_connection_open_ack_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_ack'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm': { name: 'v1_connection_open_confirm'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_confirm_stream': { name: 'v1_connection_open_confirm_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_confirm'; ofType: null; }; }; }; } }; 'v1_connection_open_init': { name: 'v1_connection_open_init'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_init_stream': { name: 'v1_connection_open_init_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_init'; ofType: null; }; }; }; } }; 'v1_connection_open_try': { name: 'v1_connection_open_try'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connection_open_try_stream': { name: 'v1_connection_open_try_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connection_open_try'; ofType: null; }; }; }; } }; 'v1_connections': { name: 'v1_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_connections_stream': { name: 'v1_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_connections'; ofType: null; }; }; }; } }; 'v1_contracts': { name: 'v1_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_contracts_stream': { name: 'v1_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_contracts'; ofType: null; }; }; }; } }; 'v1_daily_packets': { name: 'v1_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_packets_stream': { name: 'v1_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_packets'; ofType: null; }; }; }; } }; 'v1_daily_transfers': { name: 'v1_daily_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_daily_transfers_stream': { name: 'v1_daily_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_daily_transfers'; ofType: null; }; }; }; } }; 'v1_explorers': { name: 'v1_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_explorers_stream': { name: 'v1_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_explorers'; ofType: null; }; }; }; } }; 'v1_faucets': { name: 'v1_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_faucets_stream': { name: 'v1_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_faucets'; ofType: null; }; }; }; } }; 'v1_health_check': { name: 'v1_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_health_check_stream': { name: 'v1_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets': { name: 'v1_ibc_union_assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_assets_stream': { name: 'v1_ibc_union_assets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_assets'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains': { name: 'v1_ibc_union_chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_chains_stream': { name: 'v1_ibc_union_chains_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels': { name: 'v1_ibc_union_channels'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_channels_stream': { name: 'v1_ibc_union_channels_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_channels'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients': { name: 'v1_ibc_union_clients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_clients_stream': { name: 'v1_ibc_union_clients_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_clients'; ofType: null; }; }; }; } }; 'v1_ibc_union_config': { name: 'v1_ibc_union_config'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_config_stream': { name: 'v1_ibc_union_config_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_config'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections': { name: 'v1_ibc_union_connections'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_connections_stream': { name: 'v1_ibc_union_connections_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_connections'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts': { name: 'v1_ibc_union_contracts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_contracts_stream': { name: 'v1_ibc_union_contracts_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_contracts'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders': { name: 'v1_ibc_union_daily_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_fungible_asset_orders_stream': { name: 'v1_ibc_union_daily_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets': { name: 'v1_ibc_union_daily_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_daily_packets_stream': { name: 'v1_ibc_union_daily_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_daily_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers': { name: 'v1_ibc_union_explorers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_explorers_stream': { name: 'v1_ibc_union_explorers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_explorers'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets': { name: 'v1_ibc_union_faucets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_faucets_stream': { name: 'v1_ibc_union_faucets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_faucets'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders': { name: 'v1_ibc_union_fungible_asset_orders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_fungible_asset_orders_stream': { name: 'v1_ibc_union_fungible_asset_orders_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check': { name: 'v1_ibc_union_health_check'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_health_check_stream': { name: 'v1_ibc_union_health_check_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_health_check'; ofType: null; }; }; }; } }; 'v1_ibc_union_index_status': { name: 'v1_ibc_union_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_index_status'; ofType: null; }; }; }; } }; 'v1_ibc_union_index_status_stream': { name: 'v1_ibc_union_index_status_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_index_status'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets': { name: 'v1_ibc_union_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_packets_stream': { name: 'v1_ibc_union_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs': { name: 'v1_ibc_union_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_rpcs_stream': { name: 'v1_ibc_union_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_rpcs'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics': { name: 'v1_ibc_union_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_statistics_stream': { name: 'v1_ibc_union_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_statistics'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces': { name: 'v1_ibc_union_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_ibc_union_traces_stream': { name: 'v1_ibc_union_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'v1_index_status': { name: 'v1_index_status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_index_status_stream': { name: 'v1_index_status_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_index_status'; ofType: null; }; }; }; } }; 'v1_lightclient_update': { name: 'v1_lightclient_update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_lightclient_update_stream': { name: 'v1_lightclient_update_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_lightclient_update'; ofType: null; }; }; }; } }; 'v1_packet_effect_type': { name: 'v1_packet_effect_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packet_effect_type_stream': { name: 'v1_packet_effect_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packet_effect_type'; ofType: null; }; }; }; } }; 'v1_packets': { name: 'v1_packets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_packets_stream': { name: 'v1_packets_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_packets'; ofType: null; }; }; }; } }; 'v1_rpcs': { name: 'v1_rpcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_rpcs_stream': { name: 'v1_rpcs_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_rpcs'; ofType: null; }; }; }; } }; 'v1_statistics': { name: 'v1_statistics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_statistics_address': { name: 'v1_statistics_address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_address_stream': { name: 'v1_statistics_address_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics_address'; ofType: null; }; }; }; } }; 'v1_statistics_stream': { name: 'v1_statistics_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_statistics'; ofType: null; }; }; }; } }; 'v1_tokens_type': { name: 'v1_tokens_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_tokens_type_stream': { name: 'v1_tokens_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_tokens_type'; ofType: null; }; }; }; } }; 'v1_traces': { name: 'v1_traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_traces_stream': { name: 'v1_traces_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_traces'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type': { name: 'v1_transfer_forwards_type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfer_forwards_type_stream': { name: 'v1_transfer_forwards_type_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfer_forwards_type'; ofType: null; }; }; }; } }; 'v1_transfers': { name: 'v1_transfers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_transfers_stream': { name: 'v1_transfers_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_transfers'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations': { name: 'v1_ucs1_configurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_configurations_stream': { name: 'v1_ucs1_configurations_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_configurations'; ofType: null; }; }; }; } }; 'v1_ucs1_paths': { name: 'v1_ucs1_paths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; 'v1_ucs1_paths_stream': { name: 'v1_ucs1_paths_stream'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ucs1_paths'; ofType: null; }; }; }; } }; }; }; 'timestamptz': unknown; 'timestamptz_comparison_exp': { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; isOneOf: false; inputFields: [{ name: '_eq'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_gt'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_gte'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; }; }; defaultValue: null }, { name: '_is_null'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: '_lt'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_lte'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_neq'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: '_nin'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; }; }; defaultValue: null }]; }; 'v1_acknowledge_packet': { kind: 'OBJECT'; name: 'v1_acknowledge_packet'; fields: { 'block_hash': { name: 'block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_chains'; ofType: null; } }; 'event_index': { name: 'event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'sequence': { name: 'sequence'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'transaction_event_index': { name: 'transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'transaction_hash': { name: 'transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction_index': { name: 'transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; @@ -274,6 +274,12 @@ export type introspection_types = { 'v1_ibc_union_health_check_select_column': { name: 'v1_ibc_union_health_check_select_column'; enumValues: 'result' | 'test'; }; 'v1_ibc_union_health_check_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; 'v1_ibc_union_health_check_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_health_check_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'result'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'test'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_index_status': { kind: 'OBJECT'; name: 'v1_ibc_union_index_status'; fields: { 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'chain_id': { name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display_name': { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'height': { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'tip_age_seconds': { name: 'tip_age_seconds'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; }; }; + 'v1_ibc_union_index_status_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_index_status_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_index_status_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_index_status_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_index_status_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_index_status_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_index_status_order_by'; isOneOf: false; inputFields: [{ name: 'chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_index_status_select_column': { name: 'v1_ibc_union_index_status_select_column'; enumValues: 'chain_id' | 'display_name' | 'height' | 'status' | 'timestamp' | 'tip_age_seconds'; }; + 'v1_ibc_union_index_status_stream_cursor_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_index_status_stream_cursor_input'; isOneOf: false; inputFields: [{ name: 'initial_value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_index_status_stream_cursor_value_input'; ofType: null; }; }; defaultValue: null }, { name: 'ordering'; type: { kind: 'ENUM'; name: 'cursor_ordering'; ofType: null; }; defaultValue: null }]; }; + 'v1_ibc_union_index_status_stream_cursor_value_input': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_index_status_stream_cursor_value_input'; isOneOf: false; inputFields: [{ name: 'chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'display_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; }; defaultValue: null }, { name: 'tip_age_seconds'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; }; defaultValue: null }]; }; 'v1_ibc_union_packets': { kind: 'OBJECT'; name: 'v1_ibc_union_packets'; fields: { 'acknowledgement': { name: 'acknowledgement'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'acknowledgement_decoded': { name: 'acknowledgement_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'channel_version': { name: 'channel_version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data_decoded': { name: 'data_decoded'; type: { kind: 'SCALAR'; name: 'jsonb'; ofType: null; } }; 'destination_chain': { name: 'destination_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'destination_chain_id': { name: 'destination_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'destination_channel_id': { name: 'destination_channel_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_connection_id': { name: 'destination_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'destination_port_id': { name: 'destination_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'fungible_asset_order': { name: 'fungible_asset_order'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_fungible_asset_orders'; ofType: null; } }; 'packet_ack_block_hash': { name: 'packet_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_event_index': { name: 'packet_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_height': { name: 'packet_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_ack_maker': { name: 'packet_ack_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_timestamp': { name: 'packet_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_ack_transaction_event_index': { name: 'packet_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_ack_transaction_hash': { name: 'packet_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_ack_transaction_index': { name: 'packet_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_block_hash': { name: 'packet_recv_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_event_index': { name: 'packet_recv_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_height': { name: 'packet_recv_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_recv_maker': { name: 'packet_recv_maker'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_maker_msg': { name: 'packet_recv_maker_msg'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_timestamp': { name: 'packet_recv_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_recv_transaction_event_index': { name: 'packet_recv_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_recv_transaction_hash': { name: 'packet_recv_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_recv_transaction_index': { name: 'packet_recv_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_block_hash': { name: 'packet_send_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_event_index': { name: 'packet_send_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_height': { name: 'packet_send_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'packet_send_timestamp': { name: 'packet_send_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'packet_send_transaction_event_index': { name: 'packet_send_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'packet_send_transaction_hash': { name: 'packet_send_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'packet_send_transaction_index': { name: 'packet_send_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_chain': { name: 'source_chain'; type: { kind: 'OBJECT'; name: 'v1_ibc_union_chains'; ofType: null; } }; 'source_chain_id': { name: 'source_chain_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'source_channel_id': { name: 'source_channel_id'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'source_connection_id': { name: 'source_connection_id'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'source_port_id': { name: 'source_port_id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'status': { name: 'status'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timeout_height': { name: 'timeout_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'timeout_timestamp': { name: 'timeout_timestamp'; type: { kind: 'SCALAR'; name: 'numeric'; ofType: null; } }; 'traces': { name: 'traces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'v1_ibc_union_traces'; ofType: null; }; }; }; } }; 'write_ack_block_hash': { name: 'write_ack_block_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_event_index': { name: 'write_ack_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_height': { name: 'write_ack_height'; type: { kind: 'SCALAR'; name: 'bigint'; ofType: null; } }; 'write_ack_timestamp': { name: 'write_ack_timestamp'; type: { kind: 'SCALAR'; name: 'timestamptz'; ofType: null; } }; 'write_ack_transaction_event_index': { name: 'write_ack_transaction_event_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'write_ack_transaction_hash': { name: 'write_ack_transaction_hash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'write_ack_transaction_index': { name: 'write_ack_transaction_index'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; 'v1_ibc_union_packets_bool_exp': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; isOneOf: false; inputFields: [{ name: '_and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: '_not'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; defaultValue: null }, { name: '_or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_bool_exp'; ofType: null; }; }; }; defaultValue: null }, { name: 'acknowledgement'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'INPUT_OBJECT'; name: 'jsonb_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'fungible_asset_order'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'numeric_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'traces'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_bool_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'INPUT_OBJECT'; name: 'bigint_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'timestamptz_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'INPUT_OBJECT'; name: 'String_comparison_exp'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'INPUT_OBJECT'; name: 'Int_comparison_exp'; ofType: null; }; defaultValue: null }]; }; 'v1_ibc_union_packets_order_by': { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_packets_order_by'; isOneOf: false; inputFields: [{ name: 'acknowledgement'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'acknowledgement_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'channel_version'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'data_decoded'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'destination_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'fungible_asset_order'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_fungible_asset_orders_order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_maker_msg'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_recv_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'packet_send_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_chains_order_by'; ofType: null; }; defaultValue: null }, { name: 'source_chain_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_channel_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_connection_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'source_port_id'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'timeout_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'traces_aggregate'; type: { kind: 'INPUT_OBJECT'; name: 'v1_ibc_union_traces_aggregate_order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_block_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_height'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_timestamp'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_event_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_hash'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }, { name: 'write_ack_transaction_index'; type: { kind: 'ENUM'; name: 'order_by'; ofType: null; }; defaultValue: null }]; }; diff --git a/app/src/lib/graphql/queries/index-status.ts b/app/src/lib/graphql/queries/index-status.ts index 62f4a69406..602b338378 100644 --- a/app/src/lib/graphql/queries/index-status.ts +++ b/app/src/lib/graphql/queries/index-status.ts @@ -2,7 +2,7 @@ import { graphql } from "gql.tada" export const indexStatusQuery = graphql(/* GraphQL */ ` query IndexStatusQuery { - chains: v1_ibc_union_chains(where: {enabled:{_eq:true}}) { + chains: v1_ibc_union_chains { chain_id } statuses: v1_ibc_union_index_status(order_by: {status: desc}) {