@devasher/kuru-sdk
Version:
Ethers v6 SDK to interact with Kuru (forked from @kuru-labs/kuru-sdk)
11 lines • 412 B
TypeScript
import { ethers } from 'ethers';
import { TransactionOptions } from 'src/types';
export default function buildTransactionRequest({ from, to, signer, data, value, txOptions, }: {
from: string;
to: string;
signer: ethers.AbstractSigner;
data: string;
value?: ethers.BigNumberish;
txOptions?: TransactionOptions;
}): Promise<ethers.TransactionRequest>;
//# sourceMappingURL=txConfig.d.ts.map