Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ComputeExamples.md
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ let's select compute environment which have free and paid resources
},
{
id: 'ram',
amount: 1000000000
amount: 2
},
{
id: 'disk',
Expand Down
13 changes: 13 additions & 0 deletions src/config/ConfigHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion test/integration/ComputeExamples.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ describe('Compute-to-data example tests', async () => {
},
{
id: 'ram',
amount: 1000000000
amount: 2
},
{
id: 'disk',
Expand Down
8 changes: 4 additions & 4 deletions test/integration/ComputeFlow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -563,7 +563,7 @@ describe('Compute flow tests', async () => {
},
{
id: 'ram',
amount: 1000000000
amount: 2
},
{
id: 'disk',
Expand Down Expand Up @@ -734,7 +734,7 @@ describe('Compute flow tests', async () => {
},
{
id: 'ram',
amount: 1000000000
amount: 2
},
{
id: 'disk',
Expand Down Expand Up @@ -823,7 +823,7 @@ describe('Compute flow tests', async () => {
},
{
id: 'ram',
amount: 1000000000
amount: 2
},
{
id: 'disk',
Expand Down