tokenary/Encrypted Ink/Ethereum/EIP712/Protocols/EIP712Hashable.swift
2021-06-12 19:09:39 +03:00

17 lines
309 B
Swift

//
// This source file is part of the 0x.swift open source project
// Copyright 2019 The 0x.swift Authors
// Licensed under Apache License v2.0
//
// EIP712Hashable.swift
//
// Created by Igor Shmakov on 17/04/2019
//
import Foundation
public protocol EIP712Hashable {
func hash() throws -> Data
}