@uniswap/client-data-api 0.0.103 → 0.0.104
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/api_pb.d.ts
CHANGED
|
@@ -1936,6 +1936,13 @@ export declare class ListRwasRequest extends Message<ListRwasRequest> {
|
|
|
1936
1936
|
* @generated from field: repeated uint32 chain_ids = 1;
|
|
1937
1937
|
*/
|
|
1938
1938
|
chainIds: number[];
|
|
1939
|
+
/**
|
|
1940
|
+
* When true, standalone commodity entries (no issuer structure) are
|
|
1941
|
+
* included. Default false: only stocks + ETFs.
|
|
1942
|
+
*
|
|
1943
|
+
* @generated from field: bool include_commodities = 2;
|
|
1944
|
+
*/
|
|
1945
|
+
includeCommodities: boolean;
|
|
1939
1946
|
constructor(data?: PartialMessage<ListRwasRequest>);
|
|
1940
1947
|
static readonly runtime: typeof proto3;
|
|
1941
1948
|
static readonly typeName = "data.v1.ListRwasRequest";
|
package/dist/data/v1/api_pb.js
CHANGED
|
@@ -2594,6 +2594,13 @@ export class ListRwasRequest extends Message {
|
|
|
2594
2594
|
* @generated from field: repeated uint32 chain_ids = 1;
|
|
2595
2595
|
*/
|
|
2596
2596
|
this.chainIds = [];
|
|
2597
|
+
/**
|
|
2598
|
+
* When true, standalone commodity entries (no issuer structure) are
|
|
2599
|
+
* included. Default false: only stocks + ETFs.
|
|
2600
|
+
*
|
|
2601
|
+
* @generated from field: bool include_commodities = 2;
|
|
2602
|
+
*/
|
|
2603
|
+
this.includeCommodities = false;
|
|
2597
2604
|
proto3.util.initPartial(data, this);
|
|
2598
2605
|
}
|
|
2599
2606
|
static fromBinary(bytes, options) {
|
|
@@ -2613,6 +2620,7 @@ ListRwasRequest.runtime = proto3;
|
|
|
2613
2620
|
ListRwasRequest.typeName = "data.v1.ListRwasRequest";
|
|
2614
2621
|
ListRwasRequest.fields = proto3.util.newFieldList(() => [
|
|
2615
2622
|
{ no: 1, name: "chain_ids", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
|
|
2623
|
+
{ no: 2, name: "include_commodities", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2616
2624
|
]);
|
|
2617
2625
|
/**
|
|
2618
2626
|
* @generated from message data.v1.ListRwasResponse
|
|
@@ -729,6 +729,10 @@ export declare class AuctionActivityEntry extends Message<AuctionActivityEntry>
|
|
|
729
729
|
* @generated from field: string status = 6;
|
|
730
730
|
*/
|
|
731
731
|
status: string;
|
|
732
|
+
/**
|
|
733
|
+
* @generated from field: string tx_hash = 7;
|
|
734
|
+
*/
|
|
735
|
+
txHash: string;
|
|
732
736
|
constructor(data?: PartialMessage<AuctionActivityEntry>);
|
|
733
737
|
static readonly runtime: typeof proto3;
|
|
734
738
|
static readonly typeName = "data.v1.AuctionActivityEntry";
|
|
@@ -913,6 +913,10 @@ export class AuctionActivityEntry extends Message {
|
|
|
913
913
|
* @generated from field: string status = 6;
|
|
914
914
|
*/
|
|
915
915
|
this.status = "";
|
|
916
|
+
/**
|
|
917
|
+
* @generated from field: string tx_hash = 7;
|
|
918
|
+
*/
|
|
919
|
+
this.txHash = "";
|
|
916
920
|
proto3.util.initPartial(data, this);
|
|
917
921
|
}
|
|
918
922
|
static fromBinary(bytes, options) {
|
|
@@ -937,6 +941,7 @@ AuctionActivityEntry.fields = proto3.util.newFieldList(() => [
|
|
|
937
941
|
{ no: 4, name: "base_token_initial", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
938
942
|
{ no: 5, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
939
943
|
{ no: 6, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
944
|
+
{ no: 7, name: "tx_hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
940
945
|
]);
|
|
941
946
|
/**
|
|
942
947
|
* @generated from message data.v1.GetAuctionActivityResponse
|