PolkawalletApi constructor

PolkawalletApi(
  1. SubstrateService service
)

Implementation

PolkawalletApi(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);
  gov2 = ApiGov2(this, service.gov2);
  parachain = ApiParachain(this, service.parachain);
  assets = ApiAssets(this, service.assets);
  bridge = ApiBridge(this, service.bridge);
  uos = ApiUOS(this, service.uos);
  recovery = ApiRecovery(this, service.recovery);

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