Skip to content

Commit

Permalink
chore: add auth header to endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
amitojsingh366 committed Mar 5, 2022
1 parent e187e78 commit 1b6cd45
Showing 1 changed file with 110 additions and 11 deletions.
121 changes: 110 additions & 11 deletions electron/api/dist/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/ethGetAddress": {
Expand All @@ -459,7 +468,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/thorchainGetAddress": {
Expand All @@ -479,7 +497,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/osmosisGetAddress": {
Expand All @@ -499,7 +526,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/binanceGetAddress": {
Expand All @@ -519,7 +555,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/cosmosGetAddress": {
Expand All @@ -539,7 +584,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/btcSignTx": {
Expand All @@ -559,7 +613,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/thorchainSignTx": {
Expand All @@ -579,7 +642,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/cosmosSignTx": {
Expand All @@ -599,7 +671,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/osmosisSignTx": {
Expand All @@ -619,7 +700,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/ethSignTx": {
Expand All @@ -639,7 +729,16 @@
"KeepKey device API"
],
"security": [],
"parameters": []
"parameters": [
{
"in": "header",
"name": "Authorization",
"required": true,
"schema": {
"type": "string"
}
}
]
}
},
"/exchange/device": {
Expand Down

0 comments on commit 1b6cd45

Please sign in to comment.