@reown/appkit-controllers
Version:
The full stack toolkit to build onchain app UX.
12 lines • 385 B
JavaScript
export class Account {
constructor({ address, caipAddress, type, namespace, metadata }) {
this.address = address;
this.namespace = namespace;
this.caipAddress = caipAddress;
this.type = type;
this.metadata = metadata;
// Initialize additional fields
this.addressLabels = new Map();
}
}
//# sourceMappingURL=Account.js.map