From 327c0132bfeccaea040f40df0e68269932c11ea1 Mon Sep 17 00:00:00 2001 From: Allan Almeida <152931211+allan-almeida-imtbl@users.noreply.github.com> Date: Tue, 23 Jul 2024 13:54:44 +1000 Subject: [PATCH] normalise preset example (#235) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93355cea..e07681f3 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ contract MyERC721 is ImmutableERC721 { string memory baseURI, string memory contractURI, address operatorAllowlist, - address receiver, + address royaltyReceiver, uint96 feeNumerator ) ImmutableERC721( owner, @@ -58,7 +58,7 @@ contract MyERC721 is ImmutableERC721 { baseURI, contractURI, operatorAllowlist, - receiver, + royaltyReceiver, feeNumerator ) {}