New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@injectivelabs/indexer-proto-ts

Package Overview
Dependencies
Maintainers
0
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@injectivelabs/indexer-proto-ts - npm Package Compare versions

Comparing version 1.13.3 to 1.13.4

103

cjs/injective_archiver_rpc.d.ts

@@ -153,2 +153,69 @@ import { grpc } from "@injectivelabs/grpc-web";

}
export interface HistoricalTradesRequest {
/** The starting block height that the trades must be equal or older than */
fromBlock: string;
/** The ending block height that the trades must be equal or older than */
endBlock: string;
/**
* The starting timestamp in UNIX milliseconds that the trades must be equal or
* older than
*/
fromTime: string;
/**
* The ending timestamp in UNIX milliseconds that the trades must be equal or
* older than
*/
endTime: string;
/** The number of trades to return per page */
perPage: number;
/** Token for pagination */
token: string;
/** Account address */
account: string;
}
export interface HistoricalTradesResponse {
trades: HistoricalTrade[];
/** The last block height available in the service */
lastHeight: string;
/** The timestamp of the last block available in the service */
lastTime: string;
/** Next token for pagination */
next: string[];
}
export interface HistoricalTrade {
/** Account address */
account: string;
/** The subaccountId that executed the trade */
subaccountId: string;
/** The ID of the market that this trade is in */
marketId: string;
/** The direction the trade */
tradeDirection: string;
/** Price level at which trade has been executed */
price: PriceLevel | undefined;
/** The fee associated with the trade (quote asset denom) */
fee: string;
/** Timestamp of trade execution in UNIX millis */
executedAt: string;
/** Block height of trade execution */
executedHeight: string;
/** Fee recipient address */
feeRecipient: string;
/** Trade's execution side, maker/taker */
executionSide: string;
/** USD value of the trade at the time of execution */
usdValue: string;
/** A list of flag assigned to the trade */
flags: string[];
/** Type of market */
marketType: string;
}
export interface PriceLevel {
/** Price number of the price level. */
price: string;
/** Quantity of the price level. */
quantity: string;
/** Price level last updated timestamp in UNIX millis. */
timestamp: string;
}
export declare const BalanceRequest: {

@@ -322,2 +389,34 @@ encode(message: BalanceRequest, writer?: _m0.Writer): _m0.Writer;

};
export declare const HistoricalTradesRequest: {
encode(message: HistoricalTradesRequest, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): HistoricalTradesRequest;
fromJSON(object: any): HistoricalTradesRequest;
toJSON(message: HistoricalTradesRequest): unknown;
create(base?: DeepPartial<HistoricalTradesRequest>): HistoricalTradesRequest;
fromPartial(object: DeepPartial<HistoricalTradesRequest>): HistoricalTradesRequest;
};
export declare const HistoricalTradesResponse: {
encode(message: HistoricalTradesResponse, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): HistoricalTradesResponse;
fromJSON(object: any): HistoricalTradesResponse;
toJSON(message: HistoricalTradesResponse): unknown;
create(base?: DeepPartial<HistoricalTradesResponse>): HistoricalTradesResponse;
fromPartial(object: DeepPartial<HistoricalTradesResponse>): HistoricalTradesResponse;
};
export declare const HistoricalTrade: {
encode(message: HistoricalTrade, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): HistoricalTrade;
fromJSON(object: any): HistoricalTrade;
toJSON(message: HistoricalTrade): unknown;
create(base?: DeepPartial<HistoricalTrade>): HistoricalTrade;
fromPartial(object: DeepPartial<HistoricalTrade>): HistoricalTrade;
};
export declare const PriceLevel: {
encode(message: PriceLevel, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): PriceLevel;
fromJSON(object: any): PriceLevel;
toJSON(message: PriceLevel): unknown;
create(base?: DeepPartial<PriceLevel>): PriceLevel;
fromPartial(object: DeepPartial<PriceLevel>): PriceLevel;
};
/** InjectiveArchiverRPC defines gRPC API of Archiver provider. */

@@ -341,2 +440,4 @@ export interface InjectiveArchiverRPC {

DenomHolders(request: DeepPartial<DenomHoldersRequest>, metadata?: grpc.Metadata): Promise<DenomHoldersResponse>;
/** Provide historical trades data. */
HistoricalTrades(request: DeepPartial<HistoricalTradesRequest>, metadata?: grpc.Metadata): Promise<HistoricalTradesResponse>;
}

@@ -354,2 +455,3 @@ export declare class InjectiveArchiverRPCClientImpl implements InjectiveArchiverRPC {

DenomHolders(request: DeepPartial<DenomHoldersRequest>, metadata?: grpc.Metadata): Promise<DenomHoldersResponse>;
HistoricalTrades(request: DeepPartial<HistoricalTradesRequest>, metadata?: grpc.Metadata): Promise<HistoricalTradesResponse>;
}

@@ -367,2 +469,3 @@ export declare const InjectiveArchiverRPCDesc: {

export declare const InjectiveArchiverRPCDenomHoldersDesc: UnaryMethodDefinitionish;
export declare const InjectiveArchiverRPCHistoricalTradesDesc: UnaryMethodDefinitionish;
interface UnaryMethodDefinitionishR extends grpc.UnaryMethodDefinition<any, any> {

@@ -369,0 +472,0 @@ requestStream: any;

@@ -55,2 +55,7 @@ import { grpc } from "@injectivelabs/grpc-web";

}
export interface InjBurntEndpointRequest {
}
export interface InjBurntEndpointResponse {
totalInjBurnt: string;
}
export declare const AuctionEndpointRequest: {

@@ -128,2 +133,18 @@ encode(message: AuctionEndpointRequest, writer?: _m0.Writer): _m0.Writer;

};
export declare const InjBurntEndpointRequest: {
encode(_: InjBurntEndpointRequest, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): InjBurntEndpointRequest;
fromJSON(_: any): InjBurntEndpointRequest;
toJSON(_: InjBurntEndpointRequest): unknown;
create(base?: DeepPartial<InjBurntEndpointRequest>): InjBurntEndpointRequest;
fromPartial(_: DeepPartial<InjBurntEndpointRequest>): InjBurntEndpointRequest;
};
export declare const InjBurntEndpointResponse: {
encode(message: InjBurntEndpointResponse, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): InjBurntEndpointResponse;
fromJSON(object: any): InjBurntEndpointResponse;
toJSON(message: InjBurntEndpointResponse): unknown;
create(base?: DeepPartial<InjBurntEndpointResponse>): InjBurntEndpointResponse;
fromPartial(object: DeepPartial<InjBurntEndpointResponse>): InjBurntEndpointResponse;
};
/** InjectiveAuctionRPC defines gRPC API of the Auction API. */

@@ -137,2 +158,4 @@ export interface InjectiveAuctionRPC {

StreamBids(request: DeepPartial<StreamBidsRequest>, metadata?: grpc.Metadata): Observable<StreamBidsResponse>;
/** InjBurntEndpoint returns the total amount of INJ burnt in auctions. */
InjBurntEndpoint(request: DeepPartial<InjBurntEndpointRequest>, metadata?: grpc.Metadata): Promise<InjBurntEndpointResponse>;
}

@@ -145,2 +168,3 @@ export declare class InjectiveAuctionRPCClientImpl implements InjectiveAuctionRPC {

StreamBids(request: DeepPartial<StreamBidsRequest>, metadata?: grpc.Metadata): Observable<StreamBidsResponse>;
InjBurntEndpoint(request: DeepPartial<InjBurntEndpointRequest>, metadata?: grpc.Metadata): Promise<InjBurntEndpointResponse>;
}

@@ -153,2 +177,3 @@ export declare const InjectiveAuctionRPCDesc: {

export declare const InjectiveAuctionRPCStreamBidsDesc: UnaryMethodDefinitionish;
export declare const InjectiveAuctionRPCInjBurntEndpointDesc: UnaryMethodDefinitionish;
interface UnaryMethodDefinitionishR extends grpc.UnaryMethodDefinition<any, any> {

@@ -155,0 +180,0 @@ requestStream: any;

106

cjs/injective_auction_rpc.js

@@ -6,3 +6,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.GrpcWebError = exports.GrpcWebImpl = exports.InjectiveAuctionRPCStreamBidsDesc = exports.InjectiveAuctionRPCAuctionsDesc = exports.InjectiveAuctionRPCAuctionEndpointDesc = exports.InjectiveAuctionRPCDesc = exports.InjectiveAuctionRPCClientImpl = exports.StreamBidsResponse = exports.StreamBidsRequest = exports.AuctionsResponse = exports.AuctionsRequest = exports.Bid = exports.Coin = exports.Auction = exports.AuctionEndpointResponse = exports.AuctionEndpointRequest = exports.protobufPackage = void 0;
exports.GrpcWebError = exports.GrpcWebImpl = exports.InjectiveAuctionRPCInjBurntEndpointDesc = exports.InjectiveAuctionRPCStreamBidsDesc = exports.InjectiveAuctionRPCAuctionsDesc = exports.InjectiveAuctionRPCAuctionEndpointDesc = exports.InjectiveAuctionRPCDesc = exports.InjectiveAuctionRPCClientImpl = exports.InjBurntEndpointResponse = exports.InjBurntEndpointRequest = exports.StreamBidsResponse = exports.StreamBidsRequest = exports.AuctionsResponse = exports.AuctionsRequest = exports.Bid = exports.Coin = exports.Auction = exports.AuctionEndpointResponse = exports.AuctionEndpointRequest = exports.protobufPackage = void 0;
/* eslint-disable */

@@ -538,2 +538,83 @@ const grpc_web_1 = require("@injectivelabs/grpc-web");

};
function createBaseInjBurntEndpointRequest() {
return {};
}
exports.InjBurntEndpointRequest = {
encode(_, writer = minimal_js_1.default.Writer.create()) {
return writer;
},
decode(input, length) {
const reader = input instanceof minimal_js_1.default.Reader ? input : new minimal_js_1.default.Reader(input);
let end = length === undefined ? reader.len : reader.pos + length;
const message = createBaseInjBurntEndpointRequest();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromJSON(_) {
return {};
},
toJSON(_) {
const obj = {};
return obj;
},
create(base) {
return exports.InjBurntEndpointRequest.fromPartial(base !== null && base !== void 0 ? base : {});
},
fromPartial(_) {
const message = createBaseInjBurntEndpointRequest();
return message;
},
};
function createBaseInjBurntEndpointResponse() {
return { totalInjBurnt: "" };
}
exports.InjBurntEndpointResponse = {
encode(message, writer = minimal_js_1.default.Writer.create()) {
if (message.totalInjBurnt !== "") {
writer.uint32(10).string(message.totalInjBurnt);
}
return writer;
},
decode(input, length) {
const reader = input instanceof minimal_js_1.default.Reader ? input : new minimal_js_1.default.Reader(input);
let end = length === undefined ? reader.len : reader.pos + length;
const message = createBaseInjBurntEndpointResponse();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.totalInjBurnt = reader.string();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromJSON(object) {
return { totalInjBurnt: isSet(object.totalInjBurnt) ? String(object.totalInjBurnt) : "" };
},
toJSON(message) {
const obj = {};
message.totalInjBurnt !== undefined && (obj.totalInjBurnt = message.totalInjBurnt);
return obj;
},
create(base) {
return exports.InjBurntEndpointResponse.fromPartial(base !== null && base !== void 0 ? base : {});
},
fromPartial(object) {
var _a;
const message = createBaseInjBurntEndpointResponse();
message.totalInjBurnt = (_a = object.totalInjBurnt) !== null && _a !== void 0 ? _a : "";
return message;
},
};
class InjectiveAuctionRPCClientImpl {

@@ -545,2 +626,3 @@ constructor(rpc) {

this.StreamBids = this.StreamBids.bind(this);
this.InjBurntEndpoint = this.InjBurntEndpoint.bind(this);
}

@@ -556,2 +638,5 @@ AuctionEndpoint(request, metadata) {

}
InjBurntEndpoint(request, metadata) {
return this.rpc.unary(exports.InjectiveAuctionRPCInjBurntEndpointDesc, exports.InjBurntEndpointRequest.fromPartial(request), metadata);
}
}

@@ -617,2 +702,21 @@ exports.InjectiveAuctionRPCClientImpl = InjectiveAuctionRPCClientImpl;

};
exports.InjectiveAuctionRPCInjBurntEndpointDesc = {
methodName: "InjBurntEndpoint",
service: exports.InjectiveAuctionRPCDesc,
requestStream: false,
responseStream: false,
requestType: {
serializeBinary() {
return exports.InjBurntEndpointRequest.encode(this).finish();
},
},
responseType: {
deserializeBinary(data) {
const value = exports.InjBurntEndpointResponse.decode(data);
return Object.assign(Object.assign({}, value), { toObject() {
return value;
} });
},
},
};
class GrpcWebImpl {

@@ -619,0 +723,0 @@ constructor(host, options) {

@@ -153,2 +153,69 @@ import { grpc } from "@injectivelabs/grpc-web";

}
export interface HistoricalTradesRequest {
/** The starting block height that the trades must be equal or older than */
fromBlock: string;
/** The ending block height that the trades must be equal or older than */
endBlock: string;
/**
* The starting timestamp in UNIX milliseconds that the trades must be equal or
* older than
*/
fromTime: string;
/**
* The ending timestamp in UNIX milliseconds that the trades must be equal or
* older than
*/
endTime: string;
/** The number of trades to return per page */
perPage: number;
/** Token for pagination */
token: string;
/** Account address */
account: string;
}
export interface HistoricalTradesResponse {
trades: HistoricalTrade[];
/** The last block height available in the service */
lastHeight: string;
/** The timestamp of the last block available in the service */
lastTime: string;
/** Next token for pagination */
next: string[];
}
export interface HistoricalTrade {
/** Account address */
account: string;
/** The subaccountId that executed the trade */
subaccountId: string;
/** The ID of the market that this trade is in */
marketId: string;
/** The direction the trade */
tradeDirection: string;
/** Price level at which trade has been executed */
price: PriceLevel | undefined;
/** The fee associated with the trade (quote asset denom) */
fee: string;
/** Timestamp of trade execution in UNIX millis */
executedAt: string;
/** Block height of trade execution */
executedHeight: string;
/** Fee recipient address */
feeRecipient: string;
/** Trade's execution side, maker/taker */
executionSide: string;
/** USD value of the trade at the time of execution */
usdValue: string;
/** A list of flag assigned to the trade */
flags: string[];
/** Type of market */
marketType: string;
}
export interface PriceLevel {
/** Price number of the price level. */
price: string;
/** Quantity of the price level. */
quantity: string;
/** Price level last updated timestamp in UNIX millis. */
timestamp: string;
}
export declare const BalanceRequest: {

@@ -322,2 +389,34 @@ encode(message: BalanceRequest, writer?: _m0.Writer): _m0.Writer;

};
export declare const HistoricalTradesRequest: {
encode(message: HistoricalTradesRequest, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): HistoricalTradesRequest;
fromJSON(object: any): HistoricalTradesRequest;
toJSON(message: HistoricalTradesRequest): unknown;
create(base?: DeepPartial<HistoricalTradesRequest>): HistoricalTradesRequest;
fromPartial(object: DeepPartial<HistoricalTradesRequest>): HistoricalTradesRequest;
};
export declare const HistoricalTradesResponse: {
encode(message: HistoricalTradesResponse, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): HistoricalTradesResponse;
fromJSON(object: any): HistoricalTradesResponse;
toJSON(message: HistoricalTradesResponse): unknown;
create(base?: DeepPartial<HistoricalTradesResponse>): HistoricalTradesResponse;
fromPartial(object: DeepPartial<HistoricalTradesResponse>): HistoricalTradesResponse;
};
export declare const HistoricalTrade: {
encode(message: HistoricalTrade, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): HistoricalTrade;
fromJSON(object: any): HistoricalTrade;
toJSON(message: HistoricalTrade): unknown;
create(base?: DeepPartial<HistoricalTrade>): HistoricalTrade;
fromPartial(object: DeepPartial<HistoricalTrade>): HistoricalTrade;
};
export declare const PriceLevel: {
encode(message: PriceLevel, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): PriceLevel;
fromJSON(object: any): PriceLevel;
toJSON(message: PriceLevel): unknown;
create(base?: DeepPartial<PriceLevel>): PriceLevel;
fromPartial(object: DeepPartial<PriceLevel>): PriceLevel;
};
/** InjectiveArchiverRPC defines gRPC API of Archiver provider. */

@@ -341,2 +440,4 @@ export interface InjectiveArchiverRPC {

DenomHolders(request: DeepPartial<DenomHoldersRequest>, metadata?: grpc.Metadata): Promise<DenomHoldersResponse>;
/** Provide historical trades data. */
HistoricalTrades(request: DeepPartial<HistoricalTradesRequest>, metadata?: grpc.Metadata): Promise<HistoricalTradesResponse>;
}

@@ -354,2 +455,3 @@ export declare class InjectiveArchiverRPCClientImpl implements InjectiveArchiverRPC {

DenomHolders(request: DeepPartial<DenomHoldersRequest>, metadata?: grpc.Metadata): Promise<DenomHoldersResponse>;
HistoricalTrades(request: DeepPartial<HistoricalTradesRequest>, metadata?: grpc.Metadata): Promise<HistoricalTradesResponse>;
}

@@ -367,2 +469,3 @@ export declare const InjectiveArchiverRPCDesc: {

export declare const InjectiveArchiverRPCDenomHoldersDesc: UnaryMethodDefinitionish;
export declare const InjectiveArchiverRPCHistoricalTradesDesc: UnaryMethodDefinitionish;
interface UnaryMethodDefinitionishR extends grpc.UnaryMethodDefinition<any, any> {

@@ -369,0 +472,0 @@ requestStream: any;

@@ -55,2 +55,7 @@ import { grpc } from "@injectivelabs/grpc-web";

}
export interface InjBurntEndpointRequest {
}
export interface InjBurntEndpointResponse {
totalInjBurnt: string;
}
export declare const AuctionEndpointRequest: {

@@ -128,2 +133,18 @@ encode(message: AuctionEndpointRequest, writer?: _m0.Writer): _m0.Writer;

};
export declare const InjBurntEndpointRequest: {
encode(_: InjBurntEndpointRequest, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): InjBurntEndpointRequest;
fromJSON(_: any): InjBurntEndpointRequest;
toJSON(_: InjBurntEndpointRequest): unknown;
create(base?: DeepPartial<InjBurntEndpointRequest>): InjBurntEndpointRequest;
fromPartial(_: DeepPartial<InjBurntEndpointRequest>): InjBurntEndpointRequest;
};
export declare const InjBurntEndpointResponse: {
encode(message: InjBurntEndpointResponse, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): InjBurntEndpointResponse;
fromJSON(object: any): InjBurntEndpointResponse;
toJSON(message: InjBurntEndpointResponse): unknown;
create(base?: DeepPartial<InjBurntEndpointResponse>): InjBurntEndpointResponse;
fromPartial(object: DeepPartial<InjBurntEndpointResponse>): InjBurntEndpointResponse;
};
/** InjectiveAuctionRPC defines gRPC API of the Auction API. */

@@ -137,2 +158,4 @@ export interface InjectiveAuctionRPC {

StreamBids(request: DeepPartial<StreamBidsRequest>, metadata?: grpc.Metadata): Observable<StreamBidsResponse>;
/** InjBurntEndpoint returns the total amount of INJ burnt in auctions. */
InjBurntEndpoint(request: DeepPartial<InjBurntEndpointRequest>, metadata?: grpc.Metadata): Promise<InjBurntEndpointResponse>;
}

@@ -145,2 +168,3 @@ export declare class InjectiveAuctionRPCClientImpl implements InjectiveAuctionRPC {

StreamBids(request: DeepPartial<StreamBidsRequest>, metadata?: grpc.Metadata): Observable<StreamBidsResponse>;
InjBurntEndpoint(request: DeepPartial<InjBurntEndpointRequest>, metadata?: grpc.Metadata): Promise<InjBurntEndpointResponse>;
}

@@ -153,2 +177,3 @@ export declare const InjectiveAuctionRPCDesc: {

export declare const InjectiveAuctionRPCStreamBidsDesc: UnaryMethodDefinitionish;
export declare const InjectiveAuctionRPCInjBurntEndpointDesc: UnaryMethodDefinitionish;
interface UnaryMethodDefinitionishR extends grpc.UnaryMethodDefinition<any, any> {

@@ -155,0 +180,0 @@ requestStream: any;

@@ -524,2 +524,82 @@ /* eslint-disable */

};
function createBaseInjBurntEndpointRequest() {
return {};
}
export const InjBurntEndpointRequest = {
encode(_, writer = _m0.Writer.create()) {
return writer;
},
decode(input, length) {
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
let end = length === undefined ? reader.len : reader.pos + length;
const message = createBaseInjBurntEndpointRequest();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromJSON(_) {
return {};
},
toJSON(_) {
const obj = {};
return obj;
},
create(base) {
return InjBurntEndpointRequest.fromPartial(base ?? {});
},
fromPartial(_) {
const message = createBaseInjBurntEndpointRequest();
return message;
},
};
function createBaseInjBurntEndpointResponse() {
return { totalInjBurnt: "" };
}
export const InjBurntEndpointResponse = {
encode(message, writer = _m0.Writer.create()) {
if (message.totalInjBurnt !== "") {
writer.uint32(10).string(message.totalInjBurnt);
}
return writer;
},
decode(input, length) {
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
let end = length === undefined ? reader.len : reader.pos + length;
const message = createBaseInjBurntEndpointResponse();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.totalInjBurnt = reader.string();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromJSON(object) {
return { totalInjBurnt: isSet(object.totalInjBurnt) ? String(object.totalInjBurnt) : "" };
},
toJSON(message) {
const obj = {};
message.totalInjBurnt !== undefined && (obj.totalInjBurnt = message.totalInjBurnt);
return obj;
},
create(base) {
return InjBurntEndpointResponse.fromPartial(base ?? {});
},
fromPartial(object) {
const message = createBaseInjBurntEndpointResponse();
message.totalInjBurnt = object.totalInjBurnt ?? "";
return message;
},
};
export class InjectiveAuctionRPCClientImpl {

@@ -532,2 +612,3 @@ rpc;

this.StreamBids = this.StreamBids.bind(this);
this.InjBurntEndpoint = this.InjBurntEndpoint.bind(this);
}

@@ -543,2 +624,5 @@ AuctionEndpoint(request, metadata) {

}
InjBurntEndpoint(request, metadata) {
return this.rpc.unary(InjectiveAuctionRPCInjBurntEndpointDesc, InjBurntEndpointRequest.fromPartial(request), metadata);
}
}

@@ -612,2 +696,24 @@ export const InjectiveAuctionRPCDesc = { serviceName: "injective_auction_rpc.InjectiveAuctionRPC" };

};
export const InjectiveAuctionRPCInjBurntEndpointDesc = {
methodName: "InjBurntEndpoint",
service: InjectiveAuctionRPCDesc,
requestStream: false,
responseStream: false,
requestType: {
serializeBinary() {
return InjBurntEndpointRequest.encode(this).finish();
},
},
responseType: {
deserializeBinary(data) {
const value = InjBurntEndpointResponse.decode(data);
return {
...value,
toObject() {
return value;
},
};
},
},
};
export class GrpcWebImpl {

@@ -614,0 +720,0 @@ host;

2

package.json
{
"name": "@injectivelabs/indexer-proto-ts",
"version": "1.13.3",
"version": "1.13.4",
"description": "Injective Indexer API client with generated gRPC bindings.",

@@ -5,0 +5,0 @@ "sideEffects": false,

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc