@ledgerhq/coin-aptos
Version:
Ledger Aptos Coin integration
13 lines • 478 B
JavaScript
import { getEnv } from "@ledgerhq/live-env";
export * from "./IconGenerator";
export function endpointByCurrencyId(currencyId) {
const endpoints = {
aptos: getEnv("APTOS_API_ENDPOINT"),
aptos_testnet: getEnv("APTOS_TESTNET_API_ENDPOINT"),
};
if (currencyId in endpoints) {
return endpoints[currencyId];
}
throw Error(`unexpected currency id format <${currencyId}>, should be like aptos[_testnet]`);
}
//# sourceMappingURL=index.js.map