@uniswap/client-data-api 0.0.35 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1213,6 +1213,10 @@ export declare class PlanTransaction extends Message<PlanTransaction> {
|
|
|
1213
1213
|
* @generated from field: repeated string transaction_hashes = 13;
|
|
1214
1214
|
*/
|
|
1215
1215
|
transactionHashes: string[];
|
|
1216
|
+
/**
|
|
1217
|
+
* @generated from field: optional string gas_fee = 14;
|
|
1218
|
+
*/
|
|
1219
|
+
gasFee?: string;
|
|
1216
1220
|
constructor(data?: PartialMessage<PlanTransaction>);
|
|
1217
1221
|
static readonly runtime: typeof proto3;
|
|
1218
1222
|
static readonly typeName = "data.v1.PlanTransaction";
|
|
@@ -1262,6 +1266,10 @@ export declare class PlanActivity extends Message<PlanActivity> {
|
|
|
1262
1266
|
* @generated from field: optional uint32 chain_id = 9;
|
|
1263
1267
|
*/
|
|
1264
1268
|
chainId?: number;
|
|
1269
|
+
/**
|
|
1270
|
+
* @generated from field: optional string gas_fee = 10;
|
|
1271
|
+
*/
|
|
1272
|
+
gasFee?: string;
|
|
1265
1273
|
constructor(data?: PartialMessage<PlanActivity>);
|
|
1266
1274
|
static readonly runtime: typeof proto3;
|
|
1267
1275
|
static readonly typeName = "data.v1.PlanActivity";
|
package/dist/data/v1/types_pb.js
CHANGED
|
@@ -1583,6 +1583,7 @@ PlanTransaction.fields = proto3.util.newFieldList(() => [
|
|
|
1583
1583
|
{ no: 11, name: "swapper", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1584
1584
|
{ no: 12, name: "recipient", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1585
1585
|
{ no: 13, name: "transaction_hashes", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
1586
|
+
{ no: 14, name: "gas_fee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1586
1587
|
]);
|
|
1587
1588
|
/**
|
|
1588
1589
|
* @generated from message data.v1.PlanActivity
|
|
@@ -1629,6 +1630,7 @@ PlanActivity.fields = proto3.util.newFieldList(() => [
|
|
|
1629
1630
|
{ no: 7, name: "status", kind: "enum", T: proto3.getEnumType(PlanStepStatus) },
|
|
1630
1631
|
{ no: 8, name: "transaction_hash", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1631
1632
|
{ no: 9, name: "chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
1633
|
+
{ no: 10, name: "gas_fee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1632
1634
|
]);
|
|
1633
1635
|
/**
|
|
1634
1636
|
* @generated from message data.v1.TokenAmount
|