@uniswap/client-trading 0.5.13 → 0.5.14
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.
|
@@ -1526,9 +1526,12 @@ export declare class ChainContractAddress extends Message<ChainContractAddress>
|
|
|
1526
1526
|
*/
|
|
1527
1527
|
name: string;
|
|
1528
1528
|
/**
|
|
1529
|
-
*
|
|
1529
|
+
* Set only where it distinguishes deployments: release lines
|
|
1530
|
+
* (UniversalRouter, CaliburEntry) and same-named contracts (Quoter V3/V4).
|
|
1531
|
+
*
|
|
1532
|
+
* @generated from field: optional string version = 2;
|
|
1530
1533
|
*/
|
|
1531
|
-
version
|
|
1534
|
+
version?: string;
|
|
1532
1535
|
/**
|
|
1533
1536
|
* @generated from field: string address = 3;
|
|
1534
1537
|
*/
|
|
@@ -1900,10 +1900,6 @@ export class ChainContractAddress extends Message {
|
|
|
1900
1900
|
* @generated from field: string name = 1;
|
|
1901
1901
|
*/
|
|
1902
1902
|
this.name = "";
|
|
1903
|
-
/**
|
|
1904
|
-
* @generated from field: string version = 2;
|
|
1905
|
-
*/
|
|
1906
|
-
this.version = "";
|
|
1907
1903
|
/**
|
|
1908
1904
|
* @generated from field: string address = 3;
|
|
1909
1905
|
*/
|
|
@@ -1927,7 +1923,7 @@ ChainContractAddress.runtime = proto3;
|
|
|
1927
1923
|
ChainContractAddress.typeName = "trading.v1.ChainContractAddress";
|
|
1928
1924
|
ChainContractAddress.fields = proto3.util.newFieldList(() => [
|
|
1929
1925
|
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1930
|
-
{ no: 2, name: "version", kind: "scalar", T: 9 /* ScalarType.STRING
|
|
1926
|
+
{ no: 2, name: "version", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1931
1927
|
{ no: 3, name: "address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1932
1928
|
]);
|
|
1933
1929
|
/**
|