Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function networkAdapter({ provider }: NetworkParams): Network {
const httpClient = createHttpClient({ provider })
const getBalances = createGetBalances(httpClient)
const getTrytes = createGetTrytes(httpClient)
const getLatestInclusion = createGetLatestInclusion(httpClient)
return {
getTrytes: hashes => (hashes.length > 0 ? getTrytes(hashes) : Promise.resolve([])),
getBalance: (address): Promise => getBalances([address], 100).then(({ balances }) => balances[0]),
getBalances,
getConsistency: createCheckConsistency(httpClient),
getLatestInclusion: hashes => (hashes.length > 0 ? getLatestInclusion(hashes) : Promise.resolve([])),
getBundlesFromAddresses: createGetBundlesFromAddresses(httpClient, 'lib'),
findTransactions: createFindTransactions(httpClient),
sendTrytes: createSendTrytes(httpClient),
setSettings: httpClient.setSettings,
getTransactionsToApprove: createGetTransactionsToApprove(httpClient),
attachToTangle: createAttachToTangle(httpClient),
storeAndBroadcast: createStoreAndBroadcast(httpClient),
wereAddressesSpentFrom: createWereAddressesSpentFrom(httpClient, 'lib'),
isAddressUsed: createIsAddressUsed(httpClient),
}
}