@uniswap/client-data-api 0.0.7 → 0.0.8
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.
- package/dist/data/v1/types_pb.d.ts +12 -8
- package/dist/data/v1/types_pb.js +13 -12
- package/package.json +1 -1
|
@@ -968,21 +968,25 @@ export declare class FiatOnRampTransaction extends Message<FiatOnRampTransaction
|
|
|
968
968
|
*/
|
|
969
969
|
externalSessionId: string;
|
|
970
970
|
/**
|
|
971
|
-
* @generated from field: double
|
|
971
|
+
* @generated from field: double provider_fee = 11;
|
|
972
972
|
*/
|
|
973
|
-
|
|
973
|
+
providerFee: number;
|
|
974
974
|
/**
|
|
975
|
-
* @generated from field: double
|
|
976
|
-
*/
|
|
977
|
-
transactionFee: number;
|
|
978
|
-
/**
|
|
979
|
-
* @generated from field: double total_fee = 13;
|
|
975
|
+
* @generated from field: double total_fee = 12;
|
|
980
976
|
*/
|
|
981
977
|
totalFee: number;
|
|
982
978
|
/**
|
|
983
|
-
* @generated from field: data.v1.FiatOnRampTransactionStatus status =
|
|
979
|
+
* @generated from field: data.v1.FiatOnRampTransactionStatus status = 13;
|
|
984
980
|
*/
|
|
985
981
|
status: FiatOnRampTransactionStatus;
|
|
982
|
+
/**
|
|
983
|
+
* @generated from field: string transaction_hash = 14;
|
|
984
|
+
*/
|
|
985
|
+
transactionHash: string;
|
|
986
|
+
/**
|
|
987
|
+
* @generated from field: data.v1.TransactionFee transaction_fee = 15;
|
|
988
|
+
*/
|
|
989
|
+
transactionFee?: TransactionFee;
|
|
986
990
|
constructor(data?: PartialMessage<FiatOnRampTransaction>);
|
|
987
991
|
static readonly runtime: typeof proto3;
|
|
988
992
|
static readonly typeName = "data.v1.FiatOnRampTransaction";
|
package/dist/data/v1/types_pb.js
CHANGED
|
@@ -1256,21 +1256,21 @@ export class FiatOnRampTransaction extends Message {
|
|
|
1256
1256
|
*/
|
|
1257
1257
|
this.externalSessionId = "";
|
|
1258
1258
|
/**
|
|
1259
|
-
* @generated from field: double
|
|
1259
|
+
* @generated from field: double provider_fee = 11;
|
|
1260
1260
|
*/
|
|
1261
|
-
this.
|
|
1261
|
+
this.providerFee = 0;
|
|
1262
1262
|
/**
|
|
1263
|
-
* @generated from field: double
|
|
1264
|
-
*/
|
|
1265
|
-
this.transactionFee = 0;
|
|
1266
|
-
/**
|
|
1267
|
-
* @generated from field: double total_fee = 13;
|
|
1263
|
+
* @generated from field: double total_fee = 12;
|
|
1268
1264
|
*/
|
|
1269
1265
|
this.totalFee = 0;
|
|
1270
1266
|
/**
|
|
1271
|
-
* @generated from field: data.v1.FiatOnRampTransactionStatus status =
|
|
1267
|
+
* @generated from field: data.v1.FiatOnRampTransactionStatus status = 13;
|
|
1272
1268
|
*/
|
|
1273
1269
|
this.status = FiatOnRampTransactionStatus.FAILED;
|
|
1270
|
+
/**
|
|
1271
|
+
* @generated from field: string transaction_hash = 14;
|
|
1272
|
+
*/
|
|
1273
|
+
this.transactionHash = "";
|
|
1274
1274
|
proto3.util.initPartial(data, this);
|
|
1275
1275
|
}
|
|
1276
1276
|
static fromBinary(bytes, options) {
|
|
@@ -1299,10 +1299,11 @@ FiatOnRampTransaction.fields = proto3.util.newFieldList(() => [
|
|
|
1299
1299
|
{ no: 8, name: "service_provider", kind: "message", T: OnRampServiceProvider },
|
|
1300
1300
|
{ no: 9, name: "transaction_reference_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1301
1301
|
{ no: 10, name: "external_session_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1302
|
-
{ no: 11, name: "
|
|
1303
|
-
{ no: 12, name: "
|
|
1304
|
-
{ no: 13, name: "
|
|
1305
|
-
{ no: 14, name: "
|
|
1302
|
+
{ no: 11, name: "provider_fee", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
|
|
1303
|
+
{ no: 12, name: "total_fee", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
|
|
1304
|
+
{ no: 13, name: "status", kind: "enum", T: proto3.getEnumType(FiatOnRampTransactionStatus) },
|
|
1305
|
+
{ no: 14, name: "transaction_hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1306
|
+
{ no: 15, name: "transaction_fee", kind: "message", T: TransactionFee },
|
|
1306
1307
|
]);
|
|
1307
1308
|
/**
|
|
1308
1309
|
* @generated from message data.v1.OnRampServiceProvider
|