-
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.
* refactor: integrated launchTestNode in remaining files * docs: update changeset * test: integrated launchTestNode into all tests excluding doc-snippets * wip * test: refactored many tests in docs-snippets * test: skipping currently failing test suites for ci tests * docs: add changeset * deps: update dependencies * deps: remove cyclical dependency * deps: updated dependencies to use setupTestWallet for now * fix: add error handling for in memory store historical view issues * test: enable browser for demo-fuels index test * docs: added comments about typegen contract call mismatches * revert error supression on provider * test: increasing block production time * test: browser test adjusments * test: browser test adjustments * test: update provider test case for snippets * chore: refactor to use new typegen types * linting * chore: resolve issue with account tests * chore: undo create-fuels.js change * chore: update poa-interval-period * chore: update querying chain docs tests * test: update FUEL_CORE compatability tests * linting fixes * docs: use custom port for launchTestNode * docs: update docs with PR feedback * chore: remove unused testing utilities * chore: more PR feedback refactors * ci: update CI workflow test scripts * ci: update workflow steps * test: update tests to spin up temp nodes in setup * linting * docs: update changesets Co-authored-by: Peter Smith <[email protected]> * chore: update variable assignment Co-authored-by: Peter Smith <[email protected]> * docs: update imports Co-authored-by: Peter Smith <[email protected]> * chore: pr feedback changes * docs: re-introduce testing wallets docs (#2635) Co-authored-by: Anderson Arboleya <[email protected]> * chore: update changesets + feedback * ci: remove unnecessary clean step * chore: deprecated urls * chore: changeset * docs: update contributing docs * chore: update test asset IDs * Update network url * chore: refactor account tests to use helper * chore: pr feedback * docs: update changesets * docs: update changeset to breaking * docs: remove unnecessary updates from changeset * chore: removed `FUEL_NETWORK_URL` env * chore: updated pvt key envs * chore: changeset --------- Co-authored-by: chad <[email protected]> Co-authored-by: Sérgio Torres <[email protected]> Co-authored-by: Anderson Arboleya <[email protected]>
- Loading branch information
1 parent
6b4d754
commit 56018e3
Showing
14 changed files
with
44 additions
and
102 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,6 @@ | ||
--- | ||
"@fuel-ts/account": minor | ||
"fuels": patch | ||
--- | ||
|
||
chore!: deprecate `FUEL_NETWORK_URL` and `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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FUEL_NETWORK_URL= | ||
TEST_WALLET_PVT_KEY= | ||
DEVNET_WALLET_PVT_KEY= | ||
TESTNET_WALLET_PVT_KEY= | ||
PUBLISHED_NPM_TAG= |
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 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,10 +1,4 @@ | ||
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 || 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