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
/
lib
/
module
/
validators
/
blockchain-code.js
6 lines
•
237 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ isStringLiteral }
from
'@yoroi/common'
;
const
supportedBlockchainCodes = [
'ADA'
];
export
function
isBlockchainCode
(
value
) {
return
isStringLiteral
(supportedBlockchainCodes, value); }
//# sourceMappingURL=blockchain-code.js.map