Pseudo Networks (All other chains): Generate Signature
Dfns is compatible with any blockchain that supports our underlying MPC cryptographic schemes and elliptical curves:
ECDSA over secp256k1
ECDSA over Stark curve
EdDSA over Ed25519
You can use Generate Signature to interact with any chain supporting these schemes by using Pseudo Network enumerated types when you create a wallet.
Hash Signing Support - All Schemes
All cryptographic scheme support hash signing. Note ECDSA with secp256k1 or Stark curve only support this kind. Use the target chain's native SDK to hash your message before sending to Dfns.
Property
Type
Description
kind*
String
Hash
hash*
Hex String
The hash digest in hex.
externalId
(Optional) String
A unique ID from your system. It can be leveraged to be used as an idempotency key (read more here)
In addition to the Hash method shown above, EdDSA also supports signing Messages as shown below. For message encoding standards, see the documentation of the chain you are targeting.
Property
Type
Description
kind*
Required
Message
message*
Required
The original message hex encoded.
externalId
(Optional) String
A unique ID from your system. It can be leveraged to be used as an idempotency key (read more here)