Skip to content

Commit

Permalink
test: send non eip155 tx to Axon (#299)
Browse files Browse the repository at this point in the history
non-EIP-155 transactions are mainly to support [EIP-1820](https://eips.ethereum.org/EIPS/eip-1820). Many projects use this method to support multi-chain contracts using the same address.

> [EIP-155](https://eips.ethereum.org/EIPS/eip-155): The currently existing signature scheme using v = 27 and v = 28 remains valid and continues to operate under the same rules as it did previously.
  • Loading branch information
Flouse authored Sep 14, 2023
1 parent 31fceaa commit 81f85ec
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions contracts/test/nonEip155.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ const { getTxReceipt } = require("../utils/receipt");

const { ethers } = hardhat;

// non-EIP-155 transactions are mainly to support EIP-1820. Many projects use
// this method to support multi-chain contracts using the same address.
//
// EIP-155: The currently existing signature scheme using v = 27 and v = 28
// remains valid and continues to operate under the same rules as it did
// previously.
describe("Non eip155 tx", function () {
//FIXME
if (isAxon()) {
return;
}

it("Send non eip155 tx", async function () {
const [owner] = await ethers.getSigners();

Expand Down

0 comments on commit 81f85ec

Please sign in to comment.