Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
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 @@ -47,8 +47,8 @@
let resolvedAlgoDdoWith2mTimeout
let resolvedAlgoDdoWithNoTimeout

let freeEnvDatasetTxId

Check warning on line 50 in test/integration/ComputeFlow.test.ts

View workflow job for this annotation

GitHub Actions / lint

'freeEnvDatasetTxId' is assigned a value but never used
let freeEnvAlgoTxId

Check warning on line 51 in test/integration/ComputeFlow.test.ts

View workflow job for this annotation

GitHub Actions / lint

'freeEnvAlgoTxId' is assigned a value but never used
let paidEnvDatasetTxId
let paidEnvAlgoTxId
let computeValidUntil
Expand Down Expand Up @@ -255,7 +255,7 @@
}).timeout(interval + 200)
}

async function waitTillJobEnds(): Promise<number> {

Check warning on line 258 in test/integration/ComputeFlow.test.ts

View workflow job for this annotation

GitHub Actions / lint

'waitTillJobEnds' is defined but never used
return new Promise((resolve) => {
const interval = setInterval(async () => {
const jobStatus = (await ProviderInstance.computeStatus(
Expand Down Expand Up @@ -512,7 +512,7 @@
},
{
id: 'ram',
amount: computeEnv.resources[1].max + 100
amount: computeEnv.resources[1].max + 1
},
{
id: 'disk',
Expand Down Expand Up @@ -563,7 +563,7 @@
},
{
id: 'ram',
amount: 1000000000
amount: 2
},
{
id: 'disk',
Expand Down Expand Up @@ -734,7 +734,7 @@
},
{
id: 'ram',
amount: 1000000000
amount: 2
},
{
id: 'disk',
Expand Down Expand Up @@ -823,7 +823,7 @@
},
{
id: 'ram',
amount: 1000000000
amount: 2
},
{
id: 'disk',
Expand Down
Loading