From c4b9162bd07b119be9f83b27aa9e0d401bc63104 Mon Sep 17 00:00:00 2001 From: cb-howardatcb <86798563+howard-at-cb@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:56:37 -0700 Subject: [PATCH] Update README.md Co-authored-by: John Peterson <98187317+John-peterson-coinbase@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 751b7c6..5c757a7 100644 --- a/README.md +++ b/README.md @@ -185,7 +185,7 @@ from cdp.client.models.webhook import WebhookEventFilter wh1 = cdp.Webhook.create( notification_uri="https://your-app.com/callback", event_type=WebhookEventType.ERC20_TRANSFER, - event_filters=[WebhookEventFilter(from_address='0x71d4d7d5e9ce0f41e6a68bd3a9b43aa597dc0eb0')] + event_filters=[WebhookEventFilter(from_address="0x71d4d7d5e9ce0f41e6a68bd3a9b43aa597dc0eb0")] ) print(wh1) ```