UNPKG
@yoroi/exchange
Version:
latest (3.0.0)
3.0.0
2.0.1
The Exchange package of Yoroi SDK
github.com/Emurgo/yoroi/packages/exchange
@yoroi/exchange
/
src
/
adapters
/
base-url-adapter.ts
9 lines
(8 loc)
•
186 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
const
baseUrlAdapter
= (
baseUrl
:
string
,
providerId
:
string
) => {
switch
(providerId) {
case
'encryptus'
:
return
`
${baseUrl}
/`
default
:
return
baseUrl } }