Skip to content

Commit

Permalink
Finish updating drain types
Browse files Browse the repository at this point in the history
  • Loading branch information
area authored and jakubcolony committed Jun 27, 2024
1 parent cce43f5 commit f618ad0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/colony-cdapp-dev-env-mocking
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM colony-cdapp-dev-env/base:latest

ENV MOCKING_HASH=f9ff602d7f75477c8698e5aed507afe1f20be428
ENV MOCKING_HASH=e0fd88324aab99deca77b35abef52a314479e2e0


# Declare volumes to set up metadata
Expand Down
10 changes: 9 additions & 1 deletion src/graphql/generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9164,7 +9164,7 @@ export type BridgeXyzQueryQueryVariables = Exact<{
}>;


export type BridgeXyzQueryQuery = { __typename?: 'Query', bridgeXYZQuery?: { __typename?: 'BridgeXYZQueryReturn', success?: boolean | null, transactionFee?: string | null, drains?: Array<{ __typename?: 'BridgeXYZDrain', id?: string | null } | null> | null } | null };
export type BridgeXyzQueryQuery = { __typename?: 'Query', bridgeXYZQuery?: { __typename?: 'BridgeXYZQueryReturn', success?: boolean | null, transactionFee?: string | null, drains?: Array<{ __typename?: 'BridgeXYZDrain', id?: string | null, amount?: string | null, state?: string | null, created_at?: string | null, deposit_tx_hash?: string | null, receipt?: { __typename?: 'DrainReceipt', destination_currency?: string | null, url?: string | null } | null } | null> | null } | null };

export type GetFullColonyByAddressQueryVariables = Exact<{
address: Scalars['ID'];
Expand Down Expand Up @@ -11685,6 +11685,14 @@ export const BridgeXyzQueryDocument = gql`
bridgeXYZQuery(input: $input) {
drains {
id
amount
state
created_at
deposit_tx_hash
receipt {
destination_currency
url
}
}
success
transactionFee
Expand Down
8 changes: 8 additions & 0 deletions src/graphql/queries/bridgeXYZ.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ query BridgeXYZQuery($input: BridgeXYZQueryInput!) {
bridgeXYZQuery(input: $input) {
drains {
id
amount
state
created_at
deposit_tx_hash
receipt {
destination_currency
url
}
}
success
transactionFee
Expand Down

0 comments on commit f618ad0

Please sign in to comment.