Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chaingate-client

Package Overview
Dependencies
Maintainers
0
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chaingate-client - npm Package Compare versions

Comparing version 0.16.5 to 0.17.0

2

base.ts

@@ -7,3 +7,3 @@ /* tslint:disable */

*
* The version of the OpenAPI document: 0.16.5
* The version of the OpenAPI document: 0.17.0
*

@@ -10,0 +10,0 @@ *

@@ -7,3 +7,3 @@ /* tslint:disable */

*
* The version of the OpenAPI document: 0.16.5
* The version of the OpenAPI document: 0.17.0
*

@@ -10,0 +10,0 @@ *

@@ -7,3 +7,3 @@ /* tslint:disable */

*
* The version of the OpenAPI document: 0.16.5
* The version of the OpenAPI document: 0.17.0
*

@@ -10,0 +10,0 @@ *

@@ -5,3 +5,3 @@ /**

*
* The version of the OpenAPI document: 0.16.5
* The version of the OpenAPI document: 0.17.0
*

@@ -8,0 +8,0 @@ *

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

*
* The version of the OpenAPI document: 0.16.5
* The version of the OpenAPI document: 0.17.0
*

@@ -11,0 +11,0 @@ *

@@ -5,3 +5,3 @@ /**

*
* The version of the OpenAPI document: 0.16.5
* The version of the OpenAPI document: 0.17.0
*

@@ -8,0 +8,0 @@ *

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

*
* The version of the OpenAPI document: 0.16.5
* The version of the OpenAPI document: 0.17.0
*

@@ -11,0 +11,0 @@ *

@@ -5,3 +5,3 @@ /**

*
* The version of the OpenAPI document: 0.16.5
* The version of the OpenAPI document: 0.17.0
*

@@ -8,0 +8,0 @@ *

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

*
* The version of the OpenAPI document: 0.16.5
* The version of the OpenAPI document: 0.17.0
*

@@ -11,0 +11,0 @@ *

@@ -1,4 +0,4 @@

import { ArbitrumApi, AvalancheApi, BNBChainApi, BitcoinApi, BitcoinTestnetApi, BobaNetworkApi, EthereumApi, FantomOperaApi, PolygonApi, LitecoinApi, DogecoinApi } from './api';
export { ArbitrumApi, AvalancheApi, BNBChainApi, BitcoinApi, BitcoinTestnetApi, BobaNetworkApi, EthereumApi, FantomOperaApi, PolygonApi, LitecoinApi, DogecoinApi } from './api';
export type Api = ArbitrumApi | AvalancheApi | BNBChainApi | BitcoinApi | BitcoinTestnetApi | BobaNetworkApi | EthereumApi | FantomOperaApi | PolygonApi | LitecoinApi | DogecoinApi;
import { ArbitrumApi, AvalancheApi, BNBChainApi, BitcoinApi, BitcoinTestnetApi, BobaNetworkApi, EthereumApi, FantomOperaApi, PolygonApi, LitecoinApi, DogecoinApi, BitcoinCashApi } from './api';
export { ArbitrumApi, AvalancheApi, BNBChainApi, BitcoinApi, BitcoinTestnetApi, BobaNetworkApi, EthereumApi, FantomOperaApi, PolygonApi, LitecoinApi, DogecoinApi, BitcoinCashApi } from './api';
export type Api = ArbitrumApi | AvalancheApi | BNBChainApi | BitcoinApi | BitcoinTestnetApi | BobaNetworkApi | EthereumApi | FantomOperaApi | PolygonApi | LitecoinApi | DogecoinApi | BitcoinCashApi;
export type EvmApi = ArbitrumApi | AvalancheApi | BNBChainApi | BobaNetworkApi | EthereumApi | FantomOperaApi | PolygonApi | LitecoinApi | DogecoinApi;

@@ -17,3 +17,4 @@ export declare class ChainGateClient {

readonly DogecoinApi: DogecoinApi;
readonly BitcoinCashApi: BitcoinCashApi;
constructor(apiKey: string);
}
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChainGateClient = exports.DogecoinApi = exports.LitecoinApi = exports.PolygonApi = exports.FantomOperaApi = exports.EthereumApi = exports.BobaNetworkApi = exports.BitcoinTestnetApi = exports.BitcoinApi = exports.BNBChainApi = exports.AvalancheApi = exports.ArbitrumApi = void 0;
exports.ChainGateClient = exports.BitcoinCashApi = exports.DogecoinApi = exports.LitecoinApi = exports.PolygonApi = exports.FantomOperaApi = exports.EthereumApi = exports.BobaNetworkApi = exports.BitcoinTestnetApi = exports.BitcoinApi = exports.BNBChainApi = exports.AvalancheApi = exports.ArbitrumApi = void 0;
var configuration_1 = require("./configuration");

@@ -18,2 +18,3 @@ var api_1 = require("./api");

Object.defineProperty(exports, "DogecoinApi", { enumerable: true, get: function () { return api_2.DogecoinApi; } });
Object.defineProperty(exports, "BitcoinCashApi", { enumerable: true, get: function () { return api_2.BitcoinCashApi; } });
var ChainGateClient = /** @class */ (function () {

@@ -33,2 +34,3 @@ function ChainGateClient(apiKey) {

this.DogecoinApi = new api_1.DogecoinApi(configuration);
this.BitcoinCashApi = new api_1.BitcoinCashApi(configuration);
}

@@ -35,0 +37,0 @@ return ChainGateClient;

@@ -1,2 +0,2 @@

import {Configuration} from './configuration'
import { Configuration } from './configuration'
import {

@@ -13,3 +13,4 @@ ArbitrumApi,

LitecoinApi,
DogecoinApi
DogecoinApi,
BitcoinCashApi
} from './api'

@@ -28,3 +29,4 @@

LitecoinApi,
DogecoinApi
DogecoinApi,
BitcoinCashApi
} from './api'

@@ -38,3 +40,3 @@

PolygonApi | LitecoinApi |
DogecoinApi
DogecoinApi | BitcoinCashApi

@@ -60,2 +62,3 @@ export type EvmApi =

public readonly DogecoinApi: DogecoinApi
public readonly BitcoinCashApi: BitcoinCashApi

@@ -76,3 +79,4 @@ constructor(apiKey: string) {

this.DogecoinApi = new DogecoinApi(configuration)
this.BitcoinCashApi = new BitcoinCashApi(configuration)
}
}
{
"name": "chaingate-client",
"version": "0.16.5",
"version": "0.17.0",
"description": "OpenAPI client for chaingate-client",

@@ -5,0 +5,0 @@ "author": "drakensoftware",

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

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