Skip to content

Commit 3d7bb76

Browse files
authored
feat: Migrate arbitrum-sepolia-testnet from experimental to non-experimental network (#523)
* fix: update iexec version to 8.20.0 and skip experimental network tests * fix: correct syntax for workerpoolAddress in ChainConfig * fix: skip experimental network tests in getWeb3Provider test suite
1 parent cbebba7 commit 3d7bb76

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

packages/sdk/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"debug": "^4.3.4",
6262
"ethers": "^6.13.2",
6363
"graphql-request": "^6.0.0",
64-
"iexec": "^8.18.0",
64+
"iexec": "^8.20.0",
6565
"jszip": "^3.7.1",
6666
"kubo-rpc-client": "^4.1.1",
6767
"magic-bytes.js": "^1.0.15",

packages/sdk/src/config/config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ const CHAIN_CONFIG: Record<ChainId, ChainConfig> = {
3333
ipfsGateway: 'https://ipfs-gateway.arbitrum-sepolia-testnet.iex.ec',
3434
ipfsNode: 'https://ipfs-upload.arbitrum-sepolia-testnet.iex.ec',
3535
workerpoolAddress: '0xB967057a21dc6A66A29721d96b8Aa7454B7c383F',
36-
isExperimental: true,
3736
},
3837
// Arbitrum Mainnet
3938
42161: {

packages/sdk/tests/unit/constructor.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ describe('IExecDataProtector()', () => {
189189
});
190190
});
191191

192-
describe('When instantiating SDK with an experimental network', () => {
192+
describe.skip('When instantiating SDK with an experimental network', () => {
193193
const experimentalNetworkSigner = getWeb3Provider(
194194
Wallet.createRandom().privateKey,
195195
{

packages/sdk/tests/unit/getWeb3Provider.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe('getWeb3Provider()', () => {
3030
expect(getWeb3Provider(privateKey, { host: 'bellecour' })).toBeDefined();
3131
});
3232

33-
describe('When instantiating SDK with an experimental network', () => {
33+
describe.skip('When instantiating SDK with an experimental network', () => {
3434
describe('Without allowExperimentalNetworks', () => {
3535
it('should throw a configuration error', () => {
3636
expect(() =>

0 commit comments

Comments
 (0)