@truffle/codec
Version:
Library for encoding and decoding smart contract data
299 lines • 44.9 kB
HTML
<html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>@truffle/codec | Truffle Decoding and Encoding</title><meta name="description" content="Documentation for Truffle Decoding and Encoding"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
<div class="tsd-toolbar-contents container">
<div class="table-cell" id="tsd-search" data-base="..">
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
<div class="field">
<div id="tsd-toolbar-links"></div></div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">Truffle Decoding and Encoding</a></div>
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
<div class="container container-main">
<div class="col-content">
<div class="tsd-page-title">
<ul class="tsd-breadcrumb">
<li><a href="../index.html">Truffle Decoding and Encoding</a></li>
<li><a href="_truffle_codec.html">@truffle/codec</a></li></ul>
<h1>Module @truffle/codec</h1></div>
<section class="tsd-panel tsd-comment">
<div class="tsd-comment tsd-typography"><a id="md:truffle-codec" class="tsd-anchor"></a><h1><a href="#md:truffle-codec">Truffle Codec</a></h1><p>This module provides low-level decoding and encoding functionality for
Solidity and the Solidity ABI. Many parts of this module are intended
primarily for internal use by Truffle and so remain largely undocumented,
but some of its types are also output by @truffle/decoder, which provides
a higher-level interface to much of this module's functionality.</p>
<a id="md:if-you39re-here-from-truffle-decoder-or-truffle-encoder" class="tsd-anchor"></a><h2><a href="#md:if-you39re-here-from-truffle-decoder-or-truffle-encoder">If you're here from Truffle Decoder or Truffle Encoder</a></h2><p>If you're coming here from [[@truffle/decoder]] or [[@truffle/encoder]],
you probably just want to know about the parts that are relevant to you.
These are:</p>
<ul>
<li>The "data" category (specifically [[Format]])</li>
<li>The "output" and "enumerations" categories ([[CalldataDecoding]], [[LogDecoding]], et al., see below)</li>
<li>The "errors" category (specifically [[UnknownUserDefinedTypeError]])</li>
</ul>
<p>Note that the data category is largely scarce in
documentation, although that's because it's largely self-explanatory.</p>
<p>If you're not just here from Truffle Decoder or Encoder, but are actually
interested in the lower-level workings, read on.</p>
<a id="md:how-this-module-differs-from-truffle-decoder-and-encoder" class="tsd-anchor"></a><h2><a href="#md:how-this-module-differs-from-truffle-decoder-and-encoder">How this module differs from Truffle Decoder and Encoder</a></h2><p>Unlike Truffle Decoder and Encoder, this library makes no network connections
and avoids dependencies that do. Instead, its decoding functionality
is generator-based; calling one of the decoding functions returns a
generator. This generator's <code>next()</code> function may return a finished
result, or it may return a request for more information. It is up to
the caller to fulfill these requests -- say, by making a network
connection of its own. This is how @truffle/decoder and @truffle/encoder
work; @truffle/codec makes requests, while Decoder and Encoder fulfill them by
looking up the necessary information on the blockchain.</p>
<p>This library also provides additional functionality beyond what's used by
Truffle Decoder and Encoder. In particular, this library also exists to
support Truffle Debugger, and so it provides decoding functionality not just
for transactions, logs, and state variables, but also for Solidity variables
during transaction execution, including circularity detection for memroy
structures. It includes functionality for decoding Solidity's internal
function pointers, which the debugger uses, but which Truffle Decoder
currently does not (although this is planned for the future).</p>
<p>There is also functionality for decoding return values and revert messages
that goes beyond what's currently available in @truffle/decoder; this may get
a better interface in the future.</p>
<a id="md:how-to-use" class="tsd-anchor"></a><h2><a href="#md:how-to-use">How to use</a></h2><p>You should probably use [[@truffle/decoder]] or [[@truffle/encoder]]
instead, if your use case doesn't preclude it. This module has little
documentation, where it has any at all, and it's likely that parts of its
interface may change (particularly regarding allocation). That said, if you
truly need the functionality here, Truffle Decoder and Truffle Encoder can
perhaps serve as something of a reference implementation (and perhaps
Truffle Debugger as well, though that code is much harder to read or copy).</p>
</div>
<div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/trufflesuite/truffle/blob/8c81e30a6/packages/codec/lib/index.ts#L1">codec/lib/index.ts:1</a></li></ul></aside>
<section class="tsd-panel-group tsd-index-group">
<section class="tsd-panel tsd-index-panel">
<h3 class="tsd-index-heading uppercase">Index</h3>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Namespaces - Data</h3>
<div class="tsd-index-list"><a href="_truffle_codec.Format.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Format</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Namespaces - ABI data location</h3>
<div class="tsd-index-list"><a href="_truffle_codec.AbiData.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Abi<wbr/>Data</span></a>
<a href="_truffle_codec.Topic.html" class="tsd-index-link tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Topic</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Namespaces - Solidity data location</h3>
<div class="tsd-index-list"><a href="_truffle_codec.AstConstant.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Ast<wbr/>Constant</span></a>
<a href="_truffle_codec.MappingKey.html" class="tsd-index-link tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Mapping<wbr/>Key</span></a>
<a href="_truffle_codec.Memory.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Memory</span></a>
<a href="_truffle_codec.Special.html" class="tsd-index-link tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Special</span></a>
<a href="_truffle_codec.Stack.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Stack</span></a>
<a href="_truffle_codec.Storage.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Storage</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Namespaces - Other</h3>
<div class="tsd-index-list"><a href="_truffle_codec.Ast.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Ast</span></a>
<a href="_truffle_codec.Basic.html" class="tsd-index-link tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Basic</span></a>
<a href="_truffle_codec.Bytes.html" class="tsd-index-link tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Bytes</span></a>
<a href="_truffle_codec.Compilations.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Compilations</span></a>
<a href="_truffle_codec.Compiler.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Compiler</span></a>
<a href="_truffle_codec.Contexts.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Contexts</span></a>
<a href="_truffle_codec.Conversion.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Conversion</span></a>
<a href="_truffle_codec.Evm.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Evm</span></a>
<a href="_truffle_codec.Export.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Export</span></a>
<a href="_truffle_codec.Pointer.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Pointer</span></a>
<a href="_truffle_codec.Wrap.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Wrap</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Classes - Exception</h3>
<div class="tsd-index-list"><a href="../classes/_truffle_codec.NoProjectInfoError.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-128"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g></svg><span>No<wbr/>Project<wbr/>Info<wbr/>Error</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Classes - Other</h3>
<div class="tsd-index-list"><a href="../classes/_truffle_codec.RepeatCompilationIdError.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Repeat<wbr/>Compilation<wbr/>Id<wbr/>Error</span></a>
<a href="../classes/_truffle_codec.UnknownUserDefinedTypeError.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Unknown<wbr/>User<wbr/>Defined<wbr/>Type<wbr/>Error</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Interfaces - Output</h3>
<div class="tsd-index-list"><a href="../interfaces/_truffle_codec.BlockhashedMulticallInfo.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>Blockhashed<wbr/>Multicall<wbr/>Info</span></a>
<a href="../interfaces/_truffle_codec.CallInterpretationInfo.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Call<wbr/>Interpretation<wbr/>Info</span></a>
<a href="../interfaces/_truffle_codec.DeadlinedMulticallInfo.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Deadlined<wbr/>Multicall<wbr/>Info</span></a>
<a href="../interfaces/_truffle_codec.StateVariable.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>State<wbr/>Variable</span></a>
<a href="../interfaces/_truffle_codec.TryAggregateInfo.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Try<wbr/>Aggregate<wbr/>Info</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Interfaces - Other</h3>
<div class="tsd-index-list"><a href="../interfaces/_truffle_codec.AbiArgument.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Abi<wbr/>Argument</span></a>
<a href="../interfaces/_truffle_codec.AccessListForAddress.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Access<wbr/>List<wbr/>For<wbr/>Address</span></a>
<a href="../interfaces/_truffle_codec.AddressWrapRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Address<wbr/>Wrap<wbr/>Request</span></a>
<a href="../interfaces/_truffle_codec.AddressWrapResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Address<wbr/>Wrap<wbr/>Response</span></a>
<a href="../interfaces/_truffle_codec.AnonymousDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Anonymous<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.BytecodeDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Bytecode<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.CodeRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Code<wbr/>Request</span></a>
<a href="../interfaces/_truffle_codec.ConstructorDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Constructor<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.DecimalWrapRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Decimal<wbr/>Wrap<wbr/>Request</span></a>
<a href="../interfaces/_truffle_codec.DecimalWrapResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Decimal<wbr/>Wrap<wbr/>Response</span></a>
<a href="../interfaces/_truffle_codec.EmptyFailureDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Empty<wbr/>Failure<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.EventDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Event<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.FunctionDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Function<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.IntegerWrapRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Integer<wbr/>Wrap<wbr/>Request</span></a>
<a href="../interfaces/_truffle_codec.IntegerWrapResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Integer<wbr/>Wrap<wbr/>Response</span></a>
<a href="../interfaces/_truffle_codec.LogOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Log<wbr/>Options</span></a>
<a href="../interfaces/_truffle_codec.MessageDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Message<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.Options.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Options</span></a>
<a href="../interfaces/_truffle_codec.RawReturnDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Raw<wbr/>Return<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.ReturnDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Return<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.RevertMessageDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Revert<wbr/>Message<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.SelfDestructDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Self<wbr/>Destruct<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.StorageRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Storage<wbr/>Request</span></a>
<a href="../interfaces/_truffle_codec.UnknownBytecodeDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Unknown<wbr/>Bytecode<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.UnknownCallDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Unknown<wbr/>Call<wbr/>Decoding</span></a>
<a href="../interfaces/_truffle_codec.UnknownCreationDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Unknown<wbr/>Creation<wbr/>Decoding</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Type Aliases - Inputs</h3>
<div class="tsd-index-list"><a href="../types/_truffle_codec.BlockSpecifier.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4194304"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g></svg><span>Block<wbr/>Specifier</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Type Aliases - Other</h3>
<div class="tsd-index-list"><a href="../types/_truffle_codec.AccessList.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Access<wbr/>List</span></a>
<a href="../types/_truffle_codec.CalldataDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Calldata<wbr/>Decoding</span></a>
<a href="../types/_truffle_codec.ContractKind.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Contract<wbr/>Kind</span></a>
<a href="../types/_truffle_codec.DecoderRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Decoder<wbr/>Request</span></a>
<a href="../types/_truffle_codec.DecodingMode.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Decoding<wbr/>Mode</span></a>
<a href="../types/_truffle_codec.ExtrasAllowed.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Extras<wbr/>Allowed</span></a>
<a href="../types/_truffle_codec.Location.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Location</span></a>
<a href="../types/_truffle_codec.LogDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Log<wbr/>Decoding</span></a>
<a href="../types/_truffle_codec.Mutability.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Mutability</span></a>
<a href="../types/_truffle_codec.PaddingMode.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Padding<wbr/>Mode</span></a>
<a href="../types/_truffle_codec.PaddingType.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Padding<wbr/>Type</span></a>
<a href="../types/_truffle_codec.ReturndataDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Returndata<wbr/>Decoding</span></a>
<a href="../types/_truffle_codec.Visibility.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Visibility</span></a>
<a href="../types/_truffle_codec.WrapRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Wrap<wbr/>Request</span></a>
<a href="../types/_truffle_codec.WrapResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Wrap<wbr/>Response</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Functions - ABIfication</h3>
<div class="tsd-index-list"><a href="../functions/_truffle_codec.abifyCalldataDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-64"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g></svg><span>abify<wbr/>Calldata<wbr/>Decoding</span></a>
<a href="../functions/_truffle_codec.abifyLogDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>abify<wbr/>Log<wbr/>Decoding</span></a>
<a href="../functions/_truffle_codec.abifyReturndataDecoding.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>abify<wbr/>Returndata<wbr/>Decoding</span></a>
</div></section>
<section class="tsd-index-section">
<h3 class="tsd-index-heading">Functions - Other</h3>
<div class="tsd-index-list"><a href="../functions/_truffle_codec.decodeCalldata.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Calldata</span></a>
<a href="../functions/_truffle_codec.decodeEvent.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Event</span></a>
<a href="../functions/_truffle_codec.decodeReturndata.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Returndata</span></a>
<a href="../functions/_truffle_codec.decodeRevert.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Revert</span></a>
<a href="../functions/_truffle_codec.decodeVariable.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Variable</span></a>
</div></section></section></section></div>
<div class="col-sidebar">
<div class="page-menu">
<div class="tsd-navigation settings">
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)" id="icon-chevronDown"></path></svg>Settings</h3></summary>
<div class="tsd-accordion-details">
<div class="tsd-filter-visibility">
<h4 class="uppercase">Member Visibility</h4><form>
<ul id="tsd-filter-options">
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li>
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li>
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></form></div>
<div class="tsd-theme-toggle">
<h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
<details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary">
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>On This Page</h3></summary>
<div class="tsd-accordion-details">
<ul>
<li>
<ul>
<li><a href="#md:truffle-codec"><span>Truffle <wbr/>Codec</span></a></li>
<li>
<ul>
<li><a href="#md:if-you39re-here-from-truffle-decoder-or-truffle-encoder"><span>If you're here from <wbr/>Truffle <wbr/>Decoder or <wbr/>Truffle <wbr/>Encoder</span></a></li>
<li><a href="#md:how-this-module-differs-from-truffle-decoder-and-encoder"><span>How this module differs from <wbr/>Truffle <wbr/>Decoder and <wbr/>Encoder</span></a></li>
<li><a href="#md:how-to-use"><span>How to use</span></a></li></ul></li></ul></li></ul></div></details></div>
<div class="site-menu">
<nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Truffle <wbr/>Decoding and <wbr/>Encoding</span></a>
<ul class="tsd-small-nested-navigation">
<li>
<details class="tsd-index-accordion" open data-key="@truffle/codec"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg><a href="_truffle_codec.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>@truffle/codec</span></a></summary>
<div class="tsd-accordion-details">
<ul class="tsd-nested-navigation">
<li><a href="_truffle_codec.AbiData.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Abi<wbr/>Data</span></a></li>
<li><a href="_truffle_codec.Ast.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Ast</span></a></li>
<li><a href="_truffle_codec.AstConstant.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Ast<wbr/>Constant</span></a></li>
<li><a href="_truffle_codec.Basic.html" class="tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Basic</span></a></li>
<li><a href="_truffle_codec.Bytes.html" class="tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Bytes</span></a></li>
<li><a href="_truffle_codec.Compilations.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Compilations</span></a></li>
<li><a href="_truffle_codec.Compiler.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Compiler</span></a></li>
<li><a href="_truffle_codec.Contexts.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Contexts</span></a></li>
<li><a href="_truffle_codec.Conversion.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Conversion</span></a></li>
<li><a href="_truffle_codec.Evm.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Evm</span></a></li>
<li><a href="_truffle_codec.Export.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Export</span></a></li>
<li><a href="_truffle_codec.Format.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Format</span></a></li>
<li><a href="_truffle_codec.MappingKey.html" class="tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Mapping<wbr/>Key</span></a></li>
<li><a href="_truffle_codec.Memory.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Memory</span></a></li>
<li><a href="_truffle_codec.Pointer.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Pointer</span></a></li>
<li><a href="_truffle_codec.Special.html" class="tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Special</span></a></li>
<li><a href="_truffle_codec.Stack.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Stack</span></a></li>
<li><a href="_truffle_codec.Storage.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Storage</span></a></li>
<li><a href="_truffle_codec.Topic.html" class="tsd-is-protected"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Topic</span></a></li>
<li><a href="_truffle_codec.Wrap.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Wrap</span></a></li>
<li><a href="../classes/_truffle_codec.NoProjectInfoError.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>No<wbr/>Project<wbr/>Info<wbr/>Error</span></a></li>
<li><a href="../classes/_truffle_codec.RepeatCompilationIdError.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Repeat<wbr/>Compilation<wbr/>Id<wbr/>Error</span></a></li>
<li><a href="../classes/_truffle_codec.UnknownUserDefinedTypeError.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Unknown<wbr/>User<wbr/>Defined<wbr/>Type<wbr/>Error</span></a></li>
<li><a href="../interfaces/_truffle_codec.AbiArgument.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Abi<wbr/>Argument</span></a></li>
<li><a href="../interfaces/_truffle_codec.AccessListForAddress.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Access<wbr/>List<wbr/>For<wbr/>Address</span></a></li>
<li><a href="../interfaces/_truffle_codec.AddressWrapRequest.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Address<wbr/>Wrap<wbr/>Request</span></a></li>
<li><a href="../interfaces/_truffle_codec.AddressWrapResponse.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Address<wbr/>Wrap<wbr/>Response</span></a></li>
<li><a href="../interfaces/_truffle_codec.AnonymousDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Anonymous<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.BlockhashedMulticallInfo.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Blockhashed<wbr/>Multicall<wbr/>Info</span></a></li>
<li><a href="../interfaces/_truffle_codec.BytecodeDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Bytecode<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.CallInterpretationInfo.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Call<wbr/>Interpretation<wbr/>Info</span></a></li>
<li><a href="../interfaces/_truffle_codec.CodeRequest.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Code<wbr/>Request</span></a></li>
<li><a href="../interfaces/_truffle_codec.ConstructorDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Constructor<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.DeadlinedMulticallInfo.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Deadlined<wbr/>Multicall<wbr/>Info</span></a></li>
<li><a href="../interfaces/_truffle_codec.DecimalWrapRequest.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Decimal<wbr/>Wrap<wbr/>Request</span></a></li>
<li><a href="../interfaces/_truffle_codec.DecimalWrapResponse.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Decimal<wbr/>Wrap<wbr/>Response</span></a></li>
<li><a href="../interfaces/_truffle_codec.EmptyFailureDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Empty<wbr/>Failure<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.EventDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Event<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.FunctionDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Function<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.IntegerWrapRequest.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Integer<wbr/>Wrap<wbr/>Request</span></a></li>
<li><a href="../interfaces/_truffle_codec.IntegerWrapResponse.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Integer<wbr/>Wrap<wbr/>Response</span></a></li>
<li><a href="../interfaces/_truffle_codec.LogOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Log<wbr/>Options</span></a></li>
<li><a href="../interfaces/_truffle_codec.MessageDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Message<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.Options.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Options</span></a></li>
<li><a href="../interfaces/_truffle_codec.RawReturnDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Raw<wbr/>Return<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.ReturnDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Return<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.RevertMessageDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Revert<wbr/>Message<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.SelfDestructDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Self<wbr/>Destruct<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.StateVariable.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>State<wbr/>Variable</span></a></li>
<li><a href="../interfaces/_truffle_codec.StorageRequest.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Storage<wbr/>Request</span></a></li>
<li><a href="../interfaces/_truffle_codec.TryAggregateInfo.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Try<wbr/>Aggregate<wbr/>Info</span></a></li>
<li><a href="../interfaces/_truffle_codec.UnknownBytecodeDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Unknown<wbr/>Bytecode<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.UnknownCallDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Unknown<wbr/>Call<wbr/>Decoding</span></a></li>
<li><a href="../interfaces/_truffle_codec.UnknownCreationDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Unknown<wbr/>Creation<wbr/>Decoding</span></a></li>
<li><a href="../types/_truffle_codec.AccessList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Access<wbr/>List</span></a></li>
<li><a href="../types/_truffle_codec.BlockSpecifier.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Block<wbr/>Specifier</span></a></li>
<li><a href="../types/_truffle_codec.CalldataDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Calldata<wbr/>Decoding</span></a></li>
<li><a href="../types/_truffle_codec.ContractKind.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Contract<wbr/>Kind</span></a></li>
<li><a href="../types/_truffle_codec.DecoderRequest.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Decoder<wbr/>Request</span></a></li>
<li><a href="../types/_truffle_codec.DecodingMode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Decoding<wbr/>Mode</span></a></li>
<li><a href="../types/_truffle_codec.ExtrasAllowed.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Extras<wbr/>Allowed</span></a></li>
<li><a href="../types/_truffle_codec.Location.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Location</span></a></li>
<li><a href="../types/_truffle_codec.LogDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Log<wbr/>Decoding</span></a></li>
<li><a href="../types/_truffle_codec.Mutability.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Mutability</span></a></li>
<li><a href="../types/_truffle_codec.PaddingMode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Padding<wbr/>Mode</span></a></li>
<li><a href="../types/_truffle_codec.PaddingType.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Padding<wbr/>Type</span></a></li>
<li><a href="../types/_truffle_codec.ReturndataDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Returndata<wbr/>Decoding</span></a></li>
<li><a href="../types/_truffle_codec.Visibility.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Visibility</span></a></li>
<li><a href="../types/_truffle_codec.WrapRequest.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Wrap<wbr/>Request</span></a></li>
<li><a href="../types/_truffle_codec.WrapResponse.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Wrap<wbr/>Response</span></a></li>
<li><a href="../functions/_truffle_codec.abifyCalldataDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>abify<wbr/>Calldata<wbr/>Decoding</span></a></li>
<li><a href="../functions/_truffle_codec.abifyLogDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>abify<wbr/>Log<wbr/>Decoding</span></a></li>
<li><a href="../functions/_truffle_codec.abifyReturndataDecoding.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>abify<wbr/>Returndata<wbr/>Decoding</span></a></li>
<li><a href="../functions/_truffle_codec.decodeCalldata.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Calldata</span></a></li>
<li><a href="../functions/_truffle_codec.decodeEvent.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Event</span></a></li>
<li><a href="../functions/_truffle_codec.decodeReturndata.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Returndata</span></a></li>
<li><a href="../functions/_truffle_codec.decodeRevert.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Revert</span></a></li>
<li><a href="../functions/_truffle_codec.decodeVariable.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>decode<wbr/>Variable</span></a></li></ul></div></details></li>
<li><a href="_truffle_encoder.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>@truffle/encoder</span></a></li>
<li><a href="decoder_lib.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>decoder/lib</span></a></li></ul></nav></div></div></div>
<div class="tsd-generator">
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
<div class="overlay"></div></body></html>