-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathpeer.server.ts
213 lines (199 loc) · 4.48 KB
/
peer.server.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
import { gql } from '@apollo/client'
import type {
DepositPeerLiquidityInput,
DepositPeerLiquidityMutation,
DepositPeerLiquidityMutationVariables,
CreatePeerInput,
CreatePeerLiquidityWithdrawalInput,
CreatePeerMutation,
CreatePeerMutationVariables,
DeletePeerMutation,
DeletePeerMutationVariables,
GetPeerQuery,
GetPeerQueryVariables,
ListPeersQuery,
ListPeersQueryVariables,
MutationDeletePeerArgs,
QueryPeerArgs,
QueryPeersArgs,
UpdatePeerInput,
UpdatePeerMutation,
UpdatePeerMutationVariables,
WithdrawPeerLiquidity,
WithdrawPeerLiquidityVariables
} from '~/generated/graphql'
import { apolloClient } from '../apollo.server'
export const getPeer = async (args: QueryPeerArgs) => {
const response = await apolloClient.query<
GetPeerQuery,
GetPeerQueryVariables
>({
query: gql`
query GetPeerQuery($id: String!) {
peer(id: $id) {
id
name
staticIlpAddress
maxPacketAmount
liquidity
createdAt
asset {
id
code
scale
withdrawalThreshold
}
http {
outgoing {
endpoint
authToken
}
}
incomingTokens
}
}
`,
variables: args
})
return response.data.peer
}
export const listPeers = async (args: QueryPeersArgs) => {
const response = await apolloClient.query<
ListPeersQuery,
ListPeersQueryVariables
>({
query: gql`
query ListPeersQuery(
$after: String
$before: String
$first: Int
$last: Int
) {
peers(after: $after, before: $before, first: $first, last: $last) {
edges {
node {
id
name
staticIlpAddress
http {
outgoing {
endpoint
}
}
asset {
code
scale
}
}
}
pageInfo {
startCursor
endCursor
hasNextPage
hasPreviousPage
}
}
}
`,
variables: args
})
return response.data.peers
}
export const createPeer = async (args: CreatePeerInput) => {
const response = await apolloClient.mutate<
CreatePeerMutation,
CreatePeerMutationVariables
>({
mutation: gql`
mutation CreatePeerMutation($input: CreatePeerInput!) {
createPeer(input: $input) {
peer {
id
}
}
}
`,
variables: {
input: args
}
})
return response.data?.createPeer
}
export const updatePeer = async (args: UpdatePeerInput) => {
const response = await apolloClient.mutate<
UpdatePeerMutation,
UpdatePeerMutationVariables
>({
mutation: gql`
mutation UpdatePeerMutation($input: UpdatePeerInput!) {
updatePeer(input: $input) {
peer {
id
}
}
}
`,
variables: {
input: args
}
})
return response.data?.updatePeer
}
export const deletePeer = async (args: MutationDeletePeerArgs) => {
const response = await apolloClient.mutate<
DeletePeerMutation,
DeletePeerMutationVariables
>({
mutation: gql`
mutation DeletePeerMutation($input: DeletePeerInput!) {
deletePeer(input: $input) {
success
}
}
`,
variables: args
})
return response.data?.deletePeer
}
export const depositPeerLiquidity = async (args: DepositPeerLiquidityInput) => {
const response = await apolloClient.mutate<
DepositPeerLiquidityMutation,
DepositPeerLiquidityMutationVariables
>({
mutation: gql`
mutation DepositPeerLiquidityMutation(
$input: DepositPeerLiquidityInput!
) {
depositPeerLiquidity(input: $input) {
success
}
}
`,
variables: {
input: args
}
})
return response.data?.depositPeerLiquidity
}
export const withdrawPeerLiquidity = async (
args: CreatePeerLiquidityWithdrawalInput
) => {
const response = await apolloClient.mutate<
WithdrawPeerLiquidity,
WithdrawPeerLiquidityVariables
>({
mutation: gql`
mutation WithdrawPeerLiquidity(
$input: CreatePeerLiquidityWithdrawalInput!
) {
createPeerLiquidityWithdrawal(input: $input) {
success
}
}
`,
variables: {
input: args
}
})
return response.data?.createPeerLiquidityWithdrawal
}