aboutsummaryrefslogtreecommitdiffstats
path: root/packages/types
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2019-02-04 09:19:47 +0800
committerAmir Bandeali <abandeali1@gmail.com>2019-02-06 01:23:09 +0800
commit9abd6f569538025f7777e78963cc8aa24ce0052b (patch)
treec1991be73acbef6d45aff598dfca27ceb5ffd94a /packages/types
parenta394967268be3f3d3f7da3507887ee88befee253 (diff)
downloaddexon-0x-contracts-9abd6f569538025f7777e78963cc8aa24ce0052b.tar.gz
dexon-0x-contracts-9abd6f569538025f7777e78963cc8aa24ce0052b.tar.zst
dexon-0x-contracts-9abd6f569538025f7777e78963cc8aa24ce0052b.zip
Allow custom domains in eip712Utils
Diffstat (limited to 'packages/types')
-rw-r--r--packages/types/src/index.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts
index ce124e289..a30a0494f 100644
--- a/packages/types/src/index.ts
+++ b/packages/types/src/index.ts
@@ -690,3 +690,9 @@ export interface DutchAuctionDetails {
currentAmount: BigNumber;
currentTimeSeconds: BigNumber;
}
+
+export interface EIP712DomainWithDefaultSchema {
+ name?: string;
+ version?: string;
+ verifyingContractAddress: string;
+}