@@ -10,7 +10,6 @@ import { AccessTokensService } from './services/AccessTokensService';
1010import { AccountService } from './services/AccountService' ;
1111import { AccountFactoryService } from './services/AccountFactoryService' ;
1212import { BackendWalletService } from './services/BackendWalletService' ;
13- import { BalanceSubscriptionsService } from './services/BalanceSubscriptionsService' ;
1413import { ChainService } from './services/ChainService' ;
1514import { ConfigurationService } from './services/ConfigurationService' ;
1615import { ContractService } from './services/ContractService' ;
@@ -32,6 +31,7 @@ import { PermissionsService } from './services/PermissionsService';
3231import { RelayerService } from './services/RelayerService' ;
3332import { TransactionService } from './services/TransactionService' ;
3433import { WalletCredentialsService } from './services/WalletCredentialsService' ;
34+ import { WalletSubscriptionsService } from './services/WalletSubscriptionsService' ;
3535import { WebhooksService } from './services/WebhooksService' ;
3636
3737type HttpRequestConstructor = new ( config : OpenAPIConfig ) => BaseHttpRequest ;
@@ -42,7 +42,6 @@ class EngineLogic {
4242 public readonly account : AccountService ;
4343 public readonly accountFactory : AccountFactoryService ;
4444 public readonly backendWallet : BackendWalletService ;
45- public readonly balanceSubscriptions : BalanceSubscriptionsService ;
4645 public readonly chain : ChainService ;
4746 public readonly configuration : ConfigurationService ;
4847 public readonly contract : ContractService ;
@@ -64,6 +63,7 @@ class EngineLogic {
6463 public readonly relayer : RelayerService ;
6564 public readonly transaction : TransactionService ;
6665 public readonly walletCredentials : WalletCredentialsService ;
66+ public readonly walletSubscriptions : WalletSubscriptionsService ;
6767 public readonly webhooks : WebhooksService ;
6868
6969 public readonly request : BaseHttpRequest ;
@@ -85,7 +85,6 @@ class EngineLogic {
8585 this . account = new AccountService ( this . request ) ;
8686 this . accountFactory = new AccountFactoryService ( this . request ) ;
8787 this . backendWallet = new BackendWalletService ( this . request ) ;
88- this . balanceSubscriptions = new BalanceSubscriptionsService ( this . request ) ;
8988 this . chain = new ChainService ( this . request ) ;
9089 this . configuration = new ConfigurationService ( this . request ) ;
9190 this . contract = new ContractService ( this . request ) ;
@@ -107,6 +106,7 @@ class EngineLogic {
107106 this . relayer = new RelayerService ( this . request ) ;
108107 this . transaction = new TransactionService ( this . request ) ;
109108 this . walletCredentials = new WalletCredentialsService ( this . request ) ;
109+ this . walletSubscriptions = new WalletSubscriptionsService ( this . request ) ;
110110 this . webhooks = new WebhooksService ( this . request ) ;
111111 }
112112}
0 commit comments