You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
296 B
6 lines
296 B
// @flow
|
|
import type { Currency } from '@ledgerhq/live-common/lib/types'
|
|
import { LEDGER_REST_API_BASE } from 'config/constants'
|
|
|
|
export const blockchainBaseURL = ({ ledgerExplorerId }: Currency): ?string =>
|
|
ledgerExplorerId ? `${LEDGER_REST_API_BASE}/blockchain/v2/${ledgerExplorerId}` : null
|
|
|