@yoroi/portfolio
Version:
The Portfolio package of Yoroi SDK
44 lines (43 loc) • 1.29 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.amountMocks = void 0;
var _immer = require("immer");
var _tokenInfo = require("./token-info.mocks");
const amounts1 = {
[_tokenInfo.tokenInfoMocks.primaryETH.id]: {
info: _tokenInfo.tokenInfoMocks.primaryETH,
quantity: 42_000_000_000_000_000_000n
},
[_tokenInfo.tokenInfoMocks.nftCryptoKitty.id]: {
info: _tokenInfo.tokenInfoMocks.nftCryptoKitty,
quantity: 1n
},
[_tokenInfo.tokenInfoMocks.rnftWhatever.id]: {
info: _tokenInfo.tokenInfoMocks.rnftWhatever,
quantity: 1n
}
};
const amounts = {
primaryETH: {
info: _tokenInfo.tokenInfoMocks.primaryETH,
quantity: 42_000_000_000_000_000_000n
},
nftCryptoKitty: {
info: _tokenInfo.tokenInfoMocks.nftCryptoKitty,
quantity: 1n
},
rnftWhatever: {
info: _tokenInfo.tokenInfoMocks.rnftWhatever,
quantity: 1n
}
};
const entries1 = [[_tokenInfo.tokenInfoMocks.primaryETH.id, amounts.primaryETH], [_tokenInfo.tokenInfoMocks.nftCryptoKitty.id, amounts.nftCryptoKitty], [_tokenInfo.tokenInfoMocks.rnftWhatever.id, amounts.rnftWhatever]];
const amountMocks = (0, _immer.freeze)({
amounts1,
amounts,
entries1
});
exports.amountMocks = amountMocks;
//# sourceMappingURL=amount.mocks.js.map