@yoroi/portfolio
Version:
The Portfolio package of Yoroi SDK
37 lines • 1.01 kB
JavaScript
import { freeze } from 'immer';
import { tokenInfoMocks } from './token-info.mocks';
const amounts1 = {
[tokenInfoMocks.primaryETH.id]: {
info: tokenInfoMocks.primaryETH,
quantity: 42_000_000_000_000_000_000n
},
[tokenInfoMocks.nftCryptoKitty.id]: {
info: tokenInfoMocks.nftCryptoKitty,
quantity: 1n
},
[tokenInfoMocks.rnftWhatever.id]: {
info: tokenInfoMocks.rnftWhatever,
quantity: 1n
}
};
const amounts = {
primaryETH: {
info: tokenInfoMocks.primaryETH,
quantity: 42_000_000_000_000_000_000n
},
nftCryptoKitty: {
info: tokenInfoMocks.nftCryptoKitty,
quantity: 1n
},
rnftWhatever: {
info: tokenInfoMocks.rnftWhatever,
quantity: 1n
}
};
const entries1 = [[tokenInfoMocks.primaryETH.id, amounts.primaryETH], [tokenInfoMocks.nftCryptoKitty.id, amounts.nftCryptoKitty], [tokenInfoMocks.rnftWhatever.id, amounts.rnftWhatever]];
export const amountMocks = freeze({
amounts1,
amounts,
entries1
});
//# sourceMappingURL=amount.mocks.js.map