@avalabs/glacier-sdk 2.8.0-alpha.6 → 2.8.0-alpha.60

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.
@@ -0,0 +1,46 @@
1
+ var CurrencyCode = /* @__PURE__ */ ((CurrencyCode2) => {
2
+ CurrencyCode2["Usd"] = "usd";
3
+ CurrencyCode2["Eur"] = "eur";
4
+ CurrencyCode2["Aud"] = "aud";
5
+ CurrencyCode2["Cad"] = "cad";
6
+ CurrencyCode2["Chf"] = "chf";
7
+ CurrencyCode2["Clp"] = "clp";
8
+ CurrencyCode2["Czk"] = "czk";
9
+ CurrencyCode2["Dkk"] = "dkk";
10
+ CurrencyCode2["Gbp"] = "gbp";
11
+ CurrencyCode2["Hkd"] = "hkd";
12
+ CurrencyCode2["Huf"] = "huf";
13
+ return CurrencyCode2;
14
+ })(CurrencyCode || {});
15
+ var Erc721MetadataStatus = /* @__PURE__ */ ((Erc721MetadataStatus2) => {
16
+ Erc721MetadataStatus2["UNKNOWN"] = "UNKNOWN";
17
+ Erc721MetadataStatus2["MISSING_TOKEN"] = "MISSING_TOKEN";
18
+ Erc721MetadataStatus2["INVALID_TOKEN_URI"] = "INVALID_TOKEN_URI";
19
+ Erc721MetadataStatus2["INVALID_TOKEN_URI_SCHEME"] = "INVALID_TOKEN_URI_SCHEME";
20
+ Erc721MetadataStatus2["UNREACHABLE_TOKEN_URI"] = "UNREACHABLE_TOKEN_URI";
21
+ Erc721MetadataStatus2["THROTTLED_TOKEN_URI"] = "THROTTLED_TOKEN_URI";
22
+ Erc721MetadataStatus2["METADATA_CONTENT_TOO_LARGE"] = "METADATA_CONTENT_TOO_LARGE";
23
+ Erc721MetadataStatus2["INVALID_METADATA"] = "INVALID_METADATA";
24
+ Erc721MetadataStatus2["INVALID_METADATA_JSON"] = "INVALID_METADATA_JSON";
25
+ Erc721MetadataStatus2["INDEXED"] = "INDEXED";
26
+ Erc721MetadataStatus2["UNINDEXED"] = "UNINDEXED";
27
+ return Erc721MetadataStatus2;
28
+ })(Erc721MetadataStatus || {});
29
+ var InternalTransactionOpCall = /* @__PURE__ */ ((InternalTransactionOpCall2) => {
30
+ InternalTransactionOpCall2["UNKNOWN"] = "UNKNOWN";
31
+ InternalTransactionOpCall2["CALL"] = "CALL";
32
+ InternalTransactionOpCall2["CREATE"] = "CREATE";
33
+ InternalTransactionOpCall2["CREATE2"] = "CREATE2";
34
+ InternalTransactionOpCall2["CALLCODE"] = "CALLCODE";
35
+ InternalTransactionOpCall2["DELEGATECALL"] = "DELEGATECALL";
36
+ InternalTransactionOpCall2["STATICCALL"] = "STATICCALL";
37
+ return InternalTransactionOpCall2;
38
+ })(InternalTransactionOpCall || {});
39
+ var VmName = /* @__PURE__ */ ((VmName2) => {
40
+ VmName2["EVM"] = "EVM";
41
+ VmName2["BITCOIN"] = "BITCOIN";
42
+ VmName2["ETHEREUM"] = "ETHEREUM";
43
+ return VmName2;
44
+ })(VmName || {});
45
+
46
+ export { CurrencyCode, Erc721MetadataStatus, InternalTransactionOpCall, VmName };
@@ -1,93 +1,95 @@
1
- import { HttpOptions } from '@avalabs/utils-sdk';
2
- import { ChainInfo, Chains, CurrencyCode, Erc20Balances, Erc721Balances, ListTransactionDetails, NativeBalance, TransactionDetails } from './generated/models';
3
- import { HealthStatusCheck } from './types';
4
- export declare class GlacierClient {
5
- private baseUrl;
6
- private version;
7
- private httpOptions?;
8
- private httpClient;
9
- constructor(baseUrl: string, version?: string, httpOptions?: HttpOptions | undefined);
10
- /**
11
- *
12
- * @name HealthCheck
13
- * @summary Get the health of the service.
14
- * @request GET:/${version}/health-check
15
- * @response `200` `{ status?: string, info?: Record<string, { status?: string }>, error?: Record<string, { status?: string }>, details?: Record<string, { status?: string }> }` The Health Check is successful
16
- * @response `503` `{ status?: string, info?: Record<string, { status?: string }>, error?: Record<string, { status?: string }>, details?: Record<string, { status?: string }> }` The Health Check is not successful
17
- */
18
- healthCheck(params?: Record<string, any>, customOptions?: HttpOptions): Promise<HealthStatusCheck>;
19
- /**
20
- * No description
21
- *
22
- * @name GetNativeBalance
23
- * @summary Get native token balance of a wallet address for a given chain.
24
- * @request GET:/v1/chains/{chainId}/addresses/{address}/balances:getNative
25
- * @response `200` `NativeBalanceDto`
26
- */
27
- getNativeBalance(chainId: string, address: string, query?: {
28
- currency?: CurrencyCode;
29
- }, params?: Record<string, any>, customOptions?: HttpOptions): Promise<NativeBalance>;
30
- /**
31
- *
32
- * @name ListErc20Balances
33
- * @summary Get erc-20 token balances of a wallet address for a given chain.
34
- * @request GET:/v1/chains/{chainId}/addresses/{address}/balances:listErc20
35
- * @response `200` `Erc20BalancesDto`
36
- */
37
- listErc20Balances(chainId: string, address: string, query?: {
38
- pageSize?: number;
39
- pageToken?: string;
40
- currency?: CurrencyCode;
41
- }, params?: Record<string, any>, customOptions?: HttpOptions): Promise<Erc20Balances>;
42
- /**
43
- * No description
44
- *
45
- * @name ListErc721Balances
46
- * @summary Get erc-721 token balances of a wallet address for a given chain.
47
- * @request GET:/v1/chains/{chainId}/addresses/{address}/balances:listErc721
48
- * @response `200` `Erc721BalancesDto`
49
- */
50
- listErc721Balances(chainId: string, address: string, query?: {
51
- pageSize?: number;
52
- pageToken?: string;
53
- currency?: CurrencyCode;
54
- }, params?: Record<string, any>, customOptions?: HttpOptions): Promise<Erc721Balances>;
55
- /**
56
- * @description Gets a list of transactions where the given wallet address had an on-chain interaction for a given chain. The erc20 transfers, erc721 transfers, and internal transactions returned as part of the native transactions are only those where the address had an interaction. Therefore the transactions returned from this list may not be complete representations of the on-chain data. For a complete view of a transaction use the `/chains/:chainId/transactions/:txHash` endpoint.
57
- *
58
- * @name ListTransactions
59
- * @summary Gets a list of transactions for a wallet address and chain.
60
- * @request GET:/v1/chains/{chainId}/addresses/{address}/transactions
61
- * @response `200` `ListTransactionDetailsDto`
62
- */
63
- listTransactions(chainId: string, address: string, query?: {
64
- pageSize?: number;
65
- pageToken?: string;
66
- }, params?: Record<string, any>, customOptions?: HttpOptions): Promise<ListTransactionDetails>;
67
- /**
68
- *
69
- * @name GetTransaction
70
- * @summary Gets the details of a single transaction.
71
- * @request GET:/v1/chains/{chainId}/transactions/{txHash}
72
- * @response `200` `TransactionDetailsDto`
73
- */
74
- getTransaction(chainId: string, txHash: string, params?: Record<string, any>, customOptions?: HttpOptions): Promise<TransactionDetails>;
75
- /**
76
- *
77
- * @name SupportedChains
78
- * @summary Gets the list of chains supported by the api.
79
- * @request GET:/v1/chains
80
- * @response `200` `ChainsDto`
81
- */
82
- supportedChains(params?: Record<string, any>, customOptions?: HttpOptions): Promise<Chains>;
83
- /**
84
- * No description
85
- *
86
- * @name GetChainInfo
87
- * @summary Gets chain information by chain id.
88
- * @request GET:/v1/chains/{chainId}
89
- * @response `200` `ChainInfoDto`
90
- */
91
- getChainInfo(chainId: string, params?: Record<string, any>, customOptions?: HttpOptions): Promise<ChainInfo>;
92
- }
93
- //# sourceMappingURL=glacierClient.d.ts.map
1
+ import { HttpOptions } from '@avalabs/utils-sdk';
2
+ import { CurrencyCode, NativeBalance, Erc20Balances, Erc721Balances, ListTransactionDetails, TransactionDetails, Chains, ChainInfo } from './generated/models.js';
3
+ import { HealthStatusCheck } from './types.js';
4
+
5
+ declare class GlacierClient {
6
+ private baseUrl;
7
+ private version;
8
+ private httpOptions?;
9
+ private httpClient;
10
+ constructor(baseUrl: string, version?: string, httpOptions?: HttpOptions | undefined);
11
+ /**
12
+ *
13
+ * @name HealthCheck
14
+ * @summary Get the health of the service.
15
+ * @request GET:/${version}/health-check
16
+ * @response `200` `{ status?: string, info?: Record<string, { status?: string }>, error?: Record<string, { status?: string }>, details?: Record<string, { status?: string }> }` The Health Check is successful
17
+ * @response `503` `{ status?: string, info?: Record<string, { status?: string }>, error?: Record<string, { status?: string }>, details?: Record<string, { status?: string }> }` The Health Check is not successful
18
+ */
19
+ healthCheck(params?: Record<string, any>, customOptions?: HttpOptions): Promise<HealthStatusCheck>;
20
+ /**
21
+ * No description
22
+ *
23
+ * @name GetNativeBalance
24
+ * @summary Get native token balance of a wallet address for a given chain.
25
+ * @request GET:/v1/chains/{chainId}/addresses/{address}/balances:getNative
26
+ * @response `200` `NativeBalanceDto`
27
+ */
28
+ getNativeBalance(chainId: string, address: string, query?: {
29
+ currency?: CurrencyCode;
30
+ }, params?: Record<string, any>, customOptions?: HttpOptions): Promise<NativeBalance>;
31
+ /**
32
+ *
33
+ * @name ListErc20Balances
34
+ * @summary Get erc-20 token balances of a wallet address for a given chain.
35
+ * @request GET:/v1/chains/{chainId}/addresses/{address}/balances:listErc20
36
+ * @response `200` `Erc20BalancesDto`
37
+ */
38
+ listErc20Balances(chainId: string, address: string, query?: {
39
+ pageSize?: number;
40
+ pageToken?: string;
41
+ currency?: CurrencyCode;
42
+ }, params?: Record<string, any>, customOptions?: HttpOptions): Promise<Erc20Balances>;
43
+ /**
44
+ * No description
45
+ *
46
+ * @name ListErc721Balances
47
+ * @summary Get erc-721 token balances of a wallet address for a given chain.
48
+ * @request GET:/v1/chains/{chainId}/addresses/{address}/balances:listErc721
49
+ * @response `200` `Erc721BalancesDto`
50
+ */
51
+ listErc721Balances(chainId: string, address: string, query?: {
52
+ pageSize?: number;
53
+ pageToken?: string;
54
+ currency?: CurrencyCode;
55
+ }, params?: Record<string, any>, customOptions?: HttpOptions): Promise<Erc721Balances>;
56
+ /**
57
+ * @description Gets a list of transactions where the given wallet address had an on-chain interaction for a given chain. The erc20 transfers, erc721 transfers, and internal transactions returned as part of the native transactions are only those where the address had an interaction. Therefore the transactions returned from this list may not be complete representations of the on-chain data. For a complete view of a transaction use the `/chains/:chainId/transactions/:txHash` endpoint.
58
+ *
59
+ * @name ListTransactions
60
+ * @summary Gets a list of transactions for a wallet address and chain.
61
+ * @request GET:/v1/chains/{chainId}/addresses/{address}/transactions
62
+ * @response `200` `ListTransactionDetailsDto`
63
+ */
64
+ listTransactions(chainId: string, address: string, query?: {
65
+ pageSize?: number;
66
+ pageToken?: string;
67
+ }, params?: Record<string, any>, customOptions?: HttpOptions): Promise<ListTransactionDetails>;
68
+ /**
69
+ *
70
+ * @name GetTransaction
71
+ * @summary Gets the details of a single transaction.
72
+ * @request GET:/v1/chains/{chainId}/transactions/{txHash}
73
+ * @response `200` `TransactionDetailsDto`
74
+ */
75
+ getTransaction(chainId: string, txHash: string, params?: Record<string, any>, customOptions?: HttpOptions): Promise<TransactionDetails>;
76
+ /**
77
+ *
78
+ * @name SupportedChains
79
+ * @summary Gets the list of chains supported by the api.
80
+ * @request GET:/v1/chains
81
+ * @response `200` `ChainsDto`
82
+ */
83
+ supportedChains(params?: Record<string, any>, customOptions?: HttpOptions): Promise<Chains>;
84
+ /**
85
+ * No description
86
+ *
87
+ * @name GetChainInfo
88
+ * @summary Gets chain information by chain id.
89
+ * @request GET:/v1/chains/{chainId}
90
+ * @response `200` `ChainInfoDto`
91
+ */
92
+ getChainInfo(chainId: string, params?: Record<string, any>, customOptions?: HttpOptions): Promise<ChainInfo>;
93
+ }
94
+
95
+ export { GlacierClient };
@@ -0,0 +1,83 @@
1
+ import { HttpClient } from '@avalabs/utils-sdk';
2
+
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
7
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
8
+ var __spreadValues = (a, b) => {
9
+ for (var prop in b || (b = {}))
10
+ if (__hasOwnProp.call(b, prop))
11
+ __defNormalProp(a, prop, b[prop]);
12
+ if (__getOwnPropSymbols)
13
+ for (var prop of __getOwnPropSymbols(b)) {
14
+ if (__propIsEnum.call(b, prop))
15
+ __defNormalProp(a, prop, b[prop]);
16
+ }
17
+ return a;
18
+ };
19
+ class GlacierClient {
20
+ constructor(baseUrl, version = "v1", httpOptions) {
21
+ this.baseUrl = baseUrl;
22
+ this.version = version;
23
+ this.httpOptions = httpOptions;
24
+ this.httpClient = new HttpClient(
25
+ `${this.baseUrl}/${this.version}`,
26
+ this.httpOptions
27
+ );
28
+ }
29
+ healthCheck(params = {}, customOptions = {}) {
30
+ return this.httpClient.get(
31
+ `/health-check`,
32
+ params,
33
+ customOptions
34
+ );
35
+ }
36
+ getNativeBalance(chainId, address, query, params = {}, customOptions = {}) {
37
+ return this.httpClient.get(
38
+ `/chains/${chainId}/addresses/${address}/balances:getNative`,
39
+ __spreadValues(__spreadValues({}, query), params),
40
+ customOptions
41
+ );
42
+ }
43
+ listErc20Balances(chainId, address, query, params = {}, customOptions = {}) {
44
+ return this.httpClient.get(
45
+ `/chains/${chainId}/addresses/${address}/balances:listErc20`,
46
+ __spreadValues(__spreadValues({}, query), params),
47
+ customOptions
48
+ );
49
+ }
50
+ listErc721Balances(chainId, address, query, params = {}, customOptions = {}) {
51
+ return this.httpClient.get(
52
+ `/chains/${chainId}/addresses/${address}/balances:listErc721`,
53
+ __spreadValues(__spreadValues({}, query), params),
54
+ customOptions
55
+ );
56
+ }
57
+ listTransactions(chainId, address, query, params = {}, customOptions = {}) {
58
+ return this.httpClient.get(
59
+ `/chains/${chainId}/addresses/${address}/transactions`,
60
+ __spreadValues(__spreadValues({}, query), params),
61
+ customOptions
62
+ );
63
+ }
64
+ getTransaction(chainId, txHash, params = {}, customOptions = {}) {
65
+ return this.httpClient.get(
66
+ `/chains/${chainId}/transactions/${txHash}`,
67
+ params,
68
+ customOptions
69
+ );
70
+ }
71
+ supportedChains(params = {}, customOptions = {}) {
72
+ return this.httpClient.get(`/chains`, params, customOptions);
73
+ }
74
+ getChainInfo(chainId, params = {}, customOptions = {}) {
75
+ return this.httpClient.get(
76
+ `/chains/${chainId}`,
77
+ params,
78
+ customOptions
79
+ );
80
+ }
81
+ }
82
+
83
+ export { GlacierClient };
package/esm/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export { Block, ChainInfo, Chains, CurrencyCode, Erc20Balances, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Balances, Erc721Metadata, Erc721MetadataStatus, Erc721Token, Erc721TokenBalance, Erc721Transfer, Erc721TransferDetails, FullTransactionDetails, InternalTransactionDetails, InternalTransactionOpCall, ListBlocks, ListErc20Transactions, ListErc721Transactions, ListNativeTransactions, ListTransactionDetails, ListTransfers, Method, Money, NativeBalance, NativeTokenBalance, NativeTransaction, NetworkToken, NetworkTokenDetails, RichAddress, TransactionDetails, UtilityAddresses, VmName } from './generated/models.js';
2
+ export { GlacierClient } from './glacierClient.js';
package/esm/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export { CurrencyCode, Erc721MetadataStatus, InternalTransactionOpCall, VmName } from './generated/models.js';
2
+ export { GlacierClient } from './glacierClient.js';
@@ -1,13 +1,14 @@
1
- export interface HealthStatusCheck {
2
- status?: string;
3
- info?: Record<string, {
4
- status?: string;
5
- }>;
6
- error?: Record<string, {
7
- status?: string;
8
- }>;
9
- details?: Record<string, {
10
- status?: string;
11
- }>;
12
- }
13
- //# sourceMappingURL=types.d.ts.map
1
+ interface HealthStatusCheck {
2
+ status?: string;
3
+ info?: Record<string, {
4
+ status?: string;
5
+ }>;
6
+ error?: Record<string, {
7
+ status?: string;
8
+ }>;
9
+ details?: Record<string, {
10
+ status?: string;
11
+ }>;
12
+ }
13
+
14
+ export { HealthStatusCheck };
package/package.json CHANGED
@@ -1,25 +1,23 @@
1
1
  {
2
2
  "name": "@avalabs/glacier-sdk",
3
- "version": "2.8.0-alpha.6",
3
+ "version": "2.8.0-alpha.60",
4
4
  "description": "sdk for interacting with glacier-api",
5
5
  "author": "Oliver Wang <oliver.wang@avalabs.org>",
6
6
  "homepage": "https://github.com/ava-labs/avalanche-sdks#readme",
7
7
  "license": "ISC",
8
8
  "main": "dist/index.js",
9
+ "module": "esm/index.js",
9
10
  "typings": "dist/index.d.ts",
11
+ "files": [
12
+ "dist",
13
+ "esm"
14
+ ],
15
+ "sideEffects": false,
10
16
  "publishConfig": {
11
17
  "access": "restricted"
12
18
  },
13
19
  "devDependencies": {
14
- "@rollup/plugin-json": "^4.1.0",
15
- "@rollup/plugin-typescript": "^8.2.1",
16
- "@zerollup/ts-transform-paths": "^1.7.18",
17
- "rollup": "^2.47.0",
18
- "rollup-plugin-commonjs": "^10.1.0",
19
- "rollup-plugin-delete": "^2.0.0",
20
- "rollup-plugin-typescript2": "^0.30.0",
21
- "swagger-typescript-api": "10.0.1",
22
- "ttypescript": "^1.5.12"
20
+ "swagger-typescript-api": "12.0.3"
23
21
  },
24
22
  "repository": {
25
23
  "type": "git",
@@ -29,14 +27,13 @@
29
27
  "codegen": "node ./swagger/generateModels.js",
30
28
  "start": "rollup -c --watch",
31
29
  "build": "rollup -c",
32
- "build:prod": "rollup -c --environment BUILD:production",
33
30
  "lint": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\""
34
31
  },
35
32
  "bugs": {
36
33
  "url": "https://github.com/ava-labs/avalanche-sdks/issues"
37
34
  },
38
35
  "dependencies": {
39
- "@avalabs/utils-sdk": "2.8.0-alpha.6"
36
+ "@avalabs/utils-sdk": "2.8.0-alpha.60"
40
37
  },
41
- "gitHead": "7acf1796f15c09291be7b0a3accbde4e2041c8f7"
38
+ "gitHead": "4f43a868e186dfdc65d7d00e4d2645e9f78c0a55"
42
39
  }
package/CHANGELOG.md DELETED
@@ -1,202 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # 2.8.0-alpha.6 (2022-10-26)
7
-
8
- ### Bug Fixes
9
-
10
- - (Glacier) Schema update ([#213](https://github.com/ava-labs/avalanche-sdks/issues/213)) ([b4afa93](https://github.com/ava-labs/avalanche-sdks/commit/b4afa939c6ef03c4e1fe095d7c561d73a72c8556))
11
-
12
- # 2.8.0-alpha.5 (2022-10-24)
13
-
14
- **Note:** Version bump only for package @avalabs/glacier-sdk
15
-
16
- # 2.8.0-alpha.4 (2022-10-20)
17
-
18
- ### Bug Fixes
19
-
20
- - bogus commit to trigger release ([84e36d4](https://github.com/ava-labs/avalanche-sdks/commit/84e36d42deec024d0a28005c9e8928ad7fbb905a))
21
-
22
- # 2.8.0-alpha.3 (2022-10-20)
23
-
24
- ### Bug Fixes
25
-
26
- - bridge sdk tree shakable ([#208](https://github.com/ava-labs/avalanche-sdks/issues/208)) ([43952ca](https://github.com/ava-labs/avalanche-sdks/commit/43952ca8370af10d6f90578b3491300485b2056f))
27
-
28
- # 2.8.0-alpha.2 (2022-10-20)
29
-
30
- **Note:** Version bump only for package @avalabs/glacier-sdk
31
-
32
- # [2.8.0-alpha.1](https://github.com/ava-labs/avalanche-sdks/compare/v2.8.0-alpha.0...v2.8.0-alpha.1) (2022-10-20)
33
-
34
- **Note:** Version bump only for package @avalabs/glacier-sdk
35
-
36
- # [2.8.0-alpha.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.1-alpha.0...v2.8.0-alpha.0) (2022-10-18)
37
-
38
- **Note:** Version bump only for package @avalabs/glacier-sdk
39
-
40
- ## [2.7.1-alpha.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0...v2.7.1-alpha.0) (2022-10-05)
41
-
42
- **Note:** Version bump only for package @avalabs/glacier-sdk
43
-
44
- # [2.7.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0-alpha.7...v2.7.0) (2022-10-05)
45
-
46
- **Note:** Version bump only for package @avalabs/glacier-sdk
47
-
48
- # [2.7.0-alpha.7](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0-alpha.6...v2.7.0-alpha.7) (2022-10-04)
49
-
50
- **Note:** Version bump only for package @avalabs/glacier-sdk
51
-
52
- # [2.7.0-alpha.6](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0-alpha.5...v2.7.0-alpha.6) (2022-10-04)
53
-
54
- **Note:** Version bump only for package @avalabs/glacier-sdk
55
-
56
- # [2.7.0-alpha.5](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0-alpha.4...v2.7.0-alpha.5) (2022-09-19)
57
-
58
- **Note:** Version bump only for package @avalabs/glacier-sdk
59
-
60
- # [2.7.0-alpha.4](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0-alpha.3...v2.7.0-alpha.4) (2022-09-19)
61
-
62
- **Note:** Version bump only for package @avalabs/glacier-sdk
63
-
64
- # [2.7.0-alpha.3](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0-alpha.2...v2.7.0-alpha.3) (2022-09-15)
65
-
66
- **Note:** Version bump only for package @avalabs/glacier-sdk
67
-
68
- # [2.7.0-alpha.2](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0-alpha.1...v2.7.0-alpha.2) (2022-09-14)
69
-
70
- **Note:** Version bump only for package @avalabs/glacier-sdk
71
-
72
- # [2.7.0-alpha.1](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0-alpha.0...v2.7.0-alpha.1) (2022-09-09)
73
-
74
- **Note:** Version bump only for package @avalabs/glacier-sdk
75
-
76
- # [2.7.0-alpha.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.6.0...v2.7.0-alpha.0) (2022-09-09)
77
-
78
- **Note:** Version bump only for package @avalabs/glacier-sdk
79
-
80
- # [2.6.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.6.0-alpha.1...v2.6.0) (2022-09-07)
81
-
82
- **Note:** Version bump only for package @avalabs/glacier-sdk
83
-
84
- # [2.6.0-alpha.1](https://github.com/ava-labs/avalanche-sdks/compare/v2.6.0-alpha.0...v2.6.0-alpha.1) (2022-09-01)
85
-
86
- **Note:** Version bump only for package @avalabs/glacier-sdk
87
-
88
- # [2.6.0-alpha.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.5.1-alpha.0...v2.6.0-alpha.0) (2022-09-01)
89
-
90
- **Note:** Version bump only for package @avalabs/glacier-sdk
91
-
92
- ## [2.5.1-alpha.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.5.0...v2.5.1-alpha.0) (2022-08-25)
93
-
94
- **Note:** Version bump only for package @avalabs/glacier-sdk
95
-
96
- # [2.5.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.5.0-alpha.17...v2.5.0) (2022-08-18)
97
-
98
- **Note:** Version bump only for package @avalabs/glacier-sdk
99
-
100
- # [2.5.0-alpha.17](https://github.com/ava-labs/avalanche-sdks/compare/v2.5.0-alpha.15...v2.5.0-alpha.17) (2022-08-18)
101
-
102
- **Note:** Version bump only for package @avalabs/glacier-sdk
103
-
104
- # [2.5.0-alpha.15](https://github.com/ava-labs/avalanche-sdks/compare/v2.5.0-alpha.14...v2.5.0-alpha.15) (2022-08-17)
105
-
106
- **Note:** Version bump only for package @avalabs/glacier-sdk
107
-
108
- # 2.5.0-alpha.13 (2022-08-16)
109
-
110
- **Note:** Version bump only for package @avalabs/glacier-sdk
111
-
112
- # 2.5.0-alpha.12 (2022-08-15)
113
-
114
- **Note:** Version bump only for package @avalabs/glacier-sdk
115
-
116
- # 2.5.0-alpha.11 (2022-08-08)
117
-
118
- **Note:** Version bump only for package @avalabs/glacier-sdk
119
-
120
- # 2.5.0-alpha.10 (2022-08-04)
121
-
122
- ### Features
123
-
124
- - feature flag to not rely on posthog instance ([#166](https://github.com/ava-labs/avalanche-sdks/issues/166)) ([c9193aa](https://github.com/ava-labs/avalanche-sdks/commit/c9193aacb7fdb0bacb2440f1476b222bd76abe26))
125
-
126
- # 2.5.0-alpha.9 (2022-08-04)
127
-
128
- **Note:** Version bump only for package @avalabs/glacier-sdk
129
-
130
- # 2.5.0-alpha.8 (2022-08-04)
131
-
132
- **Note:** Version bump only for package @avalabs/glacier-sdk
133
-
134
- # 2.5.0-alpha.7 (2022-08-03)
135
-
136
- ### Bug Fixes
137
-
138
- - make glacier sdk pass params to the http client correctly ([c7eb6f5](https://github.com/ava-labs/avalanche-sdks/commit/c7eb6f56a9f5769050c2d1f5db8012c5c0af0f11))
139
-
140
- # 2.5.0-alpha.6 (2022-07-28)
141
-
142
- **Note:** Version bump only for package @avalabs/glacier-sdk
143
-
144
- # 2.5.0-alpha.5 (2022-07-22)
145
-
146
- ### Bug Fixes
147
-
148
- - use current version for utils dep for auto-update ([45b69a6](https://github.com/ava-labs/avalanche-sdks/commit/45b69a64d7eb120f44fe00c7598de468c08741a4))
149
-
150
- # 2.5.0-alpha.4 (2022-07-21)
151
-
152
- **Note:** Version bump only for package @avalabs/glacier-sdk
153
-
154
- # 2.5.0-alpha.3 (2022-07-21)
155
-
156
- **Note:** Version bump only for package @avalabs/glacier-sdk
157
-
158
- # 2.5.0-alpha.2 (2022-07-21)
159
-
160
- ### Bug Fixes
161
-
162
- - **glacier:** missing dep fixed ([e51a99f](https://github.com/ava-labs/avalanche-sdks/commit/e51a99f29cc740e0e1bdcd1a437120dbdb25c696))
163
-
164
- # 2.5.0-alpha.1 (2022-07-21)
165
-
166
- ### Bug Fixes
167
-
168
- - use etherscan proxy ([#160](https://github.com/ava-labs/avalanche-sdks/issues/160)) ([f3cba1e](https://github.com/ava-labs/avalanche-sdks/commit/f3cba1ea802006d682ab806a2cf324222fb31e90))
169
-
170
- # 2.5.0-alpha.0 (2022-07-19)
171
-
172
- ### Features
173
-
174
- - get Ethereum network data from wallet-network-assets ([#156](https://github.com/ava-labs/avalanche-sdks/issues/156)) ([bfa9731](https://github.com/ava-labs/avalanche-sdks/commit/bfa973197dfd01a6cb9ee155b4660374471e173c))
175
-
176
- ## 2.4.1-alpha.10 (2022-07-18)
177
-
178
- **Note:** Version bump only for package @avalabs/glacier-sdk
179
-
180
- ## 2.4.1-alpha.9 (2022-07-14)
181
-
182
- **Note:** Version bump only for package @avalabs/glacier-sdk
183
-
184
- ## 2.4.1-alpha.8 (2022-07-07)
185
-
186
- **Note:** Version bump only for package @avalabs/glacier-sdk
187
-
188
- ## 2.4.1-alpha.7 (2022-07-07)
189
-
190
- **Note:** Version bump only for package @avalabs/glacier-sdk
191
-
192
- ## 2.4.1-alpha.6 (2022-07-07)
193
-
194
- **Note:** Version bump only for package @avalabs/glacier-sdk
195
-
196
- ## 2.4.1-alpha.5 (2022-07-07)
197
-
198
- **Note:** Version bump only for package @avalabs/glacier-sdk
199
-
200
- ## 2.4.1-alpha.4 (2022-07-06)
201
-
202
- **Note:** Version bump only for package glacier-sdk
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- const glacierSdk = require('..');
4
-
5
- describe('glacier-sdk', () => {
6
- it('needs tests');
7
- });
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC"}