File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,20 +41,24 @@ export class MWPClient {
4141 private readonly wallet : Wallet ;
4242 private readonly keyManager : KeyManager ;
4343 private readonly storage : ScopedAsyncStorage ;
44- private readonly domainVerification ?: DomainVerification ;
4544
4645 private accounts : AddressString [ ] ;
4746 private chain : Chain ;
4847
49- private constructor ( { metadata, wallet, domainVerification } : MWPClientOptions ) {
48+ private constructor ( {
49+ metadata,
50+ wallet,
51+ domainVerification : _domainVerification ,
52+ } : MWPClientOptions ) {
5053 this . metadata = {
5154 ...metadata ,
5255 name : metadata . name || 'Dapp' ,
5356 customScheme : appendMWPResponsePath ( metadata . customScheme ) ,
5457 } ;
5558
5659 this . wallet = wallet ;
57- this . domainVerification = domainVerification ;
60+ // Domain verification will be implemented in a future update
61+ // this.domainVerification = domainVerification;
5862 this . keyManager = new KeyManager ( { wallet : this . wallet } ) ;
5963 this . storage = new ScopedAsyncStorage ( this . wallet . name , 'MWPClient' ) ;
6064
You can’t perform that action at this time.
0 commit comments