(keyringId)
| 12 | |
| 13 | export class KeyringSync { |
| 14 | constructor(keyringId) { |
| 15 | this.keyringId = keyringId; |
| 16 | this.SYNC_DATA = 'sync_data'; |
| 17 | this.muted = false; |
| 18 | this.initialized = this.init(); |
| 19 | } |
| 20 | |
| 21 | async init() { |
| 22 | this.data = await getKeyringAttr(this.keyringId, this.SYNC_DATA); |