@uniswap/client-liquidity 1.4.0 → 1.4.1
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.
|
@@ -1109,6 +1109,15 @@ export declare class PoolInformation extends Message<PoolInformation> {
|
|
|
1109
1109
|
* @generated from field: optional string token_1_reserves = 17;
|
|
1110
1110
|
*/
|
|
1111
1111
|
token1Reserves?: string;
|
|
1112
|
+
/**
|
|
1113
|
+
* Protocol fee in pips (same unit as `fee`), read from live on-chain state.
|
|
1114
|
+
* v2/v3 is a subtractive carve-out of `fee`; v4 is additive on top of `fee`
|
|
1115
|
+
* (distinguish by pool_protocol). Set only when a protocol fee is active
|
|
1116
|
+
* on-chain (> 0); unset when the fee switch is off.
|
|
1117
|
+
*
|
|
1118
|
+
* @generated from field: optional uint32 protocol_fee = 18;
|
|
1119
|
+
*/
|
|
1120
|
+
protocolFee?: number;
|
|
1112
1121
|
constructor(data?: PartialMessage<PoolInformation>);
|
|
1113
1122
|
static readonly runtime: typeof proto3;
|
|
1114
1123
|
static readonly typeName = "uniswap.liquidity.v1.PoolInformation";
|
|
@@ -1907,10 +1916,6 @@ export declare class PredicateKycVerificationData extends Message<PredicateKycVe
|
|
|
1907
1916
|
* @generated from field: optional string redirect_url = 2;
|
|
1908
1917
|
*/
|
|
1909
1918
|
redirectUrl?: string;
|
|
1910
|
-
/**
|
|
1911
|
-
* @generated from field: optional string qr_code = 3;
|
|
1912
|
-
*/
|
|
1913
|
-
qrCode?: string;
|
|
1914
1919
|
constructor(data?: PartialMessage<PredicateKycVerificationData>);
|
|
1915
1920
|
static readonly runtime: typeof proto3;
|
|
1916
1921
|
static readonly typeName = "uniswap.liquidity.v1.PredicateKycVerificationData";
|
|
@@ -1317,6 +1317,7 @@ PoolInformation.fields = proto3.util.newFieldList(() => [
|
|
|
1317
1317
|
{ no: 15, name: "current_tick", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
1318
1318
|
{ no: 16, name: "token_0_reserves", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1319
1319
|
{ no: 17, name: "token_1_reserves", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1320
|
+
{ no: 18, name: "protocol_fee", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
1320
1321
|
]);
|
|
1321
1322
|
/**
|
|
1322
1323
|
* @generated from message uniswap.liquidity.v1.PoolReferenceByProtocol
|
|
@@ -2172,7 +2173,6 @@ PredicateKycVerificationData.typeName = "uniswap.liquidity.v1.PredicateKycVerifi
|
|
|
2172
2173
|
PredicateKycVerificationData.fields = proto3.util.newFieldList(() => [
|
|
2173
2174
|
{ no: 1, name: "status", kind: "enum", T: proto3.getEnumType(KycVerificationStatus) },
|
|
2174
2175
|
{ no: 2, name: "redirect_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2175
|
-
{ no: 3, name: "qr_code", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2176
2176
|
]);
|
|
2177
2177
|
/**
|
|
2178
2178
|
* @generated from message uniswap.liquidity.v1.Erc1155GateData
|