From 75b20db11600af933ae3cd921375675073915dc9 Mon Sep 17 00:00:00 2001 From: Shun Kakinoki <39187513+shunkakinoki@users.noreply.github.com> Date: Mon, 26 Jan 2026 23:48:16 +0900 Subject: [PATCH] Add additional polygon native token address check --- lib/prototyp/hash.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/prototyp/hash.go b/lib/prototyp/hash.go index ef55cd47..6ba83a6f 100644 --- a/lib/prototyp/hash.go +++ b/lib/prototyp/hash.go @@ -143,7 +143,8 @@ func (h Hash) IsEmpty() bool { func (h Hash) IsNativeTokenAddress() bool { return h == "0x0000000000000000000000000000000000000000" || h == "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" || - h == "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" + h == "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" || + h == "0x0000000000000000000000000000000000001010" } func (h Hash) IsValidHex() bool {