-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'nj/docs/e2e' into nj/tests/final-solana-tests
- Loading branch information
Showing
18 changed files
with
70 additions
and
73 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
NEXT_PUBLIC_WC_PROJECT_ID= | ||
NEXT_PUBLIC_PROVIDER_URL=https://testnet.fuel.network/v1/graphql | ||
NEXT_PUBLIC_WC_PROJECT_ID=e01471314fc69cc4efba6dce12dfd710 | ||
NEXT_PUBLIC_PROVIDER_URL=http://localhost:4000/v1/graphql |
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
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,3 @@ | ||
VITE_APP_WC_PROJECT_ID= | ||
VITE_CHAIN_ID_NAME=testnet | ||
VITE_FUEL_PROVIDER_URL=https://testnet.fuel.network/v1/graphql | ||
VITE_WALLET_SECRET="0xa449b1ffee0e2205fa924c6740cc48b3b473aa28587df6dab12abc245d1f5298" | ||
VITE_MASTER_WALLET_MNEMONIC="shuffle become fold deputy sick shove wolf olympic breeze antique ball broom" | ||
PORT=5173 | ||
VITE_APP_WC_PROJECT_ID=e01471314fc69cc4efba6dce12dfd710 | ||
VITE_CHAIN_ID_NAME=local | ||
VITE_FUEL_PROVIDER_URL=http://localhost:4000/v1/graphql |
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,3 @@ | ||
NEXT_PUBLIC_WC_PROJECT_ID= | ||
NEXT_PUBLIC_WC_PROJECT_ID=e01471314fc69cc4efba6dce12dfd710 | ||
NEXT_PUBLIC_CHAIN_ID_NAME=testnet | ||
NEXT_PUBLIC_PROVIDER_URL=http://localhost:4000/v1/graphql |
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,2 @@ | ||
PRIVATE_KEY=0xa449b1ffee0e2205fa924c6740cc48b3b473aa28587df6dab12abc245d1f5298 | ||
PROVIDER_URL=http://localhost:4000/v1/graphql |
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,11 +1,16 @@ | ||
import dotenv from 'dotenv'; | ||
import { createConfig } from 'fuels'; | ||
|
||
dotenv.config({ | ||
path: ['.env'], | ||
}); | ||
|
||
export default createConfig({ | ||
providerUrl: | ||
process.env.PROVIDER_URL || 'https://testnet.fuel.network/v1/graphql', | ||
providerUrl: process.env.PROVIDER_URL || 'http://localhost:4000/v1/graphql', | ||
predicates: ['./predicate'], | ||
output: './src/generated/tmp', | ||
forcBuildFlags: ['--release'], | ||
// needs the private key to deploy the predicate | ||
privateKey: process.env.PRIVATE_KEY || '0x', | ||
privateKey: | ||
'0xa449b1ffee0e2205fa924c6740cc48b3b473aa28587df6dab12abc245d1f5298', | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
PRIVATE_KEY=0xa449b1ffee0e2205fa924c6740cc48b3b473aa28587df6dab12abc245d1f5298 | ||
PROVIDER_URL=http://localhost:4000/v1/graphql |
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,11 +1,16 @@ | ||
import dotenv from 'dotenv'; | ||
import { createConfig } from 'fuels'; | ||
|
||
dotenv.config({ | ||
path: ['.env'], | ||
}); | ||
|
||
export default createConfig({ | ||
providerUrl: | ||
process.env.PROVIDER_URL || 'https://testnet.fuel.network/v1/graphql', | ||
providerUrl: process.env.PROVIDER_URL || 'http://localhost:4000/v1/graphql', | ||
predicates: ['./predicate'], | ||
output: './src/generated/tmp', | ||
forcBuildFlags: ['--release'], | ||
// needs the private key to deploy the predicate | ||
privateKey: process.env.PRIVATE_KEY || '0x', | ||
privateKey: | ||
'0xa449b1ffee0e2205fa924c6740cc48b3b473aa28587df6dab12abc245d1f5298', | ||
}); |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.