@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
38 lines (37 loc) • 631 B
TypeScript
/**
*
* @export
* @interface VetEstimateGas
*/
export interface VetEstimateGas {
/**
* Sender
* @type {string}
* @memberof VetEstimateGas
*/
from: string;
/**
* Recipient
* @type {string}
* @memberof VetEstimateGas
*/
to: string;
/**
* Amount to send
* @type {string}
* @memberof VetEstimateGas
*/
value: string;
/**
* Data to send to Smart Contract
* @type {string}
* @memberof VetEstimateGas
*/
data: string;
/**
* Nonce
* @type {number}
* @memberof VetEstimateGas
*/
nonce: number;
}