@funkit/fun-relay
Version:
10 lines • 409 B
TypeScript
import type { AdaptedWallet } from '@relayprotocol/relay-sdk';
import type { TronWeb } from 'tronweb';
export type TronAddress = `T${string}`;
export type TronTxHash = string;
export type TronWallet = {
address(): Promise<TronAddress>;
vmType: 'tvm';
} & AdaptedWallet;
export declare function getTronWallet(walletAddress: TronAddress, tronWeb: TronWeb): TronWallet;
//# sourceMappingURL=tron.d.ts.map