We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b304a commit 3b2b010Copy full SHA for 3b2b010
.changeset/thick-kangaroos-smoke.md
@@ -0,0 +1,5 @@
1
+---
2
+"thirdweb": patch
3
4
+
5
+7702 delegation designator
packages/thirdweb/src/utils/bytecode/extractMinimalProxyImplementationAddress.ts
@@ -54,6 +54,7 @@ export function extractMinimalProxyImplementationAddress(
54
return `0x${implementationAddress}`;
55
}
56
57
+ // EIP-7702 - https://eips.ethereum.org/EIPS/eip-7702#abstract
58
if (bytecode.length === 48 && bytecode.startsWith("0xef0100")) {
59
const implementationAddress = bytecode.slice(8, 48);
60
0 commit comments