Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ABI coder + gen refactor #3650

Open
petertonysmith94 opened this issue Jan 31, 2025 · 0 comments
Open

ABI coder + gen refactor #3650

petertonysmith94 opened this issue Jan 31, 2025 · 0 comments
Labels
feat Issue is a feature

Comments

@petertonysmith94
Copy link
Contributor

petertonysmith94 commented Jan 31, 2025

Summary

Consolidate the ABI into a single package, including the coder and gen related logic.

See the closed PR for further details.

---
title: Unified ABI
theme: dark
---

%%{
  init: {
    'theme': 'dark'
  }
}%%

flowchart TB
  json1{json-1} --> Parser(abi parser)
  json2{json-2} --> Parser
  Parser --> Trans1(transpiler<br/>spec-1)
  
  Parser --> Trans2(transpiler<br/>spec-2)
  Trans1 --> Interface((interface))
  Trans2 --> Interface
  
  Interface --> Coder(abi coder)
  Coder --> Enc1{enc. 1}
  Coder --> Enc2{enc. 2}
  Enc1 --> Data(parsed tree)
  Enc2 --> Data

  Interface --> Gen(abi gen)
  Gen --> Ts(.ts)
  Gen --> Js(.js)

style Parser stroke:none, fill:#184575, color:#ffffff;
style Interface stroke-width:3, stroke:#184575;

style Coder stroke:none, fill:#16734f, color:#ffffff;
style Data stroke-width:2, stroke:#16734f, color:#ffffff;

style Gen stroke:none, fill:#8b2074, color:#ffffff;
style Ts stroke-width:3, stroke:#8b2074, color:#ffffff;
style Js stroke-width:3, stroke:#8b2074, color:#ffffff;

Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat Issue is a feature
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant