Add a Calldata library with emptyBytes and emptyString functions (#5422)

Co-authored-by: Ernesto García <ernestognw@gmail.com>
This commit is contained in:
Hadrien Croubois
2025-01-10 02:48:32 +01:00
committed by GitHub
parent 7b74442c5e
commit 352ab13687
4 changed files with 54 additions and 10 deletions

View File

@ -0,0 +1,22 @@
const { ethers } = require('hardhat');
const { expect } = require('chai');
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
async function fixture() {
const mock = await ethers.deployContract('$Calldata');
return { mock };
}
describe('Calldata utilities', function () {
beforeEach(async function () {
Object.assign(this, await loadFixture(fixture));
});
it('emptyBytes', async function () {
await expect(this.mock.$emptyBytes()).to.eventually.equal('0x');
});
it('emptyString', async function () {
await expect(this.mock.$emptyString()).to.eventually.equal('');
});
});