January 2020
Intermediate to advanced
530 pages
11h 11m
English
We need to create a USD currency token that will be used by us, simply for accounting purposes. In an enterprise application, this token will act as a dummy asset, mapped one to one to the actual funds owned by the bank. In our system, we'll use it to represent the funds allocated by the bank to the LC escrow account and track the movement of funds across the banking system.
Let's start writing our ERC20 smart contract, which will be used to issue and distribute this token, by following these steps:
pragma solidity ^0.5.2;
Read now
Unlock full access