-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbalances.ts
179 lines (167 loc) · 4.39 KB
/
balances.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
import { user } from '@roll-network/api'
import { printTable } from 'console-table-printer'
import inquirer from 'inquirer'
import { InteractionType } from '@roll-network/auth-sdk'
import config, { platformUserConfig } from './config.js'
import logger from './logger.js'
import { generateClientPool } from './utils.js'
export const getUserBalances = async () => {
try {
const { clientPool } = await generateClientPool(config)
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userId',
message: 'User ID',
},
])
const balances = await user.getUserBalances(
clientPool.getClient(InteractionType.ClientCredentials).call,
answers,
)
if (!balances || balances.length === 0) {
logger.info('User has no balances')
return
}
printTable(
balances?.map((balance) => ({
tokenId: balance.token.uuid,
symbol: balance.token.symbol,
balance: balance.amount,
})),
)
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}
export const getUserTokenBalance = async () => {
try {
const { clientPool } = await generateClientPool(config)
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userId',
message: 'User ID',
},
{
type: 'input',
name: 'tokenId',
message: 'Token ID',
},
])
const balance = await user.getUserTokenBalance(
clientPool.getClient(InteractionType.ClientCredentials).call,
answers,
)
printTable([
{
tokenId: balance.token.uuid,
symbol: balance.token.symbol,
balance: balance.amount,
},
])
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}
export const hasBalance = async () => {
try {
const { clientPool } = await generateClientPool(config)
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userId',
message: 'User ID',
},
{
type: 'input',
name: 'tokenId',
message: 'Token ID',
},
{
type: 'input',
name: 'amount',
message: 'Amount',
},
])
const response = await user.hasBalance(
clientPool.getClient(InteractionType.ClientCredentials).call,
answers,
)
if (response.hasbalance) {
logger.info('User has balance')
} else {
logger.info('User does not have balance')
}
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}
export const getPlatformUserTokenBalance = async () => {
try {
const { clientPool } = await generateClientPool(platformUserConfig)
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userType',
message: 'User Type (discord, telegram)',
},
{
type: 'input',
name: 'platformUserId',
message: 'User ID from the external platform',
},
{
type: 'input',
name: 'tokenId',
message: 'Token UUID',
},
])
const balance = await user.getPlatformUserBalance(
clientPool.getClient(InteractionType.ClientCredentials).call,
{
userType: answers.userType,
platformUserId: answers.platformUserId,
tokenId: answers.tokenId,
},
)
const { token, ...rest } = balance
printTable([{ tokenSymbol: token.symbol, ...rest }])
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}
export const getPlatformUserTokenBalances = async () => {
try {
const { clientPool } = await generateClientPool(platformUserConfig)
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userType',
message: 'User Type (discord, telegram)',
},
{
type: 'input',
name: 'platformUserId',
message: 'User ID from the external platform',
},
])
const balances = await user.getPlatformUserBalances(
clientPool.getClient(InteractionType.ClientCredentials).call,
{
userType: answers.userType,
platformUserId: answers.platformUserId,
},
)
printTable(
balances?.map((balance) => ({
tokenId: balance.token.uuid,
symbol: balance.token.symbol,
balance: balance.amount,
updatedAt: balance.updatedAt,
})),
)
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}