Zip and binary map
let closure nft_price_to_eth = (
(meta, priceETH): (NFTMeta, u256s),
exchange_rate: u256s
) => {
let converted_price = price * exchange_rate;
(meta, converted_price)
}export collection nfts_priced_in_eth = @input("PRICE_STREAM")
.zip("EXCHANGE_RATE_STREAM")
.map(nft_price_to_eth)Last updated