You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add multi-chain configuration and experimental networks support (#46)
* chore(deps): upgrade iexec dependency to v8.16.1
* feat: add allowExperimentalNetworks option to Web3TelegramConfigOptions
* feat: refactor chain configuration to support multi-chain and experimental networks
* feat: update getWeb3Provider to support experimental networks and custom hosts
* feat: integrate experimental networks support in IExecWeb3telegram class
* test: update test environment configuration
* test: add comprehensive tests for experimental networks support
* test: update e2e tests to use new chain configuration
* test: update unit tests to use new chain configuration
* fix: remove unused imports to resolve linting errors
* fix: update dataProtectorSubgraph URL for arbitrum-sepolia-testnet
* refactor(tests): rename variables
* fix: improve .gitignore to ignore .env files in all directories
---------
Co-authored-by: paypes <[email protected]>
Co-authored-by: pjt <[email protected]>
Copy file name to clipboardExpand all lines: src/web3telegram/types.ts
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -107,6 +107,13 @@ export type Web3TelegramConfigOptions = {
107
107
* If not provided, the default IPFS gateway URL for the detected chain will be used.
108
108
*/
109
109
ipfsGateway?: string;
110
+
111
+
/**
112
+
* if true allows using a provider connected to an experimental networks (default false)
113
+
*
114
+
* ⚠️ experimental networks are networks on which the iExec's stack is partially deployed, experimental networks can be subject to instabilities or discontinuity. Access is provided without warranties.
0 commit comments