Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Commit

Permalink
chore: remove hidden sn prop leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
sdlyy committed Feb 9, 2024
1 parent db1761a commit f4ceaf2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/frontend/src/api/merge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ function createEmptyNodes(nodes: SimpleNode[]): SimpleNode[] {
name: 'Unknown',
fields: [],
discovered: false,
hidden: false,
}))
}
2 changes: 0 additions & 2 deletions packages/frontend/src/api/transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export function transformContracts(discovery: DiscoveryOutput): SimpleNode[] {
id: contract.address.toString(),
name: emojifyContractName(contract),
discovered: true,
hidden: false,
fields: [...proxyFields, ...mapFields(contract.values)].filter(
(x) => !x.connection || !implementations.includes(x.connection),
),
Expand All @@ -29,7 +28,6 @@ export function transformContracts(discovery: DiscoveryOutput): SimpleNode[] {
id: address.toString(),
name: `🧍 EOA ${address.toString()}`,
discovered: true,
hidden: false,
fields: [],
data: {
address: address.toString(),
Expand Down

0 comments on commit f4ceaf2

Please sign in to comment.