@cosmos-kit/leap-mobile
Version:
cosmos-kit wallet connector
10 lines (9 loc) • 360 B
JavaScript
import { WCWallet } from '@cosmos-kit/walletconnect';
import { ChainLeapMobile } from './chain-wallet';
import { LeapClient } from './client';
export class LeapMobileWallet extends WCWallet {
constructor(walletInfo, preferredEndpoints) {
super(walletInfo, ChainLeapMobile, LeapClient);
this.preferredEndpoints = preferredEndpoints;
}
}