11 lines
233 B
JavaScript
11 lines
233 B
JavaScript
|
export class Token {
|
||
|
constructor(ownerPublicKey) {
|
||
|
this.ownerPublicKey = ownerPublicKey;
|
||
|
}
|
||
|
|
||
|
transfer(newOwnerPublicKey) {
|
||
|
// TODO: Current owner must sign this request
|
||
|
this.ownerPublicKey = newOwnerPublicKey;
|
||
|
}
|
||
|
}
|