From 97d251bf4867da17b89afeb46a2d9aa615d1c6d4 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Fri, 30 Dec 2022 17:00:37 -0300 Subject: [PATCH] expand configuration section in readme --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9a82a60..3253161 100644 --- a/README.md +++ b/README.md @@ -72,8 +72,13 @@ Arguments that are storage pointers are replaced with an integer that is used as ## Configuration -The prefix can be configured in your Hardhat config. For example, to use the `X`/`x` prefix +Include an `exposed` field in your Hardhat config. ``` -exposed: { prefix: 'x' }, +exposed: { + include?: string[] = ['**/*'], + exclude?: string[] = [], + outDir?: string = 'contracts-exposed', + prefix?: string = '$', +}, ```