Fix failures in Taquito suite

I had a look at the logs of the latest job run (#3090654305)The following tests are failing because of breaking changes in alpha:

rpc-get-protocol-constants.spec.ts
contract-security-tickets-duplication.spec.ts
contract-security-duplicate-ticket.spec.ts
contract-originate-contract-with-chest.spec.ts
contract-edo-deploy-having-ticket.spec.ts
wallet-edo-deploy-having-ticket.spec.ts

These ones are failing because we install the Taquito packages from npm and doesn't have the latest changes from master:

rpc-nodes.spec.ts (Fetches voting information about a delegate from RPC)
contract-execute-on-chain-view.spec.ts

These are failing because we will need additional config for TORU for everything to work properly together:

rpc-nodes.spec.ts(Verify that rpcClient.getTxRollupInbox will access the inbox of a transaction rollup, Verify that rpcClient.getTxRollupState will access the state of a rollup)
tx-rollup-transfer-ticket.spec.ts

I thought this one was fixed on master, I will double check:

contract-multisig-set-and-remove-delegate.spec.ts

These may be due to a different version of Typescript (maybe?). We normally use 4.1.5:

wallet-api.spec.ts "Parameter 'event' implicitly has an 'any' type."
local-forging.spec.ts "TypeError: Cannot read properties of undefined (reading '00')"

I am not sure about these ones:

contract-call-with-xtz-amount.spec.ts "Forging mismatch error"
wallet-unit-as-param.spec.ts "Forging mismatch error"
contract-unit-as-param.spec.ts "Forging mismatch error"
contract-security-non-existent-KT-address.spec.ts "Error: Client network socket disconnected before secure TLS connection was established"
contract-originate-vote-contract.spec.ts "counter_in_the_past"

(The 2 last might be flaky failures) (edited)