-
-
Notifications
You must be signed in to change notification settings - Fork 140
/
wallet-routes.yml
79 lines (76 loc) · 1.89 KB
/
wallet-routes.yml
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
paths:
/wallet:
get:
tags:
- 'wallet'
summary: 'Get list of all added wallets and chains'
operationId: 'get'
produces:
- 'application/json'
parameters:
- in: 'body'
name: 'body'
required: true
schema:
$ref: '#/definitions/GetWalletRequest'
responses:
'200':
description: 'Wallet list'
schema:
$ref: '#/definitions/GetWalletResponse'
/wallet/add:
post:
tags:
- 'wallet'
summary: 'Add wallet to gateway'
operationId: 'add'
consumes:
- 'application/json'
parameters:
- in: 'body'
name: 'body'
required: true
schema:
$ref: '#/definitions/AddWalletRequest'
responses:
'200':
description: 'Added wallet address'
schema:
$ref: '#/definitions/AddWalletResponse'
/wallet/remove:
delete:
tags:
- 'wallet'
summary: 'Removes a wallet from gateway'
operationId: 'delete'
consumes:
- 'application/json'
parameters:
- in: 'body'
name: 'body'
required: true
schema:
$ref: '#/definitions/RemoveWalletRequest'
responses: '200'
/wallet/sign:
get:
tags:
- 'wallet'
summary: 'Sign a message using the private key associated with the supplied public key address'
operationId: 'get'
consumes:
- 'application/json'
produces:
- 'application/json'
parameters:
- in: 'body'
name: 'body'
description: 'Request body.'
required: true
schema:
$ref: '#/definitions/GetWalletSignRequest'
responses:
'200':
description: 'Successful response.'
schema:
$ref: '#/definitions/GetWalletSignResponse'