@avalabs/types 2.8.0-alpha.8 → 2.8.0-alpha.80
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/index.d.ts +36 -2
- package/dist/index.js +7 -1
- package/{dist/src → esm}/contacts.d.ts +12 -11
- package/esm/coreAccounts.d.ts +25 -0
- package/esm/coreAccounts.js +7 -0
- package/esm/index.d.ts +2 -0
- package/esm/index.js +1 -0
- package/package.json +9 -14
- package/.eslintrc.js +0 -3
- package/.prettierrc.js +0 -3
- package/CHANGELOG.md +0 -1014
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/src/contacts.d.ts.map +0 -1
- package/index.ts +0 -1
- package/rollup.config.js +0 -33
- package/src/contacts.ts +0 -11
- package/tsconfig.json +0 -8
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,36 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
interface Contact {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
address: string;
|
|
5
|
+
isKnown?: boolean;
|
|
6
|
+
addressBTC?: string;
|
|
7
|
+
}
|
|
8
|
+
interface ContactsState {
|
|
9
|
+
contacts: Contact[];
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare enum CoreAccountType {
|
|
13
|
+
PRIMARY = "primary",
|
|
14
|
+
IMPORTED = "imported"
|
|
15
|
+
}
|
|
16
|
+
interface CoreBaseAccount {
|
|
17
|
+
active: boolean;
|
|
18
|
+
addressC: string;
|
|
19
|
+
addressBTC: string;
|
|
20
|
+
addressAVM: string;
|
|
21
|
+
addressPVM: string;
|
|
22
|
+
addressCoreEth: string;
|
|
23
|
+
name: string;
|
|
24
|
+
type: CoreAccountType;
|
|
25
|
+
}
|
|
26
|
+
interface CorePrimaryAccount extends CoreBaseAccount {
|
|
27
|
+
index: number;
|
|
28
|
+
type: CoreAccountType.PRIMARY;
|
|
29
|
+
}
|
|
30
|
+
interface CoreImportedAccount extends CoreBaseAccount {
|
|
31
|
+
id: string;
|
|
32
|
+
type: CoreAccountType.IMPORTED;
|
|
33
|
+
}
|
|
34
|
+
type CoreAccount = CorePrimaryAccount | CoreImportedAccount;
|
|
35
|
+
|
|
36
|
+
export { Contact, ContactsState, CoreAccount, CoreAccountType, CoreImportedAccount, CorePrimaryAccount };
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
var CoreAccountType = /* @__PURE__ */ ((CoreAccountType2) => {
|
|
4
|
+
CoreAccountType2["PRIMARY"] = "primary";
|
|
5
|
+
CoreAccountType2["IMPORTED"] = "imported";
|
|
6
|
+
return CoreAccountType2;
|
|
7
|
+
})(CoreAccountType || {});
|
|
8
|
+
|
|
9
|
+
exports.CoreAccountType = CoreAccountType;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
id: string;
|
|
3
|
-
name: string;
|
|
4
|
-
address: string;
|
|
5
|
-
isKnown?: boolean;
|
|
6
|
-
addressBTC?: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
contacts: Contact[];
|
|
10
|
-
}
|
|
11
|
-
|
|
1
|
+
interface Contact {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
address: string;
|
|
5
|
+
isKnown?: boolean;
|
|
6
|
+
addressBTC?: string;
|
|
7
|
+
}
|
|
8
|
+
interface ContactsState {
|
|
9
|
+
contacts: Contact[];
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { Contact, ContactsState };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare enum CoreAccountType {
|
|
2
|
+
PRIMARY = "primary",
|
|
3
|
+
IMPORTED = "imported"
|
|
4
|
+
}
|
|
5
|
+
interface CoreBaseAccount {
|
|
6
|
+
active: boolean;
|
|
7
|
+
addressC: string;
|
|
8
|
+
addressBTC: string;
|
|
9
|
+
addressAVM: string;
|
|
10
|
+
addressPVM: string;
|
|
11
|
+
addressCoreEth: string;
|
|
12
|
+
name: string;
|
|
13
|
+
type: CoreAccountType;
|
|
14
|
+
}
|
|
15
|
+
interface CorePrimaryAccount extends CoreBaseAccount {
|
|
16
|
+
index: number;
|
|
17
|
+
type: CoreAccountType.PRIMARY;
|
|
18
|
+
}
|
|
19
|
+
interface CoreImportedAccount extends CoreBaseAccount {
|
|
20
|
+
id: string;
|
|
21
|
+
type: CoreAccountType.IMPORTED;
|
|
22
|
+
}
|
|
23
|
+
type CoreAccount = CorePrimaryAccount | CoreImportedAccount;
|
|
24
|
+
|
|
25
|
+
export { CoreAccount, CoreAccountType, CoreImportedAccount, CorePrimaryAccount };
|
package/esm/index.d.ts
ADDED
package/esm/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CoreAccountType } from './coreAccounts.js';
|
package/package.json
CHANGED
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalabs/types",
|
|
3
|
-
"version": "2.8.0-alpha.
|
|
3
|
+
"version": "2.8.0-alpha.80",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
5
|
"private": false,
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "esm/index.js",
|
|
7
8
|
"typings": "dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"esm"
|
|
12
|
+
],
|
|
13
|
+
"sideEffects": false,
|
|
8
14
|
"scripts": {
|
|
9
15
|
"start": "rollup -c --watch",
|
|
10
16
|
"build": "rollup -c",
|
|
11
|
-
"build:prod": "rollup -c --environment BUILD:production",
|
|
12
17
|
"lint": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\""
|
|
13
18
|
},
|
|
14
|
-
"
|
|
15
|
-
"@rollup/plugin-json": "4.1.0",
|
|
16
|
-
"@rollup/plugin-typescript": "8.2.1",
|
|
17
|
-
"@zerollup/ts-transform-paths": "1.7.18",
|
|
18
|
-
"rollup": "2.47.0",
|
|
19
|
-
"rollup-plugin-commonjs": "10.1.0",
|
|
20
|
-
"rollup-plugin-delete": "2.0.0",
|
|
21
|
-
"rollup-plugin-typescript2": "0.30.0",
|
|
22
|
-
"ttypescript": "1.5.12"
|
|
23
|
-
},
|
|
24
|
-
"gitHead": "99459a99ee95f82208ab259d516a2d626eee100e"
|
|
19
|
+
"gitHead": "96d11ae6b3c67b8666ff18ae230ecb9ff25fff13"
|
|
25
20
|
}
|
package/.eslintrc.js
DELETED
package/.prettierrc.js
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,1014 +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.8 (2022-11-01)
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
- bump to lerna v6 ([#216](https://github.com/ava-labs/avalanche-sdks/issues/216)) ([fbce292](https://github.com/ava-labs/avalanche-sdks/commit/fbce292e86bc35101d8a6f8a60e92dabf5cc2c24))
|
|
11
|
-
|
|
12
|
-
# 2.8.0-alpha.7 (2022-10-27)
|
|
13
|
-
|
|
14
|
-
**Note:** Version bump only for package @avalabs/types
|
|
15
|
-
|
|
16
|
-
# 2.8.0-alpha.6 (2022-10-26)
|
|
17
|
-
|
|
18
|
-
### Bug Fixes
|
|
19
|
-
|
|
20
|
-
- (Glacier) Schema update ([#213](https://github.com/ava-labs/avalanche-sdks/issues/213)) ([b4afa93](https://github.com/ava-labs/avalanche-sdks/commit/b4afa939c6ef03c4e1fe095d7c561d73a72c8556))
|
|
21
|
-
|
|
22
|
-
# 2.8.0-alpha.5 (2022-10-24)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @avalabs/types
|
|
25
|
-
|
|
26
|
-
# 2.8.0-alpha.4 (2022-10-20)
|
|
27
|
-
|
|
28
|
-
### Bug Fixes
|
|
29
|
-
|
|
30
|
-
- bogus commit to trigger release ([84e36d4](https://github.com/ava-labs/avalanche-sdks/commit/84e36d42deec024d0a28005c9e8928ad7fbb905a))
|
|
31
|
-
|
|
32
|
-
# 2.8.0-alpha.3 (2022-10-20)
|
|
33
|
-
|
|
34
|
-
### Bug Fixes
|
|
35
|
-
|
|
36
|
-
- bridge sdk tree shakable ([#208](https://github.com/ava-labs/avalanche-sdks/issues/208)) ([43952ca](https://github.com/ava-labs/avalanche-sdks/commit/43952ca8370af10d6f90578b3491300485b2056f))
|
|
37
|
-
|
|
38
|
-
# 2.8.0-alpha.2 (2022-10-20)
|
|
39
|
-
|
|
40
|
-
**Note:** Version bump only for package @avalabs/types
|
|
41
|
-
|
|
42
|
-
# [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)
|
|
43
|
-
|
|
44
|
-
**Note:** Version bump only for package @avalabs/types
|
|
45
|
-
|
|
46
|
-
# [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)
|
|
47
|
-
|
|
48
|
-
**Note:** Version bump only for package @avalabs/types
|
|
49
|
-
|
|
50
|
-
## [2.7.1-alpha.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0...v2.7.1-alpha.0) (2022-10-05)
|
|
51
|
-
|
|
52
|
-
**Note:** Version bump only for package @avalabs/types
|
|
53
|
-
|
|
54
|
-
# [2.7.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.7.0-alpha.7...v2.7.0) (2022-10-05)
|
|
55
|
-
|
|
56
|
-
**Note:** Version bump only for package @avalabs/types
|
|
57
|
-
|
|
58
|
-
# [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)
|
|
59
|
-
|
|
60
|
-
**Note:** Version bump only for package @avalabs/types
|
|
61
|
-
|
|
62
|
-
# [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)
|
|
63
|
-
|
|
64
|
-
**Note:** Version bump only for package @avalabs/types
|
|
65
|
-
|
|
66
|
-
# [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)
|
|
67
|
-
|
|
68
|
-
**Note:** Version bump only for package @avalabs/types
|
|
69
|
-
|
|
70
|
-
# [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)
|
|
71
|
-
|
|
72
|
-
**Note:** Version bump only for package @avalabs/types
|
|
73
|
-
|
|
74
|
-
# [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)
|
|
75
|
-
|
|
76
|
-
**Note:** Version bump only for package @avalabs/types
|
|
77
|
-
|
|
78
|
-
# [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)
|
|
79
|
-
|
|
80
|
-
**Note:** Version bump only for package @avalabs/types
|
|
81
|
-
|
|
82
|
-
# [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)
|
|
83
|
-
|
|
84
|
-
**Note:** Version bump only for package @avalabs/types
|
|
85
|
-
|
|
86
|
-
# [2.7.0-alpha.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.6.0...v2.7.0-alpha.0) (2022-09-09)
|
|
87
|
-
|
|
88
|
-
**Note:** Version bump only for package @avalabs/types
|
|
89
|
-
|
|
90
|
-
# [2.6.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.6.0-alpha.1...v2.6.0) (2022-09-07)
|
|
91
|
-
|
|
92
|
-
**Note:** Version bump only for package @avalabs/types
|
|
93
|
-
|
|
94
|
-
# [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)
|
|
95
|
-
|
|
96
|
-
**Note:** Version bump only for package @avalabs/types
|
|
97
|
-
|
|
98
|
-
# [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)
|
|
99
|
-
|
|
100
|
-
**Note:** Version bump only for package @avalabs/types
|
|
101
|
-
|
|
102
|
-
## [2.5.1-alpha.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.5.0...v2.5.1-alpha.0) (2022-08-25)
|
|
103
|
-
|
|
104
|
-
**Note:** Version bump only for package @avalabs/types
|
|
105
|
-
|
|
106
|
-
# [2.5.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.5.0-alpha.17...v2.5.0) (2022-08-18)
|
|
107
|
-
|
|
108
|
-
**Note:** Version bump only for package @avalabs/types
|
|
109
|
-
|
|
110
|
-
# [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)
|
|
111
|
-
|
|
112
|
-
**Note:** Version bump only for package @avalabs/types
|
|
113
|
-
|
|
114
|
-
# [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)
|
|
115
|
-
|
|
116
|
-
**Note:** Version bump only for package @avalabs/types
|
|
117
|
-
|
|
118
|
-
# 2.5.0-alpha.13 (2022-08-16)
|
|
119
|
-
|
|
120
|
-
**Note:** Version bump only for package @avalabs/types
|
|
121
|
-
|
|
122
|
-
# 2.5.0-alpha.12 (2022-08-15)
|
|
123
|
-
|
|
124
|
-
**Note:** Version bump only for package @avalabs/types
|
|
125
|
-
|
|
126
|
-
# 2.5.0-alpha.11 (2022-08-08)
|
|
127
|
-
|
|
128
|
-
**Note:** Version bump only for package @avalabs/types
|
|
129
|
-
|
|
130
|
-
# 2.5.0-alpha.10 (2022-08-04)
|
|
131
|
-
|
|
132
|
-
### Features
|
|
133
|
-
|
|
134
|
-
- 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))
|
|
135
|
-
|
|
136
|
-
# 2.5.0-alpha.9 (2022-08-04)
|
|
137
|
-
|
|
138
|
-
**Note:** Version bump only for package @avalabs/types
|
|
139
|
-
|
|
140
|
-
# 2.5.0-alpha.8 (2022-08-04)
|
|
141
|
-
|
|
142
|
-
**Note:** Version bump only for package @avalabs/types
|
|
143
|
-
|
|
144
|
-
# 2.5.0-alpha.7 (2022-08-03)
|
|
145
|
-
|
|
146
|
-
### Bug Fixes
|
|
147
|
-
|
|
148
|
-
- make glacier sdk pass params to the http client correctly ([c7eb6f5](https://github.com/ava-labs/avalanche-sdks/commit/c7eb6f56a9f5769050c2d1f5db8012c5c0af0f11))
|
|
149
|
-
|
|
150
|
-
# 2.5.0-alpha.6 (2022-07-28)
|
|
151
|
-
|
|
152
|
-
**Note:** Version bump only for package @avalabs/types
|
|
153
|
-
|
|
154
|
-
# 2.5.0-alpha.5 (2022-07-22)
|
|
155
|
-
|
|
156
|
-
### Bug Fixes
|
|
157
|
-
|
|
158
|
-
- use current version for utils dep for auto-update ([45b69a6](https://github.com/ava-labs/avalanche-sdks/commit/45b69a64d7eb120f44fe00c7598de468c08741a4))
|
|
159
|
-
|
|
160
|
-
# 2.5.0-alpha.4 (2022-07-21)
|
|
161
|
-
|
|
162
|
-
**Note:** Version bump only for package @avalabs/types
|
|
163
|
-
|
|
164
|
-
# 2.5.0-alpha.3 (2022-07-21)
|
|
165
|
-
|
|
166
|
-
**Note:** Version bump only for package @avalabs/types
|
|
167
|
-
|
|
168
|
-
# 2.5.0-alpha.2 (2022-07-21)
|
|
169
|
-
|
|
170
|
-
### Bug Fixes
|
|
171
|
-
|
|
172
|
-
- **glacier:** missing dep fixed ([e51a99f](https://github.com/ava-labs/avalanche-sdks/commit/e51a99f29cc740e0e1bdcd1a437120dbdb25c696))
|
|
173
|
-
|
|
174
|
-
# 2.5.0-alpha.1 (2022-07-21)
|
|
175
|
-
|
|
176
|
-
### Bug Fixes
|
|
177
|
-
|
|
178
|
-
- use etherscan proxy ([#160](https://github.com/ava-labs/avalanche-sdks/issues/160)) ([f3cba1e](https://github.com/ava-labs/avalanche-sdks/commit/f3cba1ea802006d682ab806a2cf324222fb31e90))
|
|
179
|
-
|
|
180
|
-
# 2.5.0-alpha.0 (2022-07-19)
|
|
181
|
-
|
|
182
|
-
### Features
|
|
183
|
-
|
|
184
|
-
- 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))
|
|
185
|
-
|
|
186
|
-
## 2.4.1-alpha.10 (2022-07-18)
|
|
187
|
-
|
|
188
|
-
**Note:** Version bump only for package @avalabs/types
|
|
189
|
-
|
|
190
|
-
## 2.4.1-alpha.9 (2022-07-14)
|
|
191
|
-
|
|
192
|
-
**Note:** Version bump only for package @avalabs/types
|
|
193
|
-
|
|
194
|
-
## 2.4.1-alpha.8 (2022-07-07)
|
|
195
|
-
|
|
196
|
-
**Note:** Version bump only for package @avalabs/types
|
|
197
|
-
|
|
198
|
-
## 2.4.1-alpha.7 (2022-07-07)
|
|
199
|
-
|
|
200
|
-
**Note:** Version bump only for package @avalabs/types
|
|
201
|
-
|
|
202
|
-
## 2.4.1-alpha.6 (2022-07-07)
|
|
203
|
-
|
|
204
|
-
**Note:** Version bump only for package @avalabs/types
|
|
205
|
-
|
|
206
|
-
## 2.4.1-alpha.5 (2022-07-07)
|
|
207
|
-
|
|
208
|
-
**Note:** Version bump only for package @avalabs/types
|
|
209
|
-
|
|
210
|
-
## 2.4.1-alpha.4 (2022-07-06)
|
|
211
|
-
|
|
212
|
-
**Note:** Version bump only for package @avalabs/types
|
|
213
|
-
|
|
214
|
-
## 2.4.1-alpha.3 (2022-07-05)
|
|
215
|
-
|
|
216
|
-
### Bug Fixes
|
|
217
|
-
|
|
218
|
-
- updated optional params ([2199735](https://github.com/ava-labs/avalanche-sdks/commit/21997355d4db550e4385a70ea2dc0f2e5c52b777))
|
|
219
|
-
|
|
220
|
-
## 2.4.1-alpha.2 (2022-07-05)
|
|
221
|
-
|
|
222
|
-
### Bug Fixes
|
|
223
|
-
|
|
224
|
-
- version numbers ([997cb03](https://github.com/ava-labs/avalanche-sdks/commit/997cb032cf15ba51fb0e82a93467718cf71db2c2))
|
|
225
|
-
|
|
226
|
-
## 2.4.1-alpha.1 (2022-07-05)
|
|
227
|
-
|
|
228
|
-
**Note:** Version bump only for package @avalabs/types
|
|
229
|
-
|
|
230
|
-
## 2.4.1-alpha.0 (2022-06-22)
|
|
231
|
-
|
|
232
|
-
**Note:** Version bump only for package @avalabs/types
|
|
233
|
-
|
|
234
|
-
# [2.4.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.4.0-alpha.52...v2.4.0) (2022-06-15)
|
|
235
|
-
|
|
236
|
-
**Note:** Version bump only for package @avalabs/types
|
|
237
|
-
|
|
238
|
-
# 2.4.0-alpha.52 (2022-06-14)
|
|
239
|
-
|
|
240
|
-
### Features
|
|
241
|
-
|
|
242
|
-
- **types:** add contacts to types ([#144](https://github.com/ava-labs/avalanche-sdks/issues/144)) ([a05a446](https://github.com/ava-labs/avalanche-sdks/commit/a05a44671e6f9735fe4da78d14eaf55338c1f663))
|
|
243
|
-
|
|
244
|
-
# 2.4.0-alpha.50 (2022-06-07)
|
|
245
|
-
|
|
246
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
247
|
-
|
|
248
|
-
# 2.4.0-alpha.49 (2022-06-07)
|
|
249
|
-
|
|
250
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
251
|
-
|
|
252
|
-
# 2.4.0-alpha.48 (2022-06-06)
|
|
253
|
-
|
|
254
|
-
### Features
|
|
255
|
-
|
|
256
|
-
- **chains:** use glacier for muti chain ([#139](https://github.com/ava-labs/avalanche-sdks/issues/139)) ([c1cb199](https://github.com/ava-labs/avalanche-sdks/commit/c1cb1991049fe483b5de071a5111c9f95196211a))
|
|
257
|
-
|
|
258
|
-
# 2.4.0-alpha.47 (2022-06-06)
|
|
259
|
-
|
|
260
|
-
### Features
|
|
261
|
-
|
|
262
|
-
- add subnets in ChainId enum ([#138](https://github.com/ava-labs/avalanche-sdks/issues/138)) ([44e55f7](https://github.com/ava-labs/avalanche-sdks/commit/44e55f7ea4745e6d096187a0baa7ddebab2a9d76))
|
|
263
|
-
|
|
264
|
-
# 2.4.0-alpha.46 (2022-06-06)
|
|
265
|
-
|
|
266
|
-
### Bug Fixes
|
|
267
|
-
|
|
268
|
-
- add missing dependency ([#137](https://github.com/ava-labs/avalanche-sdks/issues/137)) ([dfa8d65](https://github.com/ava-labs/avalanche-sdks/commit/dfa8d655028a846b08b3b87dacdcd9db93f48153))
|
|
269
|
-
|
|
270
|
-
# 2.4.0-alpha.45 (2022-06-06)
|
|
271
|
-
|
|
272
|
-
### Bug Fixes
|
|
273
|
-
|
|
274
|
-
- remove axios from ledger deps ([#136](https://github.com/ava-labs/avalanche-sdks/issues/136)) ([848ba57](https://github.com/ava-labs/avalanche-sdks/commit/848ba57a54bffc80f3208861b902b68d06a91a62))
|
|
275
|
-
|
|
276
|
-
# 2.4.0-alpha.44 (2022-06-02)
|
|
277
|
-
|
|
278
|
-
### Features
|
|
279
|
-
|
|
280
|
-
- add coins info method ([ed541c4](https://github.com/ava-labs/avalanche-sdks/commit/ed541c43ed130cf2c106f60d3944002dbb147cd1))
|
|
281
|
-
|
|
282
|
-
# 2.4.0-alpha.43 (2022-06-02)
|
|
283
|
-
|
|
284
|
-
### Features
|
|
285
|
-
|
|
286
|
-
- adding explorerUrl and subnetExplorerUriId to Network ([#134](https://github.com/ava-labs/avalanche-sdks/issues/134)) ([04cac5d](https://github.com/ava-labs/avalanche-sdks/commit/04cac5df3753ceffce22c6be49e7ffc3efc9ca1d))
|
|
287
|
-
|
|
288
|
-
# 2.4.0-alpha.42 (2022-06-02)
|
|
289
|
-
|
|
290
|
-
### Features
|
|
291
|
-
|
|
292
|
-
- update models to match schema ([#133](https://github.com/ava-labs/avalanche-sdks/issues/133)) ([ce47521](https://github.com/ava-labs/avalanche-sdks/commit/ce47521afec7408dc9ee2d1fd7b623fff22240ad))
|
|
293
|
-
|
|
294
|
-
# 2.4.0-alpha.41 (2022-06-01)
|
|
295
|
-
|
|
296
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
297
|
-
|
|
298
|
-
# 2.4.0-alpha.40 (2022-05-27)
|
|
299
|
-
|
|
300
|
-
### Bug Fixes
|
|
301
|
-
|
|
302
|
-
- bump ethers versions ([#127](https://github.com/ava-labs/avalanche-sdks/issues/127)) ([f844b2f](https://github.com/ava-labs/avalanche-sdks/commit/f844b2f9c3888e6e0f7b41a3d169315be11473b5))
|
|
303
|
-
|
|
304
|
-
# 2.4.0-alpha.39 (2022-05-26)
|
|
305
|
-
|
|
306
|
-
### Bug Fixes
|
|
307
|
-
|
|
308
|
-
- add chainId for unwrap contract call ([#130](https://github.com/ava-labs/avalanche-sdks/issues/130)) ([49069cf](https://github.com/ava-labs/avalanche-sdks/commit/49069cff0da340e2b7dadf89f4da2652e40d0b22))
|
|
309
|
-
|
|
310
|
-
# 2.4.0-alpha.38 (2022-05-26)
|
|
311
|
-
|
|
312
|
-
### Features
|
|
313
|
-
|
|
314
|
-
- add btc logo ([#129](https://github.com/ava-labs/avalanche-sdks/issues/129)) ([411280e](https://github.com/ava-labs/avalanche-sdks/commit/411280e11888fe6049ee7148da7446fa4ef96637))
|
|
315
|
-
|
|
316
|
-
# 2.4.0-alpha.37 (2022-05-26)
|
|
317
|
-
|
|
318
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
319
|
-
|
|
320
|
-
# 2.4.0-alpha.36 (2022-05-25)
|
|
321
|
-
|
|
322
|
-
### Features
|
|
323
|
-
|
|
324
|
-
- remove ethereum network type ([#128](https://github.com/ava-labs/avalanche-sdks/issues/128)) ([589abf4](https://github.com/ava-labs/avalanche-sdks/commit/589abf4f8d811e9dc8910442aae14787fe0238ad))
|
|
325
|
-
|
|
326
|
-
# 2.4.0-alpha.35 (2022-05-24)
|
|
327
|
-
|
|
328
|
-
### Bug Fixes
|
|
329
|
-
|
|
330
|
-
- update return type to match actual return keys ([#126](https://github.com/ava-labs/avalanche-sdks/issues/126)) ([3eb5909](https://github.com/ava-labs/avalanche-sdks/commit/3eb590943c43df3be32b206587eedd4e7817d13a))
|
|
331
|
-
|
|
332
|
-
# 2.4.0-alpha.34 (2022-05-20)
|
|
333
|
-
|
|
334
|
-
### Features
|
|
335
|
-
|
|
336
|
-
- optional Environment arg for fetchConfig ([#124](https://github.com/ava-labs/avalanche-sdks/issues/124)) ([44b16bc](https://github.com/ava-labs/avalanche-sdks/commit/44b16bced1179c90ced6922b615c2016f21a9d5e))
|
|
337
|
-
|
|
338
|
-
# 2.4.0-alpha.33 (2022-05-20)
|
|
339
|
-
|
|
340
|
-
### Bug Fixes
|
|
341
|
-
|
|
342
|
-
- remove usage of getBlockCypher from the bridge sdk ([#123](https://github.com/ava-labs/avalanche-sdks/issues/123)) ([cdd0692](https://github.com/ava-labs/avalanche-sdks/commit/cdd06924f7a1320f86c2df23e8a2d3d1b5366b9a))
|
|
343
|
-
|
|
344
|
-
# 2.4.0-alpha.32 (2022-05-19)
|
|
345
|
-
|
|
346
|
-
### Bug Fixes
|
|
347
|
-
|
|
348
|
-
- add api key to blockcypher requests ([#122](https://github.com/ava-labs/avalanche-sdks/issues/122)) ([9fe04b5](https://github.com/ava-labs/avalanche-sdks/commit/9fe04b5062553ad57f79d2fe90c95153257899b9))
|
|
349
|
-
|
|
350
|
-
# 2.4.0-alpha.31 (2022-05-19)
|
|
351
|
-
|
|
352
|
-
### Features
|
|
353
|
-
|
|
354
|
-
- support custom base urls in blockcypher provider ([#121](https://github.com/ava-labs/avalanche-sdks/issues/121)) ([819b254](https://github.com/ava-labs/avalanche-sdks/commit/819b2542ae393b538230857b21a794c31586288e))
|
|
355
|
-
|
|
356
|
-
# 2.4.0-alpha.30 (2022-05-18)
|
|
357
|
-
|
|
358
|
-
### Features
|
|
359
|
-
|
|
360
|
-
- support custom base urls ([#120](https://github.com/ava-labs/avalanche-sdks/issues/120)) ([5e719ed](https://github.com/ava-labs/avalanche-sdks/commit/5e719edd1488e8bcef456673a7fc6dff19fdef3d))
|
|
361
|
-
|
|
362
|
-
# 2.4.0-alpha.29 (2022-05-18)
|
|
363
|
-
|
|
364
|
-
### Features
|
|
365
|
-
|
|
366
|
-
- replace blockccypher http provider with utils http provider ([#117](https://github.com/ava-labs/avalanche-sdks/issues/117)) ([69fd8f6](https://github.com/ava-labs/avalanche-sdks/commit/69fd8f67e24a8d4755589f6c05c45834c7c928c5))
|
|
367
|
-
|
|
368
|
-
# 2.4.0-alpha.28 (2022-05-18)
|
|
369
|
-
|
|
370
|
-
### Bug Fixes
|
|
371
|
-
|
|
372
|
-
- **bridge-sdk:** pass in correct network to Psbt ([#119](https://github.com/ava-labs/avalanche-sdks/issues/119)) ([ea3bdca](https://github.com/ava-labs/avalanche-sdks/commit/ea3bdca1a3ba965db4c521a03ec28de4c35d64c2))
|
|
373
|
-
|
|
374
|
-
# 2.4.0-alpha.27 (2022-05-17)
|
|
375
|
-
|
|
376
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
377
|
-
|
|
378
|
-
# 2.4.0-alpha.26 (2022-05-17)
|
|
379
|
-
|
|
380
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
381
|
-
|
|
382
|
-
# 2.4.0-alpha.25 (2022-05-16)
|
|
383
|
-
|
|
384
|
-
### Features
|
|
385
|
-
|
|
386
|
-
- export getXpubFromMnemonic ([#114](https://github.com/ava-labs/avalanche-sdks/issues/114)) ([77c9a7c](https://github.com/ava-labs/avalanche-sdks/commit/77c9a7c15ea58916576d5d7423957c33eac8c692))
|
|
387
|
-
|
|
388
|
-
# 2.4.0-alpha.24 (2022-05-16)
|
|
389
|
-
|
|
390
|
-
### Features
|
|
391
|
-
|
|
392
|
-
- add util to get xpub from mnemonic ([#113](https://github.com/ava-labs/avalanche-sdks/issues/113)) ([1e5c2cc](https://github.com/ava-labs/avalanche-sdks/commit/1e5c2cc4ff1cf53ad28cfc8fcc29012c6e89c9ac))
|
|
393
|
-
|
|
394
|
-
# 2.4.0-alpha.23 (2022-05-16)
|
|
395
|
-
|
|
396
|
-
### Bug Fixes
|
|
397
|
-
|
|
398
|
-
- **chains:** only evm chains, chain ids and better modeling ([694d94e](https://github.com/ava-labs/avalanche-sdks/commit/694d94eac3897369902b8b2d3994fc665f9f9b27))
|
|
399
|
-
|
|
400
|
-
# 2.4.0-alpha.22 (2022-05-16)
|
|
401
|
-
|
|
402
|
-
### Bug Fixes
|
|
403
|
-
|
|
404
|
-
- **chain:** use chain instead of network ([b112be5](https://github.com/ava-labs/avalanche-sdks/commit/b112be5ccd256dc903a10ced710516b9ee6210c1))
|
|
405
|
-
|
|
406
|
-
# 2.4.0-alpha.21 (2022-05-16)
|
|
407
|
-
|
|
408
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
409
|
-
|
|
410
|
-
# 2.4.0-alpha.20 (2022-05-16)
|
|
411
|
-
|
|
412
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
413
|
-
|
|
414
|
-
# 2.4.0-alpha.19 (2022-05-13)
|
|
415
|
-
|
|
416
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
417
|
-
|
|
418
|
-
# 2.4.0-alpha.18 (2022-05-13)
|
|
419
|
-
|
|
420
|
-
### Bug Fixes
|
|
421
|
-
|
|
422
|
-
- **chains:** network name type to enum ([3edcb14](https://github.com/ava-labs/avalanche-sdks/commit/3edcb1462c08e5e2c30cd126124248520ef6632d))
|
|
423
|
-
|
|
424
|
-
# 2.4.0-alpha.17 (2022-05-13)
|
|
425
|
-
|
|
426
|
-
### Bug Fixes
|
|
427
|
-
|
|
428
|
-
- add missing export ([#109](https://github.com/ava-labs/avalanche-sdks/issues/109)) ([e31d2c7](https://github.com/ava-labs/avalanche-sdks/commit/e31d2c74f4e33987ccc75ae0367ef898c394ccf1))
|
|
429
|
-
|
|
430
|
-
# 2.4.0-alpha.16 (2022-05-13)
|
|
431
|
-
|
|
432
|
-
### Features
|
|
433
|
-
|
|
434
|
-
- wallets sdk changes ([#108](https://github.com/ava-labs/avalanche-sdks/issues/108)) ([f1f413e](https://github.com/ava-labs/avalanche-sdks/commit/f1f413eef2bd6868aac161819baca05504678d4c))
|
|
435
|
-
|
|
436
|
-
# 2.4.0-alpha.15 (2022-05-13)
|
|
437
|
-
|
|
438
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
439
|
-
|
|
440
|
-
# 2.4.0-alpha.14 (2022-05-12)
|
|
441
|
-
|
|
442
|
-
### Features
|
|
443
|
-
|
|
444
|
-
- add custom LedgerSigner ([#107](https://github.com/ava-labs/avalanche-sdks/issues/107)) ([553d738](https://github.com/ava-labs/avalanche-sdks/commit/553d73806b0f1f757e52141eab11e3fb94baae85))
|
|
445
|
-
|
|
446
|
-
# 2.4.0-alpha.13 (2022-05-10)
|
|
447
|
-
|
|
448
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
449
|
-
|
|
450
|
-
# 2.4.0-alpha.12 (2022-05-10)
|
|
451
|
-
|
|
452
|
-
### Bug Fixes
|
|
453
|
-
|
|
454
|
-
- **chains:** add coing gecko platform id to chains model ([05c1a55](https://github.com/ava-labs/avalanche-sdks/commit/05c1a5567a9cd9b9979676eecdad38fab61cc1ff))
|
|
455
|
-
|
|
456
|
-
# 2.4.0-alpha.11 (2022-05-10)
|
|
457
|
-
|
|
458
|
-
### Features
|
|
459
|
-
|
|
460
|
-
- **chains-sdk:** chains sdk added ([#106](https://github.com/ava-labs/avalanche-sdks/issues/106)) ([8b2f29d](https://github.com/ava-labs/avalanche-sdks/commit/8b2f29d734470e1b79a3d11453c08f00e92c57d4))
|
|
461
|
-
|
|
462
|
-
# 2.4.0-alpha.10 (2022-05-09)
|
|
463
|
-
|
|
464
|
-
### Features
|
|
465
|
-
|
|
466
|
-
- can create btc wallet from a given ethers wallet ([#105](https://github.com/ava-labs/avalanche-sdks/issues/105)) ([ddf37dc](https://github.com/ava-labs/avalanche-sdks/commit/ddf37dcd612b64e3025d03dfcd0df7f5f7e68b9f))
|
|
467
|
-
|
|
468
|
-
# 2.4.0-alpha.9 (2022-05-09)
|
|
469
|
-
|
|
470
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
471
|
-
|
|
472
|
-
# 2.4.0-alpha.8 (2022-05-09)
|
|
473
|
-
|
|
474
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
475
|
-
|
|
476
|
-
# 2.4.0-alpha.7 (2022-05-06)
|
|
477
|
-
|
|
478
|
-
### Bug Fixes
|
|
479
|
-
|
|
480
|
-
- remove null return type from createTransferTx ([b062e69](https://github.com/ava-labs/avalanche-sdks/commit/b062e699e7717b907b7a04d8b579ffe80d7c64cd))
|
|
481
|
-
|
|
482
|
-
# 2.4.0-alpha.6 (2022-05-06)
|
|
483
|
-
|
|
484
|
-
### Bug Fixes
|
|
485
|
-
|
|
486
|
-
- type correction ([#103](https://github.com/ava-labs/avalanche-sdks/issues/103)) ([cdd3d6e](https://github.com/ava-labs/avalanche-sdks/commit/cdd3d6e964cc442ae7ab91594f8562407fc4aefb))
|
|
487
|
-
|
|
488
|
-
# 2.4.0-alpha.5 (2022-05-06)
|
|
489
|
-
|
|
490
|
-
### Bug Fixes
|
|
491
|
-
|
|
492
|
-
- rename some methods ([#102](https://github.com/ava-labs/avalanche-sdks/issues/102)) ([4b99cf8](https://github.com/ava-labs/avalanche-sdks/commit/4b99cf8d3e227cf56d376ef25431356adf83af44))
|
|
493
|
-
|
|
494
|
-
# 2.4.0-alpha.4 (2022-05-06)
|
|
495
|
-
|
|
496
|
-
### Bug Fixes
|
|
497
|
-
|
|
498
|
-
- fix getFee return type for getblock provider ([0f55d97](https://github.com/ava-labs/avalanche-sdks/commit/0f55d97c2beb146faaaba5c1b2db801fed646a5d))
|
|
499
|
-
|
|
500
|
-
# 2.4.0-alpha.3 (2022-05-05)
|
|
501
|
-
|
|
502
|
-
### Bug Fixes
|
|
503
|
-
|
|
504
|
-
- build error ([#99](https://github.com/ava-labs/avalanche-sdks/issues/99)) ([0e3ddf5](https://github.com/ava-labs/avalanche-sdks/commit/0e3ddf5244d80db2fc266f29ba55ad35382e520e))
|
|
505
|
-
|
|
506
|
-
# 2.4.0-alpha.2 (2022-05-03)
|
|
507
|
-
|
|
508
|
-
### Bug Fixes
|
|
509
|
-
|
|
510
|
-
- use toFixed to prevent errors when converting ([#94](https://github.com/ava-labs/avalanche-sdks/issues/94)) ([8e1c7d2](https://github.com/ava-labs/avalanche-sdks/commit/8e1c7d2b9c3c35ecd6ce1d5d910d1bb83dca0311))
|
|
511
|
-
|
|
512
|
-
# 2.4.0-alpha.1 (2022-05-02)
|
|
513
|
-
|
|
514
|
-
### Bug Fixes
|
|
515
|
-
|
|
516
|
-
- Update isBech32Address logic ([#93](https://github.com/ava-labs/avalanche-sdks/issues/93)) ([e43bd4d](https://github.com/ava-labs/avalanche-sdks/commit/e43bd4db4d2340e3639feab2938b0b2a0c8629a1))
|
|
517
|
-
|
|
518
|
-
# 2.4.0-alpha.0 (2022-04-29)
|
|
519
|
-
|
|
520
|
-
### Features
|
|
521
|
-
|
|
522
|
-
- JSONRPCBatchProvider to support multicall contract ([#91](https://github.com/ava-labs/avalanche-sdks/issues/91)) ([32411b5](https://github.com/ava-labs/avalanche-sdks/commit/32411b5725000d83db5095eb6ffccd6a123afc90))
|
|
523
|
-
|
|
524
|
-
# [2.3.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.3.0-alpha.6...v2.3.0) (2022-04-27)
|
|
525
|
-
|
|
526
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
527
|
-
|
|
528
|
-
# 2.3.0-alpha.6 (2022-04-27)
|
|
529
|
-
|
|
530
|
-
### Bug Fixes
|
|
531
|
-
|
|
532
|
-
- **bridge-sdk:** also set sourceNetworkFee when updating confirmations ([907251b](https://github.com/ava-labs/avalanche-sdks/commit/907251b5008bb02b7ff62b22ea062699bbff4b55))
|
|
533
|
-
|
|
534
|
-
# 2.3.0-alpha.5 (2022-04-27)
|
|
535
|
-
|
|
536
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
537
|
-
|
|
538
|
-
# 2.3.0-alpha.4 (2022-04-27)
|
|
539
|
-
|
|
540
|
-
### Bug Fixes
|
|
541
|
-
|
|
542
|
-
- rename file ([ef46864](https://github.com/ava-labs/avalanche-sdks/commit/ef4686473e365fc3c31f9370aafc4df1de7715e7))
|
|
543
|
-
|
|
544
|
-
# 2.3.0-alpha.3 (2022-04-26)
|
|
545
|
-
|
|
546
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
547
|
-
|
|
548
|
-
# 2.3.0-alpha.2 (2022-04-25)
|
|
549
|
-
|
|
550
|
-
### Features
|
|
551
|
-
|
|
552
|
-
- **blockcypher:** Add support for GetAddressFull endpoint ([#86](https://github.com/ava-labs/avalanche-sdks/issues/86)) ([481ee07](https://github.com/ava-labs/avalanche-sdks/commit/481ee076cfc0c64bda2047ed098eeeda193516a4))
|
|
553
|
-
|
|
554
|
-
# 2.3.0-alpha.1 (2022-04-25)
|
|
555
|
-
|
|
556
|
-
### Features
|
|
557
|
-
|
|
558
|
-
- **polling:** adding polling solution ([#85](https://github.com/ava-labs/avalanche-sdks/issues/85)) ([0579ec6](https://github.com/ava-labs/avalanche-sdks/commit/0579ec60445c25fdaea33a030e4499849d6b6864))
|
|
559
|
-
|
|
560
|
-
# 2.3.0-alpha.0 (2022-04-25)
|
|
561
|
-
|
|
562
|
-
### Features
|
|
563
|
-
|
|
564
|
-
- **wallets sdk:** new wallet sdk (BTC/EVM) ([e5d9236](https://github.com/ava-labs/avalanche-sdks/commit/e5d92362f83c47344e5a9c9baefeb4d435815bb7)), closes [#82](https://github.com/ava-labs/avalanche-sdks/issues/82) [#83](https://github.com/ava-labs/avalanche-sdks/issues/83)
|
|
565
|
-
|
|
566
|
-
## 2.2.1-alpha.0 (2022-04-21)
|
|
567
|
-
|
|
568
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
569
|
-
|
|
570
|
-
# [2.2.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.2.0-alpha.4...v2.2.0) (2022-04-14)
|
|
571
|
-
|
|
572
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
573
|
-
|
|
574
|
-
# 2.2.0-alpha.5 (2022-04-14)
|
|
575
|
-
|
|
576
|
-
### Features
|
|
577
|
-
|
|
578
|
-
- **bridge:** BTC bridge ([#44](https://github.com/ava-labs/avalanche-sdks/issues/44)) ([5e5d279](https://github.com/ava-labs/avalanche-sdks/commit/5e5d279cd0eae299415f389c50166a3e14ec9b2b))
|
|
579
|
-
|
|
580
|
-
# 2.2.0-alpha.4 (2022-04-13)
|
|
581
|
-
|
|
582
|
-
### Bug Fixes
|
|
583
|
-
|
|
584
|
-
- **actions:** change from danny to github bot ([b5d1778](https://github.com/ava-labs/avalanche-sdks/commit/b5d177810551a722d85951a20106318ccc22ba6e))
|
|
585
|
-
|
|
586
|
-
# 2.2.0-alpha.3 (2022-04-11)
|
|
587
|
-
|
|
588
|
-
### Bug Fixes
|
|
589
|
-
|
|
590
|
-
- config no longer required for coingecko SDK ([5b63edc](https://github.com/ava-labs/avalanche-sdks/commit/5b63edcb389938e53dbeed2e4327308287886bbe))
|
|
591
|
-
|
|
592
|
-
# 2.2.0-alpha.2 (2022-04-08)
|
|
593
|
-
|
|
594
|
-
### Features
|
|
595
|
-
|
|
596
|
-
- **release:** push to get latest state released ([38db16f](https://github.com/ava-labs/avalanche-sdks/commit/38db16f7e64018c1112db2917d65ea65e7401cd8))
|
|
597
|
-
|
|
598
|
-
# 2.2.0-alpha.1 (2022-04-07)
|
|
599
|
-
|
|
600
|
-
### Features
|
|
601
|
-
|
|
602
|
-
- **coin-gecko:** added support for coin gecko pro api ([#68](https://github.com/ava-labs/avalanche-sdks/issues/68)) ([5c875ae](https://github.com/ava-labs/avalanche-sdks/commit/5c875ae79fb16f1fb874a5dc75e6e4f1a4cb8c0b))
|
|
603
|
-
|
|
604
|
-
# 2.2.0-alpha.0 (2022-04-04)
|
|
605
|
-
|
|
606
|
-
### Features
|
|
607
|
-
|
|
608
|
-
- **posthog:** add more flags for bridge ([#63](https://github.com/ava-labs/avalanche-sdks/issues/63)) ([f794244](https://github.com/ava-labs/avalanche-sdks/commit/f794244a5dd9fc8de04179a694e91baf9c3b64d6))
|
|
609
|
-
|
|
610
|
-
## 2.1.5-alpha.0 (2022-04-04)
|
|
611
|
-
|
|
612
|
-
### Bug Fixes
|
|
613
|
-
|
|
614
|
-
- custom platform ID for simple token price ([f3deb88](https://github.com/ava-labs/avalanche-sdks/commit/f3deb889365792b7e9d14da304814b731e561121))
|
|
615
|
-
|
|
616
|
-
## [2.1.4](https://github.com/ava-labs/avalanche-sdks/compare/v2.1.4-alpha.0...v2.1.4) (2022-04-01)
|
|
617
|
-
|
|
618
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
619
|
-
|
|
620
|
-
## 2.1.4-alpha.0 (2022-04-01)
|
|
621
|
-
|
|
622
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
623
|
-
|
|
624
|
-
## [2.1.3](https://github.com/ava-labs/avalanche-sdks/compare/v2.1.3-alpha.0...v2.1.3) (2022-04-01)
|
|
625
|
-
|
|
626
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
627
|
-
|
|
628
|
-
## 2.1.3-alpha.0 (2022-04-01)
|
|
629
|
-
|
|
630
|
-
### Bug Fixes
|
|
631
|
-
|
|
632
|
-
- Update return type for moonpay ([#60](https://github.com/ava-labs/avalanche-sdks/issues/60)) ([c7f616b](https://github.com/ava-labs/avalanche-sdks/commit/c7f616b0eed25d393cdaaacbb3a433ac8ccc84a5))
|
|
633
|
-
|
|
634
|
-
## [2.1.2](https://github.com/ava-labs/avalanche-sdks/compare/v2.1.2-alpha.0...v2.1.2) (2022-04-01)
|
|
635
|
-
|
|
636
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
637
|
-
|
|
638
|
-
## 2.1.2-alpha.0 (2022-03-31)
|
|
639
|
-
|
|
640
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
641
|
-
|
|
642
|
-
## [2.1.1](https://github.com/ava-labs/avalanche-sdks/compare/v2.1.1-alpha.8...v2.1.1) (2022-03-30)
|
|
643
|
-
|
|
644
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
645
|
-
|
|
646
|
-
## 2.1.1-alpha.8 (2022-03-30)
|
|
647
|
-
|
|
648
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
649
|
-
|
|
650
|
-
## 2.1.1-alpha.7 (2022-03-30)
|
|
651
|
-
|
|
652
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
653
|
-
|
|
654
|
-
## 2.1.1-alpha.6 (2022-03-30)
|
|
655
|
-
|
|
656
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
657
|
-
|
|
658
|
-
## 2.1.1-alpha.5 (2022-03-29)
|
|
659
|
-
|
|
660
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
661
|
-
|
|
662
|
-
## 2.1.1-alpha.4 (2022-03-29)
|
|
663
|
-
|
|
664
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
665
|
-
|
|
666
|
-
## 2.1.1-alpha.3 (2022-03-28)
|
|
667
|
-
|
|
668
|
-
### Bug Fixes
|
|
669
|
-
|
|
670
|
-
- **posthog:** add debounce and fix value conversion ([34d7d4f](https://github.com/ava-labs/avalanche-sdks/commit/34d7d4f8a4e9dbbaaed6e658d0a54055bc41d106))
|
|
671
|
-
|
|
672
|
-
## 2.1.1-alpha.2 (2022-03-24)
|
|
673
|
-
|
|
674
|
-
### Bug Fixes
|
|
675
|
-
|
|
676
|
-
- **posthog:** race condition between init and feature flags ([#55](https://github.com/ava-labs/avalanche-sdks/issues/55)) ([08b67ca](https://github.com/ava-labs/avalanche-sdks/commit/08b67ca23cb1879707314407792a0b5245a568d1))
|
|
677
|
-
|
|
678
|
-
## 2.1.1-alpha.1 (2022-03-22)
|
|
679
|
-
|
|
680
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
681
|
-
|
|
682
|
-
## 2.1.1-alpha.0 (2022-03-22)
|
|
683
|
-
|
|
684
|
-
### Bug Fixes
|
|
685
|
-
|
|
686
|
-
- **posthog:** add dep to build ([dfa6df3](https://github.com/ava-labs/avalanche-sdks/commit/dfa6df3f0f5d247235b20547e8919c39f5420737))
|
|
687
|
-
|
|
688
|
-
# [2.1.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.1.0-alpha.0...v2.1.0) (2022-03-21)
|
|
689
|
-
|
|
690
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
691
|
-
|
|
692
|
-
# 2.1.0-alpha.0 (2022-03-21)
|
|
693
|
-
|
|
694
|
-
### Features
|
|
695
|
-
|
|
696
|
-
- remove axios dependency ([#49](https://github.com/ava-labs/avalanche-sdks/issues/49)) ([d659e64](https://github.com/ava-labs/avalanche-sdks/commit/d659e644652f7dd39dfc5d31c1852faa22d87515))
|
|
697
|
-
|
|
698
|
-
# [2.0.0](https://github.com/ava-labs/avalanche-sdks/compare/v2.0.0-alpha.4...v2.0.0) (2022-03-11)
|
|
699
|
-
|
|
700
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
701
|
-
|
|
702
|
-
# 2.0.0-alpha.4 (2022-03-11)
|
|
703
|
-
|
|
704
|
-
### Features
|
|
705
|
-
|
|
706
|
-
- update nft types ([#45](https://github.com/ava-labs/avalanche-sdks/issues/45)) ([d386e5e](https://github.com/ava-labs/avalanche-sdks/commit/d386e5ef17894ad9d886ccc1b022e9cd0fbed3ca))
|
|
707
|
-
|
|
708
|
-
# 2.0.0-alpha.3 (2022-03-10)
|
|
709
|
-
|
|
710
|
-
### Bug Fixes
|
|
711
|
-
|
|
712
|
-
- export moonpay ([#43](https://github.com/ava-labs/avalanche-sdks/issues/43)) ([9a55bf0](https://github.com/ava-labs/avalanche-sdks/commit/9a55bf0131a73f2a55188b82a7ef33ef7454e6e2))
|
|
713
|
-
|
|
714
|
-
# 2.0.0-alpha.2 (2022-03-10)
|
|
715
|
-
|
|
716
|
-
### Features
|
|
717
|
-
|
|
718
|
-
- Add moonpay and nftBalances endpoints ([#42](https://github.com/ava-labs/avalanche-sdks/issues/42)) ([fe6178f](https://github.com/ava-labs/avalanche-sdks/commit/fe6178fdf9552f05d840c3c117a914ef7bc1a74f))
|
|
719
|
-
|
|
720
|
-
# 2.0.0-alpha.1 (2022-03-08)
|
|
721
|
-
|
|
722
|
-
### Bug Fixes
|
|
723
|
-
|
|
724
|
-
- export token price type ([6907bb1](https://github.com/ava-labs/avalanche-sdks/commit/6907bb17369f4e98c35e69e14b36eacebdd03782))
|
|
725
|
-
|
|
726
|
-
# 2.0.0-alpha.0 (2022-03-08)
|
|
727
|
-
|
|
728
|
-
### Features
|
|
729
|
-
|
|
730
|
-
- Subnet Explorer Updates . Multiple ids and vs currencies, param and response formatting improvements for typescript. ([667d7af](https://github.com/ava-labs/avalanche-sdks/commit/667d7af130a6ab235121116eb234ea03d5cd3580))
|
|
731
|
-
|
|
732
|
-
### BREAKING CHANGES
|
|
733
|
-
|
|
734
|
-
- Params for all methods are now an object. This makes it easier to selectively pass params and rely on the set defaults.
|
|
735
|
-
|
|
736
|
-
# 1.4.0-alpha.6 (2022-03-07)
|
|
737
|
-
|
|
738
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
739
|
-
|
|
740
|
-
# 1.4.0-alpha.5 (2022-03-04)
|
|
741
|
-
|
|
742
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
743
|
-
|
|
744
|
-
# 1.4.0-alpha.4 (2022-03-03)
|
|
745
|
-
|
|
746
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
747
|
-
|
|
748
|
-
# 1.4.0-alpha.3 (2022-03-03)
|
|
749
|
-
|
|
750
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
751
|
-
|
|
752
|
-
# 1.4.0-alpha.2 (2022-03-03)
|
|
753
|
-
|
|
754
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
755
|
-
|
|
756
|
-
# 1.4.0-alpha.1 (2022-03-02)
|
|
757
|
-
|
|
758
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
759
|
-
|
|
760
|
-
# 1.4.0-alpha.0 (2022-03-02)
|
|
761
|
-
|
|
762
|
-
### Features
|
|
763
|
-
|
|
764
|
-
- update blizzard api ([#35](https://github.com/ava-labs/avalanche-sdks/issues/35)) ([d644ec7](https://github.com/ava-labs/avalanche-sdks/commit/d644ec739a20a24acb705ea056623d78317bb123))
|
|
765
|
-
|
|
766
|
-
## [1.3.1](https://github.com/ava-labs/avalanche-sdks/compare/v1.3.1-alpha.0...v1.3.1) (2022-03-01)
|
|
767
|
-
|
|
768
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
769
|
-
|
|
770
|
-
## 1.3.1-alpha.0 (2022-03-01)
|
|
771
|
-
|
|
772
|
-
### Bug Fixes
|
|
773
|
-
|
|
774
|
-
- **bridge:** fix type error that snuck in the last release ([#33](https://github.com/ava-labs/avalanche-sdks/issues/33)) ([118b515](https://github.com/ava-labs/avalanche-sdks/commit/118b515cdae7e97912d1a141416f56b14b3183c8))
|
|
775
|
-
|
|
776
|
-
## [1.2.1](https://github.com/ava-labs/avalanche-sdks/compare/v1.2.0-alpha.3...v1.2.1) (2022-03-01)
|
|
777
|
-
|
|
778
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
779
|
-
|
|
780
|
-
# 1.2.0-alpha.3 (2022-02-28)
|
|
781
|
-
|
|
782
|
-
### Bug Fixes
|
|
783
|
-
|
|
784
|
-
- **bridge:** remove reference to document for ReactNative support ([#30](https://github.com/ava-labs/avalanche-sdks/issues/30)) ([976e60d](https://github.com/ava-labs/avalanche-sdks/commit/976e60d0ddac7e283f4adb2082a2245d17ef9b1c))
|
|
785
|
-
|
|
786
|
-
# 1.2.0-alpha.2 (2022-02-25)
|
|
787
|
-
|
|
788
|
-
### Bug Fixes
|
|
789
|
-
|
|
790
|
-
- **bridge:** fix fetch balance for native asset on target network ([#29](https://github.com/ava-labs/avalanche-sdks/issues/29)) ([27693af](https://github.com/ava-labs/avalanche-sdks/commit/27693af7c9dd331ec51f27aed372275e556d3036))
|
|
791
|
-
|
|
792
|
-
# 1.2.0-alpha.1 (2022-02-23)
|
|
793
|
-
|
|
794
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
795
|
-
|
|
796
|
-
# 1.1.0-alpha.12 (2022-02-23)
|
|
797
|
-
|
|
798
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
799
|
-
|
|
800
|
-
# 1.1.0-alpha.11 (2022-02-23)
|
|
801
|
-
|
|
802
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
803
|
-
|
|
804
|
-
# 1.1.0-alpha.10 (2022-02-22)
|
|
805
|
-
|
|
806
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
807
|
-
|
|
808
|
-
# 1.1.0-alpha.9 (2022-02-22)
|
|
809
|
-
|
|
810
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
811
|
-
|
|
812
|
-
# 1.1.0-alpha.8 (2022-02-22)
|
|
813
|
-
|
|
814
|
-
### Features
|
|
815
|
-
|
|
816
|
-
- add get source for contract call ([#24](https://github.com/ava-labs/avalanche-sdks/issues/24)) ([5785747](https://github.com/ava-labs/avalanche-sdks/commit/5785747f76f2cf3af8079e77ae064966b8deabbb))
|
|
817
|
-
|
|
818
|
-
# 1.1.0-alpha.7 (2022-02-21)
|
|
819
|
-
|
|
820
|
-
### Bug Fixes
|
|
821
|
-
|
|
822
|
-
- coin gecko param id ([a2cd9a9](https://github.com/ava-labs/avalanche-sdks/commit/a2cd9a90bb0bb81b31eadffe81757ff43dc34f1b))
|
|
823
|
-
|
|
824
|
-
# 1.1.0-alpha.6 (2022-02-19)
|
|
825
|
-
|
|
826
|
-
### Bug Fixes
|
|
827
|
-
|
|
828
|
-
- export simplePrice file/functionality ([b0ab025](https://github.com/ava-labs/avalanche-sdks/commit/b0ab02594d9f7be744ce5ec3d985385788ad1328))
|
|
829
|
-
|
|
830
|
-
# 1.1.0-alpha.5 (2022-02-18)
|
|
831
|
-
|
|
832
|
-
### Features
|
|
833
|
-
|
|
834
|
-
- normalised simplePrice request added to coingecko sdk ([664061d](https://github.com/ava-labs/avalanche-sdks/commit/664061d3e224633178443888bbd581bfbb7d92c6))
|
|
835
|
-
|
|
836
|
-
# 1.1.0 (2022-02-18)
|
|
837
|
-
|
|
838
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
839
|
-
|
|
840
|
-
# 1.1.0-alpha.4 (2022-02-18)
|
|
841
|
-
|
|
842
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
843
|
-
|
|
844
|
-
# 1.1.0-alpha.3 (2022-02-17)
|
|
845
|
-
|
|
846
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
847
|
-
|
|
848
|
-
# 1.1.0-alpha.2 (2022-02-17)
|
|
849
|
-
|
|
850
|
-
### Bug Fixes
|
|
851
|
-
|
|
852
|
-
- catch gas estimation errors & add missing exports ([#21](https://github.com/ava-labs/avalanche-sdks/issues/21)) ([d8a8759](https://github.com/ava-labs/avalanche-sdks/commit/d8a875994aeb7e7b33b968afebd75b27298da8e4))
|
|
853
|
-
|
|
854
|
-
# 1.1.0-alpha.1 (2022-02-17)
|
|
855
|
-
|
|
856
|
-
### Bug Fixes
|
|
857
|
-
|
|
858
|
-
- **blizzard-sdk:** update package name in blizzard sdk ([e19d478](https://github.com/ava-labs/avalanche-sdks/commit/e19d47857374743fcde4004dfd2519814ca7c781))
|
|
859
|
-
|
|
860
|
-
# 1.1.0-alpha.0 (2022-02-17)
|
|
861
|
-
|
|
862
|
-
### Features
|
|
863
|
-
|
|
864
|
-
- **blizzard:** add blizzard sdk ([#18](https://github.com/ava-labs/avalanche-sdks/issues/18)) ([6f4e1ce](https://github.com/ava-labs/avalanche-sdks/commit/6f4e1ce43cc84dcfa361b2690b17a3bf36e630e1))
|
|
865
|
-
|
|
866
|
-
# 0.2.0-alpha.7 (2022-02-17)
|
|
867
|
-
|
|
868
|
-
### Bug Fixes
|
|
869
|
-
|
|
870
|
-
- target timer should not start prematurely on reload ([7566e4b](https://github.com/ava-labs/avalanche-sdks/commit/7566e4bd3cfeedbb2942850473d67ebb19bbb263))
|
|
871
|
-
|
|
872
|
-
# 0.2.0-alpha.6 (2022-02-17)
|
|
873
|
-
|
|
874
|
-
### Features
|
|
875
|
-
|
|
876
|
-
- change useUSDPrice to usePrice ([#20](https://github.com/ava-labs/avalanche-sdks/issues/20)) ([8014778](https://github.com/ava-labs/avalanche-sdks/commit/801477856ea172d7fd70fd209d1f8da4202daca9))
|
|
877
|
-
|
|
878
|
-
# 0.2.0-alpha.5 (2022-02-16)
|
|
879
|
-
|
|
880
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
881
|
-
|
|
882
|
-
# 0.2.0-alpha.4 (2022-02-15)
|
|
883
|
-
|
|
884
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
885
|
-
|
|
886
|
-
# 0.2.0-alpha.3 (2022-02-14)
|
|
887
|
-
|
|
888
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
889
|
-
|
|
890
|
-
# 0.2.0-alpha.2 (2022-02-11)
|
|
891
|
-
|
|
892
|
-
### Bug Fixes
|
|
893
|
-
|
|
894
|
-
- export useSwitchFromUnavailableAsset ([6438355](https://github.com/ava-labs/avalanche-sdks/commit/6438355e25ea2abd1819938b15d1c5367a049c09))
|
|
895
|
-
|
|
896
|
-
# 0.2.0-alpha.1 (2022-02-10)
|
|
897
|
-
|
|
898
|
-
### Features
|
|
899
|
-
|
|
900
|
-
- extract another hook from bridge ([095fc0e](https://github.com/ava-labs/avalanche-sdks/commit/095fc0e33b28657dbdcf46b60b94c95c6a1f2a84))
|
|
901
|
-
|
|
902
|
-
# 0.2.0-alpha.0 (2022-02-10)
|
|
903
|
-
|
|
904
|
-
### Features
|
|
905
|
-
|
|
906
|
-
- **types:** introduce Maybe<T> to simplify null | undefined checks ([#14](https://github.com/ava-labs/avalanche-sdks/issues/14)) ([6f9f14e](https://github.com/ava-labs/avalanche-sdks/commit/6f9f14e2484138f0687198e1796a9ff0da0fda94))
|
|
907
|
-
|
|
908
|
-
## 0.1.3-alpha.1 (2022-02-10)
|
|
909
|
-
|
|
910
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
911
|
-
|
|
912
|
-
## 0.1.3-alpha.0 (2022-02-10)
|
|
913
|
-
|
|
914
|
-
### Bug Fixes
|
|
915
|
-
|
|
916
|
-
- **big_conversion:** Fix ethers big to big conversion ([7e8fa20](https://github.com/ava-labs/avalanche-sdks/commit/7e8fa20f87894f41fa09735e06e95724fd812960))
|
|
917
|
-
|
|
918
|
-
## [0.1.2](https://github.com/ava-labs/avalanche-sdks/compare/v0.1.2-alpha.0...v0.1.2) (2022-02-09)
|
|
919
|
-
|
|
920
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
921
|
-
|
|
922
|
-
## 0.1.2-alpha.0 (2022-02-09)
|
|
923
|
-
|
|
924
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
925
|
-
|
|
926
|
-
## 0.1.1 (2022-02-09)
|
|
927
|
-
|
|
928
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
929
|
-
|
|
930
|
-
## 0.1.1-alpha.0 (2022-02-09)
|
|
931
|
-
|
|
932
|
-
### Bug Fixes
|
|
933
|
-
|
|
934
|
-
- **bn:** bn [@type](https://github.com/type) missing ([bbf47a3](https://github.com/ava-labs/avalanche-sdks/commit/bbf47a38451851bfdcb3ca97cc3dc7c501a89ac3))
|
|
935
|
-
|
|
936
|
-
# 0.1.0 (2022-02-08)
|
|
937
|
-
|
|
938
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
939
|
-
|
|
940
|
-
# 0.1.0-alpha.20 (2022-02-08)
|
|
941
|
-
|
|
942
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
943
|
-
|
|
944
|
-
# 0.1.0-alpha.19 (2022-02-08)
|
|
945
|
-
|
|
946
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
947
|
-
|
|
948
|
-
# 0.1.0-alpha.18 (2022-02-08)
|
|
949
|
-
|
|
950
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
951
|
-
|
|
952
|
-
# 0.1.0-alpha.17 (2022-02-07)
|
|
953
|
-
|
|
954
|
-
### Features
|
|
955
|
-
|
|
956
|
-
- runtime config updates from avalanche-bridge ([#8](https://github.com/ava-labs/avalanche-sdks/issues/8)) ([6cc45c4](https://github.com/ava-labs/avalanche-sdks/commit/6cc45c451cadcf5e8834aa36c7f0df8ebe46e66c))
|
|
957
|
-
|
|
958
|
-
# 0.1.0-alpha.16 (2022-02-07)
|
|
959
|
-
|
|
960
|
-
### Features
|
|
961
|
-
|
|
962
|
-
- put tokenInfoData into a separate context for bridge web ([#6](https://github.com/ava-labs/avalanche-sdks/issues/6)) ([d152599](https://github.com/ava-labs/avalanche-sdks/commit/d152599a7d8e661bcbc009d4b00defc909e74852))
|
|
963
|
-
|
|
964
|
-
# 0.1.0-alpha.15 (2022-02-07)
|
|
965
|
-
|
|
966
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
967
|
-
|
|
968
|
-
# 0.1.0-alpha.14 (2022-02-01)
|
|
969
|
-
|
|
970
|
-
### Features
|
|
971
|
-
|
|
972
|
-
- add the following hooks ([#4](https://github.com/ava-labs/avalanche-sdks/issues/4)) ([a43502e](https://github.com/ava-labs/avalanche-sdks/commit/a43502e9ac10df26ca7cc0da429f9ffb0c015636))
|
|
973
|
-
|
|
974
|
-
# 0.1.0-alpha.13 (2022-02-01)
|
|
975
|
-
|
|
976
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
977
|
-
|
|
978
|
-
# 0.1.0-alpha.12 (2022-01-28)
|
|
979
|
-
|
|
980
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
981
|
-
|
|
982
|
-
# 0.1.0-alpha.11 (2022-01-28)
|
|
983
|
-
|
|
984
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
985
|
-
|
|
986
|
-
# 0.1.0-alpha.10 (2022-01-28)
|
|
987
|
-
|
|
988
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
989
|
-
|
|
990
|
-
# 0.1.0-alpha.9 (2022-01-28)
|
|
991
|
-
|
|
992
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
993
|
-
|
|
994
|
-
# 0.1.0-alpha.8 (2022-01-28)
|
|
995
|
-
|
|
996
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
997
|
-
|
|
998
|
-
# 0.1.0-alpha.7 (2022-01-28)
|
|
999
|
-
|
|
1000
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
1001
|
-
|
|
1002
|
-
# 0.1.0-alpha.6 (2022-01-28)
|
|
1003
|
-
|
|
1004
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
1005
|
-
|
|
1006
|
-
# 0.1.0-alpha.5 (2022-01-28)
|
|
1007
|
-
|
|
1008
|
-
**Note:** Version bump only for package @avalabs/utils-sdk
|
|
1009
|
-
|
|
1010
|
-
# 0.1.0-alpha.4 (2022-01-27)
|
|
1011
|
-
|
|
1012
|
-
### Features
|
|
1013
|
-
|
|
1014
|
-
- **utils:** adding utils lib ([be6c659](https://github.com/ava-labs/avalanche-sdks/commit/be6c6594218f05b540259f84a407c0597fc8076e))
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"contacts.d.ts","sourceRoot":"","sources":["../../src/contacts.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,OAAO;IACtB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,aAAa;IAC5B,QAAQ,EAAE,OAAO,EAAE,CAAC;CACrB"}
|
package/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './src/contacts';
|
package/rollup.config.js
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import json from '@rollup/plugin-json';
|
|
2
|
-
import commonjs from 'rollup-plugin-commonjs';
|
|
3
|
-
import del from 'rollup-plugin-delete';
|
|
4
|
-
import ttypescript from 'ttypescript';
|
|
5
|
-
import typescript from 'rollup-plugin-typescript2';
|
|
6
|
-
|
|
7
|
-
export default {
|
|
8
|
-
input: './index.ts',
|
|
9
|
-
output: {
|
|
10
|
-
dir: 'dist',
|
|
11
|
-
format: 'cjs',
|
|
12
|
-
sourcemap: process.env.BUILD === 'production' ? false : true,
|
|
13
|
-
},
|
|
14
|
-
plugins: [
|
|
15
|
-
del({ targets: 'dist/*' }),
|
|
16
|
-
typescript({
|
|
17
|
-
typescript: ttypescript,
|
|
18
|
-
tsconfig: 'tsconfig.json',
|
|
19
|
-
tsconfigOverride: {
|
|
20
|
-
exclude: ['./test/**'],
|
|
21
|
-
// index.ts is included here and not in tsconfig.ts so relative imports
|
|
22
|
-
// are imported correctly by VS Code.
|
|
23
|
-
include: ['src', 'index.ts'],
|
|
24
|
-
compilerOptions: {
|
|
25
|
-
rootDir: './',
|
|
26
|
-
},
|
|
27
|
-
},
|
|
28
|
-
}),
|
|
29
|
-
json(),
|
|
30
|
-
commonjs(),
|
|
31
|
-
],
|
|
32
|
-
external: ['ethers', 'big.js'],
|
|
33
|
-
};
|
package/src/contacts.ts
DELETED