The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/solidity/core/test/merkle.test.ts

46 lines
1.3 KiB

import { expect } from 'chai';
import { ethers } from 'hardhat';
import merkleTestCases from '../../../vectors/merkle.json';
import { TestMerkle, TestMerkle__factory } from '../types';
describe('Merkle', async () => {
for (const testCase of merkleTestCases) {
const { testName, leaves, expectedRoot, proofs } = testCase;
describe(testName, async () => {
let merkle: TestMerkle;
before(async () => {
const [signer] = await ethers.getSigners();
const merkleFactory = new TestMerkle__factory(signer);
merkle = await merkleFactory.deploy();
//insert the leaves
for (const leaf of leaves) {
const leafHash = ethers.utils.hashMessage(leaf);
await merkle.insert(leafHash);
}
});
it('returns the correct leaf count', async () => {
const leafCount = await merkle.count();
expect(leafCount).to.equal(leaves.length);
});
it('produces the proper root', async () => {
expect(await merkle.root()).to.equal(expectedRoot);
});
it("can verify the leaves' proofs", async () => {
for (const proof of proofs) {
const { leaf, path, index } = proof;
const proofRoot = await merkle.branchRoot(leaf, path, index);
expect(proofRoot).to.equal(expectedRoot);
}
});
});
}
});