Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
114f9d6b
Unverified
Commit
114f9d6b
authored
May 12, 2025
by
tom goriunov
Committed by
GitHub
May 12, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reflect new smart-contract proxy patterns in UI (#2720)
Fixes #2692
parent
469f7997
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
contract.ts
types/api/contract.ts
+2
-0
ContractDetailsAlertProxyPattern.tsx
...ress/contract/alerts/ContractDetailsAlertProxyPattern.tsx
+11
-0
No files found.
types/api/contract.ts
View file @
114f9d6b
...
...
@@ -26,11 +26,13 @@ export type SmartContractProxyType =
|
'
eip930
'
|
'
eip2535
'
|
'
eip7702
'
|
'
erc7760
'
|
'
master_copy
'
|
'
basic_implementation
'
|
'
basic_get_implementation
'
|
'
comptroller
'
|
'
clone_with_immutable_arguments
'
|
'
resolved_delegate_proxy
'
|
'
unknown
'
|
null
;
...
...
ui/address/contract/alerts/ContractDetailsAlertProxyPattern.tsx
View file @
114f9d6b
...
...
@@ -40,6 +40,17 @@ const PROXY_TYPES: Partial<Record<NonNullable<SmartContractProxyType>, {
link
:
'
https://github.com/ethereum/EIPs/issues/930
'
,
description
:
'
Eternal storage
'
,
},
erc7760
:
{
name
:
'
ERC-7760
'
,
link
:
'
https://eips.ethereum.org/EIPS/eip-7760
'
,
description
:
'
Minimal Upgradeable Proxies
'
,
},
resolved_delegate_proxy
:
{
name
:
'
ResolvedDelegateProxy
'
,
// eslint-disable-next-line max-len
link
:
'
https://github.com/ethereum-optimism/optimism/blob/9580179013a04b15e6213ae8aa8d43c3f559ed9a/packages/contracts-bedrock/src/legacy/ResolvedDelegateProxy.sol
'
,
description
:
'
OP stack: legacy proxy contract that makes use of the AddressManager to resolve the implementation address
'
,
},
clone_with_immutable_arguments
:
{
name
:
'
Clones with immutable arguments
'
,
link
:
'
https://github.com/wighawag/clones-with-immutable-args
'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment