-
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.
chore!: upgrade fuel core to
0.28.0
(#2491)
* chore: bumped versions * chore: added devnet URL * ci: removed redundant env * chore: removed redundant `FUEL_TESTNET_NETWORK_URL` e2e env * chore: removed redundant `TEST_WALLET_ADDRESS` * chore: allowed for two networks in the e2e's * chore: updates operations * chore: added alocDependentCost * chore: added version to Header * chore: fix incorrect test network * chore: ensure we don't connect to the live network * chore: added Block.version * chore: added `gasPrice` to the dryRun * chore: point e2e test to devnet * chore: changeset * ci: added missing envs * chore: removed `FUEL_` prefix from network urls * chore: removed type from network urls * chore: added ability to run e2e against multiple networks * chore: revert back to skipping when private key missing * chore: linting * chore: reconfigured the e2e transaction tests * chore: address el nits * chore: added `txIds` for `testnet` * chore: combine e2e assets and script * chore: added all network URLS * chore: removed redundant env Co-authored-by: Daniel Bate <[email protected]> * chore: fixed chain config * chore: added missing testnet test case Co-authored-by: Anderson Arboleya <[email protected]> --------- Co-authored-by: Daniel Bate <[email protected]> Co-authored-by: Sérgio Torres <[email protected]> Co-authored-by: Anderson Arboleya <[email protected]>
- Loading branch information
1 parent
e9720df
commit e165e37
Showing
20 changed files
with
211 additions
and
108 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@fuel-ts/versions": patch | ||
"@fuel-ts/account": minor | ||
"fuels": minor | ||
--- | ||
|
||
chore!: upgrade fuel core to `0.28.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
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
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 +1 @@ | ||
0.27.0 | ||
0.28.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,7 +1,10 @@ | ||
export const LOCAL_NETWORK_URL = 'http://127.0.0.1:4000/v1/graphql'; | ||
export const DEVNET_NETWORK_URL = 'https://devnet.fuel.network/v1/graphql'; | ||
export const TESTNET_NETWORK_URL = 'https://testnet.fuel.network/v1/graphql'; | ||
// TODO: replace placeholder with mainnet network url | ||
// export const NETWORK_URL = ''; | ||
|
||
export const FUEL_NETWORK_URL: string = | ||
typeof process !== 'undefined' | ||
? process?.env?.FUEL_NETWORK_URL || 'http://127.0.0.1:4000/v1/graphql' | ||
: 'http://127.0.0.1:4000/v1/graphql'; | ||
|
||
export const FUEL_DEVNET_NETWORK_URL: string = 'https://devnet.fuel.network/v1/graphql'; | ||
export const FUEL_TESTNET_NETWORK_URL: string = 'https://testnet.fuel.network/v1/graphql'; | ||
? process?.env?.FUEL_NETWORK_URL || LOCAL_NETWORK_URL | ||
: LOCAL_NETWORK_URL; |
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
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.