January 2020
Intermediate to advanced
530 pages
11h 11m
English
We need to import the asset interfaces that our app will use to interact with the assets deployed in the Stellar network, as follows:
import USD from './USD';import GBP from './GBP';import EUR from './EUR';const assets = [ USD, GBP, EUR];export default assets;
//USD.jsexport default { balance: 0, code: "USD", issuer: "GBUM3XRJKUVEQA4UF63CUCS3P72C5AZTRYI2VKELS7T7DVCCLV3DODNE", ...Read now
Unlock full access