-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
280 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "0.5.0" | ||
"version": "0.6.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/abi-coder", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "src/index.ts", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/constants", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "src/index.ts", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/contract", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "src/index.ts", | ||
|
@@ -18,11 +18,11 @@ | |
"@ethersproject/logger": "^5.5.0", | ||
"@ethersproject/random": "^5.5.1", | ||
"@ethersproject/sha2": "^5.6.0", | ||
"@fuel-ts/abi-coder": "^0.5.0", | ||
"@fuel-ts/constants": "^0.5.0", | ||
"@fuel-ts/interfaces": "^0.5.0", | ||
"@fuel-ts/merkle": "^0.5.0", | ||
"@fuel-ts/providers": "^0.5.0", | ||
"@fuel-ts/wallet": "^0.5.0" | ||
"@fuel-ts/abi-coder": "^0.6.0", | ||
"@fuel-ts/constants": "^0.6.0", | ||
"@fuel-ts/interfaces": "^0.6.0", | ||
"@fuel-ts/merkle": "^0.6.0", | ||
"@fuel-ts/providers": "^0.6.0", | ||
"@fuel-ts/wallet": "^0.6.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/example-contract", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"scripts": { | ||
|
@@ -9,12 +9,12 @@ | |
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@ethersproject/bytes": "^5.5.0", | ||
"@fuel-ts/wallet": "^0.5.0", | ||
"fuels": "^0.5.0" | ||
"@fuel-ts/wallet": "^0.6.0", | ||
"fuels": "^0.6.0" | ||
}, | ||
"devDependencies": { | ||
"prettier": "^2.4.1", | ||
"typechain": "^6.0.2", | ||
"typechain-target-fuels": "^0.5.0" | ||
"typechain-target-fuels": "^0.6.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "fuels", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "src/index.ts", | ||
|
@@ -12,11 +12,11 @@ | |
"dependencies": { | ||
"@ethersproject/bignumber": "^5.6.0", | ||
"@ethersproject/bytes": "^5.6.0", | ||
"@fuel-ts/abi-coder": "^0.5.0", | ||
"@fuel-ts/constants": "^0.5.0", | ||
"@fuel-ts/contract": "^0.5.0", | ||
"@fuel-ts/providers": "^0.5.0", | ||
"@fuel-ts/transactions": "^0.5.0", | ||
"@fuel-ts/wallet": "^0.5.0" | ||
"@fuel-ts/abi-coder": "^0.6.0", | ||
"@fuel-ts/constants": "^0.6.0", | ||
"@fuel-ts/contract": "^0.6.0", | ||
"@fuel-ts/providers": "^0.6.0", | ||
"@fuel-ts/transactions": "^0.6.0", | ||
"@fuel-ts/wallet": "^0.6.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/hasher", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "Sha256 hash utility for Fuel", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "./src/index.ts", | ||
|
@@ -13,12 +13,12 @@ | |
"@ethersproject/bignumber": "^5.5.0", | ||
"@ethersproject/bytes": "^5.5.0", | ||
"@ethersproject/sha2": "^5.5.0", | ||
"@fuel-ts/constants": "^0.5.0", | ||
"@fuel-ts/providers": "^0.5.0", | ||
"@fuel-ts/constants": "^0.6.0", | ||
"@fuel-ts/providers": "^0.6.0", | ||
"lodash.clonedeep": "^4.5.0" | ||
}, | ||
"devDependencies": { | ||
"@fuel-ts/testcases": "^0.5.0", | ||
"@fuel-ts/testcases": "^0.6.0", | ||
"@types/lodash.clonedeep": "^4.5.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/hdwallet", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "The Hierarchal Desterministic (HD) Wallet", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "./src/index.ts", | ||
|
@@ -14,7 +14,7 @@ | |
"@ethersproject/bignumber": "^5.5.0", | ||
"@ethersproject/bytes": "^5.5.0", | ||
"@ethersproject/sha2": "^5.5.0", | ||
"@fuel-ts/mnemonic": "^0.5.0", | ||
"@fuel-ts/signer": "^0.5.0" | ||
"@fuel-ts/mnemonic": "^0.6.0", | ||
"@fuel-ts/signer": "^0.6.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/interfaces", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "src/index.ts", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
# [0.6.0](https://github.com/FuelLabs/fuels-ts/compare/v0.5.0...v0.6.0) (2022-04-25) | ||
|
||
**Note:** Version bump only for package @fuel-ts/keystore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/keystore", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "./index.ts", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/merkle-shared", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"main": "index.js", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fuel-ts/merkle", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "src/index.ts", | ||
|
@@ -10,6 +10,6 @@ | |
], | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@fuel-ts/merkle-shared": "^0.5.0" | ||
"@fuel-ts/merkle-shared": "^0.6.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.