123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- const ethSigUtil = require('eth-sig-util');
- const Wallet = require('ethereumjs-wallet').default;
- const { EIP712Domain, domainSeparator, hashTypedData } = require('../../helpers/eip712');
- const { getChainId } = require('../../helpers/chainid');
- const EIP712Verifier = artifacts.require('$EIP712Verifier');
- contract('EIP712', function (accounts) {
- const [mailTo] = accounts;
- const name = 'A Name';
- const version = '1';
- beforeEach('deploying', async function () {
- this.eip712 = await EIP712Verifier.new(name, version);
- this.domain = {
- name,
- version,
- chainId: await getChainId(),
- verifyingContract: this.eip712.address,
- };
- });
- it('domain separator', async function () {
- const expected = await domainSeparator(this.domain);
- expect(await this.eip712.$_domainSeparatorV4()).to.equal(expected);
- });
- it('hash digest', async function () {
- const structhash = web3.utils.randomHex(32);
- const expected = await hashTypedData(this.domain, structhash);
- expect(await this.eip712.$_hashTypedDataV4(structhash)).to.be.equal(expected);
- });
- it('digest', async function () {
- const message = {
- to: mailTo,
- contents: 'very interesting',
- };
- const data = {
- types: {
- EIP712Domain,
- Mail: [
- { name: 'to', type: 'address' },
- { name: 'contents', type: 'string' },
- ],
- },
- domain: this.domain,
- primaryType: 'Mail',
- message,
- };
- const wallet = Wallet.generate();
- const signature = ethSigUtil.signTypedMessage(wallet.getPrivateKey(), { data });
- await this.eip712.verify(signature, wallet.getAddressString(), message.to, message.contents);
- });
- });
|