Web3WalletApi constructor

Web3WalletApi(
  1. SubstrateService service
)

Implementation

Web3WalletApi(this.service) {
  keyring = ApiKeyring(this, service.keyring);
  setting = ApiSetting(this, service.setting);
  account = ApiAccount(this, service.account);
  tx = ApiTx(this, service.tx);

  staking = ApiStaking(this, service.staking);
  gov = ApiGov(this, service.gov);
  parachain = ApiParachain(this, service.parachain);
  assets = ApiAssets(this, service.assets);
  uos = ApiUOS(this, service.uos);
  recovery = ApiRecovery(this, service.recovery);

  walletConnect = ApiWalletConnect(this, service.walletConnect);
}