-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple proofs #51
Multiple proofs #51
Conversation
const { callData } = await getGateWayUrlForAddress('vitalik.eth', erc3668Resolver); | ||
|
||
// Pass the addr to the contract | ||
const expected = ethers.utils.hexlify(vitalik.address); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hai-ko this shows how to format the address
@@ -102,7 +102,7 @@ describe('Optimism Bedrock Handler', () => { | |||
}); | |||
}); | |||
|
|||
it('Returns valid string data from resolver', async () => { | |||
it.only('Returns valid string data from resolver', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove .only
@@ -123,4 +123,46 @@ describe('Signature Handler', () => { | |||
|
|||
expect(resultString).to.equal(result); | |||
}); | |||
it.only('Returns valid address from resolver', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove .only
No description provided.