We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
coder
gen
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;
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Summary
Consolidate the ABI into a single package, including the
coder
andgen
related logic.See the closed PR for further details.
The text was updated successfully, but these errors were encountered: