0.0.1-alpha.17 • Published 2 years ago
@xlabs-libs/wallet-aggregator-injective v0.0.1-alpha.17
Wallet Aggregator - Injective
Implements the base abstractions for the Injective blockchain.
Usage
Under the hood the wallet relies on the WalletSelector class provided by the @injectivelabs/wallet-ts package, which acts as a façade with multiple strategies behind it, one for each method of connecting. So, while the generic class is InjectiveWallet, we inject the type of wallet we want to connect to through a constructor parameter.
For now, the only supported types are Keplr and Cosmostation.
import { ChainId as InjectiveChainId } from "@injectivelabs/ts-types";
import { getNetworkInfo, Network } from "@injectivelabs/networks";
import { InjectiveWallet } from "@xlabs-libs/wallet-aggregator-injective";
const network = InjectiveChainId.Mainnet;
const networkInfo = getNetworkInfo(Network.MainnetK8s);
const opts = {
networkChainId: network,
broadcasterOptions: {
network,
endpoints: {
indexerApi: networkInfo.indexerApi,
sentryGrpcApi: networkInfo.sentryGrpcApi,
sentryHttpApi: networkInfo.sentryHttpApi,
},
},
};
const keplr = new InjectiveWallet({
...opts,
type: InjectiveWalletType.Keplr,
});
const cosmostation = new InjectiveWallet({
...opts,
type: InjectiveWalletType.Cosmostation,
});0.0.1-alpha.17
2 years ago
0.0.1-alpha.16
2 years ago
0.0.1-alpha.15
2 years ago
0.0.1-alpha.14
2 years ago
0.0.1-alpha.13
2 years ago
0.0.1-alpha.12
3 years ago
0.0.1-alpha.11
3 years ago
0.0.1-alpha.10
3 years ago
0.0.1-alpha.9
3 years ago
0.0.1-alpha.8
3 years ago
0.0.1-alpha.7
3 years ago
0.0.1-alpha.6
3 years ago
0.0.1-alpha.5
3 years ago
0.0.1-alpha.4
3 years ago