Getting Started
Fundamentals
Reference
- Address
- Application Binary Interface
- Constants
- Contract
- Crypto
- Encoding
- Hash
- Other
- Providers
- Signers
- Transaction
- Utils
- Wallet
- Wordlists
Crypto
SignatureLike
type SignatureLike:
| Signature
| string
| {
"r": string;
"s": string;
"v": BigNumberish;
"yParity": 0 | 1;
"yParityAndS": string;
}
| {
"r": string;
"s": string;
"v": number;
"yParity": 0 | 1;
"yParityAndS": string;
}
| {
"r": string;
"s": string;
"v": BigNumberish;
"yParity": 0 | 1;
"yParityAndS": string;
};
A SignatureLike
Source
Was this page helpful?
On this page