+
+
+ #### EVM Format (`evm`)
+
+- **Algorithm**: secp256k1 ECDSA
+- **Hash Function**: Keccak-256
+- **Signature Size**: 65 bytes
+- **Verification**: Recoverable ECDSA with Ethereum address derivation
+
+
+
+
+ #### Solana Format (`solana`)
+
+- **Algorithm**: Ed25519 EdDSA
+- **Signature Size**: 64 bytes
+- **Public Key Size**: 32 bytes
+- **Verification**: Direct Ed25519 signature verification
+
+
+
+
+ #### Little-Endian ECDSA (`leEcdsa`)
+
+- **Algorithm**: secp256k1 ECDSA (little-endian)
+- **Hash Function**: Keccak-256
+- **Byte Order**: Little-endian encoding
+
+**Perfect for**: Custom implementations requiring specific byte ordering
+
+
+
+
+ #### Unsigned Format (`leUnsigned`)
+
+- **Signature**: None (raw payload)
+- **Use Cases**: Off-chain use, testing and development
+
+
+
+
+
+