SushiSwap · Schema

EIP2098Signature

A EIP 2098 'short signature' representation for the signature from the Blade Exchange server

DeFiDecentralized ExchangeDEXCryptocurrencyWeb3BlockchainMulti-ChainLiquiditySwapToken Pricing

Properties

Name Type Description
v integer Recovery identifier
r string ECDSA signature r
s string ECDSA signature s
View JSON Schema on GitHub

JSON Schema

eip2098signature.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EIP2098Signature",
  "type": "object",
  "description": "A EIP 2098 'short signature' representation for the signature from the Blade Exchange server",
  "properties": {
    "v": {
      "type": "integer",
      "description": "Recovery identifier"
    },
    "r": {
      "type": "string",
      "description": "ECDSA signature r"
    },
    "s": {
      "type": "string",
      "description": "ECDSA signature s"
    }
  },
  "required": [
    "v",
    "r",
    "s"
  ]
}