1
1
import { hashData , signData } from '@solidstate/library' ;
2
- import { ECDSAMock , ECDSAMock__factory } from '@solidstate/typechain-types' ;
2
+ import {
3
+ __hh_exposed_ECDSA ,
4
+ __hh_exposed_ECDSA__factory ,
5
+ } from '@solidstate/typechain-types' ;
3
6
import { expect } from 'chai' ;
4
7
import { ethers } from 'hardhat' ;
5
8
6
9
const MAX_S_VALUE =
7
10
'0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0' ;
8
11
9
12
describe ( 'ECDSA' , ( ) => {
10
- let instance : ECDSAMock ;
13
+ let instance : __hh_exposed_ECDSA ;
11
14
12
15
beforeEach ( async ( ) => {
13
16
const [ deployer ] = await ethers . getSigners ( ) ;
14
- instance = await new ECDSAMock__factory ( deployer ) . deploy ( ) ;
17
+ instance = await new __hh_exposed_ECDSA__factory ( deployer ) . deploy ( ) ;
15
18
} ) ;
16
19
17
20
describe ( '__internal' , ( ) => {
@@ -30,7 +33,7 @@ describe('ECDSA', () => {
30
33
const sig = await signData ( signer , data ) ;
31
34
32
35
expect (
33
- await instance [ 'recover (bytes32,bytes)' ] . staticCall (
36
+ await instance [ '__hh_exposed_recover (bytes32,bytes)' ] . staticCall (
34
37
ethers . solidityPackedKeccak256 (
35
38
[ 'string' , 'bytes32' ] ,
36
39
[ '\x19Ethereum Signed Message:\n32' , hash ] ,
@@ -43,7 +46,7 @@ describe('ECDSA', () => {
43
46
describe ( 'reverts if' , ( ) => {
44
47
it ( 'signaure length is invalid' , async ( ) => {
45
48
await expect (
46
- instance [ 'recover (bytes32,bytes)' ] . staticCall (
49
+ instance [ '__hh_exposed_recover (bytes32,bytes)' ] . staticCall (
47
50
ethers . randomBytes ( 32 ) ,
48
51
ethers . randomBytes ( 64 ) ,
49
52
) ,
@@ -53,7 +56,7 @@ describe('ECDSA', () => {
53
56
) ;
54
57
55
58
await expect (
56
- instance [ 'recover (bytes32,bytes)' ] . staticCall (
59
+ instance [ '__hh_exposed_recover (bytes32,bytes)' ] . staticCall (
57
60
ethers . randomBytes ( 32 ) ,
58
61
ethers . randomBytes ( 66 ) ,
59
62
) ,
@@ -84,7 +87,9 @@ describe('ECDSA', () => {
84
87
const v = ethers . dataSlice ( sig , 64 , 65 ) ;
85
88
86
89
expect (
87
- await instance [ 'recover(bytes32,uint8,bytes32,bytes32)' ] . staticCall (
90
+ await instance [
91
+ '__hh_exposed_recover(bytes32,uint8,bytes32,bytes32)'
92
+ ] . staticCall (
88
93
ethers . solidityPackedKeccak256 (
89
94
[ 'string' , 'bytes32' ] ,
90
95
[ '\x19Ethereum Signed Message:\n32' , hash ] ,
@@ -105,7 +110,9 @@ describe('ECDSA', () => {
105
110
// s must be less than or equal to MAX_S_VALUE
106
111
107
112
await expect (
108
- instance [ 'recover(bytes32,uint8,bytes32,bytes32)' ] . staticCall (
113
+ instance [
114
+ '__hh_exposed_recover(bytes32,uint8,bytes32,bytes32)'
115
+ ] . staticCall (
109
116
hash ,
110
117
v ,
111
118
r ,
@@ -123,23 +130,17 @@ describe('ECDSA', () => {
123
130
124
131
for ( let v = 0 ; v <= 26 ; v ++ ) {
125
132
await expect (
126
- instance [ 'recover(bytes32,uint8,bytes32,bytes32)' ] . staticCall (
127
- hash ,
128
- v ,
129
- r ,
130
- s ,
131
- ) ,
133
+ instance [
134
+ '__hh_exposed_recover(bytes32,uint8,bytes32,bytes32)'
135
+ ] . staticCall ( hash , v , r , s ) ,
132
136
) . to . be . revertedWithCustomError ( instance , 'ECDSA__InvalidV' ) ;
133
137
}
134
138
135
139
for ( let v = 29 ; v <= 255 ; v ++ ) {
136
140
await expect (
137
- instance [ 'recover(bytes32,uint8,bytes32,bytes32)' ] . staticCall (
138
- hash ,
139
- v ,
140
- r ,
141
- s ,
142
- ) ,
141
+ instance [
142
+ '__hh_exposed_recover(bytes32,uint8,bytes32,bytes32)'
143
+ ] . staticCall ( hash , v , r , s ) ,
143
144
) . to . be . revertedWithCustomError ( instance , 'ECDSA__InvalidV' ) ;
144
145
}
145
146
} ) ;
@@ -151,7 +152,9 @@ describe('ECDSA', () => {
151
152
// hash and r generated randomly, known not to yield valid signer
152
153
153
154
await expect (
154
- instance [ 'recover(bytes32,uint8,bytes32,bytes32)' ] . staticCall (
155
+ instance [
156
+ '__hh_exposed_recover(bytes32,uint8,bytes32,bytes32)'
157
+ ] . staticCall (
155
158
'0xfb78d190a6ff9c55a28ae24c65cb006029ae15140557db9017a6474592d3fd59' ,
156
159
v ,
157
160
'0xe1a6fa655db25741b29a03d2f8ec44fb5590d0a1ce91c789886b59e54c08f509' ,
@@ -166,7 +169,9 @@ describe('ECDSA', () => {
166
169
it ( 'returns hash of signed message prefix and message' , async ( ) => {
167
170
const hash = ethers . keccak256 ( ethers . toUtf8Bytes ( 'test' ) ) ;
168
171
169
- expect ( await instance . toEthSignedMessageHash . staticCall ( hash ) ) . to . equal (
172
+ expect (
173
+ await instance . __hh_exposed_toEthSignedMessageHash . staticCall ( hash ) ,
174
+ ) . to . equal (
170
175
ethers . solidityPackedKeccak256 (
171
176
[ 'string' , 'bytes32' ] ,
172
177
[ '\x19Ethereum Signed Message:\n32' , hash ] ,
0 commit comments