crypto-ducatus-wallet-core
Version:
A multi-currency support library for address derivation, private key creation, and transaction creation
36 lines • 812 B
TypeScript
import { Key } from '../../derivation';
export declare class ETHTxProvider {
create(params: {
recipients: Array<{
address: string;
amount: string;
}>;
nonce: number;
gasPrice: number;
data: string;
gasLimit: number;
chainId?: number;
fromAddress?: string;
tokenId?: number;
}): string;
getSignatureObject(params: {
tx: string;
key: Key;
}): any;
getSignature(params: {
tx: string;
key: Key;
}): string;
getHash(params: {
tx: string;
}): string;
applySignature(params: {
tx: string;
signature: any;
}): string;
sign(params: {
tx: string;
key: Key;
}): string;
}
//# sourceMappingURL=index.d.ts.map