This repository was archived by the owner on May 26, 2023. It is now read-only.
File tree 9 files changed +39
-39
lines changed
9 files changed +39
-39
lines changed Original file line number Diff line number Diff line change 2
2
"packages" : [
3
3
" packages/*"
4
4
],
5
- "version" : " 3.2 .0" ,
5
+ "version" : " 3.3 .0" ,
6
6
"npmClient" : " yarn" ,
7
7
"useWorkspaces" : true ,
8
8
"command" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @zilliqa-js/account" ,
3
- "version" : " 3.2 .0" ,
3
+ "version" : " 3.3 .0" ,
4
4
"author" : " Ian Tan (https://github.com/iantanwx)" ,
5
5
"maintainers" : [
6
6
" Zilliqa Usability Team <[email protected] > (https://github.com/zilliqa/)"
25
25
"clean" : " rimraf ./dist ./tsconfig.tsbuildinfo"
26
26
},
27
27
"dependencies" : {
28
- "tslib" : " 2.3.1" ,
29
28
"@types/bip39" : " ^2.4.0" ,
30
29
"@types/hdkey" : " ^0.7.0" ,
31
- "@zilliqa-js/core" : " 3.2 .0" ,
32
- "@zilliqa-js/crypto" : " 3.2 .0" ,
30
+ "@zilliqa-js/core" : " 3.3 .0" ,
31
+ "@zilliqa-js/crypto" : " 3.3 .0" ,
33
32
"@zilliqa-js/proto" : " 3.2.0" ,
34
- "@zilliqa-js/util" : " 3.2 .0" ,
33
+ "@zilliqa-js/util" : " 3.3 .0" ,
35
34
"bip39" : " ^2.5.0" ,
36
- "hdkey" : " ^1.1.0"
35
+ "hdkey" : " ^1.1.0" ,
36
+ "tslib" : " 2.3.1"
37
37
},
38
38
"files" : [
39
39
" dist" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @zilliqa-js/blockchain" ,
3
- "version" : " 3.2 .0" ,
3
+ "version" : " 3.3 .0" ,
4
4
"description" : " Class(es) for interacting with the Zilliqa blockchain." ,
5
5
"main" : " dist/index.js" ,
6
6
"node" : " dist/index.js" ,
25
25
"clean" : " rimraf ./dist ./tsconfig.tsbuildinfo"
26
26
},
27
27
"dependencies" : {
28
+ "@zilliqa-js/account" : " 3.3.0" ,
29
+ "@zilliqa-js/contract" : " 3.3.0" ,
30
+ "@zilliqa-js/core" : " 3.3.0" ,
31
+ "@zilliqa-js/crypto" : " 3.3.0" ,
32
+ "@zilliqa-js/util" : " 3.3.0" ,
28
33
"tslib" : " 2.3.1" ,
29
- "@zilliqa-js/account" : " 3.2.0" ,
30
- "@zilliqa-js/contract" : " 3.2.0" ,
31
- "@zilliqa-js/core" : " 3.2.0" ,
32
- "@zilliqa-js/crypto" : " 3.2.0" ,
33
- "@zilliqa-js/util" : " 3.2.0" ,
34
34
"utility-types" : " ^3.4.1"
35
35
},
36
36
"files" : [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @zilliqa-js/contract" ,
3
- "version" : " 3.2 .0" ,
3
+ "version" : " 3.3 .0" ,
4
4
"description" : " Contract-related functionality." ,
5
5
"main" : " dist/index.js" ,
6
6
"node" : " dist/index.js" ,
25
25
"clean" : " rimraf ./dist ./tsconfig.tsbuildinfo"
26
26
},
27
27
"dependencies" : {
28
- "tslib" : " 2.3.1" ,
29
- "@zilliqa-js/account" : " 3.2.0" ,
30
- "@zilliqa-js/blockchain" : " 3.2.0" ,
31
- "@zilliqa-js/core" : " 3.2.0" ,
32
- "@zilliqa-js/crypto" : " 3.2.0" ,
33
- "@zilliqa-js/util" : " 3.2.0" ,
28
+ "@zilliqa-js/account" : " 3.3.0" ,
29
+ "@zilliqa-js/blockchain" : " 3.3.0" ,
30
+ "@zilliqa-js/core" : " 3.3.0" ,
31
+ "@zilliqa-js/crypto" : " 3.3.0" ,
32
+ "@zilliqa-js/util" : " 3.3.0" ,
34
33
"hash.js" : " ^1.1.5" ,
34
+ "tslib" : " 2.3.1" ,
35
35
"utility-types" : " ^2.1.0"
36
36
},
37
37
"files" : [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @zilliqa-js/core" ,
3
- "version" : " 3.2 .0" ,
3
+ "version" : " 3.3 .0" ,
4
4
"description" : " Core abstractions that power the zilliqa JS client." ,
5
5
"main" : " dist/index.js" ,
6
6
"node" : " dist/index.js" ,
25
25
"clean" : " rimraf ./dist ./tsconfig.tsbuildinfo"
26
26
},
27
27
"dependencies" : {
28
- "tslib" : " 2.3.1" ,
29
28
"cross-fetch" : " 2.2.5" ,
30
- "mitt" : " ^1.1.3"
29
+ "mitt" : " ^1.1.3" ,
30
+ "tslib" : " 2.3.1"
31
31
},
32
32
"files" : [
33
33
" dist" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @zilliqa-js/crypto" ,
3
- "version" : " 3.2 .0" ,
3
+ "version" : " 3.3 .0" ,
4
4
"description" : " Core crypto utilities for signing/verification/hashing Zilliqa transactions." ,
5
5
"author" : " Ian Tan (https://github.com/iantanwx)" ,
6
6
"maintainers" : [
25
25
"clean" : " rimraf ./dist ./tsconfig.tsbuildinfo"
26
26
},
27
27
"dependencies" : {
28
- "tslib" : " 2.3.1" ,
29
- "@zilliqa-js/util" : " 3.2.0" ,
28
+ "@zilliqa-js/util" : " 3.3.0" ,
30
29
"aes-js" : " ^3.1.1" ,
31
30
"bsert" : " ^0.0.4" ,
32
31
"elliptic" : " ^6.5.0" ,
37
36
"scrypt-js" : " ^3.0.1" ,
38
37
"scryptsy" : " ^2.1.0" ,
39
38
"sodium-native" : " ^3.2.1" ,
39
+ "tslib" : " 2.3.1" ,
40
40
"uuid" : " ^3.3.2"
41
41
},
42
42
"files" : [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @zilliqa-js/subscriptions" ,
3
- "version" : " 3.2 .0" ,
3
+ "version" : " 3.3 .0" ,
4
4
"description" : " Class(es) for interactiong with websocket API of Zilliqa node" ,
5
5
"main" : " dist/index.js" ,
6
6
"node" : " dist/index.js" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @zilliqa-js/util" ,
3
- "version" : " 3.2 .0" ,
3
+ "version" : " 3.3 .0" ,
4
4
"description" : " Utilities for working with Zilliqa." ,
5
5
"author" : " Ian Tan (https://github.com/iantanwx)" ,
6
6
"maintainers" : [
25
25
"clean" : " rimraf ./dist ./tsconfig.tsbuildinfo"
26
26
},
27
27
"dependencies" : {
28
- "tslib" : " 2.3.1" ,
29
28
"@types/bn.js" : " ^4.11.3" ,
30
29
"@types/long" : " ^4.0.0" ,
31
30
"bn.js" : " ^4.11.8" ,
32
- "long" : " ^4.0.0"
31
+ "long" : " ^4.0.0" ,
32
+ "tslib" : " 2.3.1"
33
33
},
34
34
"files" : [
35
35
" dist" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @zilliqa-js/zilliqa" ,
3
- "version" : " 3.2 .0" ,
3
+ "version" : " 3.3 .0" ,
4
4
"description" : " Main entry point to the Zilliqa JS client." ,
5
5
"author" : " Ian Tan (https://github.com/iantanwx)" ,
6
6
"maintainers" : [
22
22
"clean" : " rimraf ./dist ./tsconfig.tsbuildinfo"
23
23
},
24
24
"dependencies" : {
25
- "tslib " : " 2 .3.1 " ,
26
- "@zilliqa-js/account " : " 3.2 .0" ,
27
- "@zilliqa-js/blockchain " : " 3.2 .0" ,
28
- "@zilliqa-js/contract " : " 3.2 .0" ,
29
- "@zilliqa-js/core " : " 3.2 .0" ,
30
- "@zilliqa-js/crypto " : " 3.2 .0" ,
31
- "@zilliqa-js/subscriptions " : " 3.2 .0" ,
32
- "@zilliqa-js/util " : " 3.2.0 "
25
+ "@zilliqa-js/account " : " 3 .3.0 " ,
26
+ "@zilliqa-js/blockchain " : " 3.3 .0" ,
27
+ "@zilliqa-js/contract " : " 3.3 .0" ,
28
+ "@zilliqa-js/core " : " 3.3 .0" ,
29
+ "@zilliqa-js/crypto " : " 3.3 .0" ,
30
+ "@zilliqa-js/subscriptions " : " 3.3 .0" ,
31
+ "@zilliqa-js/util " : " 3.3 .0" ,
32
+ "tslib " : " 2.3.1 "
33
33
},
34
34
"files" : [
35
35
" dist" ,
You can’t perform that action at this time.
0 commit comments