I was reading the 04.token-contract(https://github.com/near-examples/workshop--exploring-assemblyscript-contracts/blob/master/assembly/A.sample-projects/04.token-contract/assembly/index.ts).
What's the concept difference between the exported functions:
export function transfer(to: string, tokens: u64): boolean
and
export function transferFrom(from: string, to: string, tokens: u64): boolean
?
And please, would it be okay to include a little documentation for this smart contract?
Thank you!