@@ -10,7 +10,6 @@ import { AccessTokensService } from './services/AccessTokensService';
10
10
import { AccountService } from './services/AccountService' ;
11
11
import { AccountFactoryService } from './services/AccountFactoryService' ;
12
12
import { BackendWalletService } from './services/BackendWalletService' ;
13
- import { BalanceSubscriptionsService } from './services/BalanceSubscriptionsService' ;
14
13
import { ChainService } from './services/ChainService' ;
15
14
import { ConfigurationService } from './services/ConfigurationService' ;
16
15
import { ContractService } from './services/ContractService' ;
@@ -32,6 +31,7 @@ import { PermissionsService } from './services/PermissionsService';
32
31
import { RelayerService } from './services/RelayerService' ;
33
32
import { TransactionService } from './services/TransactionService' ;
34
33
import { WalletCredentialsService } from './services/WalletCredentialsService' ;
34
+ import { WalletSubscriptionsService } from './services/WalletSubscriptionsService' ;
35
35
import { WebhooksService } from './services/WebhooksService' ;
36
36
37
37
type HttpRequestConstructor = new ( config : OpenAPIConfig ) => BaseHttpRequest ;
@@ -42,7 +42,6 @@ class EngineLogic {
42
42
public readonly account : AccountService ;
43
43
public readonly accountFactory : AccountFactoryService ;
44
44
public readonly backendWallet : BackendWalletService ;
45
- public readonly balanceSubscriptions : BalanceSubscriptionsService ;
46
45
public readonly chain : ChainService ;
47
46
public readonly configuration : ConfigurationService ;
48
47
public readonly contract : ContractService ;
@@ -64,6 +63,7 @@ class EngineLogic {
64
63
public readonly relayer : RelayerService ;
65
64
public readonly transaction : TransactionService ;
66
65
public readonly walletCredentials : WalletCredentialsService ;
66
+ public readonly walletSubscriptions : WalletSubscriptionsService ;
67
67
public readonly webhooks : WebhooksService ;
68
68
69
69
public readonly request : BaseHttpRequest ;
@@ -85,7 +85,6 @@ class EngineLogic {
85
85
this . account = new AccountService ( this . request ) ;
86
86
this . accountFactory = new AccountFactoryService ( this . request ) ;
87
87
this . backendWallet = new BackendWalletService ( this . request ) ;
88
- this . balanceSubscriptions = new BalanceSubscriptionsService ( this . request ) ;
89
88
this . chain = new ChainService ( this . request ) ;
90
89
this . configuration = new ConfigurationService ( this . request ) ;
91
90
this . contract = new ContractService ( this . request ) ;
@@ -107,6 +106,7 @@ class EngineLogic {
107
106
this . relayer = new RelayerService ( this . request ) ;
108
107
this . transaction = new TransactionService ( this . request ) ;
109
108
this . walletCredentials = new WalletCredentialsService ( this . request ) ;
109
+ this . walletSubscriptions = new WalletSubscriptionsService ( this . request ) ;
110
110
this . webhooks = new WebhooksService ( this . request ) ;
111
111
}
112
112
}
0 commit comments