diff --git a/ComputeExamples.md b/ComputeExamples.md index 8c288495f..ce6381767 100644 --- a/ComputeExamples.md +++ b/ComputeExamples.md @@ -792,7 +792,7 @@ let's select compute environment which have free and paid resources }, { id: 'ram', - amount: 1000000000 + amount: 2 }, { id: 'disk', diff --git a/src/config/ConfigHelper.ts b/src/config/ConfigHelper.ts index 2ceeeb763..08647c09d 100644 --- a/src/config/ConfigHelper.ts +++ b/src/config/ConfigHelper.ts @@ -55,6 +55,19 @@ export const configHelperNetworks: Config[] = [ gasFeeMultiplier: 1.05, sdk: 'evm' }, + { + ...configHelperNetworksBase, + chainId: 8453, + network: 'base', + nodeUri: 'https://mainnet.base.org', + explorerUri: 'https://etherscan.io', + startBlock: 30562198, + transactionBlockTimeout: 150, + transactionConfirmationBlocks: 5, + transactionPollingTimeout: 1750, + gasFeeMultiplier: 1.05, + sdk: 'evm' + }, { ...configHelperNetworksBase, chainId: 137, diff --git a/test/integration/ComputeExamples.test.ts b/test/integration/ComputeExamples.test.ts index 186629506..51aeff6c1 100644 --- a/test/integration/ComputeExamples.test.ts +++ b/test/integration/ComputeExamples.test.ts @@ -792,7 +792,7 @@ describe('Compute-to-data example tests', async () => { }, { id: 'ram', - amount: 1000000000 + amount: 2 }, { id: 'disk', diff --git a/test/integration/ComputeFlow.test.ts b/test/integration/ComputeFlow.test.ts index a14e88cf3..77e2ce887 100644 --- a/test/integration/ComputeFlow.test.ts +++ b/test/integration/ComputeFlow.test.ts @@ -512,7 +512,7 @@ describe('Compute flow tests', async () => { }, { id: 'ram', - amount: computeEnv.resources[1].max + 100 + amount: computeEnv.resources[1].max + 1 }, { id: 'disk', @@ -563,7 +563,7 @@ describe('Compute flow tests', async () => { }, { id: 'ram', - amount: 1000000000 + amount: 2 }, { id: 'disk', @@ -734,7 +734,7 @@ describe('Compute flow tests', async () => { }, { id: 'ram', - amount: 1000000000 + amount: 2 }, { id: 'disk', @@ -823,7 +823,7 @@ describe('Compute flow tests', async () => { }, { id: 'ram', - amount: 1000000000 + amount: 2 }, { id: 'disk',