expfail_malformeddomainkeys.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "types": {
  3. "EIP712Domain": [
  4. {
  5. "name": "name",
  6. "type": "string"
  7. },
  8. {
  9. "name": "version",
  10. "type": "string"
  11. },
  12. {
  13. "name": "chainId",
  14. "type": "uint256"
  15. },
  16. {
  17. "name": "verifyingContract",
  18. "type": "address"
  19. }
  20. ],
  21. "Person": [
  22. {
  23. "name": "name",
  24. "type": "string"
  25. },
  26. {
  27. "name": "wallet",
  28. "type": "address"
  29. }
  30. ],
  31. "Mail": [
  32. {
  33. "name": "from",
  34. "type": "Person"
  35. },
  36. {
  37. "name": "to",
  38. "type": "Person"
  39. },
  40. {
  41. "name": "contents",
  42. "type": "string"
  43. }
  44. ]
  45. },
  46. "primaryType": "Mail",
  47. "domain": {
  48. "name": "Ether Mail",
  49. "version": "1",
  50. "chainId": "1",
  51. "vFAILFAILerifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
  52. },
  53. "message": {
  54. "from": {
  55. "name": "Cow",
  56. "wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"
  57. },
  58. "to": {
  59. "name": "Bob",
  60. "wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"
  61. },
  62. "contents": "Hello, Bob!"
  63. }
  64. }