diff --git a/packages/api-kit/hardhat.config.ts b/packages/api-kit/hardhat.config.ts index 73eeaebd9..8bb710309 100644 --- a/packages/api-kit/hardhat.config.ts +++ b/packages/api-kit/hardhat.config.ts @@ -40,7 +40,7 @@ const config: HardhatUserConfig = { }, sepolia: { ...sharedNetworkConfig, - url: 'https://rpc.ankr.com/eth_sepolia' + url: 'https://rpc2.sepolia.org' } }, //@ts-expect-error Type not found diff --git a/packages/api-kit/tests/e2e/getMultisigTransactions.test.ts b/packages/api-kit/tests/e2e/getMultisigTransactions.test.ts index fc6f63f06..d617831a0 100644 --- a/packages/api-kit/tests/e2e/getMultisigTransactions.test.ts +++ b/packages/api-kit/tests/e2e/getMultisigTransactions.test.ts @@ -39,8 +39,8 @@ describe('getMultisigTransactions', () => { const safeAddress = '0xF8ef84392f7542576F6b9d1b140334144930Ac78' // Safe with multisig transactions const safeMultisigTransactionListResponse = await safeApiKit.getMultisigTransactions(safeAddress) - chai.expect(safeMultisigTransactionListResponse.count).to.be.equal(18) - chai.expect(safeMultisigTransactionListResponse.results.length).to.be.equal(18) + chai.expect(safeMultisigTransactionListResponse.count).to.be.equal(22) + chai.expect(safeMultisigTransactionListResponse.results.length).to.be.equal(22) safeMultisigTransactionListResponse.results.map((transaction) => { chai.expect(transaction.safe).to.be.equal(safeAddress) }) @@ -51,8 +51,8 @@ describe('getMultisigTransactions', () => { const eip3770SafeAddress = `${config.EIP_3770_PREFIX}:${safeAddress}` const safeMultisigTransactionListResponse = await safeApiKit.getMultisigTransactions(eip3770SafeAddress) - chai.expect(safeMultisigTransactionListResponse.count).to.be.equal(18) - chai.expect(safeMultisigTransactionListResponse.results.length).to.be.equal(18) + chai.expect(safeMultisigTransactionListResponse.count).to.be.equal(22) + chai.expect(safeMultisigTransactionListResponse.results.length).to.be.equal(22) safeMultisigTransactionListResponse.results.map((transaction) => { chai.expect(transaction.safe).to.be.equal(safeAddress) }) diff --git a/packages/api-kit/tests/e2e/getNextNonce.test.ts b/packages/api-kit/tests/e2e/getNextNonce.test.ts index 736b4e13f..029ac5af3 100644 --- a/packages/api-kit/tests/e2e/getNextNonce.test.ts +++ b/packages/api-kit/tests/e2e/getNextNonce.test.ts @@ -22,14 +22,14 @@ describe('getNextNonce', () => { it('should return the next Safe nonce when there are pending transactions', async () => { const safeAddress = '0xF8ef84392f7542576F6b9d1b140334144930Ac78' const nextNonce = await safeApiKit.getNextNonce(safeAddress) - chai.expect(nextNonce).to.be.equal(11) + chai.expect(nextNonce).to.be.equal(13) }) it('should return the next Safe nonce when there are pending transactions EIP-3770', async () => { const safeAddress = '0xF8ef84392f7542576F6b9d1b140334144930Ac78' const eip3770SafeAddress = `${config.EIP_3770_PREFIX}:${safeAddress}` const nextNonce = await safeApiKit.getNextNonce(eip3770SafeAddress) - chai.expect(nextNonce).to.be.equal(11) + chai.expect(nextNonce).to.be.equal(13) }) it('should return the next Safe nonce when there are no pending transactions', async () => {