dao-governance-framework/forum-network/public/classes/finance.js

11 lines
233 B
JavaScript
Raw Normal View History

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