Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
alexandre-abrioux committed Feb 20, 2024
commit fe52066457a88cd5f2c272dc17e03cf17fb73930
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { InvalidPaymentAddressError, UnsupportedNetworkError } from './address-b

import ReferenceBasedPaymentNetwork from './reference-based';
import { ICurrencyManager } from '@requestnetwork/currency';
import * as chai from 'chai';

/**
* Implementation of the payment network to pay in ETH based on input data.
Expand Down
3 changes: 1 addition & 2 deletions packages/currency/src/iso4217.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
Data last updated 2018-08-29
*/

import { ISO4217CurrencyInput, NativeCurrencyInput } from './types';
import { nativeCurrencies } from './native';
import { ISO4217CurrencyInput } from './types';
import { RequestLogicTypes } from '@requestnetwork/types';

const iso4217Currencies = [
Expand Down
2 changes: 1 addition & 1 deletion packages/currency/src/native.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { RequestLogicTypes } from '@requestnetwork/types';
import { NativeCurrency, NativeCurrencyInput, TokenMap } from './types';
import { NativeCurrencyInput, TokenMap } from './types';

export const nativeCurrencies: Record<
RequestLogicTypes.CURRENCY.BTC | RequestLogicTypes.CURRENCY.ETH,
Expand Down