pleroma/app/soapbox/features/crypto_donate/utils/coin_db.ts
2022-03-25 16:39:26 -05:00

7 lines
221 B
TypeScript

import { fromJS } from 'immutable';
import manifestMap from './manifest_map';
// All this does is converts the result from manifest_map.js into an ImmutableMap
const coinDB = fromJS(manifestMap);
export default coinDB;