export class Token { constructor(ownerPublicKey) { this.ownerPublicKey = ownerPublicKey; } transfer(newOwnerPublicKey) { // TODO: Current owner must sign this request this.ownerPublicKey = newOwnerPublicKey; } }