From 3fe4b0489eeae9a71c4acfde51e321568469e710 Mon Sep 17 00:00:00 2001 From: Altynbek Orumbayev Date: Fri, 21 Feb 2025 18:52:39 +0100 Subject: [PATCH] docs: bump documentation --- docs/html/.buildinfo | 2 +- docs/html/.buildinfo.bak | 2 +- .../applications/enums/index.rst.txt | 6 +- .../protocols/typed_clients/index.rst.txt | 12 +- .../applications/enums/index.html | 6 +- .../protocols/typed_clients/index.html | 10 +- docs/html/genindex.html | 518 ++---------------- docs/html/objects.inv | Bin 16836 -> 13846 bytes docs/html/searchindex.js | 2 +- .../algokit_utils/applications/enums/index.md | 6 +- .../protocols/typed_clients/index.md | 12 +- 11 files changed, 72 insertions(+), 504 deletions(-) diff --git a/docs/html/.buildinfo b/docs/html/.buildinfo index ffc830c2..bcf15aba 100644 --- a/docs/html/.buildinfo +++ b/docs/html/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file records the configuration used when building these files. When it is not found, a full rebuild will be done. -config: d1acb0d0270d6bf9bfbb3d142ec2b085 +config: 4f7050ca2baf67d0b4155492574876de tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/html/.buildinfo.bak b/docs/html/.buildinfo.bak index bcf15aba..ffc830c2 100644 --- a/docs/html/.buildinfo.bak +++ b/docs/html/.buildinfo.bak @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file records the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 4f7050ca2baf67d0b4155492574876de +config: d1acb0d0270d6bf9bfbb3d142ec2b085 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/html/_sources/autoapi/algokit_utils/applications/enums/index.rst.txt b/docs/html/_sources/autoapi/algokit_utils/applications/enums/index.rst.txt index f69e2fc0..538e0082 100644 --- a/docs/html/_sources/autoapi/algokit_utils/applications/enums/index.rst.txt +++ b/docs/html/_sources/autoapi/algokit_utils/applications/enums/index.rst.txt @@ -17,7 +17,7 @@ Classes Module Contents --------------- -.. py:class:: OnSchemaBreak(*args, **kwds) +.. py:class:: OnSchemaBreak Bases: :py:obj:`enum.Enum` @@ -49,7 +49,7 @@ Module Contents -.. py:class:: OnUpdate(*args, **kwds) +.. py:class:: OnUpdate Bases: :py:obj:`enum.Enum` @@ -89,7 +89,7 @@ Module Contents -.. py:class:: OperationPerformed(*args, **kwds) +.. py:class:: OperationPerformed Bases: :py:obj:`enum.Enum` diff --git a/docs/html/_sources/autoapi/algokit_utils/protocols/typed_clients/index.rst.txt b/docs/html/_sources/autoapi/algokit_utils/protocols/typed_clients/index.rst.txt index bbf65f5c..b6caf3f9 100644 --- a/docs/html/_sources/autoapi/algokit_utils/protocols/typed_clients/index.rst.txt +++ b/docs/html/_sources/autoapi/algokit_utils/protocols/typed_clients/index.rst.txt @@ -30,9 +30,7 @@ Module Contents ... Such classes are primarily used with static type checkers that recognize - structural subtyping (static duck-typing). - - For example:: + structural subtyping (static duck-typing), for example:: class C: def meth(self) -> int: @@ -48,7 +46,7 @@ Module Contents only the presence of given attributes, ignoring their type signatures. Protocol classes can be generic, they are defined as:: - class GenProto[T](Protocol): + class GenProto(Protocol[T]): def meth(self) -> T: ... @@ -77,9 +75,7 @@ Module Contents ... Such classes are primarily used with static type checkers that recognize - structural subtyping (static duck-typing). - - For example:: + structural subtyping (static duck-typing), for example:: class C: def meth(self) -> int: @@ -95,7 +91,7 @@ Module Contents only the presence of given attributes, ignoring their type signatures. Protocol classes can be generic, they are defined as:: - class GenProto[T](Protocol): + class GenProto(Protocol[T]): def meth(self) -> T: ... diff --git a/docs/html/autoapi/algokit_utils/applications/enums/index.html b/docs/html/autoapi/algokit_utils/applications/enums/index.html index a5da5a3a..894d8563 100644 --- a/docs/html/autoapi/algokit_utils/applications/enums/index.html +++ b/docs/html/autoapi/algokit_utils/applications/enums/index.html @@ -342,7 +342,7 @@

Classes

Module Contents

-class algokit_utils.applications.enums.OnSchemaBreak(*args, **kwds)
+class algokit_utils.applications.enums.OnSchemaBreak

Bases: enum.Enum

Action to take if an Application’s schema has breaking changes

@@ -367,7 +367,7 @@

Module Contents
-class algokit_utils.applications.enums.OnUpdate(*args, **kwds)
+class algokit_utils.applications.enums.OnUpdate

Bases: enum.Enum

Action to take if an Application has been updated

@@ -398,7 +398,7 @@

Module Contents
-class algokit_utils.applications.enums.OperationPerformed(*args, **kwds)
+class algokit_utils.applications.enums.OperationPerformed

Bases: enum.Enum

Describes the actions taken during deployment

diff --git a/docs/html/autoapi/algokit_utils/protocols/typed_clients/index.html b/docs/html/autoapi/algokit_utils/protocols/typed_clients/index.html index 50a9350a..5b0e197c 100644 --- a/docs/html/autoapi/algokit_utils/protocols/typed_clients/index.html +++ b/docs/html/autoapi/algokit_utils/protocols/typed_clients/index.html @@ -349,8 +349,7 @@

Module Contents
class C:
     def meth(self) -> int:
         return 0
@@ -365,7 +364,7 @@ 

Module Contents
class GenProto[T](Protocol):
+
class GenProto(Protocol[T]):
     def meth(self) -> T:
         ...
 
@@ -394,8 +393,7 @@

Module Contents
class C:
     def meth(self) -> int:
         return 0
@@ -410,7 +408,7 @@ 

Module Contents
class GenProto[T](Protocol):
+
class GenProto(Protocol[T]):
     def meth(self) -> T:
         ...
 
diff --git a/docs/html/genindex.html b/docs/html/genindex.html index f47fe20e..97863f31 100644 --- a/docs/html/genindex.html +++ b/docs/html/genindex.html @@ -326,20 +326,10 @@

A

  • ABIArgumentType (in module algokit_utils.applications.abi) -
  • -
  • ABICallArgs (class in algokit_utils) -
  • -
  • ABICallArgsDict (class in algokit_utils) -
  • -
  • ABICreateCallArgs (class in algokit_utils) -
  • -
  • ABICreateCallArgsDict (class in algokit_utils)
  • ABIReturn (class in algokit_utils.applications.abi)
  • ABIStruct (in module algokit_utils.applications.abi) -
  • -
  • ABITransactionResponse (class in algokit_utils)
  • ABIType (in module algokit_utils.applications.abi)
  • @@ -351,8 +341,6 @@

    A

  • (algokit_utils.transactions.transaction_composer.AssetFreezeParams attribute)
  • -
  • Account (class in algokit_utils) -
  • account_references (algokit_utils.applications.app_client.CommonAppCallParams attribute)
  • -
  • account_to_fund (algokit_utils.EnsureBalanceParameters attribute) -
  • AccountAssetInformation (class in algokit_utils.assets.asset_manager)
  • AccountInformation (class in algokit_utils.accounts.account_manager) @@ -374,13 +360,7 @@

    A

  • AccountManager (class in algokit_utils.accounts.account_manager)
  • accounts (algokit_utils.applications.app_spec.arc56.Recommendations attribute) - -
  • actions (algokit_utils.applications.app_spec.arc56.Method attribute)
  • Actions (class in algokit_utils.applications.app_spec.arc56) @@ -416,8 +396,6 @@

    A

  • add_asset_transfer() (algokit_utils.transactions.transaction_composer.TransactionComposer method)
  • add_atc() (algokit_utils.transactions.transaction_composer.TransactionComposer method) -
  • -
  • add_method_call() (algokit_utils.ApplicationClient method)
  • add_offline_key_registration() (algokit_utils.transactions.transaction_composer.TransactionComposer method)
  • @@ -427,11 +405,9 @@

    A

  • add_transaction() (algokit_utils.transactions.transaction_composer.TransactionComposer method)
  • -
  • address (algokit_utils.Account attribute) +
  • address (algokit_utils.accounts.account_manager.AccountInformation attribute)
  • CLEAR_STATE (algokit_utils.applications.app_spec.arc56.CallEnum attribute) -
  • -
  • clear_state() (algokit_utils.ApplicationClient method)
  • clear_state_program (algokit_utils.applications.app_client.AppClientCompilationResult attribute) @@ -1380,8 +1314,6 @@

    C

  • close_asset_to (algokit_utils.transactions.transaction_composer.AssetTransferParams attribute)
  • CLOSE_OUT (algokit_utils.applications.app_spec.arc56.CallEnum attribute) -
  • -
  • close_out() (algokit_utils.ApplicationClient method)
  • close_remainder_to (algokit_utils.applications.app_client.FundAppAccountParams attribute) @@ -1413,6 +1345,8 @@

    C

  • compiled (algokit_utils.models.application.CompiledTeal attribute)
  • + + -
  • Create (algokit_utils.applications.enums.OperationPerformed attribute) -
  • -
  • CREATE (algokit_utils.CallConfig attribute) -
  • -
  • Create (algokit_utils.OperationPerformed attribute) -
  • -
  • create() (algokit_utils.ApplicationClient method) -
  • -
  • create_kmd_wallet_account() (in module algokit_utils)
  • create_params (algokit_utils.applications.app_deployer.AppDeployParams attribute)
  • @@ -1521,10 +1429,6 @@

    C

  • (algokit_utils.applications.app_factory.AppFactory property)
  • -
  • CreateCallParameters (class in algokit_utils) -
  • -
  • CreateCallParametersDict (class in algokit_utils) -
  • created_apps (algokit_utils.accounts.account_manager.AccountInformation attribute)
  • created_assets (algokit_utils.accounts.account_manager.AccountInformation attribute) @@ -1536,8 +1440,6 @@

    C

  • CreateEnum (class in algokit_utils.applications.app_spec.arc56)
  • CreateOnComplete (in module algokit_utils.applications.app_client) -
  • -
  • CreateTransactionParameters (class in algokit_utils)
  • creator (algokit_utils.applications.app_deployer.ApplicationLookup attribute) @@ -1583,12 +1485,8 @@

    D

  • decode_app_state() (algokit_utils.applications.app_manager.AppManager static method)
  • -
  • decode_error (algokit_utils.ABITransactionResponse attribute) - -
  • default_arguments (algokit_utils.applications.app_spec.arc32.MethodHints attribute)
  • default_frozen (algokit_utils.assets.asset_manager.AssetInformation attribute) @@ -1613,18 +1511,10 @@

    D

  • default_value (algokit_utils.applications.app_spec.arc56.MethodArg attribute)
  • -
  • DefaultArgumentDict (class in algokit_utils) - -
  • -
  • DefaultArgumentType (in module algokit_utils) - -
  • DefaultValue (class in algokit_utils.applications.app_spec.arc56)
  • deletable (algokit_utils.applications.app_client.AppClientCompilationParams attribute) @@ -1635,13 +1525,7 @@

    D

  • (algokit_utils.applications.app_deployer.ApplicationMetaData property)
  • -
  • DELETABLE_TEMPLATE_NAME (in module algokit_utils) - -
  • -
  • delete() (algokit_utils.ApplicationClient method) +
  • DELETABLE_TEMPLATE_NAME (in module algokit_utils.applications.app_manager)
  • DELETE_APPLICATION (algokit_utils.applications.app_spec.arc56.CallEnum attribute) @@ -1665,11 +1549,9 @@

    D

  • (algokit_utils.applications.app_deployer.ApplicationMetaData attribute)
  • -
  • deploy() (algokit_utils.ApplicationClient method) +
  • deploy() (algokit_utils.applications.app_deployer.AppDeployer method)
  • -
  • DeployCallArgs (class in algokit_utils) -
  • -
  • DeployCallArgsDict (class in algokit_utils) -
  • -
  • DeployCreateCallArgs (class in algokit_utils) -
  • -
  • DeployCreateCallArgsDict (class in algokit_utils) -
  • -
  • DeploymentFailedError -
  • -
  • DeployResponse (class in algokit_utils) -
  • desc (algokit_utils.applications.app_spec.arc56.Arc56Contract attribute) + -
  • - - + -
  • max_fee_micro_algos (algokit_utils.EnsureBalanceParameters attribute) -
  • max_rounds_to_wait (algokit_utils.models.transaction.SendParams attribute)
  • message (algokit_utils.errors.logic_error.LogicError attribute) @@ -2503,11 +2263,9 @@

    M

  • (algokit_utils.transactions.transaction_composer.AssetCreateParams attribute)
  • -
  • method (algokit_utils.ABITransactionResponse attribute) +
  • method (algokit_utils.applications.abi.ABIReturn attribute)
  • @@ -2523,18 +2281,10 @@

    M

  • MethodCallParams (in module algokit_utils.transactions.transaction_composer)
  • -
  • MethodConfigDict (in module algokit_utils) - -
  • -
  • MethodHints (class in algokit_utils) - -
  • methods (algokit_utils.applications.app_spec.arc56.Arc56Contract attribute)
  • micro_algo (algokit_utils.models.amount.AlgoAmount property) @@ -2542,10 +2292,6 @@

    M

  • micro_algo() (in module algokit_utils.models.amount)
  • min_balance (algokit_utils.accounts.account_manager.AccountInformation attribute) -
  • -
  • min_funding_increment_micro_algos (algokit_utils.EnsureBalanceParameters attribute) -
  • -
  • min_spending_balance_micro_algos (algokit_utils.EnsureBalanceParameters attribute)
  • minor (algokit_utils.applications.app_spec.arc56.CompilerVersion attribute)
  • @@ -2553,7 +2299,7 @@

    M

    module + - @@ -2774,21 +2500,13 @@

    O

  • (algokit_utils.transactions.transaction_composer.AppUpdateParams attribute)
  • + + - @@ -2876,13 +2574,11 @@

    P

  • pc_offset_method (algokit_utils.applications.app_spec.arc56.ProgramSourceInfo attribute)
  • + + - @@ -2932,12 +2616,8 @@

    R

  • raw (algokit_utils.models.transaction.TransactionWrapper property)
  • -
  • raw_value (algokit_utils.ABITransactionResponse attribute) - -
  • read_bytes (algokit_utils.applications.app_spec.arc56.Boxes attribute)
  • read_only (algokit_utils.applications.app_spec.arc32.MethodHints attribute) @@ -2959,47 +2639,25 @@

    R

  • reference (algokit_utils.applications.app_deployer.ApplicationMetaData attribute)
  • refund() (algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient method) - -
  • rekey_account() (algokit_utils.accounts.account_manager.AccountManager method)
  • rekey_to (algokit_utils.applications.app_client.CommonAppCallParams attribute) - -
  • rekeyed() (algokit_utils.accounts.account_manager.AccountManager method)
  • -
  • Replace (algokit_utils.applications.enums.OperationPerformed attribute) - -
  • -
  • resolve() (algokit_utils.ApplicationClient method) -
  • -
  • resolve_signer_sender() (algokit_utils.ApplicationClient method) -
  • -
  • return_value (algokit_utils.ABITransactionResponse attribute) -
  • returns (algokit_utils.applications.app_spec.arc56.Method attribute)
  • -
  • token (algokit_utils.AlgoClientConfig attribute) - -
  • total (algokit_utils.assets.asset_manager.AssetInformation attribute)
  • -
  • UPDATABLE_TEMPLATE_NAME (in module algokit_utils) - -
  • UpdatableConfig (class in algokit_utils.config)
  • -
  • Update (algokit_utils.applications.enums.OperationPerformed attribute) - -
  • UpdateApp (algokit_utils.applications.enums.OnUpdate attribute) - -
  • updated_round (algokit_utils.applications.app_deployer.ApplicationMetaData attribute)
  • url (algokit_utils.assets.asset_manager.AssetInformation attribute) diff --git a/docs/html/objects.inv b/docs/html/objects.inv index c84a8d75968ed61ee0a8a9718aa3015c94d0aa19..07428afa2e9fdc12b40890d0734107a0264cc67b 100644 GIT binary patch delta 13834 zcmV+lHucHGg8`Ookbr;7a@;u9p!fY08R3qYnFU!>)m_yc+NCAg?ccJbQOfmCt=LQ^ zGQ}2eKQFS>t9gxiy?K(sl?0g}36LNGZER&Gan1+e;PBw?N2l~TEWN4>qhgc2UBv03 ziooW7Zv3iD{Ve>+=b!i~Ob+1HeJbPV19{T<^Tzp8>lxP%g0z21N*QtNQ6;(T4=?r; z{{(UsJ)NYp^txN}`Ac$4^Vl!LG(jjq&v zGFWe65N34*Y6X;?krly#HCO<=_Cp1krcv!;KpP&8gyQ&l9^#bIxnp%-wN zScZnf6ieau>8rPYD?wo$mTgEjM#3F3M~?c?*zx$2^Taki3L> zn#6#Nz{H?@N)Lw6AXb$F?+9NnB%HH{#`3}K5CtB3ZuuJH1rw#GFo2b0 z93-xyGPD6C_me{!o5ujp;LRG>f@v%WFACInz|n`sVvB1jfQ2X|w6Vo{8m?k}mTMgH zeZmpnCs-tz6XE38PoiN0s-#V_^@pZRWkb{ zB$E-;`yCwEOi|C3B@=v?Vdg=*T(6? z?w0;>8HGTqO$)S0i+8yi9FOkjY09#7w7>`_i_$mZg_c%_M)+3H6V%4Av?AhtO88ab z2dsY|ys%Ohk}^Ln(|~6w#Niz&(_$rMX>ye7oz2&!IPNt|As(ctPA3=@f`ga&xgRfI zqOl()YnVv_et4%mt+K^66(BjR(9ov!|Fo%m@uTn%mT%q^u#7O)Kl0bN-?{`%0Rm*#KXa?br9O$o24w|vDDLn~`tHK)5WuYz&~zp#?~`JI0i z-lBR?nq0Ae#z~QG>H)!F9`OUG09M5ATY@gL}{YliO{D$ zjk7Q^58%-m149rK2f~-30k2t_mtK)pc>uiF&kA!TL&mdF@uay2eP`Wf4dNuA{E_C* z1}UlpuS8cF_*;eq1rcZy0jib4JjS#Uk!3KrAeZ*kEP%45jtZMf=M<%T{+NFOb0nSf z4$Odru|4iTK?|g#u)y!mdhCkIi$gtKMY|tEVQ%<&#!We zE$rc|GBoyWPq9g_3tk5VJ(Yi_Fx)~1NSt7aSyfDK5CK0Yv5uvHWMlyMv~W3EiiZo* zC>wqS?&|ZVj95R%;L?M+h*2pW(6v09(y?5N;C#c;vn_Fyn8ub!s-ZJmN;YV3&0mVInFx2#=ax<}DfEuR>0y7&}^l}&uDOz0SONQAn-Hn!mBgjD#7zvbxVDM-ApwI>^ z`>@cgigi$=4|W8Wv^Dn_<^|mpqI5#*(p>n2PYbbt{PB=Wv&8pa(3G{!Iw^3+hV8XMS8D9vChxb=#ubxkF8_+Y)lJnB&oO(& z=0a2$9gfaWe4U54rfeG3P*eAoFTuku=$SLUw**(~9cD*Ssoj58xegH?q%uFOa7H%$@PZ|1 z>h%W}l~C(tZ$~kaUXOjgfQvwk7Ssc8M&@2{HAeRhXSTZ9SmDYBbo2ul1HDa|aiU45 zO*qlSs31Ny2#UrbAef|j<{>`%FlHTJqZMQN2{zg=W}G6Uk3rKJF4};mk11(G&~uWE zHXMB9Sv`N_jz+h1oGh~-UU)DHq~|0EZ8&odV9*9J{R{?O2xOg-hOH4x0ZpE-S{4YM zdg$f#NzoGmr=|I3$C@huPL4VkX4AD>do9d4ySDW*TH-&nt!dVUHFNTP35*#t@QdK+ zn1){jOvhaOB4GH~Gdif)(3uLU7FsK?2%e4w1G;~}jJr%dJMwkY%-ajU0L_f;@S16Y z=KPj#-STG8CauD%*Iz+R8t3|RhpTnU0ns_VnGOF;T#s&URDAn+g9znFN$sx~5egA{&Cm8N0X8>g9k#Pu>H^UrZ!hO4j$#kMkQPE6mKJ zz_qdDun+DBoj0e)@7)X1q|DPu;Xd9KU@7N|pND7#kXft(b{H~Jg3#<^*^8j{@?2ft zTt99<-duZ+*Wd1MwvX4|?e^QX`i|Xs7~g;IueJs;>LcV8gL0H^T11Xgx_%z~<(J8N zaq79+kwNa@ryX)BSE2I#i@h+46zJbe{( zQ=77xiMHR9LS|TBoEgx@U?^G_WJkh2ZJbAWVUCUpDNTdVv(r< zn-!3_GdBG!g+!KP+5`e}N}r)44vim%sVlh=>*k+o;DYtl1`Ndy9!1(=yMS*X zgW*Dp!37a8?cCZxGge~FhWYikIb)r_{x)x{^Vi>8(mdw8kJ}KFwBvX2%qq}=ffo*0 z074eO(iS__f6f9y|7sX~*2aLoD@@i*3kDB3`%Tla1M00rbBqUI4G~>TlzV?+a!jqE zI)Eau2WEbpqz?wXXm~N}!y&6d>Ip&P#bcLO)-ySv4~H#{BRvsrDNmJ6+i<=RBKpQ_ zZhtaQMF{L^b{gVgjWD46k>=0#lui-kei=Nq7tGi}renBMH;!Ge{(6;|B{Vw5Z1nMn z7lYY>mKuH2eT4D8*`6{-V7h;|+(I$kW9DIu$7dhYS76LQknS1Vp7k-r1z3u(|&6msVnvYyt{vU8$j;vAH6SD z6barxU`<8Qkzi9To2qxWH=pmWEGP%}{`((W3pl>e-nqd#K?wCsfh9%K%v{Vn&Oket z`ByZh`MoI@gSJB{P<6#H;gerHSx{4q%C^dKWB*@iZczcnVPX|ehDLTx^5D@FlM!$Y zU|F2ka2b#E8WiKP9$kN5{5w18z<|Z@2s+k)Yhy9)d|Nce=Vn?o>~sY~EZ1n6fgyXv zy5Zla!gK+cUWY;;j5ia4VR+6NLu~VtNuz}7tuP71VTV;95=#t&&ehsLV%T|q#(RJb zH58)UH9d<#F^sno$`P7fwD%RfnVR%Os@;A1YB=}iEdf(>k7a){St6ZNnGB)aAPPga ziFF%yRfNL0eG&}Aj_Mn|m&JfFAk~H)6-F>_2$;eWM}=AJa8%#w^~ffS6DxPk?`L5k zW_#z9!f;=VQW)QoK{?Dj4#Hu$KS(Lix-JcyzqOE%gAxzEC5@MyjBEi&nd0pyW_NlJ z7IPy@wf_2WiTZz7WTUlX!C+SdVu^3FV7RLRF+Seapco$Tx+Oc13^ib?ecp|7Izfy# zmiyrDcq~9^G-Pf=xR)Pq?k>OX3|3DE==Sc`xWr3IC zy5nLMTk6e{U3?GcQLX`N>QKNAbC6bMduL}zS!NYZ0nLBfCZIjrp=Ak=ad*@O3X=rn z{N3yxwsE6HR(B|kw0W%EbZ3QOSYR&%#CZRJff()`?CR5$4Hzd;Zr&&;hb6=Ml*W#M z{T(?j;&*;Wy%9@kW7uFb9ik#iON%PXxMQhTjG8bPtlWlOvXsR19$AWEzSR&8bdV9b z7xCcnm1KVjQe9i-cnl6YaJ^@c=V=bR^+n;I%sUf120&UPA9j?9@zwbp3%dcj4lxmk*w4&EXt`==9!8qOH}6++ z6p#_aWB{f|kT?B@GA-l79+8bTHO}Y62S!w}COd(1}MeY$T8L)K$|%#Ah7l4dxulwz_gx zUrq^}KTh8d}LF>vOkc!QmEt ziAH|&7#E5}TN=Tbr=LD0y*zzcn7tqQiL`%lFUtZW=zoL63X~jvyK)5?GgCY4Q%s@I z@m-w5+yC}gvnTnOR-f-v@@!ZZchCTPNQoqJCJ{%yFiaIboU z5TNwY*@`L$+%ANYg979)hAX8^OX;-$3n5fVXoD}WG0eO2Dvyi!o|mLy24(hvf^*pURjc&i#0aT=o8ztMPe9sM6+9bksL47Q28s(b(i ze2uSWl0Ev(MBaTc{H~_ukb)>=N4AU%4$vp1#slcH^nZmB2&SZ+aE4BI3m@7Yo-dnx z4x89G!9>+AN+Vg1%RyifvJv8P7|(z4`XxbhOTYe>(%jfVmZurW%eVCrP9OnASU|tx z!GH1IqXfvj4i_YX??hBE9(l|r7IHf@NM6D`O=5fC(&QMPtb|L_1E74yak7k6BaCwB z*oo&Shq^yx51mvDwjxi`942EL>IfsDG=DRV($nTVXi~O#Q8p&Vcr0m$H1L10#J#s^ ztn;BYo}DfpMsJqXV?$zRA=z1fB`8Yd84h8QfusPraiF)1>sR`l<4D#5~_k$R*kB;&&O+o#lNeVhJV$LRvI1hSU;}t0B z^2XJMW?Gu-aS{2M%f(T`gJFM=j*~D;!ubiaAe^gM7Nm~R;F~n$qi(r@bWw7p;dGGz z_v*{;{`z)z{orjcFRyny@A2;I^{w~y`VWMLFIN0{CfIbM-R}BvXP)EX`hR`D-aUGc zU%p-6eSb6t#J=2S;blD%Am?8fM{z%Hch}zcha0tav=|qfH?yF45Qcx^WaK(bYOB81 zVk&|>%u4Bd&sV{^r9D;)ED52w+ndjKb`;O2DmgrWB1_>1^CiU7xPB~udg!WP<*PN0 z;3ka2(w_Qj;n+}tk1#NV(PHaeR|joI%Bq*hg&0p>nLdNW&LVS4l4G z&eMN^p!D)IEtl3+=6(RP7)9$S+E>RTbb>|rZ{WrIrFH%YVTe$hq&}-}eDiF7hL0_k zS;0yklydXrQPfPrz{4Np<#UN9>T++;-`7kncntvQ-~K#Fv!Y5j3KQTZk~gU6S6vuU z+^%VZ>b;^gf}nqN?yp|evM1~6)k-f5iv7%lcI?b0eCh&P3q$!;-p-(v;0nEGM&m>6 zDh;+Ptlmi5!kP`$c;@E?@H+k+_J{+mZ_pSWV=NPNkO!p#0rDujs7qcpO)x=6dm``d z`|YDA)s5{}JgN~J$u2x?n_LdJNPW6o|8RgEkU}bE)~J6rD#Fv+I-$x$vV%86>$fT@ z!<8ztqie0o?5d5?=M^fns~5U8KVChz$c!X{6wMk}H(abWOimtuN#f%Aq0(>ktc2xT z4yTMY9oaxor|R+vYJN(i!}_XUKwd~s63&^A`Hni)#)wrZtzF-IBR(Ze)KI=tEX z;xNe5HMO=CE?2Nj!)PykvW9j}mea$Jc^m-=u$F(&)|@e_;5M2>O1`5>h7LZyOyew! z@JHEGTZZ*dR_q4&o6eQ@h5p(kc#;AQ>^7&A?J&-DHcR!RXMGENfG@eP9r3in*=XCPN? zTTp)=1Z3^%AXhPdqc`rY@vdkzHl9*-@>M$t^_6BYmb-Dp>9th9;tHOu>w2ELE-86wppPMGZV=-jyJXwE^DgVkAC{@?y@(0Z+6{;Tf?PHJ(05oU# ztf-vsHJ4q{u3x8nM9cN*3E6VPj5@VvXe1PELpco%$M}S_WsA3}&(1iwGz1(zVQ11hT^ClQothFz*!H4d&nrmtTPu+@ggka!81xwA7}<4WYVkI$2@aI38bMN|4i zv-GLw=07sC6Bv`bnerKK7MHQ@K3`CQ9uUu6XT7LZamVr-^e_E{McqQ(~KOV1l ztL4f4{^j;@QEjLz#jX#&uU8)Gb#{N;T&cX@<`SuRZ!Vd;&4XXKr5?8_d2h&Mu1C9+ z+KEDdGbB_sZ;5$r&6Xxi-J z1>UH0gY*S&&!?Mx(NS%=Ct4D*ayhuM|LWl@B?~k__rniO)W*PeXd{JER2hFdg%lm{ zcUn(B)RCMF_yv*Tbv=WSU}fK6;Jw#T$+qFGsP;c|*x+Q&xL8CjKU9rdy~ zxn@MuC`NN(rcn(1&{1towPuiK@RkFU6_WXHvFvHo%Mj4sx*_fLlBx8#2n7^ara>yT zVYGf$s(({It*~vh(V(((^h|$K?|S)r`sBF79VF3#ptMVHc^ZY?8G(ZL3~Zsq}*6oXxQmHWr(ew#T8_UwRWZPOJ@?pDZms+<&#aiudWO?TC}N z&8*BxH?_!bW?7lf@>iT&1WzFLEkZ+`5MXJbC1kVNVT*z7Zrft!$(z>73LuwaXLnJ|X5Hv$52lqKo3Pqf$?u?7&<3^A1}*Qh zv>~nP3$)R!?F+OpZS4!RAg%O*jj!ew*KG4s#n!70t|MK85Z`~8Wa(>J%x0ZS?8mfp zsH6wj>fUq@vz4u$u-ey>-a+is2DP%GTORv#A+7d7R)%P8G;2e&7N)HsS_|?WykP8o ztspxj$E?`%V(Bu`)?$y(J_Cd$_G9k{&(;Dq+ls8ji~Ynu$(}G|fG-F52qdfcESn$i zGSNmWzq{T5qLqKmmIpk5AdLN}uo&>@R}tE_nEqS#j4lJ17P>zk&qnvx;-j}kDV(5b zfYNd&?UrdNdkUukx+)1R_ty06MO)aeKvCxDn_X|<7L=87^C#?z?J6~%iQh78W0_fB zsjhvoz+F~;N$fH?4#~W=W~JqI z5Lw68EB*WgN~=lXPaZvVCbbwe2LT9Qtm&kEtiq^#?Cj7t+?vmrTyiV{KH#aawczOa zBlhxj&tb3tQnawc?3$Ci<1q>o@D;p0fKv!NLHKAfYhH9icy5-17m$?fx@Zp{cmmL= zk(r;DVGw_2@M&}p`^gV&iL37ttBbpz&MiO$$m7yiWSiw}j^TPI#4jlXK8ATwz8Bbc zRIcdWutOMC?1bp|zzm&%Ev9f!4)wFfQ?+>P>ie|ONT8mB*hgY>dxG^gre$F|I$3yI zrg0c>A>AeYm0Xc*gB8kPy7+`tdQE5Xj>^|P}1Jtze2;dg;>C8fpZg3p%YN+1Lq~qPc+WxaU&_#^WsU{_d)rd%Jl%)!cqGv z-&46(c!}=&pnNyw+Bs9-a!&g_7Un#V)gAVOHtX%|=1jBFBSWh8bEZ{kKPZ21gteq) zU^9PSN~Q|%Kwr)cs9DXNygOv>b`M(-yLSQFh?xh!cu8vS%X43a(ZOms@9dm?3rU+> zR4jx;cR5$~nqUsBHo^iV_OkJJv)jjq)@mHcNSvMHTpXZF!yY?_33*Tp7Y&UNTR3?9 z_?pKqdxyj;lOY2?=tHA&y)^Y5{*>4l+Ln9+}EIrn!gQc9@*(z(X*wUxnr> zyuO=!%uzNAu_xaqL`2NIOo#|^xA1ZJ^?_V-#k-aUbn2_*oO1y{m!CNqy|c|0*zVBj z`v9*;Cf^b6yDaHucI6%6zRQws=3Cwo?)xig)mx1%0e(jguRAC6PKXt*n6?ABnWcYu zN5FKt=A95L-S=%8d1!{je)#15va8&Pz7Q+wY0kSDmPnY_l_N6x3v5?YPVC5?Lu#jU zb*z6|lT+8)m(`eOuPRxW^u3ku{Pl3_lD@a{oxd(_UD9_|zM9s@t;qU5yqT_ba_hm) zUn{pB>-_a{>$1*VGq)bBj&*Zu&?bN22bqJi9dwCRbgOVD?-Ej zy+&hsI2_3MheHmExoZekf}OpgQX{9ObuB2kedv+Bo%R$SIiudvBJ6>4(V~Db0(f%_ zzKp{9@@$atjRltQ?!x300q(R_8|`2mQrD?$dWr2VOObUp+xzVYzfe1-+BwZ7W;pVsJWz{$5>SjdDL*F6!sXVQklpa-Ym|d+7scE**FQi z`p+@t&+);V>vDQ!47wdbs>!ey@;a1CcQ|JwZb+njjk1{Hl14JB=$87~=C~%g%20Jr zbYN84=v&VV4V*q9rSL+WR;paiNqP*D37x~KVpIY!Nds!@oMJ5fg`$6I7+DsD0qLUt zTxfqruRaX6^J%-d(qBTD(&MxM%bCS08pK35F);>TYY4u_T zw%=+tMI-1F`%8^vN;@34ty%36EqcOJS<{+jC;52mtP@P3yO5HsUaX>A$h6!><$_tB z(VT_(n%=6rXp7`mAO)&}ZLQeLiLO#!lWb0!}m(2GZ+ZJSOqG`98bXazOq0fIcY}KK#!SqswJu>Vw zsNh0Q_M|eF9`@=}x@f-Vy;B5voApYWJ`N{AHnG*sAAgg#h`Ft<$UyLup9g>WWpcyo zijZo1D3Oa3O(ngM)-b8ag}IV!hn(saieX-Z6z6kRn><6D(=5e&6I%2 z;MKWgjC^{zPBQF;GO9RPK9(P)nR8wkNUFG)WE5P=QH#LOD&ky>$x|-4F0q6a5JkFk zHr0onWnhBq;yLDetiA%BC^)Blu59eUFW zYZE{1ww_jox)_%!RdU1RJ+&=TwnQFP9Lz{YBwb8D%M>RgSGcNfhDcR2%@JdiP$e`t zg;J0+s>yVU4&#hT#Z{1*H1@x$vlvP(sv-Kk+kSom+J%fUuo6$}sEoNeCRcx4JZBRy=xMisniDY}3fvEQ87jP-P z`tdQ97yYb_sfFfe4&Tr{;fi&X|ttc|mj z{Warq&nn_vjLB0dDKYU-O|}&2&Y41UAI^YW)9>W~uK~!UN79B-I9b>ApQ=Dg>sE(( zu7l2Z1j=rJW5XJ1PklG<)#G8r6cJqoJTT;4=q2Y&_4mM__&6r~dRIPx6Z zb*F%EF(gN(IC=@iKCPobTP~F1rG93WxJd}2;86Q1^py+XWsEV>*lp9y_9?P%fF9B3^N*7thaqN zQ*^40tebMEr8Ung;#`c$Qz<$j@o?+o6zR^{gjOKVfLc>Hv z3xJiHdRzbWX5L?L)0#ND^jOit+Q|k?j6JAAaWN=Kp|Av$gJxE%(3cf;OA|pWnOcWn zx~&Zq-$Y|8Cs`=&Vkh1Ll2Eot2pPF z-ZqA7Sh0mPJUL7kflrj7XCyx*=L|+c;OFH&Y6BI0!FihJ6$h ztWc&XCmW%%@r@guoX$QYQ!5c^qnZh;*1r|`&2lqi#jWUUTIVWDTJU)qk=gQ3Nh`nTmmyP3 zJ!E22Yzf!FuI7jOSXEq6|NXJ_Ed5DU+AnCVo?TJWdF&U8+LViaB)8+XBgR;{kd!(W zO8HmmXUO6z_+%wkIqxh>sWgAdr^G2g@h8hV;hi$270h|N^xkhh$330hlf6;9&wCd5 zg_^E;m2!R~xT0sG5Nno?mUe!g@wv^s#i+IA^j4CthQnWXF{9m_-I}pcy4GV3^@Z9c z_H(ME_ZE9Kg!PI>M|(NX^vvecBGlPhdaGx&vGkfhXVBaGFPjH&1UY|50?^E^9_y{Nqo#yGb+`!NLeHevh*sZqKjWn0sW34nl@xyjBGos&Vp6J75w;;MqR4DA? zpY#v9tMH#~vR?Tg+R2!@Z*-%kSQTHr;VA(*{e^W|rIn8f+VD53;s+?-J$*n7=%1CD zVre*BO4$k!Ux6~Js$hQ##71&)07oBPjYi5xRya-N&{S6~Aw7!NZZ~Nib%HDQmsm1* z_2cZUi`*}`e*T*NAr^ZA<;GVm7nsKJS*d*H1c+5U$A`^yV}hw2fkA!!b|nxh1|WAG zgFH-5%6a9|HhF#!2<%h+4Bj@vDTX1PFcHf%RK|%AYpKxtAbNkpI5d^;jo7cUkx&;l zlkmM)cn5~wZsBmdiiM83{Ty}B>>3cd)psZbauT2@5D;^?Xr;O%ePq&b$X)O0 zannCsIZjgxgw1~w3v|+>(-L?&rgDTB^-XYUn8mOtD)jd(Vk*!L%$EE1y+txrS6jiW00HBUf zBiZoVIrp2KtEr@)@e2}tyuoGT_}Q}qz+5E?a1m?8u$@z#pM&&FbkB^ zNmDv7CCd5cvMs4!Bfhv^MG;9rF1#NW%K{N{RR@3d3X0j{L!Md=b~-4NLt1*-SfAd{ zPgOh?Pj`4&&%Q}})s@z-_bu_`5LMLMrY;{AjUUlO!R8dc09r(6r`is4HL{($%&2S! z%0@9RlI<|t++3;B^yceWk?@Hbtwg7_Lr*0z?HXkU56_DIvWF(K#Q3G)$_4r8*=%X#%xW`t9Z)@&vuPfYpB>afg~O zpy?cv?tz!mtE`mkg=8V%Jmk>G4}QYKj~#p=5uyP_H?R=-x_Lx+RD+ve~BE7iCyhW4)ga z1t$+zC6nj0Z@~!z1qVAgiTA31aAsj`BYz;zx%Z$ zSyf8*^t!50Qoeilr6a3XX_ThV6*C)vXk-U16jP$mk>u+TADk@?>FY!bs>WM+L7Z9ZxW{$!m2;PE71pte4 zm^g6;@1R(2Fn9b#dp2~7lWf}}1Ul-TP9aI& z3<#r$S~v_$<;u;$@S^#Nyy3p`#Xfy)W{9QOVG4&!@v$X9s6bjS5hs$udT8Trq}?yW z&tGzh1)|e9PDvaj>&NSNXq=MJo=bQs5+~GJzgp#V)sJ&;<#V|wP?j{Wn=pSt9!XjU zO^P$bC;coIDbO9Idq0wIW#oC<#6EM0&qYURpduMRP6gjINjq}U0owiXC;F9!p5z4Y z^PlVW2lx|LHiPb~7W|w*hl6KqC z;hg1WGm;(A`R{`&iUCvDSJ8j-CWX;~KRSKWNJWVpF40FM`U&C(ukgpNW2zq_lj6@|8KtKY57-v` zp_L9#gnkXnn{-H*Z2fdJwUb@;S4pGkKyxjxq)stbU`-96<)_ayDt>AIGg~72%vh=_;W29jl&l5B+VqsEFNBrh^m=X9Am>>Y`iw} zINWg;GvR-(dy~9o!D1iT_rnZmxV|XU9KNAd^`minmXzs6gZDe~T}N+c&9AVPHqX$O z$|dUSGPYOTaz`1AXs91PS5+S^Fq#$x(nXn9Y(b*j%I02*54B6?n7fivI{U^{3x+OD| zW}AI=IDt}A9@5OA^3JjEpnJ!^NsywoHBOqK)mdYXu$QiuL4DyvTc#96kybg3g0nQM zMrVnJNQfMVlk>o2-`C$s5Yz)1Ad!6Y+x#b1{YP5;zyI@p zq4Mim`886`HA4aYaV$DJvWN`tfN7%J|DO3Irv4vdsTco*-NPye9_qG&!#~F|&h&qL zAjuq(Y||3br-`D->!1lX^#2~YeqWBI_28{UwFHL=P%cZEUF>bmqubbP*%JHMI~6p% zksY7w=kN=ldhM(GBn|!1*X=H=XeQ|_HC{^<7R{2zfeZ;XkHQc<7#l&H{2ZDNr?<2I~(7K$H-Dn;cry_)L<5Uo;cD*5xU z!ZF^m =B)?YUxVpP|5e(zo0+=baoCAfBq1e!Q9-x!7f|E&Be7&!P;cx=bpJg{uCmT zz#$2^`MwcFQYRF(9%>y{M1`D{Z@(x~XK42XdsI+6EwMDT?siJgg*Fdfc2d>?TU9wA zuWcM%6Cl#?wA=#1iBGE7fC!qDv7w!WUGFIH|_nTJ1Hpf*# z!^9f_hbijko%Zt&VmVZcaO|Cv+8u1Csm?pnd>Z^K>HU)D1utXndGhOb{Fap}@ISXp z8P=Dev1e}%`+>A(dJ-9F_S~-{$!MEwrS2>1e&D`ZD1e{Cu1YH*`Hp{R-;v+%QP~Wa z;-6^=zWl|B!xLEx;hd_FT0Zq|=fBdzVP9@O<0KAzQXuNW-@N<+wZc9Y3^l+{WH;ka z*k0gOuRsr8(_$-67eG+{lQ5vU7^AU--XCH-1V5ExoH3d(8a*|dQrUJif$s|t&-lr6+|l6(G> zNCQII{0uXi!wwf(uEH-+MT6HHcCd@6r_cw1q&h!4RAy^+Dw64RWbPQm1BF2A{w{e4 zcGMG{gzwA9FHi>FN(V*{ej7ypg>2XZq66S|Owo6uh^?9a)(qbD;r*q-lNnDOMEnaw z>={?wF@+S9ALM_NK>cfj`cE#*V>}bgz@0Na+b`Ix5gLxkbmQl>%QEkf0Sd8_qUq2+r{H?f8%h) zDtl@F*0z%7BpLM0B(we-XCV|7OFJ{|zqPF6k~tFeS;Bw3|IRrIyli0-?B8oxyd>KbpQYW literal 16836 zcmV)DK*7HwAX9K?X>NERX>N99Zgg*Qc_4OWa&u{KZXhxWBOp+6Z)#;@bUGkmY-ew4 zX>=`hbZKmJEpT}XBOq2~a&u{KZaN?eBOp|0Wgv28ZDDC{WMy(7Z)PBLXlZjGW@&6? zAZc?TV{dJ6a%FRKWn>_Ab7^j8AbM-=!hDr}TtvyS48iJuuKcn{{51H{=fC(dh>zfX^R0-&AIO*Me_E~o)c9tz zy}Y^d!*H9OvBg8^=lSZV6*P8C4tdL9GblDZXz@BY6b7wkz%RfIv<BRk`}OIGrvxm9_LNBne%1t{5axfb3XgvJx#L0%abxY059^>`J~RE@Xlef_rtl% zKT-;l!!kmo7wP2y4%V~zq=IO%jGDXbrx{57Y{qPXBb_9Cn_pn5yq~R-ME%I%M1L^f z;cJ+uRgI}wpy?i?!>roiW_x>UaPY$!zM9YS({B5+o5%M3?vLG*Nz>JQ-J_rR&>28x zYBo@0+TesBG0)8d8IQpA?soUGy}aFdFT17COAAs?q*kgU;lj%dRNW4=So18rFQ#=9K;|mU1;-T;JB@|)Ag7{3kn+pg= z{=2t)G@~H)SX6@;junxwT42aiKp^(y&kG~ONwGv8=jHhf@&X*a6#deC%)Y>^1V_V_ zn8@^|sJj4OV6qChP0qo=bUk^8``e^9XKu!rSp91d7p7|5`v=(Fd3@S^x%qc9h!62q z5~XN{W{dOc9=f7w%d_-j`^+0`@gL&n!#5E5m#|CmI)_a(5`@(n{I9|C(NsX)irI`m z!QP910H*oBR)cvX2~Nz-l-AU^@noiUXHDS^`JZ9qDai0_#v{m1Nfv>lsf_Fxri0B{ z;Wzh5@eTGn<`tpYJg-PytPE*9X2}^=yN2@j1;FYY0{(%vrI>4j8)onPG^Lqo!g5~R zgW@_sebXFd+cYq`F5GK>!v<9*W(oUM@ESo71;zYQ888~98E2n_w%LH!WPe>Ov`^l_ z{3@`*0Kqx-U};%UEYHCLDHsAj2eYdf9xsYTGVlsMyds%hs9wF9SEkx+Hm}TlgKVLo z!4XNX{l#h^EVf83gq4=8iJF3o)J9lxks1jrEm13Bp`~gjEVfMTM5Gp}p@`HXwUptR zK+*p11DaGr0}wAu%q|9q)J|Cvd47@2(3foNXg3~@6YLM8I%l39E3|Ih@Yl!d?Q9FN z-Vy9!34nvO4IIhlLC!YzL_TQ=;D7<=%4)5k)BKgd@Bl_0L?s$XdVUPcBn_Hz<;MWg zuto+Qv_YIuT8q9e{%N2gkde`Urid$6@B-kV0VpFq93Ixp74@+hACi8f~l7 z&JaEJ;k`yj@4Fv{pz!?qSgiq!e*1kyXX6ZKHB}D}9-|mUNgN!^Gqmgv5gpkY$qXsd zwLL^Kn}hTiA7a5LR$>$dvYB=UqF#w1t|as3E>5E|J$y2kXs}PEZqr~NSEH)PkNq<} z+aamb3OY%bomIby(K2`Un1(jVB!u4E1Z?3%%op9E@xBMex1=mQ)}znBcRxG2lV)j} zw-3oV!&M{&_6mAl)d?Qh8!w&7 zD$>`*-QFZc4R8=UhK9Q-j>7GecW?hufZRDO*N|N73Af0s_lNK5xhNYGKvaHH&#>Yd zUl6|qSrSL|Xh6L!$pTtu!O0yO#}kX-!J4Xwo0I5iU>(%Cl*2%;(a{YMeo4nFO>2qE zI!n-;G`G%E@2|CrLLHaC^VR}Iy%fdj8tVxYqO3{vLm3^$FzAp%x!ww04^< zfq=FdOjza@1Xo+?7Z}+59vwyZ|4$;(Mo=Gb&P>wU!y?*6BwL=AAgy<_bT`eo#OW@b z;uuRE2mXZmI5Op)ekxbS>BsnG1@sTW)d|un(&jf@4vzQkrzw$JRpwXm$OYKlXFBGP zWBXKR);UzpFt-q?eYj2A3y88VDXXVt3h*RB+`S`dnlB_)-8($Lmg2nEBtbk$AvldO zt7zm0@e*zlgYVusOUiV1C3Iwafr6$t{xc@|=7+&CC_cRJ&{Xn$5$y$|sX2C>uG=bq z-oZb70~V#dB8Wie4V4)X=;DJpo%$kr+B^(Ba-_d`y=zp5WZ+pOgJ>NUEz}wLCO`>a z7Bb4lDQF^g-y<>$$n5LkiC=;;O2|u0gPcFR1xgcYEdMa#mlQ;)9)s#LR+W<62-tFOZpJ?CNOY z4!mM!lC~qG4J&>K%`_{oqK(@3oR(?Wrj8cw&~t1ial1NNxU;rAQ(BzvTW}`Hm~}0* z?kjR8(U|oqXp0mWv6dG0tlbLv?gV%ThZ0>wRvhptT@P>k@c?^u!^ABmLlP2*sFsSs zd*QvIYtqQPy`gjV4YQIcB-6=cSUm@42uNUD0xK>fc0ib1)LtJHHo(162(eL`!G0y}aprL{(W;PVNa5WhQg0kRheb z5gd{usJq(|$LUN-;}a^`;g?_0>UAl#s%lC)$i2Kg9O$h{<68qv>C*Tuo6ed4y-wi; zb*rNXv@8I+tfNhV zcBKVzP_(DY<^*c?BW9IMQ?K4Mtke&!LTYqJtFUP9M0yANxV(mLW2e4i=gAxc{3Unu zrA>^$dP1;f#wG(AkJ@B7gh{MEh%hG)$H_rxAHbuhK`cRN9&(t6rnAc+x0f>HtO81& zB*Sm+urg~ACkDm$Bzv_;QO5X|A(c(t^N^rU1iBy!BmX*`Tc*bm2#5BFQwH8!1H7#?Q{V%|yAv9euxg$kkf9bU?_SXkY%K z>&39pj%a*#uJ4Ikt9*F3oI}Ybedo(EAn2OT>!za}1lFJ(Vt`&qnFVm057;o*hT}QDPcbdQvr=-BfZxy|I2_D?=Dc zwSM3Li0*3j3@B`bY#)X6Jep^VEK|`Qhf7G+-6z%Q7gvC)6A}vpUHUn2rTQIYu{EF_ zhSJ|EHxUbVP@^P9V0Jqey&RUi6b&x>DZ_l2-ZYqj6Uab(u+mW$g26w#2Zb)za}Nux zsyGKl#$YGlNLkyQf-I*Oekr}aH#Zl4z0E-^Api8&+$@p*?vNwJi7V}gdo3Eh<-SN9 z!Lin@7Q)!-QVU@U_}#&wVkNkWacL^tS*(w4DQ>QxsE)3UhbclYkG9f56d|a+OFlad zxfUz~=)zTW;ND72gLY~h;O`0__MG=&a(MNU(}~`@thk3-7lpr4T6Hru3#+%CnuXqM zA0NHz-Q(@U-@N;Wmz{SFf1zGxL@-JeX?l(StzBdc6R^#klU7VkGm%@jTw^k{ylff_ zya#!K9_1xpMC?*-2hd;_BFR8~pRNN)(|YH|X+YuQ3dju{bl@B>_<4I+E4;cxRbOM| z01xV>yHy2{x&BBLJn z>H@9@Vl|hl?>F{W&FL2xe}QF@}S$JgZjR(d?Fqn`LIi z3yxNS%-jTF3}?y(48|bz?_e;6K=vsaI2th*koJ1jyg=yILocgtiq_~j&CNHtuekuA zcCT}0HdCjym%^NKYTGQMBlU-|JE}`KD>6orRx)X2NlJ!!(Eb{+4OG$_#TEIecHmUua&jYK(}!Acb40!Zr+hoT8o`v5GS3Mrq?Djiqht zG}>2O&qFf(9_M+ua)(e{OC#NN1)~&vhgg3gY!qqgJ>W)RCSC<@j3t9(aR1P1IX(XD z-XV#LED5<`jRUZh^Uco!v;)X4Rt^UYDM>--_SJd9WqGc5x4W0^f>Y8NpV0#}Q^$k(2!Cq>20*qXw=vs0eIHz&~Xu@$E^Dty9jvFkvKl~qg z61#!J_xrp__cNPk`xfY5K46}P>y)~dP>$ggiB$*3mtR(mhJ_}!2H0$GZ!KmE2Xf^O z$vjURMghM}bA(8Ev?m%fgL~aO#?ykaq zY;QzEDE`VCY736b5p3KTFYrWcIoGHDlDooXw|mZ`fG91T0Lg%V^pZIIa3qh&%jm9n zOc`7Dnfh|dEnd{Vr@L*IukB0XcjfGv>4?m~lM143ZCa%%!j*oie6=9gcm%ys_q z>$JJfUw++?;xVN?ZbE3O!RZZ)JK8V7>~diBD$F<^Md%4I74*=`N18S>HQ>gFyPHV!)y+R>;|b81g$5J zTeY&8#Q}3TY-=1DiEvwa%2e;b`AmrDH(vevlYJ^e;7+kK&>uDk1B&lS_UcaR2#5N9Pvv1R+!_1&$<1y>c<_Is@Ze_M2!*^GBU77JY|OpzMlZz;Ay3&4HX^RIX*# zCi4Fy$s9_cD2ScnNzu%%O&&a(VzUQa0XWvrtGTTA^lB9AeLcFr_z!l|fd!A@5lrj> zH^ySU@@>#qUz=&ru-g?ZvFy+`155sjwc)?dx$Ok7y$^*zST807!}6LlhS+9jn@$Pk zop1@n;f7Zr5=R_^uGP9gV!87E4W9wFR8WZc#`Y=(#jsvVC`Vv-)86mk!`7lFlHTl- zcgwN2?+KWqeJzvC6lvYcWC`UKQCRX#tZlujA{5sBlVDh`sP5>yEEb#rNn5U{FoJbQ zz!Z*DRG7t$it4V~k8Hy^vG~URc@_p@cXUoEERV$~h4mvDl*4|-K{zar2Pp;G*Ja@F zw-FL@QR2~er0|lPksSaj5`6r`?nw{AVsB=t(yuO;sIEn}nmZ0mcGVz`)NKw-chw-) z=eueY%M)Jr_@27GTnpaRqJRVDLsHruopq4X z)G3@Cy0uF{dv-$05gzN+Q5z_TW03K0vwPUbttMGDptMrvvAXTS3d3-~UkHfx@c{#| zJUV!;Zd114oJ8EdQ&0{^ru8X}8x#A_A;PiL6#*M9MgHPD4~9xzQrkJod{q>uKBY7o_b-5}=D` zY)&x|h{#XvLl}8#Xc|V6!It-Tautvj$7BGuXOK7&2g*ssV)vG&CWvQy$XC;lC!^iq zx${%Ir3V5yQhE@HE2RgqxZ|{lCe6Spcz1)vkphG!$-e|3JX$M36@d$mTf#FT3;tq#>hv_1@mRFm_w^M?+q;JP7JQ{-oslOG2gKZvSvZ8XC0bg|+Tt`@4 z5k1EZ;^S89W>XXTU;H4nB>e=SyB)x?asQeg)kpHv#H{2om0mb|sj9`C-H`t+DxHE1 z|Kbs3rzDHOaT)jO$kOY3EJl2DpA_GM_-qq_I-gC1x{{fJ0PQ;4Bx&IV_=37q8RM-? zt2I${YrY%{k$-HKlEeiB0Db&92fip#7>}O@V5(RkTo}T z!#~9o3d8x?IlTR^f3eE~{o(uGKfGF|KwTZ_`!#2RID$hE`C)FGf*gLdQFC=`PXPX5 zxv+3ey+sI6_~^z+m1}!vLdif5vNy|_QY3}+4u_c#$~bVLF0U}`SLJ0ES_iO`3U_rK zv0VR#if;C0`0CXoxUtFSISJ^<&H@5{u99?o@c}%p$7zXX|3Ukk%jjRiJirVODJ&BY zW$^@Z*o-gcl0Eu%dft67{8_E}kPczME}|Kk9H3uH%?HqL>HigGAecxq-~`Rh7Jl@6 ze7&mUIqYKN1e($t6h<;1=Yzl|WP6D7VZ27mrv%ZKZvN&{uKgg*k`!dc$MOhg5Q99( zVZGwP|Kbx>F_38vXC#7cB1#yKeC84hdGi{?Z$XyCkvnindVb!dg>W)%;6Z;s?+P2y%ExtV_j$O}|69D_UsaSk%;Kp!bN@#=6>En>9aV2h|6 zX|`)L2O4i~+-q;x#j5q-p7Zlm1p!K3n3OX@j&nK)@9`q8* zYf#Wln~P1&G?c4(5&4zN*-?U{Wsp`SVV8ufC+vc7RmHp@RUZwuqygXSmYYZy1y`C* z7a7=G-#kC=?w@y0-uCKh_x$X=Jp8`9_kQ2~4WZ%ZB7d3)rcd#m8-j|!(-Tn4%H$I%`D2+-yK0W;F?&`&RdU$v-Y9Idc_n^2< z&T<=XG%e#&8JA(`g_Y7+36Ph<2OH7d0MdgfZQJzMWd>%A0_-{O%d^~UqrOO;7jvql zNm`-{9LP$D4}Bm5_3e+dDrd=mfJ5PBNm9(MRb>7FMllSR5!#oh6Rd9Y;2*$?_H%1~ z4`64ca!GSuU)Rmk>oa`F9Ixzthq+L1<8B-gR%l(i5=W4R$;W1Ud2Lz2~HQYy$rq}piccAdEk)N6%=osx+zfF?YGBu=1 zjrFS;j-^EWo&c=MK+NB~K1s5+*Q0s8yWPEPFK>6=%kJ*+cKfpP8vQnX^*+meAozbK z%T~*xl&+~#C9pcIZ@gv^+ErjMoD$Mi4Eer0b2F8ovN))VwmqR6dBAap?oLPY;Qav7 ziI-}KjrWk;Kft2$__X_S^X~?VA#bfmu;+#?ea)sp8P&cUm<%y+=A~%5mok|G!Iq^M z`mSg)MZ($dQlFXaLHPQ3y`5)l(Py~_gq_X_j%1H}wN7c^zBIAz0g!6LIDISC5JSUk zk9QZASQ2nE?;|4IItQjpA3gWUeY8A4;vVkx$VoMR4!{8=A`5=K^VJZEn%O1ta30 zw3HPkH(?M1FP3}&+`M#dMYx&M7UjLXu!5lUY@JzY*@xlGs?xXaBR{pFj@Qy8mb7M2 z%`L@O`Q93%1kHto#Uw43D=crNY++?fIiC7i4!l-<&i6FT2)~0vi8dA#2M;e%4+!da zZO(J7CG+=;;UQEMgD8oEgJFr*wJioM4-PFSo9`VkPPRO72ZKS8dL%H1=X5V@FlW1c zY=1r%nscuP9;C4xW?4RqN(|l$?+s)*J>+1{GIak1cC{d-96*Q4NPg$RIR*x+&(;}5 zV@A2-hQ@4iCkM^glo?Oz5B@oeZQ%$#P%ASYCm%|Uk;$iM^UO=#t1!7}-D6paV?!Q9 z7mXrKgEghpDCvM>UOqOvq(qka-#x(#TgKsP9YsD+lv%tCA}^&ziMmAbDVZ6Nsr0ec zZN=oGNlgtaZT#aggF`K2(QcU?QBSkr4L6tV2X3bm@TSKo%6$kceF{-+%Qe7I8y-QZ z+i-*O)M$@%z1iu}&wN<(fXv92E}>lo22)$QdTkG~aD{e`WD%S1A$o|fk|>3J$Qg2} z*R~>ysoWa0-@`OpUMc00@Z$~b^&6{LM^u#9_Q^Y#8H`9MQJs=cOGecnoC8iAE=fRVCxhfSUHZsVcmyBwtaaEm_8My}g zE-?qo%@Ys@d!}u1d2^i`7(8W}Ls};$)QR7Hh$}YWl46w`3wc zW#0K)G)_jDZuXX~R#9eKq=joLDKjq6((yX#eDk+>ypB5Gk}aQDah%!Y#IwSzvuGL) zuOOnm(VpOKRHIZKDFsThnpb3I_8krhC_o8rPcjQ7-kMB_xWzQNWfB@dWx0d~Y2M5D z@b&)1le#OUUwBjzFAqHj=gu_n{961(@aV+^24%xMI4`X!m~5Rv^{xzyV4=)xX)TqR zZP^I@yg-Jwb?ZiNNmb-V5?c`sD=zN1ST%^x9zQ^wT_1|x(Wh_cFFBkTD>|~n-oB^p{k3;@bML+UyZ2=$-_?&4ql2&7 z+eT_$GeHEulBrZKrifLWP!%e?$$C+6$dV;hn}YKtEK?ZWi?6NFjLCdD{KM zX$qU4`VnxsYNHOMRCmYl`mhLCXVK^5%zXHS}ya zhY%E_YU;narM6q_}e_vi$a2#VXS!=0H)R#=} zE86jW0e-lMSM!2Zx7$i|>rOw(Zm&pi%aU8Bk$;cUG=ha1wV_{tna6?rd#6(4ZW=&k z%uR#fxfpVD61nqUzR4Dds;h12G3)9qx^$wNk#D|gZvmiwl6^sO`gEx5vmxd+Hz)Ka zN|}Z7(~Kt7( zl5%B{sInTK655wXd@acFsMtR+jsRQbqN#ZP_^qO1Ls?mE&UDAXLg zQ1xouxxP%^Z;r6k2B(135;ALN9j$Q@xz|9a+26!eL_R|%2Tyrcwa7%SM_o$x64rl6n(0Y7r76M95%oos z%lH)ef6bHl3!dvY>NwUj!7nJ?C3>G+)|4A{(&)W=WaStOvNbxZ2imZ{`43k98|r5D!bos|Y7m*KT-szM0ozRmG4^U7F) zIdOwj#QGT2;I-8gpDg0d%5ccs6+I29PeF!m;1=jjyQqdE}O}D)M}Q#%VsZwKB;; zrYb73VTJ^sLi5A$4tq>>rLe@TzY?H9GNof$)*$IO=$>Y`NL|ZbmZ|i`sEqA~$X!e} zCw-4Yb3gSojyNt2nVlU?Jv`Iwcoy%Ich?cM54bMONv9g*kDV^e=Xevh$q(N^xxy9$yIr=$%-YAyEi$`V_QkAj)&uU9{?E`8Z-Bbm;cY=WU4y#W>2097 z+wJ8so$dJYke{G={5*}K`%R(K4d8P{~rB_simhnz!Uw;&dw^uK}u3 z+#D{7*_@jl?ZI@i#wM)pW%4H&6*NJe^g+jmEKNwK#sW<=XU75!OjpMO4M-<%DIvG05T z@aimJeE`@=yvUFJv+P}f7WguNPgFX^=h*sqn~4@$`Fn6IAUauWdB7t$1d$)+4g-?o ztEVjahwN>d7BC&G{&+kWtG@;xeb-Upu4@aFj#tu~A}M6=%eFvQ#)0FtHN7R-6}D@T z7g_S*RtwyKaoz}74L>Me~cbGQhh6Q{TWA19g(W_M46Cl9An7{uUr@bLuB z0UQM3OF*4z=!Wn%X$IcVjb>~G9pBvo(EZM-pB2F&Na5G<+4IkS;7Y&xA$B^s`{_10 z2m$&06@0j#n*4>CpM>}=fxxFA%Ztwf`-##Oz3_Pq!jiq^@EMq4W#Eb{Jd*2oovEoB zJZ_DBnrNh>o&j{_+U~cfuwDdvk z{1c_`=A0#^LtFl&m@`n6+2=~;>RLMfD!R`C@8BRyj{6-twkyN}P6sMC0TsH;wR##x z;wnh%j2<_W;yf>2wEY~EpDA6BfNdOgpYk)MYl*k$eh$h{ldi4TZye`zzsACxN3y%a zeb9Qpo!gxCQv&XD(kBYs2IXIPa+b6>xQv&Or2;(BmvIwnPBX`!4w-w0%T>hotGzB_ zW{01>IB~b}+?PRkbQ;d<+_Uc>Y5gFKgK*#-97=axFau6IVGd$<+31v_qkL$u#*xg# zxjE0p0d8ow$IWR%9@N22LnFivP9DF!$F6M6ff;!q3j-3*!r4I_c`n=mzzn2*20XHq zbxJZ1Rog*)b^{N=z;P8?tMK|>^07x*Z^YJqO^BG7_?Qqeg5O1jzdn)|yZEZ52Gwm! zx|}lrZupgx(dXw}fo)Hneh%>s6Xh1WcD}J_#|uZsR=i&McGqq1{IoRoY<(6ZezF%%x)`@%OmV-61Z*B?N71bXH5^f)Owrat!!qA-Azl8ch<-I z-A+WKHxbOuiZ63wJDAY6GU^4kyGeb#hAvB(8`I4F2y;`mPH=nCn9ih;`}<9VWVoqNjLGP4vp_9g(R^ z+puL-M;>)tDZw7cR7w+B$D72NmwRGdn~k&ZT>W!Q{53jyQ>&a_8-vx3Ae1)jg}jDR z>JG5FOe2HRnkaA6|1FwwkcJUTxO_NPjn4L+UXnL3mu$(AtiVr4l9)|U6LM$ zWJafOsyLMZOwxgxnmW$XpD3!1k)~mAAhS_F`ujlIL4@Iij>3J3mJpOcE{1JMrBy#^ zk0Z53jK+rzsq?AqoTY8`Pc;}7Zyz9$^m;Kv-{?%4LO4uQA<-#^9}2^jVFOZi01KkWcp+(BE1dVZ&IDm!kbbn zh}bmig%*{G5;)))Q_JAVKNLy!phcsEe)O}$pMTaacx@9>We)|~;6S>h7t#t^NiK|)WI5!d7f6O_1yUT( zNoBHwIHg#M`7}#rhs;Fb9P|`Z<@1+cCznrVLaBWI@~bZCg|xz?RByyev3x@5`IEtf z^EV?o(fKPflg=;91|!Zt$?eq~UY$$E$@SA!%duyQsN!PzSbUUL&Us@XE~8w_DY%fM z9)Z7A#JL!=r<`zYVhJxGLZ)M;TZeTbpiy=498+toz6708QR%p%loLve4>+E33aL1o z5%vl7if(m+_T$q3DbG6eh85-}{(95+S{dqM+@@5@4U_lewn%J_II2`IBN36TV)|Kh zDjB)NRjp=-RW;WfaYhL#p~ESpf}B%n({uW#&%;Qlo5+5vrBY0k#R{RMKNKORHkR94mt| zYT}Zmk|dJlWdfpF%P-(kYWne=V$xZ`eJ#uh{C5ed3sE?!=(Y)Za)B7srcUZxwMa#_TDil$dxZCmTYhW2R8tha(_Y^m{qL`vIiV zGik#poUL8;PgNkLeXGMf@>^DWX*6m{DSuO}F(nIUUr8LYdeJ>*KN7)_(xV`)R^@5d zb?~pCKJq1-l%i0gI*xqDPTeUWTnyQfNseAZah=u@Fcu4?{!%})O20`6qEMmsQ^-}O zLVb;zVl)R8YYApA(sA@i&d(zW2Z=_#JW_S?NXf^e0T)+}fR=+tCj2{^=HAgX@8;E& z8s%Pn`Sw`EFrk1&X3JN-M5kKF+98KZTK%me&c&ELm826A50^ep$aKs!N`W{6YDJ;L zF~JuH6I9P3)tqp|@g$^#4yKR>a*m`;r`D_NGHG-!V^DlgvRB2NXoMQ53g~wV2p2uh7k2@$Qc-W}>lgF>gwreH?0s`Z4{HV+a546w3dO~sC56NiP!76T zC1EZq>YgToR&uo#fxfQ|B%h|U6&jvaNV!=to-xIkgB6P2Rj9aD(eGD^>^kFy4y(qn zfrrp=>td2m7e*YqFzL?*T}WA0OU1rej8!B}$@!wJRkid+O0|L!5lyOQ#*$mHvT0nQF6qJDFe10* zzmgWe=(i!0Og&^`S8NzJ!LC*h^|7i{Mg31j(`PfZvb5jOSUzt=L8q}_D5@zZ{YY%b zeMgM3a3U!UER^D}GR~02Rj8AdSmkPGSxTivJ|#~1g+EzVjW$K66ijJddY`hNQa$l@ z)M_UZauWE3n%1;T>BLmEW}*;FrjLS`q%|`uiXZilCisjmM|1xX&74e&na^XkyK8T|_zvPz4O8Cvm=C*uz&-y{7% z4Cr^#OffaqTu9jr5I=!3DwQ(WvHBLjVX{hUlkscv-+D%%c3UJN- zCAJLS{V44Wk^2o--|y%@#AeT+Sowi9*mMXt-2E-Dt(Q&2kOfd9X;84HcT?>qg z0m!rFAPeHNa$LEvb)26B2K%I6!N*Ft#4w}@1F=X$G0ucor9|yP_F0G_qz!YO?3+-*Ta<7`z&j93e(y6C4^wG05{0{d*EIHMmB9paxsSW0I1@ zMkvK(@-(Qo$|_3qbm^*hN5VK1wS{Y9WQ&JeJr4*CBl1?r+0-)gb@(_#>!zWXJ_&iU z)X)3~z-A|(g2h>R5gKm+MZ>-9i0foS=@tF{8$<|UE{Kd>;MXk4zXvP>lR=b%MTHX2Z<^uTh0uS0T5xwJ-E{VpT!h6{5B#zgSm6rPGqDomLv@ z%GE_{E{(YgXe_l z`&-jeuVU5i;=}eUb^!-+$G|_wWb`1q=VOqDSzTkRYZ9ImfyyfV?dq@c1ii6<*?%Pc z4z;>~hFgi=~(29YWVfDh-0gWygsW=8(Y4Sp<81yw%OP5tkF zl{hU6$&p@L3I*kdcQ-9ty`o`~yq3&u0PeTttNq6cwk$vafS6e`GpGpX>;1@H4z~SQ%ssLbf zYi4fEnOoQ9o+UIpz_{*~S;?d0z#r<*Q8g-Fy@O`C$=vaVwlj5$gKV271RB*yCzm9z zCxlUtS~v|%?aHme@TU2Nyy3C(#XfnjSBRz9VTd&s;<8~tC?IW@m=jrHBed~qq&Y6b z-(PWo1*VfIN=QFQwjQtA&?q5YdoJLW$ed8MYFg#As?WJrxoh_fih{;<6~w4UlGdO> zafJAwzllu>w8LcYhw`P2d{2wmZ(QK6=`cB{SjL}I!?$(NmR)p#c7Oj9{grk-$qnA! zKUez?@K0RY3|3#2;U9WJv&C_&d()fZlt5FuqbV&WQ$@Fgs%jejAg-vf0Lc zf2DsIM8LdqEsX#HrvVqbLcnGpds>{48F79#oODHc`wVP)n*3j)DrihA@`0$5ur?T6 zhJOqERnrn%)tAH&F3hi?*>%HgwVgn`W{)`&omJ z?S7;wP?@b~x>qkSz}~I?`Cni&P=T60FVvv|U=Tk$7AMPYG3luPcLJ3*naI zT01Y(G^15GO!!p<{|#%jd_{&J;fFj4X9}$oteL5GW$JlMOqmjP2=On_sMY`}G>3nI z%{|MA_7S7$9k4nDA;6P{r0mHP;^1o*d`*MDh>W%fs#<%bXVd!FjzPHP-YpKZj1tT64u?OR@TG{>uX<8+qdYqBRtK$%o#v&RK{s; zYNke-o0^~SFGpayeJM@v?e?CiA-R%;f)6#t^zU_H?YJNP;$rXTuq%vyTEX#8Ikc3? z8~p)?!=1o233rJNA+6Oj`h{4o-l>T`9GyRCNY)!Pktz*a6?LpEnq6She40t9vCjun zkA1}7+={CETv27s8CVkoR2R)ZSEkWCY%WhyFQQE1;mwGs>P5vdHax_}doxeN19veK z9=g}TD;8|_h5de*0ZrHEMUuf5T2&v-+q0ld8%^Fnli#&;TYG+mrL_KrmQ*fK-;lAn z0FQiaaSZ*b7dRv>aU}8X_Tf z)|{OuX8W=Fodi*J_3HPa_=cy4gL6F69`#}|V{2+`&5S+wsK^7FDcH5KReoc4R{SD~f&=$kmZ&6RN(m%o51oeD;*YqjyrLhGw91E( z$tfD{w=_c)N&Czoz-Rn74v>KLa}~lafeI4u?VJV0zD5H?BMW&77Mw>I&7kkl^T6sO zDgPU6kU)%wvd|ZSfB421JQXHvat%$cVf$B^TqBcw@mu{Hmi}8({=fh8f1&uU65k0S^sZ!SU~75obC-kYH;PY}GK* zr$kZYHE4hp{eO>Lzc0qpI`}A2Wns+>D5s^&DfXuF=rQ)nw!}I1Rt60pWXJdVt@#a5 zz5dnyl6L*kubV?w(MnP$G~P=UH(n;TbQzXyO=?V6!Aa@#OY1g_vDD4`pKfG#%tPD1?a=>2GIod8jtl?$3 z6}o7?*AV_>jX$}rzNW!(Aqz#*6r6#^M>pIL)W}$Jv%lXq61Kjs3OXh}2slhpeZOvg z|0K3URfKczoYnSZI}OzxNb_OvU&-i~d@pE>x$ntezv5O_D#8D$naVJ~1cg2QShGKn z(oAn6BgLNk>qszKCL5vq(z+kGFBfv)XK<*}2uOZM)St=UA5q#2r{X`+6ny*hIttEY zFU0y>2GsLu?biJ(O&s>i)o(b+8h$A-b>Xkxeuk=Wj0L+I;74+r@keq4%`pMAs|GvX zq5nZni)4Vd2;cn-&xFB(3x8LHA1ibw6g@-GTKVr`{J~$p{k*QU>B&lZKMv9+T}Pr# zPOvcTHPv2M+G})zwOAwV?JQ9eCf*5(T*yT>IR3oa;_pS4_TU7oJ84rttu9Fbv8^1o zVfZeC&N+!blPJu(4s(f2JhC5!BCw~5&ov#s`SDp=hK5?RP?yZi75Rlos``0#u3TA8 zuJy|`3@2MIYSFv^X|AeA0@Y&A=mCZSdH!dS4)nbY{AU^DK_Q!n%^;8bPa*|`vib=| zG=l>!v|WYYpo%81SL|XJ(MX{W0$E-Ew5B#2yHkAQOJt`G0eHJ;3T;vnLm8Dh`8;xiMZ znEWK41nOUE)W35beKzS$PiP3*s6ptzRO#Adk`Be683Ie=`txW0b2?b>i^MOSU-PkG zH=d~C|5AB$#~2U(3+Krkd1HQ|5BXOPxf;u@`e!)?d4H{V+e17a_g4;AEZIx@&rL6> zZ<0a3(Q@m5<~)R=Vrw1O{^y2wT(OD-{Vd_$|H4%ic-w*&?7vj7cuPbZ@n1MZEHVsM zWJ$S)W0`MB((R=8akK-yG=CQ9lsPz+uoHFwv7ZGAx|9x%*4{vd4Zz+}k)Spd^@H&8 zG<1j{UR8HvwAx!KN+P*tlIW(qS`zj1iUc;lxJO4NVb5<}U8>RQ;C?k3fj|9!u!AE; D-I%$c diff --git a/docs/html/searchindex.js b/docs/html/searchindex.js index 7e8cfebf..043a0073 100644 --- a/docs/html/searchindex.js +++ b/docs/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"A v2 interface/method/class does not display a deprecation warning correctly or at all": [[56, "a-v2-interface-method-class-does-not-display-a-deprecation-warning-correctly-or-at-all"]], "API": [[0, "api"]], "API Reference": [[39, null]], "Accessing SDK clients": [[41, "accessing-sdk-clients"]], "Accessing SDK clients via ClientManager instance": [[47, "accessing-sdk-clients-via-clientmanager-instance"]], "Accessing manager class instances": [[41, "accessing-manager-class-instances"]], "Accessing state": [[43, "accessing-state"]], "Account management": [[40, null]], "AccountAssetInformation": [[46, "accountassetinformation"]], "AccountManager": [[40, "accountmanager"]], "Accounts": [[40, "accounts"]], "Additional Features": [[42, "additional-features"]], "After:": [[56, "after"], [56, "id2"]], "Algo amount handling": [[42, null]], "Algo transfers (payments)": [[53, null]], "AlgoAmount": [[42, "algoamount"]], "AlgoKit Python Utilities": [[55, null]], "AlgoKitLogger": [[48, "algokitlogger"]], "Algorand client": [[41, null]], "App Clients": [[43, "app-clients"]], "App client and App factory": [[44, null]], "App deployment": [[45, null]], "App is deployed": [[54, "app-is-deployed"]], "App is not deployed": [[54, "app-is-not-deployed"]], "App management": [[43, null]], "App spec methods": [[44, "app-spec-methods"]], "AppClient": [[44, "appclient"]], "AppDeployer": [[45, "appdeployer"]], "AppFactory": [[44, "appfactory"]], "AppManager": [[43, "appmanager"]], "Application-specific Result Types": [[51, "application-specific-result-types"]], "Asset Information": [[46, "asset-information"]], "AssetInformation": [[46, "assetinformation"]], "AssetManager": [[46, "assetmanager"]], "Assets": [[46, null]], "Attributes": [[5, "attributes"], [6, "attributes"], [7, "attributes"], [9, "attributes"], [10, "attributes"], [18, "attributes"], [20, "attributes"], [24, "attributes"], [25, "attributes"], [30, "attributes"], [31, "attributes"], [36, "attributes"]], "Automatic retry": [[47, "automatic-retry"]], "Basic Test Setup": [[50, "basic-test-setup"]], "Before:": [[56, "before"], [56, "id1"]], "Best Practices": [[56, "best-practices"]], "Box references": [[43, "box-references"]], "Boxes": [[43, "boxes"]], "Breaking Changes": [[56, "breaking-changes"]], "Bulk Operations": [[46, "bulk-operations"]], "Bulk Opt-In": [[46, "bulk-opt-in"]], "Bulk Opt-Out": [[46, "bulk-opt-out"]], "Calling apps": [[43, "calling-apps"]], "Calling the app": [[44, "calling-the-app"]], "Capabilities": [[55, "capabilities"]], "Classes": [[0, "classes"], [1, "classes"], [3, "classes"], [4, "classes"], [5, "classes"], [6, "classes"], [7, "classes"], [8, "classes"], [9, "classes"], [10, "classes"], [11, "classes"], [13, "classes"], [15, "classes"], [17, "classes"], [18, "classes"], [20, "classes"], [22, "classes"], [24, "classes"], [25, "classes"], [26, "classes"], [28, "classes"], [29, "classes"], [30, "classes"], [31, "classes"], [32, "classes"], [34, "classes"], [36, "classes"], [37, "classes"], [38, "classes"]], "Client management": [[47, null]], "Client usage": [[54, "client-usage"]], "ClientManager": [[47, "clientmanager"]], "Clients": [[47, "clients"]], "Common app parameters": [[43, "common-app-parameters"]], "Compilation": [[43, "compilation"]], "Compilation and template substitution": [[45, "compilation-and-template-substitution"]], "Composing a group of transactions": [[41, "composing-a-group-of-transactions"]], "Config and logging": [[55, "config-and-logging"]], "Config singleton": [[55, "config-singleton"]], "Configuration": [[48, "configuration"]], "Constructing a transaction": [[52, "constructing-a-transaction"]], "Contents": [[55, null]], "Core principles": [[55, "core-principles"]], "Covering App Call Inner Transaction Fees": [[52, "covering-app-call-inner-transaction-fees"]], "Covering App Call Op Budget": [[52, "covering-app-call-op-budget"]], "Create": [[44, "create"]], "Creating Test Assets": [[50, "creating-test-assets"]], "Creating a Dispenser Client": [[49, "creating-a-dispenser-client"]], "Creating a TestNet dispenser API client instance": [[47, "creating-a-testnet-dispenser-api-client-instance"]], "Creating a typed factory instance": [[54, "creating-a-typed-factory-instance"]], "Creating an AlgoAmount": [[42, "creating-an-algoamount"]], "Creating an SDK client instance": [[47, "creating-an-sdk-client-instance"]], "Creating and deploying an app": [[44, "creating-and-deploying-an-app"]], "Creating and issuing transactions": [[41, "creating-and-issuing-transactions"]], "Creating transactions": [[41, "creating-transactions"]], "Data": [[0, "data"]], "Debug mode": [[55, "debug-mode"]], "Debugger": [[48, null]], "Debugging Utilities": [[48, "debugging-utilities"]], "Default arguments": [[44, "default-arguments"]], "Default signer": [[40, "default-signer"]], "Deployment metadata": [[45, "deployment-metadata"]], "Dispenser": [[40, "dispenser"], [53, "dispenser"]], "Dynamically creating clients for a given app spec": [[44, "dynamically-creating-clients-for-a-given-app-spec"]], "Error Handling": [[49, "error-handling"]], "Examples": [[40, "examples"], [53, "examples"]], "Exceptions": [[22, "exceptions"]], "Extracting a value from AlgoAmount": [[42, "extracting-a-value-from-algoamount"]], "Functions": [[0, "functions"], [5, "functions"], [6, "functions"], [22, "functions"], [25, "functions"], [36, "functions"]], "Funding an Account": [[49, "funding-an-account"]], "Funding the app account": [[44, "funding-the-app-account"]], "Further reading": [[51, "further-reading"]], "Generating a typed client": [[54, "generating-a-typed-client"]], "Generating an app spec": [[54, "generating-an-app-spec"]], "Generic methods": [[44, "generic-methods"]], "Get Asset Information": [[46, "get-asset-information"]], "Get a signer": [[40, "get-a-signer"]], "Getting Account Holdings": [[46, "getting-account-holdings"]], "Getting Asset Parameters": [[46, "getting-asset-parameters"]], "Getting Current Limit": [[49, "getting-current-limit"]], "Getting a typed client instance": [[54, "getting-a-typed-client-instance"]], "Getting app information": [[43, "getting-app-information"]], "Global state": [[43, "global-state"]], "Handling logic errors and diagnosing errors": [[44, "handling-logic-errors-and-diagnosing-errors"]], "Idempotency": [[45, "idempotency"]], "Input parameters": [[45, "input-parameters"]], "Installation": [[55, "installation"]], "KMD account management": [[40, "kmd-account-management"]], "Local state": [[43, "local-state"]], "Logging": [[55, "logging"]], "Lookup deployed apps by name": [[45, "lookup-deployed-apps-by-name"]], "Making updatable/deletable apps": [[45, "making-updatable-deletable-apps"]], "Migration Guide - v3": [[56, null]], "Migration Steps": [[56, "migration-steps"]], "Module Contents": [[1, "module-contents"], [3, "module-contents"], [4, "module-contents"], [5, "module-contents"], [6, "module-contents"], [7, "module-contents"], [8, "module-contents"], [9, "module-contents"], [10, "module-contents"], [11, "module-contents"], [13, "module-contents"], [15, "module-contents"], [17, "module-contents"], [18, "module-contents"], [20, "module-contents"], [22, "module-contents"], [24, "module-contents"], [25, "module-contents"], [26, "module-contents"], [28, "module-contents"], [29, "module-contents"], [30, "module-contents"], [31, "module-contents"], [32, "module-contents"], [34, "module-contents"], [36, "module-contents"], [37, "module-contents"], [38, "module-contents"]], "Network configuration": [[47, "network-configuration"]], "Network information": [[47, "network-information"]], "Package Contents": [[0, "package-contents"]], "Performing a deployment": [[45, "performing-a-deployment"]], "Prerequisites": [[56, "prerequisites"]], "Read-only calls": [[52, "read-only-calls"]], "Reading state": [[44, "reading-state"]], "Reference documentation": [[55, "reference-documentation"]], "Registering a Refund": [[49, "registering-a-refund"]], "Registering a signer": [[40, "registering-a-signer"]], "Rekey account": [[40, "rekey-account"]], "Resource Population": [[52, "resource-population"]], "Return value": [[45, "return-value"]], "SendAtomicTransactionComposerResults": [[51, "sendatomictransactioncomposerresults"]], "SendSingleTransactionResult": [[51, "sendsingletransactionresult"]], "Sending a single transaction": [[41, "sending-a-single-transaction"]], "Simulate without signing": [[52, "simulate-without-signing"]], "Simulating a transaction": [[52, "simulating-a-transaction"]], "Smart contract development lifecycle": [[45, "smart-contract-development-lifecycle"]], "Step 1 - Replace SDK Clients with AlgorandClient": [[56, "step-1-replace-sdk-clients-with-algorandclient"]], "Step 2 - Update Account Management": [[56, "step-2-update-account-management"]], "Step 3 - Update Transaction Management": [[56, "step-3-update-transaction-management"]], "Step 4 - Update ApplicationSpecification usage": [[56, "step-4-update-applicationspecification-usage"]], "Step 5 - Replace ApplicationClient usage": [[56, "step-5-replace-applicationclient-usage"]], "Step 6 - Replace typed app client usage": [[56, "step-6-replace-typed-app-client-usage"]], "Step 7 - Update AppClient State Management": [[56, "step-7-update-appclient-state-management"]], "Step 8 - Update Asset Management": [[56, "step-8-update-asset-management"]], "Submodules": [[2, "submodules"], [12, "submodules"], [14, "submodules"], [16, "submodules"], [19, "submodules"], [21, "submodules"], [23, "submodules"], [27, "submodules"], [33, "submodules"], [35, "submodules"]], "Suppressing log messages globally": [[48, "suppressing-log-messages-globally"]], "Suppressing log messages per log call": [[48, "suppressing-log-messages-per-log-call"]], "TestNet Dispenser Client": [[49, null]], "Testing": [[50, null], [55, "testing"]], "Testing Application Calls": [[50, "testing-application-calls"]], "Testing Application Deployments": [[50, "testing-application-deployments"]], "Testing Asset Transfers": [[50, "testing-asset-transfers"]], "Testing Box Storage": [[50, "testing-box-storage"]], "Trace filename format": [[48, "trace-filename-format"]], "Transaction Results": [[51, "transaction-results"]], "Transaction composer": [[52, null]], "Transaction configuration": [[41, "transaction-configuration"]], "Transaction management": [[51, null]], "Transaction parameters": [[41, "transaction-parameters"]], "TransactionSignerAccountProtocol": [[40, "transactionsigneraccountprotocol"]], "Troubleshooting": [[56, "troubleshooting"]], "Typed application clients": [[54, null]], "Types": [[55, "types"]], "Underlying account classes": [[40, "underlying-account-classes"]], "Updating and deleting an app": [[44, "updating-and-deleting-an-app"]], "Usage": [[55, "usage"]], "Useful scenario of converting v2 to v3 not covered in generic migration guide": [[56, "useful-scenario-of-converting-v2-to-v3-not-covered-in-generic-migration-guide"]], "Where You\u2019ll Encounter Each Result Type": [[51, "where-you-ll-encounter-each-result-type"]], "algokit_utils": [[0, null], [23, null]], "algokit_utils.accounts": [[2, null]], "algokit_utils.accounts.account_manager": [[1, null]], "algokit_utils.accounts.kmd_account_manager": [[3, null]], "algokit_utils.algorand": [[4, null]], "algokit_utils.applications": [[14, null]], "algokit_utils.applications.abi": [[5, null]], "algokit_utils.applications.app_client": [[6, null]], "algokit_utils.applications.app_deployer": [[7, null]], "algokit_utils.applications.app_factory": [[8, null]], "algokit_utils.applications.app_manager": [[9, null]], "algokit_utils.applications.app_spec": [[12, null]], "algokit_utils.applications.app_spec.arc32": [[10, null]], "algokit_utils.applications.app_spec.arc56": [[11, null]], "algokit_utils.applications.enums": [[13, null]], "algokit_utils.assets": [[16, null]], "algokit_utils.assets.asset_manager": [[15, null]], "algokit_utils.clients": [[19, null]], "algokit_utils.clients.client_manager": [[17, null]], "algokit_utils.clients.dispenser_api_client": [[18, null]], "algokit_utils.config": [[20, null]], "algokit_utils.errors": [[21, null]], "algokit_utils.errors.logic_error": [[22, null]], "algokit_utils.models": [[27, null]], "algokit_utils.models.account": [[24, null]], "algokit_utils.models.amount": [[25, null]], "algokit_utils.models.application": [[26, null]], "algokit_utils.models.network": [[28, null]], "algokit_utils.models.simulate": [[29, null]], "algokit_utils.models.state": [[30, null]], "algokit_utils.models.transaction": [[31, null]], "algokit_utils.protocols": [[33, null]], "algokit_utils.protocols.account": [[32, null]], "algokit_utils.protocols.typed_clients": [[34, null]], "algokit_utils.transactions": [[35, null]], "algokit_utils.transactions.transaction_composer": [[36, null]], "algokit_utils.transactions.transaction_creator": [[37, null]], "algokit_utils.transactions.transaction_sender": [[38, null]], "ensure_funded": [[53, "ensure-funded"]], "payment": [[53, "payment"]]}, "docnames": ["apidocs/algokit_utils/algokit_utils", "autoapi/algokit_utils/accounts/account_manager/index", "autoapi/algokit_utils/accounts/index", "autoapi/algokit_utils/accounts/kmd_account_manager/index", "autoapi/algokit_utils/algorand/index", "autoapi/algokit_utils/applications/abi/index", "autoapi/algokit_utils/applications/app_client/index", "autoapi/algokit_utils/applications/app_deployer/index", "autoapi/algokit_utils/applications/app_factory/index", "autoapi/algokit_utils/applications/app_manager/index", "autoapi/algokit_utils/applications/app_spec/arc32/index", "autoapi/algokit_utils/applications/app_spec/arc56/index", "autoapi/algokit_utils/applications/app_spec/index", "autoapi/algokit_utils/applications/enums/index", "autoapi/algokit_utils/applications/index", "autoapi/algokit_utils/assets/asset_manager/index", "autoapi/algokit_utils/assets/index", "autoapi/algokit_utils/clients/client_manager/index", "autoapi/algokit_utils/clients/dispenser_api_client/index", "autoapi/algokit_utils/clients/index", "autoapi/algokit_utils/config/index", "autoapi/algokit_utils/errors/index", "autoapi/algokit_utils/errors/logic_error/index", "autoapi/algokit_utils/index", "autoapi/algokit_utils/models/account/index", "autoapi/algokit_utils/models/amount/index", "autoapi/algokit_utils/models/application/index", "autoapi/algokit_utils/models/index", "autoapi/algokit_utils/models/network/index", "autoapi/algokit_utils/models/simulate/index", "autoapi/algokit_utils/models/state/index", "autoapi/algokit_utils/models/transaction/index", "autoapi/algokit_utils/protocols/account/index", "autoapi/algokit_utils/protocols/index", "autoapi/algokit_utils/protocols/typed_clients/index", "autoapi/algokit_utils/transactions/index", "autoapi/algokit_utils/transactions/transaction_composer/index", "autoapi/algokit_utils/transactions/transaction_creator/index", "autoapi/algokit_utils/transactions/transaction_sender/index", "autoapi/index", "capabilities/account", "capabilities/algorand-client", "capabilities/amount", "capabilities/app", "capabilities/app-client", "capabilities/app-deploy", "capabilities/asset", "capabilities/client", "capabilities/debugging", "capabilities/dispenser-client", "capabilities/testing", "capabilities/transaction", "capabilities/transaction-composer", "capabilities/transfer", "capabilities/typed-app-clients", "index", "v3-migration-guide"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["apidocs/algokit_utils/algokit_utils.md", "autoapi/algokit_utils/accounts/account_manager/index.rst", "autoapi/algokit_utils/accounts/index.rst", "autoapi/algokit_utils/accounts/kmd_account_manager/index.rst", "autoapi/algokit_utils/algorand/index.rst", "autoapi/algokit_utils/applications/abi/index.rst", "autoapi/algokit_utils/applications/app_client/index.rst", "autoapi/algokit_utils/applications/app_deployer/index.rst", "autoapi/algokit_utils/applications/app_factory/index.rst", "autoapi/algokit_utils/applications/app_manager/index.rst", "autoapi/algokit_utils/applications/app_spec/arc32/index.rst", "autoapi/algokit_utils/applications/app_spec/arc56/index.rst", "autoapi/algokit_utils/applications/app_spec/index.rst", "autoapi/algokit_utils/applications/enums/index.rst", "autoapi/algokit_utils/applications/index.rst", "autoapi/algokit_utils/assets/asset_manager/index.rst", "autoapi/algokit_utils/assets/index.rst", "autoapi/algokit_utils/clients/client_manager/index.rst", "autoapi/algokit_utils/clients/dispenser_api_client/index.rst", "autoapi/algokit_utils/clients/index.rst", "autoapi/algokit_utils/config/index.rst", "autoapi/algokit_utils/errors/index.rst", "autoapi/algokit_utils/errors/logic_error/index.rst", "autoapi/algokit_utils/index.rst", "autoapi/algokit_utils/models/account/index.rst", "autoapi/algokit_utils/models/amount/index.rst", "autoapi/algokit_utils/models/application/index.rst", "autoapi/algokit_utils/models/index.rst", "autoapi/algokit_utils/models/network/index.rst", "autoapi/algokit_utils/models/simulate/index.rst", "autoapi/algokit_utils/models/state/index.rst", "autoapi/algokit_utils/models/transaction/index.rst", "autoapi/algokit_utils/protocols/account/index.rst", "autoapi/algokit_utils/protocols/index.rst", "autoapi/algokit_utils/protocols/typed_clients/index.rst", "autoapi/algokit_utils/transactions/index.rst", "autoapi/algokit_utils/transactions/transaction_composer/index.rst", "autoapi/algokit_utils/transactions/transaction_creator/index.rst", "autoapi/algokit_utils/transactions/transaction_sender/index.rst", "autoapi/index.rst", "capabilities/account.md", "capabilities/algorand-client.md", "capabilities/amount.md", "capabilities/app.md", "capabilities/app-client.md", "capabilities/app-deploy.md", "capabilities/asset.md", "capabilities/client.md", "capabilities/debugging.md", "capabilities/dispenser-client.md", "capabilities/testing.md", "capabilities/transaction.md", "capabilities/transaction-composer.md", "capabilities/transfer.md", "capabilities/typed-app-clients.md", "index.md", "v3-migration-guide.md"], "indexentries": {"abi_return (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.abi_return", false]], "abi_return (algokit_utils.transactions.transaction_sender.sendapptransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendAppTransactionResult.abi_return", false]], "abiargumenttype (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.ABIArgumentType", false]], "abicallargs (class in algokit_utils)": [[0, "algokit_utils.ABICallArgs", false]], "abicallargsdict (class in algokit_utils)": [[0, "algokit_utils.ABICallArgsDict", false]], "abicreatecallargs (class in algokit_utils)": [[0, "algokit_utils.ABICreateCallArgs", false]], "abicreatecallargsdict (class in algokit_utils)": [[0, "algokit_utils.ABICreateCallArgsDict", false]], "abireturn (class in algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.ABIReturn", false]], "abistruct (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.ABIStruct", false]], "abitransactionresponse (class in algokit_utils)": [[0, "algokit_utils.ABITransactionResponse", false]], "abitype (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.ABIType", false]], "abivalue (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.ABIValue", false]], "account (algokit_utils.algorand.algorandclient property)": [[4, "algokit_utils.algorand.AlgorandClient.account", false]], "account (algokit_utils.transactions.transaction_composer.assetfreezeparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetFreezeParams.account", false]], "account (class in algokit_utils)": [[0, "algokit_utils.Account", false]], "account_references (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.account_references", false]], "account_references (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.account_references", false]], "account_references (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.account_references", false]], "account_references (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteParams.account_references", false]], "account_references (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams.account_references", false]], "account_to_fund (algokit_utils.ensurebalanceparameters attribute)": [[0, "algokit_utils.EnsureBalanceParameters.account_to_fund", false]], "accountassetinformation (class in algokit_utils.assets.asset_manager)": [[15, "algokit_utils.assets.asset_manager.AccountAssetInformation", false]], "accountinformation (class in algokit_utils.accounts.account_manager)": [[1, "algokit_utils.accounts.account_manager.AccountInformation", false]], "accountmanager (class in algokit_utils.accounts.account_manager)": [[1, "algokit_utils.accounts.account_manager.AccountManager", false]], "accounts (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Recommendations.accounts", false]], "accounts (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.accounts", false]], "accounts (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.accounts", false]], "actions (algokit_utils.applications.app_spec.arc56.method attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Method.actions", false]], "actions (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Actions", false]], "add_app_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_call", false]], "add_app_call_method_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_call_method_call", false]], "add_app_create() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_create", false]], "add_app_create_method_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_create_method_call", false]], "add_app_delete() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_delete", false]], "add_app_delete_method_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_delete_method_call", false]], "add_app_update() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_update", false]], "add_app_update_method_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_update_method_call", false]], "add_asset_config() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_config", false]], "add_asset_create() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_create", false]], "add_asset_destroy() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_destroy", false]], "add_asset_freeze() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_freeze", false]], "add_asset_opt_in() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_opt_in", false]], "add_asset_opt_out() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_opt_out", false]], "add_asset_transfer() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_transfer", false]], "add_atc() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_atc", false]], "add_method_call() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.add_method_call", false]], "add_offline_key_registration() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_offline_key_registration", false]], "add_online_key_registration() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_online_key_registration", false]], "add_payment() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_payment", false]], "add_transaction() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_transaction", false]], "address (algokit_utils.account attribute)": [[0, "algokit_utils.Account.address", false]], "address (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.address", false]], "address (algokit_utils.models.account.logicsigaccount property)": [[24, "algokit_utils.models.account.LogicSigAccount.address", false]], "address (algokit_utils.models.account.multisigaccount property)": [[24, "algokit_utils.models.account.MultiSigAccount.address", false]], "address (algokit_utils.models.account.signingaccount attribute)": [[24, "algokit_utils.models.account.SigningAccount.address", false]], "address (algokit_utils.models.account.transactionsigneraccount attribute)": [[24, "algokit_utils.models.account.TransactionSignerAccount.address", false]], "address (algokit_utils.protocols.account.transactionsigneraccountprotocol property)": [[32, "algokit_utils.protocols.account.TransactionSignerAccountProtocol.address", false]], "addresses (algokit_utils.models.account.multisigmetadata attribute)": [[24, "algokit_utils.models.account.MultisigMetadata.addresses", false]], "algo (algokit_utils.clients.dispenser_api_client.dispenserassetname attribute)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserAssetName.ALGO", false]], "algo (algokit_utils.models.amount.algoamount property)": [[25, "algokit_utils.models.amount.AlgoAmount.algo", false]], "algo() (in module algokit_utils.models.amount)": [[25, "algokit_utils.models.amount.algo", false]], "algoamount (class in algokit_utils.models.amount)": [[25, "algokit_utils.models.amount.AlgoAmount", false]], "algoclientconfig (class in algokit_utils)": [[0, "algokit_utils.AlgoClientConfig", false]], "algoclientconfigs (class in algokit_utils.models.network)": [[28, "algokit_utils.models.network.AlgoClientConfigs", false]], "algoclientnetworkconfig (class in algokit_utils.models.network)": [[28, "algokit_utils.models.network.AlgoClientNetworkConfig", false]], "algod (algokit_utils.applications.app_spec.arc56.compiler attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Compiler.ALGOD", false]], "algod (algokit_utils.clients.client_manager.algosdkclients attribute)": [[17, "algokit_utils.clients.client_manager.AlgoSdkClients.algod", false]], "algod (algokit_utils.clients.client_manager.clientmanager property)": [[17, "algokit_utils.clients.client_manager.ClientManager.algod", false]], "algod_config (algokit_utils.models.network.algoclientconfigs attribute)": [[28, "algokit_utils.models.network.AlgoClientConfigs.algod_config", false]], "algokit_config_filename (in module algokit_utils.config)": [[20, "algokit_utils.config.ALGOKIT_CONFIG_FILENAME", false]], "algokit_project_root (in module algokit_utils.config)": [[20, "algokit_utils.config.ALGOKIT_PROJECT_ROOT", false]], "algokit_utils": [[0, "module-algokit_utils", false], [23, "module-algokit_utils", false]], "algokit_utils.accounts": [[2, "module-algokit_utils.accounts", false]], "algokit_utils.accounts.account_manager": [[1, "module-algokit_utils.accounts.account_manager", false]], "algokit_utils.accounts.kmd_account_manager": [[3, "module-algokit_utils.accounts.kmd_account_manager", false]], "algokit_utils.algorand": [[4, "module-algokit_utils.algorand", false]], "algokit_utils.applications": [[14, "module-algokit_utils.applications", false]], "algokit_utils.applications.abi": [[5, "module-algokit_utils.applications.abi", false]], "algokit_utils.applications.app_client": [[6, "module-algokit_utils.applications.app_client", false]], "algokit_utils.applications.app_deployer": [[7, "module-algokit_utils.applications.app_deployer", false]], "algokit_utils.applications.app_factory": [[8, "module-algokit_utils.applications.app_factory", false]], "algokit_utils.applications.app_manager": [[9, "module-algokit_utils.applications.app_manager", false]], "algokit_utils.applications.app_spec": [[12, "module-algokit_utils.applications.app_spec", false]], "algokit_utils.applications.app_spec.arc32": [[10, "module-algokit_utils.applications.app_spec.arc32", false]], "algokit_utils.applications.app_spec.arc56": [[11, "module-algokit_utils.applications.app_spec.arc56", false]], "algokit_utils.applications.enums": [[13, "module-algokit_utils.applications.enums", false]], "algokit_utils.assets": [[16, "module-algokit_utils.assets", false]], "algokit_utils.assets.asset_manager": [[15, "module-algokit_utils.assets.asset_manager", false]], "algokit_utils.clients": [[19, "module-algokit_utils.clients", false]], "algokit_utils.clients.client_manager": [[17, "module-algokit_utils.clients.client_manager", false]], "algokit_utils.clients.dispenser_api_client": [[18, "module-algokit_utils.clients.dispenser_api_client", false]], "algokit_utils.config": [[20, "module-algokit_utils.config", false]], "algokit_utils.errors": [[21, "module-algokit_utils.errors", false]], "algokit_utils.errors.logic_error": [[22, "module-algokit_utils.errors.logic_error", false]], "algokit_utils.models": [[27, "module-algokit_utils.models", false]], "algokit_utils.models.account": [[24, "module-algokit_utils.models.account", false]], "algokit_utils.models.amount": [[25, "module-algokit_utils.models.amount", false]], "algokit_utils.models.application": [[26, "module-algokit_utils.models.application", false]], "algokit_utils.models.network": [[28, "module-algokit_utils.models.network", false]], "algokit_utils.models.simulate": [[29, "module-algokit_utils.models.simulate", false]], "algokit_utils.models.state": [[30, "module-algokit_utils.models.state", false]], "algokit_utils.models.transaction": [[31, "module-algokit_utils.models.transaction", false]], "algokit_utils.protocols": [[33, "module-algokit_utils.protocols", false]], "algokit_utils.protocols.account": [[32, "module-algokit_utils.protocols.account", false]], "algokit_utils.protocols.typed_clients": [[34, "module-algokit_utils.protocols.typed_clients", false]], "algokit_utils.transactions": [[35, "module-algokit_utils.transactions", false]], "algokit_utils.transactions.transaction_composer": [[36, "module-algokit_utils.transactions.transaction_composer", false]], "algokit_utils.transactions.transaction_creator": [[37, "module-algokit_utils.transactions.transaction_creator", false]], "algokit_utils.transactions.transaction_sender": [[38, "module-algokit_utils.transactions.transaction_sender", false]], "algokitlogger (class in algokit_utils.config)": [[20, "algokit_utils.config.AlgoKitLogger", false]], "algorand (algokit_utils.applications.app_client.appclient property)": [[6, "algokit_utils.applications.app_client.AppClient.algorand", false]], "algorand (algokit_utils.applications.app_client.appclientparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientParams.algorand", false]], "algorand (algokit_utils.applications.app_factory.appfactory property)": [[8, "algokit_utils.applications.app_factory.AppFactory.algorand", false]], "algorand (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryParams.algorand", false]], "algorand_min_tx_fee (in module algokit_utils.models.amount)": [[25, "algokit_utils.models.amount.ALGORAND_MIN_TX_FEE", false]], "algorandclient (class in algokit_utils.algorand)": [[4, "algokit_utils.algorand.AlgorandClient", false]], "algorandclienttransactioncreator (class in algokit_utils.transactions.transaction_creator)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator", false]], "algorandclienttransactionsender (class in algokit_utils.transactions.transaction_sender)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender", false]], "algosdkclients (class in algokit_utils.clients.client_manager)": [[17, "algokit_utils.clients.client_manager.AlgoSdkClients", false]], "all (algokit_utils.applications.app_spec.arc32.callconfig attribute)": [[10, "algokit_utils.applications.app_spec.arc32.CallConfig.ALL", false]], "all (algokit_utils.callconfig attribute)": [[0, "algokit_utils.CallConfig.ALL", false]], "amount (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.amount", false]], "amount (algokit_utils.applications.app_client.fundappaccountparams attribute)": [[6, "algokit_utils.applications.app_client.FundAppAccountParams.amount", false]], "amount (algokit_utils.clients.dispenser_api_client.dispenserfundresponse attribute)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserFundResponse.amount", false]], "amount (algokit_utils.clients.dispenser_api_client.dispenserlimitresponse attribute)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserLimitResponse.amount", false]], "amount (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetTransferParams.amount", false]], "amount (algokit_utils.transactions.transaction_composer.paymentparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.PaymentParams.amount", false]], "amount_without_pending_rewards (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.amount_without_pending_rewards", false]], "app (algokit_utils.algorand.algorandclient property)": [[4, "algokit_utils.algorand.AlgorandClient.app", false]], "app (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployResult.app", false]], "app (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryDeployResult.app", false]], "app (algokit_utils.applications.app_spec.arc56.boxes attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Boxes.app", false]], "app_address (algokit_utils.applications.app_client.appclient property)": [[6, "algokit_utils.applications.app_client.AppClient.app_address", false]], "app_address (algokit_utils.applications.app_deployer.applicationmetadata property)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.app_address", false]], "app_address (algokit_utils.applications.app_deployer.applicationreference attribute)": [[7, "algokit_utils.applications.app_deployer.ApplicationReference.app_address", false]], "app_address (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.app_address", false]], "app_address (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.app_address", false]], "app_address (algokit_utils.transactions.transaction_sender.sendappcreatetransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendAppCreateTransactionResult.app_address", false]], "app_budget_added (algokit_utils.models.simulate.simulationtrace attribute)": [[29, "algokit_utils.models.simulate.SimulationTrace.app_budget_added", false]], "app_budget_consumed (algokit_utils.models.simulate.simulationtrace attribute)": [[29, "algokit_utils.models.simulate.SimulationTrace.app_budget_consumed", false]], "app_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_call", false]], "app_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_call", false]], "app_call_method_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_call_method_call", false]], "app_call_method_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_call_method_call", false]], "app_create (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_create", false]], "app_create() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_create", false]], "app_create_method_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_create_method_call", false]], "app_create_method_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_create_method_call", false]], "app_delete (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_delete", false]], "app_delete() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_delete", false]], "app_delete_method_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_delete_method_call", false]], "app_delete_method_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_delete_method_call", false]], "app_deploy_note_dapp (in module algokit_utils.applications.app_deployer)": [[7, "algokit_utils.applications.app_deployer.APP_DEPLOY_NOTE_DAPP", false]], "app_deployer (algokit_utils.algorand.algorandclient property)": [[4, "algokit_utils.algorand.AlgorandClient.app_deployer", false]], "app_id (algokit_utils.applications.app_client.appclient property)": [[6, "algokit_utils.applications.app_client.AppClient.app_id", false]], "app_id (algokit_utils.applications.app_client.appclientparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientParams.app_id", false]], "app_id (algokit_utils.applications.app_deployer.applicationmetadata property)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.app_id", false]], "app_id (algokit_utils.applications.app_deployer.applicationreference attribute)": [[7, "algokit_utils.applications.app_deployer.ApplicationReference.app_id", false]], "app_id (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.app_id", false]], "app_id (algokit_utils.applications.app_spec.arc56.network attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Network.app_id", false]], "app_id (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appcallmethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallMethodCallParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appdeletemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteMethodCallParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appupdatemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_sender.sendappcreatetransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendAppCreateTransactionResult.app_id", false]], "app_name (algokit_utils.applications.app_client.appclient property)": [[6, "algokit_utils.applications.app_client.AppClient.app_name", false]], "app_name (algokit_utils.applications.app_client.appclientparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientParams.app_name", false]], "app_name (algokit_utils.applications.app_factory.appfactory property)": [[8, "algokit_utils.applications.app_factory.AppFactory.app_name", false]], "app_name (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryParams.app_name", false]], "app_references (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.app_references", false]], "app_references (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.app_references", false]], "app_references (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.app_references", false]], "app_references (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteParams.app_references", false]], "app_references (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams.app_references", false]], "app_spec (algokit_utils.applications.app_client.appclient property)": [[6, "algokit_utils.applications.app_client.AppClient.app_spec", false]], "app_spec (algokit_utils.applications.app_client.appclientparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientParams.app_spec", false]], "app_spec (algokit_utils.applications.app_factory.appfactory property)": [[8, "algokit_utils.applications.app_factory.AppFactory.app_spec", false]], "app_spec (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryParams.app_spec", false]], "app_update (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_update", false]], "app_update() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_update", false]], "app_update_method_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_update_method_call", false]], "app_update_method_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_update_method_call", false]], "appcallmethodcallparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppCallMethodCallParams", false]], "appcallparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams", false]], "appclient (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.AppClient", false]], "appclientbarecallcreateparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.AppClientBareCallCreateParams", false]], "appclientbarecallparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.AppClientBareCallParams", false]], "appclientcompilationparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.AppClientCompilationParams", false]], "appclientcompilationresult (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.AppClientCompilationResult", false]], "appclientcreateschema (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.AppClientCreateSchema", false]], "appclientmethodcallcreateparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.AppClientMethodCallCreateParams", false]], "appclientmethodcallparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.AppClientMethodCallParams", false]], "appclientparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.AppClientParams", false]], "appcompilationresult (class in algokit_utils.models.application)": [[26, "algokit_utils.models.application.AppCompilationResult", false]], "appcreatemethodcallparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams", false]], "appcreateparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams", false]], "appcreateschema (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateSchema", false]], "appdeletemethodcallparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteMethodCallParams", false]], "appdeleteparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteParams", false]], "appdeployer (class in algokit_utils.applications.app_deployer)": [[7, "algokit_utils.applications.app_deployer.AppDeployer", false]], "appdeploymentmetadata (class in algokit_utils.applications.app_deployer)": [[7, "algokit_utils.applications.app_deployer.AppDeploymentMetaData", false]], "appdeploymetadata (class in algokit_utils)": [[0, "algokit_utils.AppDeployMetaData", false]], "appdeployparams (class in algokit_utils.applications.app_deployer)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams", false]], "appdeployresult (class in algokit_utils.applications.app_deployer)": [[7, "algokit_utils.applications.app_deployer.AppDeployResult", false]], "appendapp (algokit_utils.applications.enums.onschemabreak attribute)": [[13, "algokit_utils.applications.enums.OnSchemaBreak.AppendApp", false]], "appendapp (algokit_utils.applications.enums.onupdate attribute)": [[13, "algokit_utils.applications.enums.OnUpdate.AppendApp", false]], "appendapp (algokit_utils.onschemabreak attribute)": [[0, "algokit_utils.OnSchemaBreak.AppendApp", false]], "appendapp (algokit_utils.onupdate attribute)": [[0, "algokit_utils.OnUpdate.AppendApp", false]], "appfactory (class in algokit_utils.applications.app_factory)": [[8, "algokit_utils.applications.app_factory.AppFactory", false]], "appfactorycreatemethodcallparams (class in algokit_utils.applications.app_factory)": [[8, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallParams", false]], "appfactorycreatemethodcallresult (class in algokit_utils.applications.app_factory)": [[8, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult", false]], "appfactorycreateparams (class in algokit_utils.applications.app_factory)": [[8, "algokit_utils.applications.app_factory.AppFactoryCreateParams", false]], "appfactorydeployresult (class in algokit_utils.applications.app_factory)": [[8, "algokit_utils.applications.app_factory.AppFactoryDeployResult", false]], "appfactoryparams (class in algokit_utils.applications.app_factory)": [[8, "algokit_utils.applications.app_factory.AppFactoryParams", false]], "appinformation (class in algokit_utils.models.application)": [[26, "algokit_utils.models.application.AppInformation", false]], "application_call (algokit_utils.models.transaction.transactionwrapper property)": [[31, "algokit_utils.models.transaction.TransactionWrapper.application_call", false]], "applicationclient (class in algokit_utils)": [[0, "algokit_utils.ApplicationClient", false]], "applicationlookup (class in algokit_utils.applications.app_deployer)": [[7, "algokit_utils.applications.app_deployer.ApplicationLookup", false]], "applicationmetadata (class in algokit_utils.applications.app_deployer)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData", false]], "applicationreference (class in algokit_utils.applications.app_deployer)": [[7, "algokit_utils.applications.app_deployer.ApplicationReference", false]], "applicationspecification (class in algokit_utils)": [[0, "algokit_utils.ApplicationSpecification", false]], "applookup (class in algokit_utils)": [[0, "algokit_utils.AppLookup", false]], "appmanager (class in algokit_utils.applications.app_manager)": [[9, "algokit_utils.applications.app_manager.AppManager", false]], "appmetadata (class in algokit_utils)": [[0, "algokit_utils.AppMetaData", false]], "appmethodcalltransactionargument (in module algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppMethodCallTransactionArgument", false]], "appreference (class in algokit_utils)": [[0, "algokit_utils.AppReference", false]], "approval (algokit_utils.applications.app_spec.arc56.bytecode attribute)": [[11, "algokit_utils.applications.app_spec.arc56.ByteCode.approval", false]], "approval (algokit_utils.applications.app_spec.arc56.source attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Source.approval", false]], "approval (algokit_utils.applications.app_spec.arc56.sourceinfomodel attribute)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfoModel.approval", false]], "approval_program (algokit_utils.applications.app_client.appclientcompilationresult attribute)": [[6, "algokit_utils.applications.app_client.AppClientCompilationResult.approval_program", false]], "approval_program (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.approval_program", false]], "approval_program (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appupdatemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams.approval_program", false]], "approval_source_map (algokit_utils.applications.app_client.appclientparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientParams.approval_source_map", false]], "approval_source_map (algokit_utils.models.application.appsourcemaps attribute)": [[26, "algokit_utils.models.application.AppSourceMaps.approval_source_map", false]], "apps (algokit_utils.applications.app_deployer.applicationlookup attribute)": [[7, "algokit_utils.applications.app_deployer.ApplicationLookup.apps", false]], "apps (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Recommendations.apps", false]], "apps_local_state (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.apps_local_state", false]], "apps_total_extra_pages (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.apps_total_extra_pages", false]], "apps_total_schema (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.apps_total_schema", false]], "appsourcemaps (class in algokit_utils.models.application)": [[26, "algokit_utils.models.application.AppSourceMaps", false]], "appspecstatedict (in module algokit_utils)": [[0, "algokit_utils.AppSpecStateDict", false]], "appspecstatedict (in module algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.AppSpecStateDict", false]], "appstate (class in algokit_utils.models.application)": [[26, "algokit_utils.models.application.AppState", false]], "appupdatemethodcallparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams", false]], "appupdateparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams", false]], "arc2_note() (algokit_utils.transactions.transaction_composer.transactioncomposer static method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.arc2_note", false]], "arc2transactionnote (in module algokit_utils.models.transaction)": [[31, "algokit_utils.models.transaction.Arc2TransactionNote", false]], "arc32contract (class in algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract", false]], "arc56contract (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract", false]], "arc56returnvaluetype (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.Arc56ReturnValueType", false]], "arcs (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.arcs", false]], "args (algokit_utils.applications.app_client.appclientbarecallparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientBareCallParams.args", false]], "args (algokit_utils.applications.app_client.baseappclientmethodcallparams attribute)": [[6, "algokit_utils.applications.app_client.BaseAppClientMethodCallParams.args", false]], "args (algokit_utils.applications.app_spec.arc56.event attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Event.args", false]], "args (algokit_utils.applications.app_spec.arc56.method attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Method.args", false]], "args (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.args", false]], "args (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.args", false]], "args (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteParams.args", false]], "args (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams.args", false]], "asset (algokit_utils.algorand.algorandclient property)": [[4, "algokit_utils.algorand.AlgorandClient.asset", false]], "asset_config (algokit_utils.models.transaction.transactionwrapper property)": [[31, "algokit_utils.models.transaction.TransactionWrapper.asset_config", false]], "asset_config (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_config", false]], "asset_config() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_config", false]], "asset_create (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_create", false]], "asset_create() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_create", false]], "asset_destroy (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_destroy", false]], "asset_destroy() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_destroy", false]], "asset_freeze (algokit_utils.models.transaction.transactionwrapper property)": [[31, "algokit_utils.models.transaction.TransactionWrapper.asset_freeze", false]], "asset_freeze (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_freeze", false]], "asset_freeze() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_freeze", false]], "asset_id (algokit_utils.assets.asset_manager.accountassetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AccountAssetInformation.asset_id", false]], "asset_id (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.asset_id", false]], "asset_id (algokit_utils.assets.asset_manager.bulkassetoptinoutresult attribute)": [[15, "algokit_utils.assets.asset_manager.BulkAssetOptInOutResult.asset_id", false]], "asset_id (algokit_utils.clients.dispenser_api_client.dispenserasset attribute)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserAsset.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetConfigParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetdestroyparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetDestroyParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetfreezeparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetFreezeParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetoptinparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetOptInParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetoptoutparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetOptOutParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetTransferParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_sender.sendsingleassetcreatetransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleAssetCreateTransactionResult.asset_id", false]], "asset_name (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.asset_name", false]], "asset_name (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.asset_name", false]], "asset_name_b64 (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.asset_name_b64", false]], "asset_opt_in (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_opt_in", false]], "asset_opt_in() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_opt_in", false]], "asset_opt_out (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_opt_out", false]], "asset_opt_out() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_opt_out", false]], "asset_references (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.asset_references", false]], "asset_references (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.asset_references", false]], "asset_references (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.asset_references", false]], "asset_references (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteParams.asset_references", false]], "asset_references (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams.asset_references", false]], "asset_transfer (algokit_utils.models.transaction.transactionwrapper property)": [[31, "algokit_utils.models.transaction.TransactionWrapper.asset_transfer", false]], "asset_transfer (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_transfer", false]], "asset_transfer() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_transfer", false]], "assetconfigparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AssetConfigParams", false]], "assetcreateparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams", false]], "assetdestroyparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AssetDestroyParams", false]], "assetfreezeparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AssetFreezeParams", false]], "assetinformation (class in algokit_utils.assets.asset_manager)": [[15, "algokit_utils.assets.asset_manager.AssetInformation", false]], "assetmanager (class in algokit_utils.assets.asset_manager)": [[15, "algokit_utils.assets.asset_manager.AssetManager", false]], "assetoptinparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AssetOptInParams", false]], "assetoptoutparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AssetOptOutParams", false]], "assets (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.assets", false]], "assets (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Recommendations.assets", false]], "assettransferparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.AssetTransferParams", false]], "atc (algokit_utils.transactions.transaction_composer.transactioncomposerbuildresult attribute)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult.atc", false]], "auth_addr (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.auth_addr", false]], "auth_token (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient attribute)": [[18, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.auth_token", false]], "balance (algokit_utils.assets.asset_manager.accountassetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AccountAssetInformation.balance", false]], "bare_actions (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.bare_actions", false]], "bare_call_config (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.bare_call_config", false]], "bareactions (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.BareActions", false]], "base_url (algokit_utils.clients.dispenser_api_client.dispenserapiconfig attribute)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserApiConfig.BASE_URL", false]], "baseappclientmethodcallparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.BaseAppClientMethodCallParams", false]], "basearc2note (class in algokit_utils.models.transaction)": [[31, "algokit_utils.models.transaction.BaseArc2Note", false]], "box (algokit_utils.applications.app_spec.arc56.keys attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Keys.box", false]], "box (algokit_utils.applications.app_spec.arc56.maps attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Maps.box", false]], "box_references (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.box_references", false]], "box_references (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.box_references", false]], "box_references (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.box_references", false]], "box_references (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteParams.box_references", false]], "box_references (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams.box_references", false]], "boxabivalue (class in algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.BoxABIValue", false]], "boxes (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Recommendations.boxes", false]], "boxes (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.boxes", false]], "boxes (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.boxes", false]], "boxes (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Boxes", false]], "boxidentifier (in module algokit_utils.models.state)": [[30, "algokit_utils.models.state.BoxIdentifier", false]], "boxname (class in algokit_utils.models.state)": [[30, "algokit_utils.models.state.BoxName", false]], "boxreference (class in algokit_utils.models.state)": [[30, "algokit_utils.models.state.BoxReference", false]], "boxvalue (class in algokit_utils.models.state)": [[30, "algokit_utils.models.state.BoxValue", false]], "build() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.build", false]], "build_transactions() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.build_transactions", false]], "builttransactions (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.BuiltTransactions", false]], "bulk_opt_in() (algokit_utils.assets.asset_manager.assetmanager method)": [[15, "algokit_utils.assets.asset_manager.AssetManager.bulk_opt_in", false]], "bulk_opt_out() (algokit_utils.assets.asset_manager.assetmanager method)": [[15, "algokit_utils.assets.asset_manager.AssetManager.bulk_opt_out", false]], "bulkassetoptinoutresult (class in algokit_utils.assets.asset_manager)": [[15, "algokit_utils.assets.asset_manager.BulkAssetOptInOutResult", false]], "byte_code (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.byte_code", false]], "bytecode (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.ByteCode", false]], "bytes (algokit_utils.applications.app_spec.arc56.global attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Global.bytes", false]], "bytes (algokit_utils.applications.app_spec.arc56.local attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Local.bytes", false]], "bytes (algokit_utils.models.state.datatypeflag attribute)": [[30, "algokit_utils.models.state.DataTypeFlag.BYTES", false]], "calculate_extra_program_pages() (in module algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.calculate_extra_program_pages", false]], "call (algokit_utils.applications.app_spec.arc32.callconfig attribute)": [[10, "algokit_utils.applications.app_spec.arc32.CallConfig.CALL", false]], "call (algokit_utils.applications.app_spec.arc56.actions attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Actions.call", false]], "call (algokit_utils.applications.app_spec.arc56.bareactions attribute)": [[11, "algokit_utils.applications.app_spec.arc56.BareActions.call", false]], "call (algokit_utils.callconfig attribute)": [[0, "algokit_utils.CallConfig.CALL", false]], "call() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.call", false]], "call_config (algokit_utils.applications.app_spec.arc32.methodhints attribute)": [[10, "algokit_utils.applications.app_spec.arc32.MethodHints.call_config", false]], "callconfig (class in algokit_utils)": [[0, "algokit_utils.CallConfig", false]], "callconfig (class in algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.CallConfig", false]], "callenum (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.CallEnum", false]], "cblocks (algokit_utils.applications.app_spec.arc56.pcoffsetmethod attribute)": [[11, "algokit_utils.applications.app_spec.arc56.PcOffsetMethod.CBLOCKS", false]], "clawback (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.clawback", false]], "clawback (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetConfigParams.clawback", false]], "clawback (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.clawback", false]], "clawback_target (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetTransferParams.clawback_target", false]], "clear (algokit_utils.applications.app_spec.arc56.bytecode attribute)": [[11, "algokit_utils.applications.app_spec.arc56.ByteCode.clear", false]], "clear (algokit_utils.applications.app_spec.arc56.source attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Source.clear", false]], "clear (algokit_utils.applications.app_spec.arc56.sourceinfomodel attribute)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfoModel.clear", false]], "clear_program (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.clear_program", false]], "clear_source_map (algokit_utils.applications.app_client.appclientparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientParams.clear_source_map", false]], "clear_source_map (algokit_utils.models.application.appsourcemaps attribute)": [[26, "algokit_utils.models.application.AppSourceMaps.clear_source_map", false]], "clear_state (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CallEnum.CLEAR_STATE", false]], "clear_state() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.clear_state", false]], "clear_state_program (algokit_utils.applications.app_client.appclientcompilationresult attribute)": [[6, "algokit_utils.applications.app_client.AppClientCompilationResult.clear_state_program", false]], "clear_state_program (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appupdatemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams.clear_state_program", false]], "client (algokit_utils.algorand.algorandclient property)": [[4, "algokit_utils.algorand.AlgorandClient.client", false]], "clientmanager (class in algokit_utils.clients.client_manager)": [[17, "algokit_utils.clients.client_manager.ClientManager", false]], "clone() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.clone", false]], "close_asset_to (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetTransferParams.close_asset_to", false]], "close_out (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CallEnum.CLOSE_OUT", false]], "close_out() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.close_out", false]], "close_remainder_to (algokit_utils.applications.app_client.fundappaccountparams attribute)": [[6, "algokit_utils.applications.app_client.FundAppAccountParams.close_remainder_to", false]], "close_remainder_to (algokit_utils.transactions.transaction_composer.paymentparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.PaymentParams.close_remainder_to", false]], "closed_at_round (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.closed_at_round", false]], "commit_hash (algokit_utils.applications.app_spec.arc56.compilerversion attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerVersion.commit_hash", false]], "commonappcallcreateparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.CommonAppCallCreateParams", false]], "commonappcallparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams", false]], "compilation_params (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryParams.compilation_params", false]], "compile() (algokit_utils.applications.app_client.appclient static method)": [[6, "algokit_utils.applications.app_client.AppClient.compile", false]], "compile() (algokit_utils.applications.app_factory.appfactory method)": [[8, "algokit_utils.applications.app_factory.AppFactory.compile", false]], "compile_app() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.compile_app", false]], "compile_teal() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.compile_teal", false]], "compile_teal_template() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.compile_teal_template", false]], "compiled (algokit_utils.models.application.compiledteal attribute)": [[26, "algokit_utils.models.application.CompiledTeal.compiled", false]], "compiled_approval (algokit_utils.applications.app_client.appclientcompilationresult attribute)": [[6, "algokit_utils.applications.app_client.AppClientCompilationResult.compiled_approval", false]], "compiled_approval (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.compiled_approval", false]], "compiled_approval (algokit_utils.models.application.appcompilationresult attribute)": [[26, "algokit_utils.models.application.AppCompilationResult.compiled_approval", false]], "compiled_approval (algokit_utils.transactions.transaction_sender.sendappupdatetransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendAppUpdateTransactionResult.compiled_approval", false]], "compiled_base64_to_bytes (algokit_utils.models.application.compiledteal attribute)": [[26, "algokit_utils.models.application.CompiledTeal.compiled_base64_to_bytes", false]], "compiled_clear (algokit_utils.applications.app_client.appclientcompilationresult attribute)": [[6, "algokit_utils.applications.app_client.AppClientCompilationResult.compiled_clear", false]], "compiled_clear (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.compiled_clear", false]], "compiled_clear (algokit_utils.models.application.appcompilationresult attribute)": [[26, "algokit_utils.models.application.AppCompilationResult.compiled_clear", false]], "compiled_clear (algokit_utils.transactions.transaction_sender.sendappupdatetransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendAppUpdateTransactionResult.compiled_clear", false]], "compiled_hash (algokit_utils.models.application.compiledteal attribute)": [[26, "algokit_utils.models.application.CompiledTeal.compiled_hash", false]], "compiledteal (class in algokit_utils.models.application)": [[26, "algokit_utils.models.application.CompiledTeal", false]], "compiler (algokit_utils.applications.app_spec.arc56.compilerinfo attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerInfo.compiler", false]], "compiler (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Compiler", false]], "compiler_info (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.compiler_info", false]], "compiler_version (algokit_utils.applications.app_spec.arc56.compilerinfo attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerInfo.compiler_version", false]], "compilerinfo (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerInfo", false]], "compilerversion (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerVersion", false]], "compose_call() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.compose_call", false]], "compose_clear_state() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.compose_clear_state", false]], "compose_close_out() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.compose_close_out", false]], "compose_create() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.compose_create", false]], "compose_delete() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.compose_delete", false]], "compose_opt_in() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.compose_opt_in", false]], "compose_update() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.compose_update", false]], "config (in module algokit_utils.config)": [[20, "algokit_utils.config.config", false]], "configure() (algokit_utils.config.updatableconfig method)": [[20, "algokit_utils.config.UpdatableConfig.configure", false]], "confirmation (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.confirmation", false]], "confirmations (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[36, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.confirmations", false]], "confirmations (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.confirmations", false]], "confirmed_round (algokit_utils.transactionresponse attribute)": [[0, "algokit_utils.TransactionResponse.confirmed_round", false]], "contract (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.contract", false]], "count() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.count", false]], "cover_app_call_inner_transaction_fees (algokit_utils.models.transaction.sendparams attribute)": [[31, "algokit_utils.models.transaction.SendParams.cover_app_call_inner_transaction_fees", false]], "create (algokit_utils.applications.app_spec.arc32.callconfig attribute)": [[10, "algokit_utils.applications.app_spec.arc32.CallConfig.CREATE", false]], "create (algokit_utils.applications.app_spec.arc56.actions attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Actions.create", false]], "create (algokit_utils.applications.app_spec.arc56.bareactions attribute)": [[11, "algokit_utils.applications.app_spec.arc56.BareActions.create", false]], "create (algokit_utils.applications.enums.operationperformed attribute)": [[13, "algokit_utils.applications.enums.OperationPerformed.Create", false]], "create (algokit_utils.callconfig attribute)": [[0, "algokit_utils.CallConfig.CREATE", false]], "create (algokit_utils.operationperformed attribute)": [[0, "algokit_utils.OperationPerformed.Create", false]], "create() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.create", false]], "create_kmd_wallet_account() (in module algokit_utils)": [[0, "algokit_utils.create_kmd_wallet_account", false]], "create_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.create_params", false]], "create_result (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployResult.create_result", false]], "create_result (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryDeployResult.create_result", false]], "create_transaction (algokit_utils.algorand.algorandclient property)": [[4, "algokit_utils.algorand.AlgorandClient.create_transaction", false]], "create_transaction (algokit_utils.applications.app_client.appclient property)": [[6, "algokit_utils.applications.app_client.AppClient.create_transaction", false]], "create_transaction (algokit_utils.applications.app_factory.appfactory property)": [[8, "algokit_utils.applications.app_factory.AppFactory.create_transaction", false]], "createcallparameters (class in algokit_utils)": [[0, "algokit_utils.CreateCallParameters", false]], "createcallparametersdict (class in algokit_utils)": [[0, "algokit_utils.CreateCallParametersDict", false]], "created_apps (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.created_apps", false]], "created_assets (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.created_assets", false]], "created_at_round (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.created_at_round", false]], "created_round (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.created_round", false]], "createenum (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.CreateEnum", false]], "createoncomplete (in module algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.CreateOnComplete", false]], "createtransactionparameters (class in algokit_utils)": [[0, "algokit_utils.CreateTransactionParameters", false]], "creator (algokit_utils.applications.app_deployer.applicationlookup attribute)": [[7, "algokit_utils.applications.app_deployer.ApplicationLookup.creator", false]], "creator (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.creator", false]], "creator (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.creator", false]], "creator (algokit_utils.transactions.transaction_composer.assetoptoutparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetOptOutParams.creator", false]], "dapp_name (algokit_utils.models.transaction.basearc2note attribute)": [[31, "algokit_utils.models.transaction.BaseArc2Note.dapp_name", false]], "data (algokit_utils.applications.app_spec.arc32.defaultargumentdict attribute)": [[10, "algokit_utils.applications.app_spec.arc32.DefaultArgumentDict.data", false]], "data (algokit_utils.applications.app_spec.arc56.defaultvalue attribute)": [[11, "algokit_utils.applications.app_spec.arc56.DefaultValue.data", false]], "data (algokit_utils.models.transaction.jsonformatarc2note attribute)": [[31, "algokit_utils.models.transaction.JsonFormatArc2Note.data", false]], "data (algokit_utils.models.transaction.stringformatarc2note attribute)": [[31, "algokit_utils.models.transaction.StringFormatArc2Note.data", false]], "datatypeflag (class in algokit_utils.models.state)": [[30, "algokit_utils.models.state.DataTypeFlag", false]], "debug (algokit_utils.config.updatableconfig property)": [[20, "algokit_utils.config.UpdatableConfig.debug", false]], "decimals (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.decimals", false]], "decimals (algokit_utils.clients.dispenser_api_client.dispenserasset attribute)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserAsset.decimals", false]], "decimals (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.decimals", false]], "decode_app_state() (algokit_utils.applications.app_manager.appmanager static method)": [[9, "algokit_utils.applications.app_manager.AppManager.decode_app_state", false]], "decode_error (algokit_utils.abitransactionresponse attribute)": [[0, "algokit_utils.ABITransactionResponse.decode_error", false]], "decode_error (algokit_utils.applications.abi.abireturn attribute)": [[5, "algokit_utils.applications.abi.ABIReturn.decode_error", false]], "default_arguments (algokit_utils.applications.app_spec.arc32.methodhints attribute)": [[10, "algokit_utils.applications.app_spec.arc32.MethodHints.default_arguments", false]], "default_frozen (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.default_frozen", false]], "default_frozen (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.default_frozen", false]], "default_localnet() (algokit_utils.algorand.algorandclient static method)": [[4, "algokit_utils.algorand.AlgorandClient.default_localnet", false]], "default_sender (algokit_utils.applications.app_client.appclientparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientParams.default_sender", false]], "default_sender (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryParams.default_sender", false]], "default_signer (algokit_utils.applications.app_client.appclientparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientParams.default_signer", false]], "default_signer (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryParams.default_signer", false]], "default_value (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[11, "algokit_utils.applications.app_spec.arc56.MethodArg.default_value", false]], "defaultargumentdict (class in algokit_utils)": [[0, "algokit_utils.DefaultArgumentDict", false]], "defaultargumentdict (class in algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.DefaultArgumentDict", false]], "defaultargumenttype (in module algokit_utils)": [[0, "algokit_utils.DefaultArgumentType", false]], "defaultargumenttype (in module algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.DefaultArgumentType", false]], "defaultvalue (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.DefaultValue", false]], "deletable (algokit_utils.applications.app_client.appclientcompilationparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientCompilationParams.deletable", false]], "deletable (algokit_utils.applications.app_deployer.appdeploymentmetadata attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.deletable", false]], "deletable (algokit_utils.applications.app_deployer.applicationmetadata property)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.deletable", false]], "deletable_template_name (in module algokit_utils)": [[0, "algokit_utils.DELETABLE_TEMPLATE_NAME", false]], "deletable_template_name (in module algokit_utils.applications.app_manager)": [[9, "algokit_utils.applications.app_manager.DELETABLE_TEMPLATE_NAME", false]], "delete() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.delete", false]], "delete_application (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CallEnum.DELETE_APPLICATION", false]], "delete_application (algokit_utils.applications.app_spec.arc56.createenum attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CreateEnum.DELETE_APPLICATION", false]], "delete_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.delete_params", false]], "delete_result (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployResult.delete_result", false]], "delete_result (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryDeployResult.delete_result", false]], "deleted (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.deleted", false]], "deleted (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.deleted", false]], "deploy() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.deploy", false]], "deploy() (algokit_utils.applications.app_deployer.appdeployer method)": [[7, "algokit_utils.applications.app_deployer.AppDeployer.deploy", false]], "deploy() (algokit_utils.applications.app_factory.appfactory method)": [[8, "algokit_utils.applications.app_factory.AppFactory.deploy", false]], "deploy() (algokit_utils.protocols.typed_clients.typedappfactoryprotocol method)": [[34, "algokit_utils.protocols.typed_clients.TypedAppFactoryProtocol.deploy", false]], "deploy_metadata (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.deploy_metadata", false]], "deploy_time_params (algokit_utils.applications.app_client.appclientcompilationparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientCompilationParams.deploy_time_params", false]], "deploy_time_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.deploy_time_params", false]], "deploycallargs (class in algokit_utils)": [[0, "algokit_utils.DeployCallArgs", false]], "deploycallargsdict (class in algokit_utils)": [[0, "algokit_utils.DeployCallArgsDict", false]], "deploycreatecallargs (class in algokit_utils)": [[0, "algokit_utils.DeployCreateCallArgs", false]], "deploycreatecallargsdict (class in algokit_utils)": [[0, "algokit_utils.DeployCreateCallArgsDict", false]], "deploymentfailederror": [[0, "algokit_utils.DeploymentFailedError", false]], "deployresponse (class in algokit_utils)": [[0, "algokit_utils.DeployResponse", false]], "desc (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.event attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Event.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.eventarg attribute)": [[11, "algokit_utils.applications.app_spec.arc56.EventArg.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.method attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Method.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[11, "algokit_utils.applications.app_spec.arc56.MethodArg.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.returns attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Returns.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.storagekey attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StorageKey.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.storagemap attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StorageMap.desc", false]], "description (algokit_utils.clients.dispenser_api_client.dispenserasset attribute)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserAsset.description", false]], "dictify() (algokit_utils.applications.app_deployer.appdeploymentmetadata method)": [[7, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.dictify", false]], "dictify() (algokit_utils.applications.app_spec.arc32.arc32contract method)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.dictify", false]], "dictify() (algokit_utils.applications.app_spec.arc32.methodhints method)": [[10, "algokit_utils.applications.app_spec.arc32.MethodHints.dictify", false]], "dictify() (algokit_utils.applications.app_spec.arc56.arc56contract method)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.dictify", false]], "dispenser_access_token_key (in module algokit_utils.clients.dispenser_api_client)": [[18, "algokit_utils.clients.dispenser_api_client.DISPENSER_ACCESS_TOKEN_KEY", false]], "dispenser_account_name (in module algokit_utils.models.account)": [[24, "algokit_utils.models.account.DISPENSER_ACCOUNT_NAME", false]], "dispenser_assets (in module algokit_utils.clients.dispenser_api_client)": [[18, "algokit_utils.clients.dispenser_api_client.DISPENSER_ASSETS", false]], "dispenser_from_environment() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.dispenser_from_environment", false]], "dispenser_request_timeout (in module algokit_utils.clients.dispenser_api_client)": [[18, "algokit_utils.clients.dispenser_api_client.DISPENSER_REQUEST_TIMEOUT", false]], "dispenserapiconfig (class in algokit_utils.clients.dispenser_api_client)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserApiConfig", false]], "dispenserasset (class in algokit_utils.clients.dispenser_api_client)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserAsset", false]], "dispenserassetname (class in algokit_utils.clients.dispenser_api_client)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserAssetName", false]], "dispenserfundresponse (class in algokit_utils.clients.dispenser_api_client)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserFundResponse", false]], "dispenserlimitresponse (class in algokit_utils.clients.dispenser_api_client)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserLimitResponse", false]], "elements (algokit_utils.applications.app_spec.arc32.structargdict attribute)": [[10, "algokit_utils.applications.app_spec.arc32.StructArgDict.elements", false]], "empty() (algokit_utils.applications.app_spec.arc32.methodhints method)": [[10, "algokit_utils.applications.app_spec.arc32.MethodHints.empty", false]], "ensure_funded() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.ensure_funded", false]], "ensure_funded() (in module algokit_utils)": [[0, "algokit_utils.ensure_funded", false]], "ensure_funded_from_environment() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.ensure_funded_from_environment", false]], "ensure_funded_from_testnet_dispenser_api() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.ensure_funded_from_testnet_dispenser_api", false]], "ensurebalanceparameters (class in algokit_utils)": [[0, "algokit_utils.EnsureBalanceParameters", false]], "ensurefundedfromtestnetdispenserapiresult (class in algokit_utils.accounts.account_manager)": [[1, "algokit_utils.accounts.account_manager.EnsureFundedFromTestnetDispenserApiResult", false]], "ensurefundedresponse (class in algokit_utils)": [[0, "algokit_utils.EnsureFundedResponse", false]], "ensurefundedresult (class in algokit_utils.accounts.account_manager)": [[1, "algokit_utils.accounts.account_manager.EnsureFundedResult", false]], "error_message (algokit_utils.applications.app_spec.arc56.sourceinfo attribute)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfo.error_message", false]], "event (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Event", false]], "eventarg (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.EventArg", false]], "events (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.events", false]], "events (algokit_utils.applications.app_spec.arc56.method attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Method.events", false]], "exec_trace (algokit_utils.models.simulate.simulationtrace attribute)": [[29, "algokit_utils.models.simulate.SimulationTrace.exec_trace", false]], "execute() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.execute", false]], "execute_atc_with_logic_error() (in module algokit_utils)": [[0, "algokit_utils.execute_atc_with_logic_error", false]], "existing_deployments (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.existing_deployments", false]], "export() (algokit_utils.applications.app_spec.arc32.arc32contract method)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.export", false]], "export() (algokit_utils.applicationspecification method)": [[0, "algokit_utils.ApplicationSpecification.export", false]], "export_source_map() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.export_source_map", false]], "export_source_maps() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.export_source_maps", false]], "export_source_maps() (algokit_utils.applications.app_factory.appfactory method)": [[8, "algokit_utils.applications.app_factory.AppFactory.export_source_maps", false]], "extra_fee (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.extra_fee", false]], "extra_pages (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.extra_pages", false]], "extra_program_pages (algokit_utils.applications.app_client.appclientcreateschema attribute)": [[6, "algokit_utils.applications.app_client.AppClientCreateSchema.extra_program_pages", false]], "extra_program_pages (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.extra_program_pages", false]], "extra_program_pages (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.extra_program_pages", false]], "extra_program_pages (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.extra_program_pages", false]], "fail (algokit_utils.applications.enums.onschemabreak attribute)": [[13, "algokit_utils.applications.enums.OnSchemaBreak.Fail", false]], "fail (algokit_utils.applications.enums.onupdate attribute)": [[13, "algokit_utils.applications.enums.OnUpdate.Fail", false]], "fail (algokit_utils.onschemabreak attribute)": [[0, "algokit_utils.OnSchemaBreak.Fail", false]], "fail (algokit_utils.onupdate attribute)": [[0, "algokit_utils.OnUpdate.Fail", false]], "failure_message (algokit_utils.models.simulate.simulationtrace attribute)": [[29, "algokit_utils.models.simulate.SimulationTrace.failure_message", false]], "fee_micro_algos (algokit_utils.ensurebalanceparameters attribute)": [[0, "algokit_utils.EnsureBalanceParameters.fee_micro_algos", false]], "first_valid_round (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.first_valid_round", false]], "foreign_apps (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.foreign_apps", false]], "foreign_apps (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.foreign_apps", false]], "foreign_assets (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.foreign_assets", false]], "foreign_assets (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.foreign_assets", false]], "format (algokit_utils.models.transaction.jsonformatarc2note attribute)": [[31, "algokit_utils.models.transaction.JsonFormatArc2Note.format", false]], "format (algokit_utils.models.transaction.stringformatarc2note attribute)": [[31, "algokit_utils.models.transaction.StringFormatArc2Note.format", false]], "freeze (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.freeze", false]], "freeze (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetConfigParams.freeze", false]], "freeze (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.freeze", false]], "from_algo() (algokit_utils.models.amount.algoamount static method)": [[25, "algokit_utils.models.amount.AlgoAmount.from_algo", false]], "from_arc32() (algokit_utils.applications.app_spec.arc56.arc56contract static method)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.from_arc32", false]], "from_atr() (algokit_utils.transactionresponse static method)": [[0, "algokit_utils.TransactionResponse.from_atr", false]], "from_clients() (algokit_utils.algorand.algorandclient static method)": [[4, "algokit_utils.algorand.AlgorandClient.from_clients", false]], "from_composer_result() (algokit_utils.transactions.transaction_sender.sendsingletransactionresult class method)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.from_composer_result", false]], "from_config() (algokit_utils.algorand.algorandclient static method)": [[4, "algokit_utils.algorand.AlgorandClient.from_config", false]], "from_creator_and_name() (algokit_utils.applications.app_client.appclient static method)": [[6, "algokit_utils.applications.app_client.AppClient.from_creator_and_name", false]], "from_creator_and_name() (algokit_utils.protocols.typed_clients.typedappclientprotocol class method)": [[34, "algokit_utils.protocols.typed_clients.TypedAppClientProtocol.from_creator_and_name", false]], "from_deploy_result() (algokit_utils.applications.app_factory.appfactorydeployresult class method)": [[8, "algokit_utils.applications.app_factory.AppFactoryDeployResult.from_deploy_result", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.actions static method)": [[11, "algokit_utils.applications.app_spec.arc56.Actions.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.arc56contract static method)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.bareactions static method)": [[11, "algokit_utils.applications.app_spec.arc56.BareActions.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.boxes static method)": [[11, "algokit_utils.applications.app_spec.arc56.Boxes.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.bytecode static method)": [[11, "algokit_utils.applications.app_spec.arc56.ByteCode.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.compilerinfo static method)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerInfo.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.compilerversion static method)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerVersion.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.defaultvalue static method)": [[11, "algokit_utils.applications.app_spec.arc56.DefaultValue.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.event static method)": [[11, "algokit_utils.applications.app_spec.arc56.Event.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.eventarg static method)": [[11, "algokit_utils.applications.app_spec.arc56.EventArg.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.global static method)": [[11, "algokit_utils.applications.app_spec.arc56.Global.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.keys static method)": [[11, "algokit_utils.applications.app_spec.arc56.Keys.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.local static method)": [[11, "algokit_utils.applications.app_spec.arc56.Local.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.maps static method)": [[11, "algokit_utils.applications.app_spec.arc56.Maps.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.method static method)": [[11, "algokit_utils.applications.app_spec.arc56.Method.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.methodarg static method)": [[11, "algokit_utils.applications.app_spec.arc56.MethodArg.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.network static method)": [[11, "algokit_utils.applications.app_spec.arc56.Network.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.programsourceinfo static method)": [[11, "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.recommendations static method)": [[11, "algokit_utils.applications.app_spec.arc56.Recommendations.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.returns static method)": [[11, "algokit_utils.applications.app_spec.arc56.Returns.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.schema static method)": [[11, "algokit_utils.applications.app_spec.arc56.Schema.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.scratchvariables static method)": [[11, "algokit_utils.applications.app_spec.arc56.ScratchVariables.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.source static method)": [[11, "algokit_utils.applications.app_spec.arc56.Source.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.sourceinfo static method)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfo.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.sourceinfomodel static method)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfoModel.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.state static method)": [[11, "algokit_utils.applications.app_spec.arc56.State.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.storagekey static method)": [[11, "algokit_utils.applications.app_spec.arc56.StorageKey.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.storagemap static method)": [[11, "algokit_utils.applications.app_spec.arc56.StorageMap.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.structfield static method)": [[11, "algokit_utils.applications.app_spec.arc56.StructField.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.templatevariables static method)": [[11, "algokit_utils.applications.app_spec.arc56.TemplateVariables.from_dict", false]], "from_environment() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.from_environment", false]], "from_environment() (algokit_utils.algorand.algorandclient static method)": [[4, "algokit_utils.algorand.AlgorandClient.from_environment", false]], "from_json() (algokit_utils.applications.app_spec.arc32.arc32contract static method)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.from_json", false]], "from_json() (algokit_utils.applications.app_spec.arc56.arc56contract static method)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.from_json", false]], "from_kmd() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.from_kmd", false]], "from_micro_algo() (algokit_utils.models.amount.algoamount static method)": [[25, "algokit_utils.models.amount.AlgoAmount.from_micro_algo", false]], "from_mnemonic() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.from_mnemonic", false]], "from_network() (algokit_utils.applications.app_client.appclient static method)": [[6, "algokit_utils.applications.app_client.AppClient.from_network", false]], "from_network() (algokit_utils.protocols.typed_clients.typedappclientprotocol class method)": [[34, "algokit_utils.protocols.typed_clients.TypedAppClientProtocol.from_network", false]], "frozen (algokit_utils.assets.asset_manager.accountassetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AccountAssetInformation.frozen", false]], "frozen (algokit_utils.transactions.transaction_composer.assetfreezeparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetFreezeParams.frozen", false]], "full_url() (algokit_utils.models.network.algoclientnetworkconfig method)": [[28, "algokit_utils.models.network.AlgoClientNetworkConfig.full_url", false]], "fund() (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient method)": [[18, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.fund", false]], "fund() (algokit_utils.testnetdispenserapiclient method)": [[0, "algokit_utils.TestNetDispenserApiClient.fund", false]], "fund_app_account() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.fund_app_account", false]], "fundappaccountparams (class in algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.FundAppAccountParams", false]], "funding_source (algokit_utils.ensurebalanceparameters attribute)": [[0, "algokit_utils.EnsureBalanceParameters.funding_source", false]], "genesis_hash (algokit_utils.clients.client_manager.networkdetail attribute)": [[17, "algokit_utils.clients.client_manager.NetworkDetail.genesis_hash", false]], "genesis_id (algokit_utils.clients.client_manager.networkdetail attribute)": [[17, "algokit_utils.clients.client_manager.NetworkDetail.genesis_id", false]], "genesis_id_is_localnet() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.genesis_id_is_localnet", false]], "get_abi_decoded_value() (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.get_abi_decoded_value", false]], "get_abi_encoded_value() (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.get_abi_encoded_value", false]], "get_abi_return() (algokit_utils.applications.app_manager.appmanager static method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_abi_return", false]], "get_abi_struct_from_abi_tuple() (algokit_utils.applications.app_spec.arc56.arc56contract static method)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.get_abi_struct_from_abi_tuple", false]], "get_abi_struct_from_abi_tuple() (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.get_abi_struct_from_abi_tuple", false]], "get_abi_tuple_from_abi_struct() (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.get_abi_tuple_from_abi_struct", false]], "get_abi_tuple_type_from_abi_struct_definition() (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.get_abi_tuple_type_from_abi_struct_definition", false]], "get_account() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.get_account", false]], "get_account() (in module algokit_utils)": [[0, "algokit_utils.get_account", false]], "get_account_from_mnemonic() (in module algokit_utils)": [[0, "algokit_utils.get_account_from_mnemonic", false]], "get_account_information() (algokit_utils.assets.asset_manager.assetmanager method)": [[15, "algokit_utils.assets.asset_manager.AssetManager.get_account_information", false]], "get_algod_client() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_algod_client", false]], "get_algod_client() (in module algokit_utils)": [[0, "algokit_utils.get_algod_client", false]], "get_algod_client_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_algod_client_from_environment", false]], "get_algod_config_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_algod_config_from_environment", false]], "get_algonode_config() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_algonode_config", false]], "get_app_client_by_creator_and_name() (algokit_utils.applications.app_factory.appfactory method)": [[8, "algokit_utils.applications.app_factory.AppFactory.get_app_client_by_creator_and_name", false]], "get_app_client_by_creator_and_name() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_app_client_by_creator_and_name", false]], "get_app_client_by_id() (algokit_utils.applications.app_factory.appfactory method)": [[8, "algokit_utils.applications.app_factory.AppFactory.get_app_client_by_id", false]], "get_app_client_by_id() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_app_client_by_id", false]], "get_app_client_by_network() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_app_client_by_network", false]], "get_app_factory() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_app_factory", false]], "get_app_id_from_tx_id() (in module algokit_utils)": [[0, "algokit_utils.get_app_id_from_tx_id", false]], "get_arc56_method() (algokit_utils.applications.app_spec.arc56.arc56contract method)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.get_arc56_method", false]], "get_arc56_value() (algokit_utils.applications.abi.abireturn method)": [[5, "algokit_utils.applications.abi.ABIReturn.get_arc56_value", false]], "get_arc56_value() (in module algokit_utils.applications.abi)": [[5, "algokit_utils.applications.abi.get_arc56_value", false]], "get_box_names() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.get_box_names", false]], "get_box_names() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_box_names", false]], "get_box_reference() (algokit_utils.applications.app_manager.appmanager static method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_box_reference", false]], "get_box_value() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.get_box_value", false]], "get_box_value() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_box_value", false]], "get_box_value_from_abi_type() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.get_box_value_from_abi_type", false]], "get_box_value_from_abi_type() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_box_value_from_abi_type", false]], "get_box_values() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.get_box_values", false]], "get_box_values() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_box_values", false]], "get_box_values_from_abi_type() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.get_box_values_from_abi_type", false]], "get_box_values_from_abi_type() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_box_values_from_abi_type", false]], "get_by_id() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_by_id", false]], "get_by_id() (algokit_utils.assets.asset_manager.assetmanager method)": [[15, "algokit_utils.assets.asset_manager.AssetManager.get_by_id", false]], "get_compilation_result() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_compilation_result", false]], "get_config_from_environment_or_localnet() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_config_from_environment_or_localnet", false]], "get_constant_block_offset() (in module algokit_utils.applications.app_client)": [[6, "algokit_utils.applications.app_client.get_constant_block_offset", false]], "get_creator_apps() (in module algokit_utils)": [[0, "algokit_utils.get_creator_apps", false]], "get_creator_apps_by_name() (algokit_utils.applications.app_deployer.appdeployer method)": [[7, "algokit_utils.applications.app_deployer.AppDeployer.get_creator_apps_by_name", false]], "get_decoded_approval() (algokit_utils.applications.app_spec.arc56.source method)": [[11, "algokit_utils.applications.app_spec.arc56.Source.get_decoded_approval", false]], "get_decoded_clear() (algokit_utils.applications.app_spec.arc56.source method)": [[11, "algokit_utils.applications.app_spec.arc56.Source.get_decoded_clear", false]], "get_default_localnet_config() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_default_localnet_config", false]], "get_default_localnet_config() (in module algokit_utils)": [[0, "algokit_utils.get_default_localnet_config", false]], "get_dispenser_account() (in module algokit_utils)": [[0, "algokit_utils.get_dispenser_account", false]], "get_global_state() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.get_global_state", false]], "get_global_state() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.get_global_state", false]], "get_global_state() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_global_state", false]], "get_indexer_client() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_indexer_client", false]], "get_indexer_client() (in module algokit_utils)": [[0, "algokit_utils.get_indexer_client", false]], "get_indexer_client_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_indexer_client_from_environment", false]], "get_indexer_config_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_indexer_config_from_environment", false]], "get_information() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.get_information", false]], "get_kmd_client() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_kmd_client", false]], "get_kmd_client_from_algod_client() (in module algokit_utils)": [[0, "algokit_utils.get_kmd_client_from_algod_client", false]], "get_kmd_client_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_kmd_client_from_environment", false]], "get_kmd_config_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_kmd_config_from_environment", false]], "get_kmd_wallet_account() (in module algokit_utils)": [[0, "algokit_utils.get_kmd_wallet_account", false]], "get_limit() (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient method)": [[18, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.get_limit", false]], "get_limit() (algokit_utils.testnetdispenserapiclient method)": [[0, "algokit_utils.TestNetDispenserApiClient.get_limit", false]], "get_local_state() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.get_local_state", false]], "get_local_state() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.get_local_state", false]], "get_local_state() (algokit_utils.applications.app_manager.appmanager method)": [[9, "algokit_utils.applications.app_manager.AppManager.get_local_state", false]], "get_localnet_default_account() (in module algokit_utils)": [[0, "algokit_utils.get_localnet_default_account", false]], "get_localnet_dispenser_account() (algokit_utils.accounts.kmd_account_manager.kmdaccountmanager method)": [[3, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager.get_localnet_dispenser_account", false]], "get_next_version() (in module algokit_utils)": [[0, "algokit_utils.get_next_version", false]], "get_null_logger() (algokit_utils.config.algokitlogger class method)": [[20, "algokit_utils.config.AlgoKitLogger.get_null_logger", false]], "get_or_create_kmd_wallet_account() (in module algokit_utils)": [[0, "algokit_utils.get_or_create_kmd_wallet_account", false]], "get_or_create_wallet_account() (algokit_utils.accounts.kmd_account_manager.kmdaccountmanager method)": [[3, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager.get_or_create_wallet_account", false]], "get_sender_from_signer() (in module algokit_utils)": [[0, "algokit_utils.get_sender_from_signer", false]], "get_signer() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.get_signer", false]], "get_signer_sender() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.get_signer_sender", false]], "get_suggested_params() (algokit_utils.algorand.algorandclient method)": [[4, "algokit_utils.algorand.AlgorandClient.get_suggested_params", false]], "get_testnet_dispenser() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_testnet_dispenser", false]], "get_typed_app_client_by_creator_and_name() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_typed_app_client_by_creator_and_name", false]], "get_typed_app_client_by_id() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_typed_app_client_by_id", false]], "get_typed_app_client_by_network() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_typed_app_client_by_network", false]], "get_typed_app_factory() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.get_typed_app_factory", false]], "get_wallet_account() (algokit_utils.accounts.kmd_account_manager.kmdaccountmanager method)": [[3, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager.get_wallet_account", false]], "global (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Global", false]], "global_byte_slices (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.global_byte_slices", false]], "global_byte_slices (algokit_utils.transactions.transaction_composer.appcreateschema attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateSchema.global_byte_slices", false]], "global_ints (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.global_ints", false]], "global_ints (algokit_utils.transactions.transaction_composer.appcreateschema attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateSchema.global_ints", false]], "global_state (algokit_utils.applications.app_spec.arc56.keys attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Keys.global_state", false]], "global_state (algokit_utils.applications.app_spec.arc56.maps attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Maps.global_state", false]], "global_state (algokit_utils.applications.app_spec.arc56.schema attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Schema.global_state", false]], "global_state (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.global_state", false]], "global_state_schema (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.global_state_schema", false]], "group_id (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[36, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.group_id", false]], "group_id (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.group_id", false]], "hints (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.hints", false]], "ignore_cache (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.ignore_cache", false]], "import_source_map() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.import_source_map", false]], "import_source_maps() (algokit_utils.applications.app_client.appclient method)": [[6, "algokit_utils.applications.app_client.AppClient.import_source_maps", false]], "import_source_maps() (algokit_utils.applications.app_factory.appfactory method)": [[8, "algokit_utils.applications.app_factory.AppFactory.import_source_maps", false]], "incentive_eligible (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.incentive_eligible", false]], "indexer (algokit_utils.clients.client_manager.algosdkclients attribute)": [[17, "algokit_utils.clients.client_manager.AlgoSdkClients.indexer", false]], "indexer (algokit_utils.clients.client_manager.clientmanager property)": [[17, "algokit_utils.clients.client_manager.ClientManager.indexer", false]], "indexer_config (algokit_utils.models.network.algoclientconfigs attribute)": [[28, "algokit_utils.models.network.AlgoClientConfigs.indexer_config", false]], "indexer_if_present (algokit_utils.clients.client_manager.clientmanager property)": [[17, "algokit_utils.clients.client_manager.ClientManager.indexer_if_present", false]], "inner_transaction_count (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Recommendations.inner_transaction_count", false]], "ints (algokit_utils.applications.app_spec.arc56.global attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Global.ints", false]], "ints (algokit_utils.applications.app_spec.arc56.local attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Local.ints", false]], "is_localnet (algokit_utils.clients.client_manager.networkdetail attribute)": [[17, "algokit_utils.clients.client_manager.NetworkDetail.is_localnet", false]], "is_localnet() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.is_localnet", false]], "is_localnet() (in module algokit_utils)": [[0, "algokit_utils.is_localnet", false]], "is_mainnet (algokit_utils.clients.client_manager.networkdetail attribute)": [[17, "algokit_utils.clients.client_manager.NetworkDetail.is_mainnet", false]], "is_mainnet() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.is_mainnet", false]], "is_mainnet() (in module algokit_utils)": [[0, "algokit_utils.is_mainnet", false]], "is_success (algokit_utils.applications.abi.abireturn property)": [[5, "algokit_utils.applications.abi.ABIReturn.is_success", false]], "is_testnet (algokit_utils.clients.client_manager.networkdetail attribute)": [[17, "algokit_utils.clients.client_manager.NetworkDetail.is_testnet", false]], "is_testnet() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.is_testnet", false]], "is_testnet() (in module algokit_utils)": [[0, "algokit_utils.is_testnet", false]], "jsonformatarc2note (class in algokit_utils.models.transaction)": [[31, "algokit_utils.models.transaction.JsonFormatArc2Note", false]], "key (algokit_utils.applications.app_spec.arc56.boxes attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Boxes.key", false]], "key (algokit_utils.applications.app_spec.arc56.storagekey attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StorageKey.key", false]], "key_base64 (algokit_utils.models.application.appstate attribute)": [[26, "algokit_utils.models.application.AppState.key_base64", false]], "key_raw (algokit_utils.models.application.appstate attribute)": [[26, "algokit_utils.models.application.AppState.key_raw", false]], "key_type (algokit_utils.applications.app_spec.arc56.storagekey attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StorageKey.key_type", false]], "key_type (algokit_utils.applications.app_spec.arc56.storagemap attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StorageMap.key_type", false]], "keyreg (algokit_utils.models.transaction.transactionwrapper property)": [[31, "algokit_utils.models.transaction.TransactionWrapper.keyreg", false]], "keys (algokit_utils.applications.app_spec.arc56.state attribute)": [[11, "algokit_utils.applications.app_spec.arc56.State.keys", false]], "keys (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Keys", false]], "kmd (algokit_utils.accounts.account_manager.accountmanager property)": [[1, "algokit_utils.accounts.account_manager.AccountManager.kmd", false]], "kmd (algokit_utils.clients.client_manager.algosdkclients attribute)": [[17, "algokit_utils.clients.client_manager.AlgoSdkClients.kmd", false]], "kmd (algokit_utils.clients.client_manager.clientmanager property)": [[17, "algokit_utils.clients.client_manager.ClientManager.kmd", false]], "kmd() (algokit_utils.accounts.kmd_account_manager.kmdaccountmanager method)": [[3, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager.kmd", false]], "kmd_config (algokit_utils.models.network.algoclientconfigs attribute)": [[28, "algokit_utils.models.network.AlgoClientConfigs.kmd_config", false]], "kmdaccount (class in algokit_utils.accounts.kmd_account_manager)": [[3, "algokit_utils.accounts.kmd_account_manager.KmdAccount", false]], "kmdaccountmanager (class in algokit_utils.accounts.kmd_account_manager)": [[3, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager", false]], "last_heartbeat (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.last_heartbeat", false]], "last_proposed (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.last_proposed", false]], "last_valid_round (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.last_valid_round", false]], "lease (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.lease", false]], "lease (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.lease", false]], "lease (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.lease", false]], "line_no (algokit_utils.errors.logic_error.logicerror attribute)": [[22, "algokit_utils.errors.logic_error.LogicError.line_no", false]], "lines (algokit_utils.errors.logic_error.logicerror attribute)": [[22, "algokit_utils.errors.logic_error.LogicError.lines", false]], "local (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Local", false]], "local_byte_slices (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.local_byte_slices", false]], "local_byte_slices (algokit_utils.transactions.transaction_composer.appcreateschema attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateSchema.local_byte_slices", false]], "local_ints (algokit_utils.models.application.appinformation attribute)": [[26, "algokit_utils.models.application.AppInformation.local_ints", false]], "local_ints (algokit_utils.transactions.transaction_composer.appcreateschema attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateSchema.local_ints", false]], "local_state (algokit_utils.applications.app_spec.arc56.keys attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Keys.local_state", false]], "local_state (algokit_utils.applications.app_spec.arc56.maps attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Maps.local_state", false]], "local_state (algokit_utils.applications.app_spec.arc56.schema attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Schema.local_state", false]], "local_state_schema (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.local_state_schema", false]], "localnet_dispenser() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.localnet_dispenser", false]], "logger (algokit_utils.config.updatableconfig property)": [[20, "algokit_utils.config.UpdatableConfig.logger", false]], "logic_error (algokit_utils.errors.logic_error.logicerror attribute)": [[22, "algokit_utils.errors.logic_error.LogicError.logic_error", false]], "logic_error_str (algokit_utils.errors.logic_error.logicerror attribute)": [[22, "algokit_utils.errors.logic_error.LogicError.logic_error_str", false]], "logicerror": [[0, "algokit_utils.LogicError", false], [22, "algokit_utils.errors.logic_error.LogicError", false]], "logicerrordata (class in algokit_utils.errors.logic_error)": [[22, "algokit_utils.errors.logic_error.LogicErrorData", false]], "logicsig() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.logicsig", false]], "logicsigaccount (class in algokit_utils.models.account)": [[24, "algokit_utils.models.account.LogicSigAccount", false]], "lsig (algokit_utils.models.account.logicsigaccount property)": [[24, "algokit_utils.models.account.LogicSigAccount.lsig", false]], "mainnet() (algokit_utils.algorand.algorandclient static method)": [[4, "algokit_utils.algorand.AlgorandClient.mainnet", false]], "major (algokit_utils.applications.app_spec.arc56.compilerversion attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerVersion.major", false]], "manager (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.manager", false]], "manager (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetConfigParams.manager", false]], "manager (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.manager", false]], "maps (algokit_utils.applications.app_spec.arc56.state attribute)": [[11, "algokit_utils.applications.app_spec.arc56.State.maps", false]], "maps (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Maps", false]], "max_fee (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.max_fee", false]], "max_fee (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.max_fee", false]], "max_fee_micro_algos (algokit_utils.ensurebalanceparameters attribute)": [[0, "algokit_utils.EnsureBalanceParameters.max_fee_micro_algos", false]], "max_rounds_to_wait (algokit_utils.models.transaction.sendparams attribute)": [[31, "algokit_utils.models.transaction.SendParams.max_rounds_to_wait", false]], "message (algokit_utils.errors.logic_error.logicerror attribute)": [[22, "algokit_utils.errors.logic_error.LogicError.message", false]], "message (algokit_utils.errors.logic_error.logicerrordata attribute)": [[22, "algokit_utils.errors.logic_error.LogicErrorData.message", false]], "metadata (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.metadata", false]], "metadata_hash (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.metadata_hash", false]], "metadata_hash (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.metadata_hash", false]], "method (algokit_utils.abitransactionresponse attribute)": [[0, "algokit_utils.ABITransactionResponse.method", false]], "method (algokit_utils.applications.abi.abireturn attribute)": [[5, "algokit_utils.applications.abi.ABIReturn.method", false]], "method (algokit_utils.applications.app_client.baseappclientmethodcallparams attribute)": [[6, "algokit_utils.applications.app_client.BaseAppClientMethodCallParams.method", false]], "method (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Method", false]], "method_calls (algokit_utils.transactions.transaction_composer.builttransactions attribute)": [[36, "algokit_utils.transactions.transaction_composer.BuiltTransactions.method_calls", false]], "method_calls (algokit_utils.transactions.transaction_composer.transactioncomposerbuildresult attribute)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult.method_calls", false]], "methodarg (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.MethodArg", false]], "methodcallparams (in module algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.MethodCallParams", false]], "methodconfigdict (in module algokit_utils)": [[0, "algokit_utils.MethodConfigDict", false]], "methodconfigdict (in module algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.MethodConfigDict", false]], "methodhints (class in algokit_utils)": [[0, "algokit_utils.MethodHints", false]], "methodhints (class in algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.MethodHints", false]], "methods (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.methods", false]], "micro_algo (algokit_utils.models.amount.algoamount property)": [[25, "algokit_utils.models.amount.AlgoAmount.micro_algo", false]], "micro_algo() (in module algokit_utils.models.amount)": [[25, "algokit_utils.models.amount.micro_algo", false]], "min_balance (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.min_balance", false]], "min_funding_increment_micro_algos (algokit_utils.ensurebalanceparameters attribute)": [[0, "algokit_utils.EnsureBalanceParameters.min_funding_increment_micro_algos", false]], "min_spending_balance_micro_algos (algokit_utils.ensurebalanceparameters attribute)": [[0, "algokit_utils.EnsureBalanceParameters.min_spending_balance_micro_algos", false]], "minor (algokit_utils.applications.app_spec.arc56.compilerversion attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerVersion.minor", false]], "module": [[0, "module-algokit_utils", false], [1, "module-algokit_utils.accounts.account_manager", false], [2, "module-algokit_utils.accounts", false], [3, "module-algokit_utils.accounts.kmd_account_manager", false], [4, "module-algokit_utils.algorand", false], [5, "module-algokit_utils.applications.abi", false], [6, "module-algokit_utils.applications.app_client", false], [7, "module-algokit_utils.applications.app_deployer", false], [8, "module-algokit_utils.applications.app_factory", false], [9, "module-algokit_utils.applications.app_manager", false], [10, "module-algokit_utils.applications.app_spec.arc32", false], [11, "module-algokit_utils.applications.app_spec.arc56", false], [12, "module-algokit_utils.applications.app_spec", false], [13, "module-algokit_utils.applications.enums", false], [14, "module-algokit_utils.applications", false], [15, "module-algokit_utils.assets.asset_manager", false], [16, "module-algokit_utils.assets", false], [17, "module-algokit_utils.clients.client_manager", false], [18, "module-algokit_utils.clients.dispenser_api_client", false], [19, "module-algokit_utils.clients", false], [20, "module-algokit_utils.config", false], [21, "module-algokit_utils.errors", false], [22, "module-algokit_utils.errors.logic_error", false], [23, "module-algokit_utils", false], [24, "module-algokit_utils.models.account", false], [25, "module-algokit_utils.models.amount", false], [26, "module-algokit_utils.models.application", false], [27, "module-algokit_utils.models", false], [28, "module-algokit_utils.models.network", false], [29, "module-algokit_utils.models.simulate", false], [30, "module-algokit_utils.models.state", false], [31, "module-algokit_utils.models.transaction", false], [32, "module-algokit_utils.protocols.account", false], [33, "module-algokit_utils.protocols", false], [34, "module-algokit_utils.protocols.typed_clients", false], [35, "module-algokit_utils.transactions", false], [36, "module-algokit_utils.transactions.transaction_composer", false], [37, "module-algokit_utils.transactions.transaction_creator", false], [38, "module-algokit_utils.transactions.transaction_sender", false]], "multisig (algokit_utils.models.account.multisigaccount property)": [[24, "algokit_utils.models.account.MultiSigAccount.multisig", false]], "multisig() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.multisig", false]], "multisigaccount (class in algokit_utils.models.account)": [[24, "algokit_utils.models.account.MultiSigAccount", false]], "multisigmetadata (class in algokit_utils.models.account)": [[24, "algokit_utils.models.account.MultisigMetadata", false]], "name (algokit_utils.applications.abi.boxabivalue attribute)": [[5, "algokit_utils.applications.abi.BoxABIValue.name", false]], "name (algokit_utils.applications.app_deployer.appdeploymentmetadata attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.name", false]], "name (algokit_utils.applications.app_deployer.applicationmetadata property)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.name", false]], "name (algokit_utils.applications.app_spec.arc32.structargdict attribute)": [[10, "algokit_utils.applications.app_spec.arc32.StructArgDict.name", false]], "name (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.name", false]], "name (algokit_utils.applications.app_spec.arc56.event attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Event.name", false]], "name (algokit_utils.applications.app_spec.arc56.eventarg attribute)": [[11, "algokit_utils.applications.app_spec.arc56.EventArg.name", false]], "name (algokit_utils.applications.app_spec.arc56.method attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Method.name", false]], "name (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[11, "algokit_utils.applications.app_spec.arc56.MethodArg.name", false]], "name (algokit_utils.applications.app_spec.arc56.structfield attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StructField.name", false]], "name (algokit_utils.models.state.boxname attribute)": [[30, "algokit_utils.models.state.BoxName.name", false]], "name (algokit_utils.models.state.boxvalue attribute)": [[30, "algokit_utils.models.state.BoxValue.name", false]], "name_base64 (algokit_utils.models.state.boxname attribute)": [[30, "algokit_utils.models.state.BoxName.name_base64", false]], "name_raw (algokit_utils.models.state.boxname attribute)": [[30, "algokit_utils.models.state.BoxName.name_raw", false]], "network (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Network", false]], "network() (algokit_utils.clients.client_manager.clientmanager method)": [[17, "algokit_utils.clients.client_manager.ClientManager.network", false]], "networkdetail (class in algokit_utils.clients.client_manager)": [[17, "algokit_utils.clients.client_manager.NetworkDetail", false]], "networks (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.networks", false]], "never (algokit_utils.applications.app_spec.arc32.callconfig attribute)": [[10, "algokit_utils.applications.app_spec.arc32.CallConfig.NEVER", false]], "never (algokit_utils.callconfig attribute)": [[0, "algokit_utils.CallConfig.NEVER", false]], "new_account() (algokit_utils.models.account.signingaccount static method)": [[24, "algokit_utils.models.account.SigningAccount.new_account", false]], "new_group() (algokit_utils.algorand.algorandclient method)": [[4, "algokit_utils.algorand.AlgorandClient.new_group", false]], "new_group() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.new_group", false]], "no_op (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CallEnum.NO_OP", false]], "no_op (algokit_utils.applications.app_spec.arc56.createenum attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CreateEnum.NO_OP", false]], "none (algokit_utils.applications.app_spec.arc56.pcoffsetmethod attribute)": [[11, "algokit_utils.applications.app_spec.arc56.PcOffsetMethod.NONE", false]], "normalise_app_spec() (algokit_utils.applications.app_client.appclient static method)": [[6, "algokit_utils.applications.app_client.AppClient.normalise_app_spec", false]], "note (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.note", false]], "note (algokit_utils.ensurebalanceparameters attribute)": [[0, "algokit_utils.EnsureBalanceParameters.note", false]], "note (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.note", false]], "note (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.note", false]], "note_prefix (in module algokit_utils)": [[0, "algokit_utils.NOTE_PREFIX", false]], "nothing (algokit_utils.applications.enums.operationperformed attribute)": [[13, "algokit_utils.applications.enums.OperationPerformed.Nothing", false]], "nothing (algokit_utils.operationperformed attribute)": [[0, "algokit_utils.OperationPerformed.Nothing", false]], "num_extra_program_pages() (in module algokit_utils)": [[0, "algokit_utils.num_extra_program_pages", false]], "offline_key_registration (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.offline_key_registration", false]], "offline_key_registration() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.offline_key_registration", false]], "offlinekeyregistrationparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.OfflineKeyRegistrationParams", false]], "on_complete (algokit_utils.applications.app_client.appclientbarecallcreateparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientBareCallCreateParams.on_complete", false]], "on_complete (algokit_utils.applications.app_client.appclientmethodcallcreateparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientMethodCallCreateParams.on_complete", false]], "on_complete (algokit_utils.applications.app_client.commonappcallcreateparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallCreateParams.on_complete", false]], "on_complete (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.on_complete", false]], "on_complete (algokit_utils.applications.app_factory.appfactorycreateparams attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryCreateParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appcallmethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallMethodCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appdeletemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteMethodCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppDeleteParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appupdatemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppUpdateParams.on_complete", false]], "on_schema_break (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.on_schema_break", false]], "on_update (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.on_update", false]], "oncompleteactionname (in module algokit_utils)": [[0, "algokit_utils.OnCompleteActionName", false]], "oncompleteactionname (in module algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.OnCompleteActionName", false]], "oncompletecallparameters (class in algokit_utils)": [[0, "algokit_utils.OnCompleteCallParameters", false]], "oncompletecallparametersdict (class in algokit_utils)": [[0, "algokit_utils.OnCompleteCallParametersDict", false]], "online_key_registration (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.online_key_registration", false]], "online_key_registration() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.online_key_registration", false]], "onlinekeyregistrationparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams", false]], "onschemabreak (class in algokit_utils)": [[0, "algokit_utils.OnSchemaBreak", false]], "onschemabreak (class in algokit_utils.applications.enums)": [[13, "algokit_utils.applications.enums.OnSchemaBreak", false]], "onupdate (class in algokit_utils)": [[0, "algokit_utils.OnUpdate", false]], "onupdate (class in algokit_utils.applications.enums)": [[13, "algokit_utils.applications.enums.OnUpdate", false]], "operation_performed (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployResult.operation_performed", false]], "operation_performed (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryDeployResult.operation_performed", false]], "operationperformed (class in algokit_utils)": [[0, "algokit_utils.OperationPerformed", false]], "operationperformed (class in algokit_utils.applications.enums)": [[13, "algokit_utils.applications.enums.OperationPerformed", false]], "opt_in (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CallEnum.OPT_IN", false]], "opt_in (algokit_utils.applications.app_spec.arc56.createenum attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CreateEnum.OPT_IN", false]], "opt_in() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.opt_in", false]], "opt_in() (in module algokit_utils)": [[0, "algokit_utils.opt_in", false]], "opt_out() (in module algokit_utils)": [[0, "algokit_utils.opt_out", false]], "params (algokit_utils.applications.app_client.appclient property)": [[6, "algokit_utils.applications.app_client.AppClient.params", false]], "params (algokit_utils.applications.app_factory.appfactory property)": [[8, "algokit_utils.applications.app_factory.AppFactory.params", false]], "params (algokit_utils.models.account.multisigaccount property)": [[24, "algokit_utils.models.account.MultiSigAccount.params", false]], "parse_logic_error() (in module algokit_utils.errors.logic_error)": [[22, "algokit_utils.errors.logic_error.parse_logic_error", false]], "participation (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.participation", false]], "patch (algokit_utils.applications.app_spec.arc56.compilerversion attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CompilerVersion.patch", false]], "payment (algokit_utils.models.transaction.transactionwrapper property)": [[31, "algokit_utils.models.transaction.TransactionWrapper.payment", false]], "payment (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[37, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.payment", false]], "payment() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[38, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.payment", false]], "paymentparams (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.PaymentParams", false]], "pc (algokit_utils.applications.app_spec.arc56.sourceinfo attribute)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfo.pc", false]], "pc (algokit_utils.errors.logic_error.logicerror attribute)": [[22, "algokit_utils.errors.logic_error.LogicError.pc", false]], "pc (algokit_utils.errors.logic_error.logicerrordata attribute)": [[22, "algokit_utils.errors.logic_error.LogicErrorData.pc", false]], "pc_offset_method (algokit_utils.applications.app_spec.arc56.programsourceinfo attribute)": [[11, "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo.pc_offset_method", false]], "pcoffsetmethod (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.PcOffsetMethod", false]], "pending_rewards (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.pending_rewards", false]], "persist_sourcemaps() (in module algokit_utils)": [[0, "algokit_utils.persist_sourcemaps", false]], "populate_app_call_resource (algokit_utils.config.updatableconfig property)": [[20, "algokit_utils.config.UpdatableConfig.populate_app_call_resource", false]], "populate_app_call_resources (algokit_utils.models.transaction.sendparams attribute)": [[31, "algokit_utils.models.transaction.SendParams.populate_app_call_resources", false]], "populate_app_call_resources() (in module algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.populate_app_call_resources", false]], "port (algokit_utils.models.network.algoclientnetworkconfig attribute)": [[28, "algokit_utils.models.network.AlgoClientNetworkConfig.port", false]], "prefix (algokit_utils.applications.app_spec.arc56.storagemap attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StorageMap.prefix", false]], "prepare() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.prepare", false]], "prepare_group_for_sending() (in module algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.prepare_group_for_sending", false]], "prevent_account_from_ever_participating_again (algokit_utils.transactions.transaction_composer.offlinekeyregistrationparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.OfflineKeyRegistrationParams.prevent_account_from_ever_participating_again", false]], "private_key (algokit_utils.account attribute)": [[0, "algokit_utils.Account.private_key", false]], "private_key (algokit_utils.models.account.signingaccount attribute)": [[24, "algokit_utils.models.account.SigningAccount.private_key", false]], "program (class in algokit_utils)": [[0, "algokit_utils.Program", false]], "programsourceinfo (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo", false]], "project_root (algokit_utils.config.updatableconfig property)": [[20, "algokit_utils.config.UpdatableConfig.project_root", false]], "public_key (algokit_utils.account property)": [[0, "algokit_utils.Account.public_key", false]], "public_key (algokit_utils.models.account.signingaccount property)": [[24, "algokit_utils.models.account.SigningAccount.public_key", false]], "puya (algokit_utils.applications.app_spec.arc56.compiler attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Compiler.PUYA", false]], "random() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.random", false]], "raw (algokit_utils.models.transaction.transactionwrapper property)": [[31, "algokit_utils.models.transaction.TransactionWrapper.raw", false]], "raw_value (algokit_utils.abitransactionresponse attribute)": [[0, "algokit_utils.ABITransactionResponse.raw_value", false]], "raw_value (algokit_utils.applications.abi.abireturn attribute)": [[5, "algokit_utils.applications.abi.ABIReturn.raw_value", false]], "read_bytes (algokit_utils.applications.app_spec.arc56.boxes attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Boxes.read_bytes", false]], "read_only (algokit_utils.applications.app_spec.arc32.methodhints attribute)": [[10, "algokit_utils.applications.app_spec.arc32.MethodHints.read_only", false]], "readonly (algokit_utils.applications.app_spec.arc56.method attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Method.readonly", false]], "rebuild() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.rebuild", false]], "receiver (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetTransferParams.receiver", false]], "receiver (algokit_utils.transactions.transaction_composer.paymentparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.PaymentParams.receiver", false]], "recommendations (algokit_utils.applications.app_spec.arc56.method attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Method.recommendations", false]], "recommendations (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Recommendations", false]], "reference (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.reference", false]], "refund() (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient method)": [[18, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.refund", false]], "refund() (algokit_utils.testnetdispenserapiclient method)": [[0, "algokit_utils.TestNetDispenserApiClient.refund", false]], "rekey_account() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.rekey_account", false]], "rekey_to (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.rekey_to", false]], "rekey_to (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.rekey_to", false]], "rekey_to (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.rekey_to", false]], "rekeyed() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.rekeyed", false]], "replace (algokit_utils.applications.enums.operationperformed attribute)": [[13, "algokit_utils.applications.enums.OperationPerformed.Replace", false]], "replace (algokit_utils.operationperformed attribute)": [[0, "algokit_utils.OperationPerformed.Replace", false]], "replace_teal_template_deploy_time_control_params() (algokit_utils.applications.app_manager.appmanager static method)": [[9, "algokit_utils.applications.app_manager.AppManager.replace_teal_template_deploy_time_control_params", false]], "replace_template_variables() (algokit_utils.applications.app_manager.appmanager static method)": [[9, "algokit_utils.applications.app_manager.AppManager.replace_template_variables", false]], "replace_template_variables() (in module algokit_utils)": [[0, "algokit_utils.replace_template_variables", false]], "replaceapp (algokit_utils.applications.enums.onschemabreak attribute)": [[13, "algokit_utils.applications.enums.OnSchemaBreak.ReplaceApp", false]], "replaceapp (algokit_utils.applications.enums.onupdate attribute)": [[13, "algokit_utils.applications.enums.OnUpdate.ReplaceApp", false]], "replaceapp (algokit_utils.onschemabreak attribute)": [[0, "algokit_utils.OnSchemaBreak.ReplaceApp", false]], "replaceapp (algokit_utils.onupdate attribute)": [[0, "algokit_utils.OnUpdate.ReplaceApp", false]], "request_timeout (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient attribute)": [[18, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.request_timeout", false]], "reserve (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.reserve", false]], "reserve (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetConfigParams.reserve", false]], "reserve (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.reserve", false]], "resolve() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.resolve", false]], "resolve_signer_sender() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.resolve_signer_sender", false]], "return_value (algokit_utils.abitransactionresponse attribute)": [[0, "algokit_utils.ABITransactionResponse.return_value", false]], "returns (algokit_utils.applications.app_spec.arc56.method attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Method.returns", false]], "returns (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[36, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.returns", false]], "returns (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.returns", false]], "returns (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Returns", false]], "reward_base (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.reward_base", false]], "rewards (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.rewards", false]], "round (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.round", false]], "round (algokit_utils.assets.asset_manager.accountassetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AccountAssetInformation.round", false]], "schema (algokit_utils.applications.app_client.appclientcreateschema attribute)": [[6, "algokit_utils.applications.app_client.AppClientCreateSchema.schema", false]], "schema (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.schema", false]], "schema (algokit_utils.applications.app_spec.arc56.state attribute)": [[11, "algokit_utils.applications.app_spec.arc56.State.schema", false]], "schema (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCallParams.schema", false]], "schema (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.schema", false]], "schema (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AppCreateParams.schema", false]], "schema (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Schema", false]], "scratch_variables (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.scratch_variables", false]], "scratchvariables (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.ScratchVariables", false]], "selection_key (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.selection_key", false]], "send (algokit_utils.algorand.algorandclient property)": [[4, "algokit_utils.algorand.AlgorandClient.send", false]], "send (algokit_utils.applications.app_client.appclient property)": [[6, "algokit_utils.applications.app_client.AppClient.send", false]], "send (algokit_utils.applications.app_factory.appfactory property)": [[8, "algokit_utils.applications.app_factory.AppFactory.send", false]], "send() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.send", false]], "send_atomic_transaction_composer() (in module algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.send_atomic_transaction_composer", false]], "send_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.send_params", false]], "sendappcreatefactorytransactionresult (class in algokit_utils.applications.app_factory)": [[8, "algokit_utils.applications.app_factory.SendAppCreateFactoryTransactionResult", false]], "sendappcreatetransactionresult (class in algokit_utils.transactions.transaction_sender)": [[38, "algokit_utils.transactions.transaction_sender.SendAppCreateTransactionResult", false]], "sendappfactorytransactionresult (class in algokit_utils.applications.app_factory)": [[8, "algokit_utils.applications.app_factory.SendAppFactoryTransactionResult", false]], "sendapptransactionresult (class in algokit_utils.transactions.transaction_sender)": [[38, "algokit_utils.transactions.transaction_sender.SendAppTransactionResult", false]], "sendappupdatefactorytransactionresult (class in algokit_utils.applications.app_factory)": [[8, "algokit_utils.applications.app_factory.SendAppUpdateFactoryTransactionResult", false]], "sendappupdatetransactionresult (class in algokit_utils.transactions.transaction_sender)": [[38, "algokit_utils.transactions.transaction_sender.SendAppUpdateTransactionResult", false]], "sendatomictransactioncomposerresults (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults", false]], "sender (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.sender", false]], "sender (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.sender", false]], "sender (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.sender", false]], "sendparams (class in algokit_utils.models.transaction)": [[31, "algokit_utils.models.transaction.SendParams", false]], "sendsingleassetcreatetransactionresult (class in algokit_utils.transactions.transaction_sender)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleAssetCreateTransactionResult", false]], "sendsingletransactionresult (class in algokit_utils.transactions.transaction_sender)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult", false]], "server (algokit_utils.algoclientconfig attribute)": [[0, "algokit_utils.AlgoClientConfig.server", false]], "server (algokit_utils.models.network.algoclientnetworkconfig attribute)": [[28, "algokit_utils.models.network.AlgoClientNetworkConfig.server", false]], "set_default_signer() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.set_default_signer", false]], "set_default_signer() (algokit_utils.algorand.algorandclient method)": [[4, "algokit_utils.algorand.AlgorandClient.set_default_signer", false]], "set_default_validity_window() (algokit_utils.algorand.algorandclient method)": [[4, "algokit_utils.algorand.AlgorandClient.set_default_validity_window", false]], "set_signer() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.set_signer", false]], "set_signer() (algokit_utils.algorand.algorandclient method)": [[4, "algokit_utils.algorand.AlgorandClient.set_signer", false]], "set_signer_from_account() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.set_signer_from_account", false]], "set_signer_from_account() (algokit_utils.algorand.algorandclient method)": [[4, "algokit_utils.algorand.AlgorandClient.set_signer_from_account", false]], "set_signers() (algokit_utils.accounts.account_manager.accountmanager method)": [[1, "algokit_utils.accounts.account_manager.AccountManager.set_signers", false]], "set_suggested_params_cache() (algokit_utils.algorand.algorandclient method)": [[4, "algokit_utils.algorand.AlgorandClient.set_suggested_params_cache", false]], "set_suggested_params_cache_timeout() (algokit_utils.algorand.algorandclient method)": [[4, "algokit_utils.algorand.AlgorandClient.set_suggested_params_cache_timeout", false]], "sig_type (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.sig_type", false]], "sign() (algokit_utils.models.account.multisigaccount method)": [[24, "algokit_utils.models.account.MultiSigAccount.sign", false]], "signer (algokit_utils.account property)": [[0, "algokit_utils.Account.signer", false]], "signer (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.signer", false]], "signer (algokit_utils.models.account.logicsigaccount property)": [[24, "algokit_utils.models.account.LogicSigAccount.signer", false]], "signer (algokit_utils.models.account.multisigaccount property)": [[24, "algokit_utils.models.account.MultiSigAccount.signer", false]], "signer (algokit_utils.models.account.signingaccount property)": [[24, "algokit_utils.models.account.SigningAccount.signer", false]], "signer (algokit_utils.models.account.transactionsigneraccount attribute)": [[24, "algokit_utils.models.account.TransactionSignerAccount.signer", false]], "signer (algokit_utils.protocols.account.transactionsigneraccountprotocol property)": [[32, "algokit_utils.protocols.account.TransactionSignerAccountProtocol.signer", false]], "signer (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.signer", false]], "signer (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.signer", false]], "signers (algokit_utils.transactions.transaction_composer.builttransactions attribute)": [[36, "algokit_utils.transactions.transaction_composer.BuiltTransactions.signers", false]], "signing_accounts (algokit_utils.models.account.multisigaccount property)": [[24, "algokit_utils.models.account.MultiSigAccount.signing_accounts", false]], "signingaccount (class in algokit_utils.models.account)": [[24, "algokit_utils.models.account.SigningAccount", false]], "simulate() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer.simulate", false]], "simulate_and_persist_response() (in module algokit_utils)": [[0, "algokit_utils.simulate_and_persist_response", false]], "simulate_response (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[36, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.simulate_response", false]], "simulationtrace (class in algokit_utils.models.simulate)": [[29, "algokit_utils.models.simulate.SimulationTrace", false]], "slot (algokit_utils.applications.app_spec.arc56.scratchvariables attribute)": [[11, "algokit_utils.applications.app_spec.arc56.ScratchVariables.slot", false]], "source (algokit_utils.applications.app_spec.arc32.defaultargumentdict attribute)": [[10, "algokit_utils.applications.app_spec.arc32.DefaultArgumentDict.source", false]], "source (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.source", false]], "source (algokit_utils.applications.app_spec.arc56.defaultvalue attribute)": [[11, "algokit_utils.applications.app_spec.arc56.DefaultValue.source", false]], "source (algokit_utils.applications.app_spec.arc56.sourceinfo attribute)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfo.source", false]], "source (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.Source", false]], "source_info (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.source_info", false]], "source_info (algokit_utils.applications.app_spec.arc56.programsourceinfo attribute)": [[11, "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo.source_info", false]], "source_map (algokit_utils.errors.logic_error.logicerror attribute)": [[22, "algokit_utils.errors.logic_error.LogicError.source_map", false]], "source_map (algokit_utils.models.application.compiledteal attribute)": [[26, "algokit_utils.models.application.CompiledTeal.source_map", false]], "sourceinfo (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfo", false]], "sourceinfomodel (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfoModel", false]], "state (algokit_utils.applications.app_client.appclient property)": [[6, "algokit_utils.applications.app_client.AppClient.state", false]], "state (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.state", false]], "state (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.State", false]], "state_proof (algokit_utils.models.transaction.transactionwrapper property)": [[31, "algokit_utils.models.transaction.TransactionWrapper.state_proof", false]], "state_proof_key (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.state_proof_key", false]], "statedict (in module algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.StateDict", false]], "static_fee (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.static_fee", false]], "status (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.status", false]], "storagekey (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.StorageKey", false]], "storagemap (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.StorageMap", false]], "stringformatarc2note (class in algokit_utils.models.transaction)": [[31, "algokit_utils.models.transaction.StringFormatArc2Note", false]], "strip_teal_comments() (algokit_utils.applications.app_manager.appmanager static method)": [[9, "algokit_utils.applications.app_manager.AppManager.strip_teal_comments", false]], "struct (algokit_utils.applications.app_spec.arc56.eventarg attribute)": [[11, "algokit_utils.applications.app_spec.arc56.EventArg.struct", false]], "struct (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[11, "algokit_utils.applications.app_spec.arc56.MethodArg.struct", false]], "struct (algokit_utils.applications.app_spec.arc56.returns attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Returns.struct", false]], "structargdict (class in algokit_utils.applications.app_spec.arc32)": [[10, "algokit_utils.applications.app_spec.arc32.StructArgDict", false]], "structfield (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.StructField", false]], "structs (algokit_utils.applications.app_spec.arc32.methodhints attribute)": [[10, "algokit_utils.applications.app_spec.arc32.MethodHints.structs", false]], "structs (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.structs", false]], "suggested_params (algokit_utils.ensurebalanceparameters attribute)": [[0, "algokit_utils.EnsureBalanceParameters.suggested_params", false]], "suggested_params (algokit_utils.transactionparameters attribute)": [[0, "algokit_utils.TransactionParameters.suggested_params", false]], "suggested_params (algokit_utils.transactionparametersdict attribute)": [[0, "algokit_utils.TransactionParametersDict.suggested_params", false]], "suppress_log (algokit_utils.models.transaction.sendparams attribute)": [[31, "algokit_utils.models.transaction.SendParams.suppress_log", false]], "teal (algokit_utils.applications.app_spec.arc56.sourceinfo attribute)": [[11, "algokit_utils.applications.app_spec.arc56.SourceInfo.teal", false]], "teal (algokit_utils.models.application.compiledteal attribute)": [[26, "algokit_utils.models.application.CompiledTeal.teal", false]], "tealtemplateparams (in module algokit_utils.models.state)": [[30, "algokit_utils.models.state.TealTemplateParams", false]], "template_variables (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.template_variables", false]], "templatevaluedict (in module algokit_utils)": [[0, "algokit_utils.TemplateValueDict", false]], "templatevaluemapping (in module algokit_utils)": [[0, "algokit_utils.TemplateValueMapping", false]], "templatevariables (class in algokit_utils.applications.app_spec.arc56)": [[11, "algokit_utils.applications.app_spec.arc56.TemplateVariables", false]], "testnet() (algokit_utils.algorand.algorandclient static method)": [[4, "algokit_utils.algorand.AlgorandClient.testnet", false]], "testnetdispenserapiclient (class in algokit_utils)": [[0, "algokit_utils.TestNetDispenserApiClient", false]], "testnetdispenserapiclient (class in algokit_utils.clients.dispenser_api_client)": [[18, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient", false]], "threshold (algokit_utils.models.account.multisigmetadata attribute)": [[24, "algokit_utils.models.account.MultisigMetadata.threshold", false]], "to_abi_method() (algokit_utils.applications.app_spec.arc56.method method)": [[11, "algokit_utils.applications.app_spec.arc56.Method.to_abi_method", false]], "to_json() (algokit_utils.applications.app_spec.arc32.arc32contract method)": [[10, "algokit_utils.applications.app_spec.arc32.Arc32Contract.to_json", false]], "to_json() (algokit_utils.applications.app_spec.arc56.arc56contract method)": [[11, "algokit_utils.applications.app_spec.arc56.Arc56Contract.to_json", false]], "token (algokit_utils.algoclientconfig attribute)": [[0, "algokit_utils.AlgoClientConfig.token", false]], "token (algokit_utils.models.network.algoclientnetworkconfig attribute)": [[28, "algokit_utils.models.network.AlgoClientNetworkConfig.token", false]], "total (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.total", false]], "total (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.total", false]], "total_apps_opted_in (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.total_apps_opted_in", false]], "total_assets_opted_in (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.total_assets_opted_in", false]], "total_box_bytes (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.total_box_bytes", false]], "total_boxes (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.total_boxes", false]], "total_created_apps (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.total_created_apps", false]], "total_created_assets (algokit_utils.accounts.account_manager.accountinformation attribute)": [[1, "algokit_utils.accounts.account_manager.AccountInformation.total_created_assets", false]], "trace() (algokit_utils.errors.logic_error.logicerror method)": [[22, "algokit_utils.errors.logic_error.LogicError.trace", false]], "trace_all (algokit_utils.config.updatableconfig property)": [[20, "algokit_utils.config.UpdatableConfig.trace_all", false]], "trace_buffer_size_mb (algokit_utils.config.updatableconfig property)": [[20, "algokit_utils.config.UpdatableConfig.trace_buffer_size_mb", false]], "traces (algokit_utils.errors.logic_error.logicerror attribute)": [[22, "algokit_utils.errors.logic_error.LogicError.traces", false]], "transaction (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.transaction", false]], "transaction_fees() (in module algokit_utils.models.amount)": [[25, "algokit_utils.models.amount.transaction_fees", false]], "transaction_id (algokit_utils.assets.asset_manager.bulkassetoptinoutresult attribute)": [[15, "algokit_utils.assets.asset_manager.BulkAssetOptInOutResult.transaction_id", false]], "transaction_id (algokit_utils.ensurefundedresponse attribute)": [[0, "algokit_utils.EnsureFundedResponse.transaction_id", false]], "transaction_id (algokit_utils.errors.logic_error.logicerror attribute)": [[22, "algokit_utils.errors.logic_error.LogicError.transaction_id", false]], "transaction_id (algokit_utils.errors.logic_error.logicerrordata attribute)": [[22, "algokit_utils.errors.logic_error.LogicErrorData.transaction_id", false]], "transactioncomposer (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposer", false]], "transactioncomposerbuildresult (class in algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult", false]], "transactionnote (in module algokit_utils.models.transaction)": [[31, "algokit_utils.models.transaction.TransactionNote", false]], "transactionnotedata (in module algokit_utils.models.transaction)": [[31, "algokit_utils.models.transaction.TransactionNoteData", false]], "transactionparameters (class in algokit_utils)": [[0, "algokit_utils.TransactionParameters", false]], "transactionparametersdict (class in algokit_utils)": [[0, "algokit_utils.TransactionParametersDict", false]], "transactionresponse (class in algokit_utils)": [[0, "algokit_utils.TransactionResponse", false]], "transactions (algokit_utils.transactions.transaction_composer.builttransactions attribute)": [[36, "algokit_utils.transactions.transaction_composer.BuiltTransactions.transactions", false]], "transactions (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[36, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.transactions", false]], "transactions (algokit_utils.transactions.transaction_composer.transactioncomposerbuildresult attribute)": [[36, "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult.transactions", false]], "transactions (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.transactions", false]], "transactionsigneraccount (class in algokit_utils.models.account)": [[24, "algokit_utils.models.account.TransactionSignerAccount", false]], "transactionsigneraccountprotocol (class in algokit_utils.protocols.account)": [[32, "algokit_utils.protocols.account.TransactionSignerAccountProtocol", false]], "transactionwrapper (class in algokit_utils.models.transaction)": [[31, "algokit_utils.models.transaction.TransactionWrapper", false]], "transfer() (in module algokit_utils)": [[0, "algokit_utils.transfer", false]], "transfer_asset() (in module algokit_utils)": [[0, "algokit_utils.transfer_asset", false]], "transferassetparameters (class in algokit_utils)": [[0, "algokit_utils.TransferAssetParameters", false]], "transferparameters (class in algokit_utils)": [[0, "algokit_utils.TransferParameters", false]], "tx_id (algokit_utils.clients.dispenser_api_client.dispenserfundresponse attribute)": [[18, "algokit_utils.clients.dispenser_api_client.DispenserFundResponse.tx_id", false]], "tx_id (algokit_utils.transactionresponse attribute)": [[0, "algokit_utils.TransactionResponse.tx_id", false]], "tx_id (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.tx_id", false]], "tx_ids (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[36, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.tx_ids", false]], "tx_ids (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[38, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.tx_ids", false]], "tx_info (algokit_utils.abitransactionresponse attribute)": [[0, "algokit_utils.ABITransactionResponse.tx_info", false]], "tx_info (algokit_utils.applications.abi.abireturn attribute)": [[5, "algokit_utils.applications.abi.ABIReturn.tx_info", false]], "txnparams (in module algokit_utils.transactions.transaction_composer)": [[36, "algokit_utils.transactions.transaction_composer.TxnParams", false]], "type (algokit_utils.applications.app_spec.arc56.defaultvalue attribute)": [[11, "algokit_utils.applications.app_spec.arc56.DefaultValue.type", false]], "type (algokit_utils.applications.app_spec.arc56.eventarg attribute)": [[11, "algokit_utils.applications.app_spec.arc56.EventArg.type", false]], "type (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[11, "algokit_utils.applications.app_spec.arc56.MethodArg.type", false]], "type (algokit_utils.applications.app_spec.arc56.returns attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Returns.type", false]], "type (algokit_utils.applications.app_spec.arc56.scratchvariables attribute)": [[11, "algokit_utils.applications.app_spec.arc56.ScratchVariables.type", false]], "type (algokit_utils.applications.app_spec.arc56.structfield attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StructField.type", false]], "type (algokit_utils.applications.app_spec.arc56.templatevariables attribute)": [[11, "algokit_utils.applications.app_spec.arc56.TemplateVariables.type", false]], "typedappclientprotocol (class in algokit_utils.protocols.typed_clients)": [[34, "algokit_utils.protocols.typed_clients.TypedAppClientProtocol", false]], "typedappfactoryprotocol (class in algokit_utils.protocols.typed_clients)": [[34, "algokit_utils.protocols.typed_clients.TypedAppFactoryProtocol", false]], "uint (algokit_utils.models.state.datatypeflag attribute)": [[30, "algokit_utils.models.state.DataTypeFlag.UINT", false]], "undictify() (algokit_utils.applications.app_spec.arc32.methodhints static method)": [[10, "algokit_utils.applications.app_spec.arc32.MethodHints.undictify", false]], "unit_name (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.unit_name", false]], "unit_name (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.unit_name", false]], "unit_name_b64 (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.unit_name_b64", false]], "updatable (algokit_utils.applications.app_client.appclientcompilationparams attribute)": [[6, "algokit_utils.applications.app_client.AppClientCompilationParams.updatable", false]], "updatable (algokit_utils.applications.app_deployer.appdeploymentmetadata attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.updatable", false]], "updatable (algokit_utils.applications.app_deployer.applicationmetadata property)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.updatable", false]], "updatable_template_name (in module algokit_utils)": [[0, "algokit_utils.UPDATABLE_TEMPLATE_NAME", false]], "updatable_template_name (in module algokit_utils.applications.app_manager)": [[9, "algokit_utils.applications.app_manager.UPDATABLE_TEMPLATE_NAME", false]], "updatableconfig (class in algokit_utils.config)": [[20, "algokit_utils.config.UpdatableConfig", false]], "update (algokit_utils.applications.enums.operationperformed attribute)": [[13, "algokit_utils.applications.enums.OperationPerformed.Update", false]], "update (algokit_utils.operationperformed attribute)": [[0, "algokit_utils.OperationPerformed.Update", false]], "update() (algokit_utils.applicationclient method)": [[0, "algokit_utils.ApplicationClient.update", false]], "update_application (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[11, "algokit_utils.applications.app_spec.arc56.CallEnum.UPDATE_APPLICATION", false]], "update_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployParams.update_params", false]], "update_result (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeployResult.update_result", false]], "update_result (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryDeployResult.update_result", false]], "updateapp (algokit_utils.applications.enums.onupdate attribute)": [[13, "algokit_utils.applications.enums.OnUpdate.UpdateApp", false]], "updateapp (algokit_utils.onupdate attribute)": [[0, "algokit_utils.OnUpdate.UpdateApp", false]], "updated_round (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.updated_round", false]], "url (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.url", false]], "url (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.AssetCreateParams.url", false]], "url_b64 (algokit_utils.assets.asset_manager.assetinformation attribute)": [[15, "algokit_utils.assets.asset_manager.AssetInformation.url_b64", false]], "validity_window (algokit_utils.applications.app_client.commonappcallparams attribute)": [[6, "algokit_utils.applications.app_client.CommonAppCallParams.validity_window", false]], "value (algokit_utils.applications.abi.abireturn attribute)": [[5, "algokit_utils.applications.abi.ABIReturn.value", false]], "value (algokit_utils.applications.abi.boxabivalue attribute)": [[5, "algokit_utils.applications.abi.BoxABIValue.value", false]], "value (algokit_utils.applications.app_spec.arc56.templatevariables attribute)": [[11, "algokit_utils.applications.app_spec.arc56.TemplateVariables.value", false]], "value (algokit_utils.models.application.appstate attribute)": [[26, "algokit_utils.models.application.AppState.value", false]], "value (algokit_utils.models.state.boxvalue attribute)": [[30, "algokit_utils.models.state.BoxValue.value", false]], "value_base64 (algokit_utils.models.application.appstate attribute)": [[26, "algokit_utils.models.application.AppState.value_base64", false]], "value_raw (algokit_utils.models.application.appstate attribute)": [[26, "algokit_utils.models.application.AppState.value_raw", false]], "value_type (algokit_utils.applications.app_spec.arc56.storagekey attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StorageKey.value_type", false]], "value_type (algokit_utils.applications.app_spec.arc56.storagemap attribute)": [[11, "algokit_utils.applications.app_spec.arc56.StorageMap.value_type", false]], "version (algokit_utils.applications.app_deployer.appdeploymentmetadata attribute)": [[7, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.version", false]], "version (algokit_utils.applications.app_deployer.applicationmetadata property)": [[7, "algokit_utils.applications.app_deployer.ApplicationMetaData.version", false]], "version (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[8, "algokit_utils.applications.app_factory.AppFactoryParams.version", false]], "version (algokit_utils.models.account.multisigmetadata attribute)": [[24, "algokit_utils.models.account.MultisigMetadata.version", false]], "vote_first (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.vote_first", false]], "vote_key (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.vote_key", false]], "vote_key_dilution (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.vote_key_dilution", false]], "vote_last (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[36, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.vote_last", false]], "with_debug() (algokit_utils.config.updatableconfig method)": [[20, "algokit_utils.config.UpdatableConfig.with_debug", false]], "write_bytes (algokit_utils.applications.app_spec.arc56.boxes attribute)": [[11, "algokit_utils.applications.app_spec.arc56.Boxes.write_bytes", false]]}, "objects": {"": [[23, 0, 0, "-", "algokit_utils"]], "algokit_utils": [[0, 1, 1, "", "ABICallArgs"], [0, 1, 1, "", "ABICallArgsDict"], [0, 1, 1, "", "ABICreateCallArgs"], [0, 1, 1, "", "ABICreateCallArgsDict"], [0, 1, 1, "", "ABITransactionResponse"], [0, 1, 1, "", "Account"], [0, 1, 1, "", "AlgoClientConfig"], [0, 1, 1, "", "AppDeployMetaData"], [0, 1, 1, "", "AppLookup"], [0, 1, 1, "", "AppMetaData"], [0, 1, 1, "", "AppReference"], [0, 4, 1, "", "AppSpecStateDict"], [0, 1, 1, "", "ApplicationClient"], [0, 1, 1, "", "ApplicationSpecification"], [0, 1, 1, "", "CallConfig"], [0, 1, 1, "", "CreateCallParameters"], [0, 1, 1, "", "CreateCallParametersDict"], [0, 1, 1, "", "CreateTransactionParameters"], [0, 4, 1, "", "DELETABLE_TEMPLATE_NAME"], [0, 1, 1, "", "DefaultArgumentDict"], [0, 4, 1, "", "DefaultArgumentType"], [0, 1, 1, "", "DeployCallArgs"], [0, 1, 1, "", "DeployCallArgsDict"], [0, 1, 1, "", "DeployCreateCallArgs"], [0, 1, 1, "", "DeployCreateCallArgsDict"], [0, 1, 1, "", "DeployResponse"], [0, 6, 1, "", "DeploymentFailedError"], [0, 1, 1, "", "EnsureBalanceParameters"], [0, 1, 1, "", "EnsureFundedResponse"], [0, 6, 1, "", "LogicError"], [0, 4, 1, "", "MethodConfigDict"], [0, 1, 1, "", "MethodHints"], [0, 4, 1, "", "NOTE_PREFIX"], [0, 4, 1, "", "OnCompleteActionName"], [0, 1, 1, "", "OnCompleteCallParameters"], [0, 1, 1, "", "OnCompleteCallParametersDict"], [0, 1, 1, "", "OnSchemaBreak"], [0, 1, 1, "", "OnUpdate"], [0, 1, 1, "", "OperationPerformed"], [0, 1, 1, "", "Program"], [0, 4, 1, "", "TemplateValueDict"], [0, 4, 1, "", "TemplateValueMapping"], [0, 1, 1, "", "TestNetDispenserApiClient"], [0, 1, 1, "", "TransactionParameters"], [0, 1, 1, "", "TransactionParametersDict"], [0, 1, 1, "", "TransactionResponse"], [0, 1, 1, "", "TransferAssetParameters"], [0, 1, 1, "", "TransferParameters"], [0, 4, 1, "", "UPDATABLE_TEMPLATE_NAME"], [2, 0, 0, "-", "accounts"], [4, 0, 0, "-", "algorand"], [14, 0, 0, "-", "applications"], [16, 0, 0, "-", "assets"], [19, 0, 0, "-", "clients"], [20, 0, 0, "-", "config"], [0, 7, 1, "", "create_kmd_wallet_account"], [0, 7, 1, "", "ensure_funded"], [21, 0, 0, "-", "errors"], [0, 7, 1, "", "execute_atc_with_logic_error"], [0, 7, 1, "", "get_account"], [0, 7, 1, "", "get_account_from_mnemonic"], [0, 7, 1, "", "get_algod_client"], [0, 7, 1, "", "get_app_id_from_tx_id"], [0, 7, 1, "", "get_creator_apps"], [0, 7, 1, "", "get_default_localnet_config"], [0, 7, 1, "", "get_dispenser_account"], [0, 7, 1, "", "get_indexer_client"], [0, 7, 1, "", "get_kmd_client_from_algod_client"], [0, 7, 1, "", "get_kmd_wallet_account"], [0, 7, 1, "", "get_localnet_default_account"], [0, 7, 1, "", "get_next_version"], [0, 7, 1, "", "get_or_create_kmd_wallet_account"], [0, 7, 1, "", "get_sender_from_signer"], [0, 7, 1, "", "is_localnet"], [0, 7, 1, "", "is_mainnet"], [0, 7, 1, "", "is_testnet"], [27, 0, 0, "-", "models"], [0, 7, 1, "", "num_extra_program_pages"], [0, 7, 1, "", "opt_in"], [0, 7, 1, "", "opt_out"], [0, 7, 1, "", "persist_sourcemaps"], [33, 0, 0, "-", "protocols"], [0, 7, 1, "", "replace_template_variables"], [0, 7, 1, "", "simulate_and_persist_response"], [35, 0, 0, "-", "transactions"], [0, 7, 1, "", "transfer"], [0, 7, 1, "", "transfer_asset"]], "algokit_utils.ABITransactionResponse": [[0, 2, 1, "", "decode_error"], [0, 2, 1, "", "method"], [0, 2, 1, "", "raw_value"], [0, 2, 1, "", "return_value"], [0, 2, 1, "", "tx_info"]], "algokit_utils.Account": [[0, 2, 1, "", "address"], [0, 2, 1, "", "private_key"], [0, 3, 1, "", "public_key"], [0, 3, 1, "", "signer"]], "algokit_utils.AlgoClientConfig": [[0, 2, 1, "", "server"], [0, 2, 1, "", "token"]], "algokit_utils.ApplicationClient": [[0, 5, 1, "", "add_method_call"], [0, 5, 1, "", "call"], [0, 5, 1, "", "clear_state"], [0, 5, 1, "", "close_out"], [0, 5, 1, "", "compose_call"], [0, 5, 1, "", "compose_clear_state"], [0, 5, 1, "", "compose_close_out"], [0, 5, 1, "", "compose_create"], [0, 5, 1, "", "compose_delete"], [0, 5, 1, "", "compose_opt_in"], [0, 5, 1, "", "compose_update"], [0, 5, 1, "", "create"], [0, 5, 1, "", "delete"], [0, 5, 1, "", "deploy"], [0, 5, 1, "", "export_source_map"], [0, 5, 1, "", "get_global_state"], [0, 5, 1, "", "get_local_state"], [0, 5, 1, "", "get_signer_sender"], [0, 5, 1, "", "import_source_map"], [0, 5, 1, "", "opt_in"], [0, 5, 1, "", "prepare"], [0, 5, 1, "", "resolve"], [0, 5, 1, "", "resolve_signer_sender"], [0, 5, 1, "", "update"]], "algokit_utils.ApplicationSpecification": [[0, 5, 1, "", "export"]], "algokit_utils.CallConfig": [[0, 2, 1, "", "ALL"], [0, 2, 1, "", "CALL"], [0, 2, 1, "", "CREATE"], [0, 2, 1, "", "NEVER"]], "algokit_utils.EnsureBalanceParameters": [[0, 2, 1, "", "account_to_fund"], [0, 2, 1, "", "fee_micro_algos"], [0, 2, 1, "", "funding_source"], [0, 2, 1, "", "max_fee_micro_algos"], [0, 2, 1, "", "min_funding_increment_micro_algos"], [0, 2, 1, "", "min_spending_balance_micro_algos"], [0, 2, 1, "", "note"], [0, 2, 1, "", "suggested_params"]], "algokit_utils.EnsureFundedResponse": [[0, 2, 1, "", "transaction_id"]], "algokit_utils.OnSchemaBreak": [[0, 2, 1, "", "AppendApp"], [0, 2, 1, "", "Fail"], [0, 2, 1, "", "ReplaceApp"]], "algokit_utils.OnUpdate": [[0, 2, 1, "", "AppendApp"], [0, 2, 1, "", "Fail"], [0, 2, 1, "", "ReplaceApp"], [0, 2, 1, "", "UpdateApp"]], "algokit_utils.OperationPerformed": [[0, 2, 1, "", "Create"], [0, 2, 1, "", "Nothing"], [0, 2, 1, "", "Replace"], [0, 2, 1, "", "Update"]], "algokit_utils.TestNetDispenserApiClient": [[0, 5, 1, "", "fund"], [0, 5, 1, "", "get_limit"], [0, 5, 1, "", "refund"]], "algokit_utils.TransactionParameters": [[0, 2, 1, "", "accounts"], [0, 2, 1, "", "boxes"], [0, 2, 1, "", "foreign_apps"], [0, 2, 1, "", "foreign_assets"], [0, 2, 1, "", "lease"], [0, 2, 1, "", "note"], [0, 2, 1, "", "rekey_to"], [0, 2, 1, "", "sender"], [0, 2, 1, "", "signer"], [0, 2, 1, "", "suggested_params"]], "algokit_utils.TransactionParametersDict": [[0, 2, 1, "", "accounts"], [0, 2, 1, "", "boxes"], [0, 2, 1, "", "foreign_apps"], [0, 2, 1, "", "foreign_assets"], [0, 2, 1, "", "lease"], [0, 2, 1, "", "note"], [0, 2, 1, "", "rekey_to"], [0, 2, 1, "", "sender"], [0, 2, 1, "", "signer"], [0, 2, 1, "", "suggested_params"]], "algokit_utils.TransactionResponse": [[0, 2, 1, "", "confirmed_round"], [0, 5, 1, "", "from_atr"], [0, 2, 1, "", "tx_id"]], "algokit_utils.accounts": [[1, 0, 0, "-", "account_manager"], [3, 0, 0, "-", "kmd_account_manager"]], "algokit_utils.accounts.account_manager": [[1, 1, 1, "", "AccountInformation"], [1, 1, 1, "", "AccountManager"], [1, 1, 1, "", "EnsureFundedFromTestnetDispenserApiResult"], [1, 1, 1, "", "EnsureFundedResult"]], "algokit_utils.accounts.account_manager.AccountInformation": [[1, 2, 1, "", "address"], [1, 2, 1, "", "amount"], [1, 2, 1, "", "amount_without_pending_rewards"], [1, 2, 1, "", "apps_local_state"], [1, 2, 1, "", "apps_total_extra_pages"], [1, 2, 1, "", "apps_total_schema"], [1, 2, 1, "", "assets"], [1, 2, 1, "", "auth_addr"], [1, 2, 1, "", "closed_at_round"], [1, 2, 1, "", "created_apps"], [1, 2, 1, "", "created_assets"], [1, 2, 1, "", "created_at_round"], [1, 2, 1, "", "deleted"], [1, 2, 1, "", "incentive_eligible"], [1, 2, 1, "", "last_heartbeat"], [1, 2, 1, "", "last_proposed"], [1, 2, 1, "", "min_balance"], [1, 2, 1, "", "participation"], [1, 2, 1, "", "pending_rewards"], [1, 2, 1, "", "reward_base"], [1, 2, 1, "", "rewards"], [1, 2, 1, "", "round"], [1, 2, 1, "", "sig_type"], [1, 2, 1, "", "status"], [1, 2, 1, "", "total_apps_opted_in"], [1, 2, 1, "", "total_assets_opted_in"], [1, 2, 1, "", "total_box_bytes"], [1, 2, 1, "", "total_boxes"], [1, 2, 1, "", "total_created_apps"], [1, 2, 1, "", "total_created_assets"]], "algokit_utils.accounts.account_manager.AccountManager": [[1, 5, 1, "", "dispenser_from_environment"], [1, 5, 1, "", "ensure_funded"], [1, 5, 1, "", "ensure_funded_from_environment"], [1, 5, 1, "", "ensure_funded_from_testnet_dispenser_api"], [1, 5, 1, "", "from_environment"], [1, 5, 1, "", "from_kmd"], [1, 5, 1, "", "from_mnemonic"], [1, 5, 1, "", "get_account"], [1, 5, 1, "", "get_information"], [1, 5, 1, "", "get_signer"], [1, 3, 1, "", "kmd"], [1, 5, 1, "", "localnet_dispenser"], [1, 5, 1, "", "logicsig"], [1, 5, 1, "", "multisig"], [1, 5, 1, "", "random"], [1, 5, 1, "", "rekey_account"], [1, 5, 1, "", "rekeyed"], [1, 5, 1, "", "set_default_signer"], [1, 5, 1, "", "set_signer"], [1, 5, 1, "", "set_signer_from_account"], [1, 5, 1, "", "set_signers"]], "algokit_utils.accounts.kmd_account_manager": [[3, 1, 1, "", "KmdAccount"], [3, 1, 1, "", "KmdAccountManager"]], "algokit_utils.accounts.kmd_account_manager.KmdAccountManager": [[3, 5, 1, "", "get_localnet_dispenser_account"], [3, 5, 1, "", "get_or_create_wallet_account"], [3, 5, 1, "", "get_wallet_account"], [3, 5, 1, "", "kmd"]], "algokit_utils.algorand": [[4, 1, 1, "", "AlgorandClient"]], "algokit_utils.algorand.AlgorandClient": [[4, 3, 1, "", "account"], [4, 3, 1, "", "app"], [4, 3, 1, "", "app_deployer"], [4, 3, 1, "", "asset"], [4, 3, 1, "", "client"], [4, 3, 1, "", "create_transaction"], [4, 5, 1, "", "default_localnet"], [4, 5, 1, "", "from_clients"], [4, 5, 1, "", "from_config"], [4, 5, 1, "", "from_environment"], [4, 5, 1, "", "get_suggested_params"], [4, 5, 1, "", "mainnet"], [4, 5, 1, "", "new_group"], [4, 3, 1, "", "send"], [4, 5, 1, "", "set_default_signer"], [4, 5, 1, "", "set_default_validity_window"], [4, 5, 1, "", "set_signer"], [4, 5, 1, "", "set_signer_from_account"], [4, 5, 1, "", "set_suggested_params_cache"], [4, 5, 1, "", "set_suggested_params_cache_timeout"], [4, 5, 1, "", "testnet"]], "algokit_utils.applications": [[5, 0, 0, "-", "abi"], [6, 0, 0, "-", "app_client"], [7, 0, 0, "-", "app_deployer"], [8, 0, 0, "-", "app_factory"], [9, 0, 0, "-", "app_manager"], [12, 0, 0, "-", "app_spec"], [13, 0, 0, "-", "enums"]], "algokit_utils.applications.abi": [[5, 4, 1, "", "ABIArgumentType"], [5, 1, 1, "", "ABIReturn"], [5, 4, 1, "", "ABIStruct"], [5, 4, 1, "", "ABIType"], [5, 4, 1, "", "ABIValue"], [5, 4, 1, "", "Arc56ReturnValueType"], [5, 1, 1, "", "BoxABIValue"], [5, 7, 1, "", "get_abi_decoded_value"], [5, 7, 1, "", "get_abi_encoded_value"], [5, 7, 1, "", "get_abi_struct_from_abi_tuple"], [5, 7, 1, "", "get_abi_tuple_from_abi_struct"], [5, 7, 1, "", "get_abi_tuple_type_from_abi_struct_definition"], [5, 7, 1, "", "get_arc56_value"]], "algokit_utils.applications.abi.ABIReturn": [[5, 2, 1, "", "decode_error"], [5, 5, 1, "", "get_arc56_value"], [5, 3, 1, "", "is_success"], [5, 2, 1, "", "method"], [5, 2, 1, "", "raw_value"], [5, 2, 1, "", "tx_info"], [5, 2, 1, "", "value"]], "algokit_utils.applications.abi.BoxABIValue": [[5, 2, 1, "", "name"], [5, 2, 1, "", "value"]], "algokit_utils.applications.app_client": [[6, 1, 1, "", "AppClient"], [6, 1, 1, "", "AppClientBareCallCreateParams"], [6, 1, 1, "", "AppClientBareCallParams"], [6, 1, 1, "", "AppClientCompilationParams"], [6, 1, 1, "", "AppClientCompilationResult"], [6, 1, 1, "", "AppClientCreateSchema"], [6, 1, 1, "", "AppClientMethodCallCreateParams"], [6, 1, 1, "", "AppClientMethodCallParams"], [6, 1, 1, "", "AppClientParams"], [6, 1, 1, "", "BaseAppClientMethodCallParams"], [6, 1, 1, "", "CommonAppCallCreateParams"], [6, 1, 1, "", "CommonAppCallParams"], [6, 4, 1, "", "CreateOnComplete"], [6, 1, 1, "", "FundAppAccountParams"], [6, 7, 1, "", "get_constant_block_offset"]], "algokit_utils.applications.app_client.AppClient": [[6, 3, 1, "", "algorand"], [6, 3, 1, "", "app_address"], [6, 3, 1, "", "app_id"], [6, 3, 1, "", "app_name"], [6, 3, 1, "", "app_spec"], [6, 5, 1, "", "clone"], [6, 5, 1, "", "compile"], [6, 5, 1, "", "compile_app"], [6, 3, 1, "", "create_transaction"], [6, 5, 1, "", "export_source_maps"], [6, 5, 1, "", "from_creator_and_name"], [6, 5, 1, "", "from_network"], [6, 5, 1, "", "fund_app_account"], [6, 5, 1, "", "get_box_names"], [6, 5, 1, "", "get_box_value"], [6, 5, 1, "", "get_box_value_from_abi_type"], [6, 5, 1, "", "get_box_values"], [6, 5, 1, "", "get_box_values_from_abi_type"], [6, 5, 1, "", "get_global_state"], [6, 5, 1, "", "get_local_state"], [6, 5, 1, "", "import_source_maps"], [6, 5, 1, "", "normalise_app_spec"], [6, 3, 1, "", "params"], [6, 3, 1, "", "send"], [6, 3, 1, "", "state"]], "algokit_utils.applications.app_client.AppClientBareCallCreateParams": [[6, 2, 1, "", "on_complete"]], "algokit_utils.applications.app_client.AppClientBareCallParams": [[6, 2, 1, "", "args"]], "algokit_utils.applications.app_client.AppClientCompilationParams": [[6, 2, 1, "", "deletable"], [6, 2, 1, "", "deploy_time_params"], [6, 2, 1, "", "updatable"]], "algokit_utils.applications.app_client.AppClientCompilationResult": [[6, 2, 1, "", "approval_program"], [6, 2, 1, "", "clear_state_program"], [6, 2, 1, "", "compiled_approval"], [6, 2, 1, "", "compiled_clear"]], "algokit_utils.applications.app_client.AppClientCreateSchema": [[6, 2, 1, "", "extra_program_pages"], [6, 2, 1, "", "schema"]], "algokit_utils.applications.app_client.AppClientMethodCallCreateParams": [[6, 2, 1, "", "on_complete"]], "algokit_utils.applications.app_client.AppClientParams": [[6, 2, 1, "", "algorand"], [6, 2, 1, "", "app_id"], [6, 2, 1, "", "app_name"], [6, 2, 1, "", "app_spec"], [6, 2, 1, "", "approval_source_map"], [6, 2, 1, "", "clear_source_map"], [6, 2, 1, "", "default_sender"], [6, 2, 1, "", "default_signer"]], "algokit_utils.applications.app_client.BaseAppClientMethodCallParams": [[6, 2, 1, "", "args"], [6, 2, 1, "", "method"]], "algokit_utils.applications.app_client.CommonAppCallCreateParams": [[6, 2, 1, "", "on_complete"]], "algokit_utils.applications.app_client.CommonAppCallParams": [[6, 2, 1, "", "account_references"], [6, 2, 1, "", "app_references"], [6, 2, 1, "", "asset_references"], [6, 2, 1, "", "box_references"], [6, 2, 1, "", "extra_fee"], [6, 2, 1, "", "first_valid_round"], [6, 2, 1, "", "last_valid_round"], [6, 2, 1, "", "lease"], [6, 2, 1, "", "max_fee"], [6, 2, 1, "", "note"], [6, 2, 1, "", "on_complete"], [6, 2, 1, "", "rekey_to"], [6, 2, 1, "", "sender"], [6, 2, 1, "", "signer"], [6, 2, 1, "", "static_fee"], [6, 2, 1, "", "validity_window"]], "algokit_utils.applications.app_client.FundAppAccountParams": [[6, 2, 1, "", "amount"], [6, 2, 1, "", "close_remainder_to"]], "algokit_utils.applications.app_deployer": [[7, 4, 1, "", "APP_DEPLOY_NOTE_DAPP"], [7, 1, 1, "", "AppDeployParams"], [7, 1, 1, "", "AppDeployResult"], [7, 1, 1, "", "AppDeployer"], [7, 1, 1, "", "AppDeploymentMetaData"], [7, 1, 1, "", "ApplicationLookup"], [7, 1, 1, "", "ApplicationMetaData"], [7, 1, 1, "", "ApplicationReference"]], "algokit_utils.applications.app_deployer.AppDeployParams": [[7, 2, 1, "", "create_params"], [7, 2, 1, "", "delete_params"], [7, 2, 1, "", "deploy_time_params"], [7, 2, 1, "", "existing_deployments"], [7, 2, 1, "", "ignore_cache"], [7, 2, 1, "", "max_fee"], [7, 2, 1, "", "metadata"], [7, 2, 1, "", "on_schema_break"], [7, 2, 1, "", "on_update"], [7, 2, 1, "", "send_params"], [7, 2, 1, "", "update_params"]], "algokit_utils.applications.app_deployer.AppDeployResult": [[7, 2, 1, "", "app"], [7, 2, 1, "", "create_result"], [7, 2, 1, "", "delete_result"], [7, 2, 1, "", "operation_performed"], [7, 2, 1, "", "update_result"]], "algokit_utils.applications.app_deployer.AppDeployer": [[7, 5, 1, "", "deploy"], [7, 5, 1, "", "get_creator_apps_by_name"]], "algokit_utils.applications.app_deployer.AppDeploymentMetaData": [[7, 2, 1, "", "deletable"], [7, 5, 1, "", "dictify"], [7, 2, 1, "", "name"], [7, 2, 1, "", "updatable"], [7, 2, 1, "", "version"]], "algokit_utils.applications.app_deployer.ApplicationLookup": [[7, 2, 1, "", "apps"], [7, 2, 1, "", "creator"]], "algokit_utils.applications.app_deployer.ApplicationMetaData": [[7, 3, 1, "", "app_address"], [7, 3, 1, "", "app_id"], [7, 2, 1, "", "created_round"], [7, 3, 1, "", "deletable"], [7, 2, 1, "", "deleted"], [7, 2, 1, "", "deploy_metadata"], [7, 3, 1, "", "name"], [7, 2, 1, "", "reference"], [7, 3, 1, "", "updatable"], [7, 2, 1, "", "updated_round"], [7, 3, 1, "", "version"]], "algokit_utils.applications.app_deployer.ApplicationReference": [[7, 2, 1, "", "app_address"], [7, 2, 1, "", "app_id"]], "algokit_utils.applications.app_factory": [[8, 1, 1, "", "AppFactory"], [8, 1, 1, "", "AppFactoryCreateMethodCallParams"], [8, 1, 1, "", "AppFactoryCreateMethodCallResult"], [8, 1, 1, "", "AppFactoryCreateParams"], [8, 1, 1, "", "AppFactoryDeployResult"], [8, 1, 1, "", "AppFactoryParams"], [8, 1, 1, "", "SendAppCreateFactoryTransactionResult"], [8, 1, 1, "", "SendAppFactoryTransactionResult"], [8, 1, 1, "", "SendAppUpdateFactoryTransactionResult"]], "algokit_utils.applications.app_factory.AppFactory": [[8, 3, 1, "", "algorand"], [8, 3, 1, "", "app_name"], [8, 3, 1, "", "app_spec"], [8, 5, 1, "", "compile"], [8, 3, 1, "", "create_transaction"], [8, 5, 1, "", "deploy"], [8, 5, 1, "", "export_source_maps"], [8, 5, 1, "", "get_app_client_by_creator_and_name"], [8, 5, 1, "", "get_app_client_by_id"], [8, 5, 1, "", "import_source_maps"], [8, 3, 1, "", "params"], [8, 3, 1, "", "send"]], "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult": [[8, 2, 1, "", "abi_return"], [8, 2, 1, "", "app_address"], [8, 2, 1, "", "app_id"], [8, 2, 1, "", "compiled_approval"], [8, 2, 1, "", "compiled_clear"]], "algokit_utils.applications.app_factory.AppFactoryCreateParams": [[8, 2, 1, "", "on_complete"]], "algokit_utils.applications.app_factory.AppFactoryDeployResult": [[8, 2, 1, "", "app"], [8, 2, 1, "", "create_result"], [8, 2, 1, "", "delete_result"], [8, 5, 1, "", "from_deploy_result"], [8, 2, 1, "", "operation_performed"], [8, 2, 1, "", "update_result"]], "algokit_utils.applications.app_factory.AppFactoryParams": [[8, 2, 1, "", "algorand"], [8, 2, 1, "", "app_name"], [8, 2, 1, "", "app_spec"], [8, 2, 1, "", "compilation_params"], [8, 2, 1, "", "default_sender"], [8, 2, 1, "", "default_signer"], [8, 2, 1, "", "version"]], "algokit_utils.applications.app_manager": [[9, 1, 1, "", "AppManager"], [9, 4, 1, "", "DELETABLE_TEMPLATE_NAME"], [9, 4, 1, "", "UPDATABLE_TEMPLATE_NAME"]], "algokit_utils.applications.app_manager.AppManager": [[9, 5, 1, "", "compile_teal"], [9, 5, 1, "", "compile_teal_template"], [9, 5, 1, "", "decode_app_state"], [9, 5, 1, "", "get_abi_return"], [9, 5, 1, "", "get_box_names"], [9, 5, 1, "", "get_box_reference"], [9, 5, 1, "", "get_box_value"], [9, 5, 1, "", "get_box_value_from_abi_type"], [9, 5, 1, "", "get_box_values"], [9, 5, 1, "", "get_box_values_from_abi_type"], [9, 5, 1, "", "get_by_id"], [9, 5, 1, "", "get_compilation_result"], [9, 5, 1, "", "get_global_state"], [9, 5, 1, "", "get_local_state"], [9, 5, 1, "", "replace_teal_template_deploy_time_control_params"], [9, 5, 1, "", "replace_template_variables"], [9, 5, 1, "", "strip_teal_comments"]], "algokit_utils.applications.app_spec": [[10, 0, 0, "-", "arc32"], [11, 0, 0, "-", "arc56"]], "algokit_utils.applications.app_spec.arc32": [[10, 4, 1, "", "AppSpecStateDict"], [10, 1, 1, "", "Arc32Contract"], [10, 1, 1, "", "CallConfig"], [10, 1, 1, "", "DefaultArgumentDict"], [10, 4, 1, "", "DefaultArgumentType"], [10, 4, 1, "", "MethodConfigDict"], [10, 1, 1, "", "MethodHints"], [10, 4, 1, "", "OnCompleteActionName"], [10, 4, 1, "", "StateDict"], [10, 1, 1, "", "StructArgDict"]], "algokit_utils.applications.app_spec.arc32.Arc32Contract": [[10, 2, 1, "", "approval_program"], [10, 2, 1, "", "bare_call_config"], [10, 2, 1, "", "clear_program"], [10, 2, 1, "", "contract"], [10, 5, 1, "", "dictify"], [10, 5, 1, "", "export"], [10, 5, 1, "", "from_json"], [10, 2, 1, "", "global_state_schema"], [10, 2, 1, "", "hints"], [10, 2, 1, "", "local_state_schema"], [10, 2, 1, "", "schema"], [10, 5, 1, "", "to_json"]], "algokit_utils.applications.app_spec.arc32.CallConfig": [[10, 2, 1, "", "ALL"], [10, 2, 1, "", "CALL"], [10, 2, 1, "", "CREATE"], [10, 2, 1, "", "NEVER"]], "algokit_utils.applications.app_spec.arc32.DefaultArgumentDict": [[10, 2, 1, "", "data"], [10, 2, 1, "", "source"]], "algokit_utils.applications.app_spec.arc32.MethodHints": [[10, 2, 1, "", "call_config"], [10, 2, 1, "", "default_arguments"], [10, 5, 1, "", "dictify"], [10, 5, 1, "", "empty"], [10, 2, 1, "", "read_only"], [10, 2, 1, "", "structs"], [10, 5, 1, "", "undictify"]], "algokit_utils.applications.app_spec.arc32.StructArgDict": [[10, 2, 1, "", "elements"], [10, 2, 1, "", "name"]], "algokit_utils.applications.app_spec.arc56": [[11, 1, 1, "", "Actions"], [11, 1, 1, "", "Arc56Contract"], [11, 1, 1, "", "BareActions"], [11, 1, 1, "", "Boxes"], [11, 1, 1, "", "ByteCode"], [11, 1, 1, "", "CallEnum"], [11, 1, 1, "", "Compiler"], [11, 1, 1, "", "CompilerInfo"], [11, 1, 1, "", "CompilerVersion"], [11, 1, 1, "", "CreateEnum"], [11, 1, 1, "", "DefaultValue"], [11, 1, 1, "", "Event"], [11, 1, 1, "", "EventArg"], [11, 1, 1, "", "Global"], [11, 1, 1, "", "Keys"], [11, 1, 1, "", "Local"], [11, 1, 1, "", "Maps"], [11, 1, 1, "", "Method"], [11, 1, 1, "", "MethodArg"], [11, 1, 1, "", "Network"], [11, 1, 1, "", "PcOffsetMethod"], [11, 1, 1, "", "ProgramSourceInfo"], [11, 1, 1, "", "Recommendations"], [11, 1, 1, "", "Returns"], [11, 1, 1, "", "Schema"], [11, 1, 1, "", "ScratchVariables"], [11, 1, 1, "", "Source"], [11, 1, 1, "", "SourceInfo"], [11, 1, 1, "", "SourceInfoModel"], [11, 1, 1, "", "State"], [11, 1, 1, "", "StorageKey"], [11, 1, 1, "", "StorageMap"], [11, 1, 1, "", "StructField"], [11, 1, 1, "", "TemplateVariables"]], "algokit_utils.applications.app_spec.arc56.Actions": [[11, 2, 1, "", "call"], [11, 2, 1, "", "create"], [11, 5, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.Arc56Contract": [[11, 2, 1, "", "arcs"], [11, 2, 1, "", "bare_actions"], [11, 2, 1, "", "byte_code"], [11, 2, 1, "", "compiler_info"], [11, 2, 1, "", "desc"], [11, 5, 1, "", "dictify"], [11, 2, 1, "", "events"], [11, 5, 1, "", "from_arc32"], [11, 5, 1, "", "from_dict"], [11, 5, 1, "", "from_json"], [11, 5, 1, "", "get_abi_struct_from_abi_tuple"], [11, 5, 1, "", "get_arc56_method"], [11, 2, 1, "", "methods"], [11, 2, 1, "", "name"], [11, 2, 1, "", "networks"], [11, 2, 1, "", "scratch_variables"], [11, 2, 1, "", "source"], [11, 2, 1, "", "source_info"], [11, 2, 1, "", "state"], [11, 2, 1, "", "structs"], [11, 2, 1, "", "template_variables"], [11, 5, 1, "", "to_json"]], "algokit_utils.applications.app_spec.arc56.BareActions": [[11, 2, 1, "", "call"], [11, 2, 1, "", "create"], [11, 5, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.Boxes": [[11, 2, 1, "", "app"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "key"], [11, 2, 1, "", "read_bytes"], [11, 2, 1, "", "write_bytes"]], "algokit_utils.applications.app_spec.arc56.ByteCode": [[11, 2, 1, "", "approval"], [11, 2, 1, "", "clear"], [11, 5, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.CallEnum": [[11, 2, 1, "", "CLEAR_STATE"], [11, 2, 1, "", "CLOSE_OUT"], [11, 2, 1, "", "DELETE_APPLICATION"], [11, 2, 1, "", "NO_OP"], [11, 2, 1, "", "OPT_IN"], [11, 2, 1, "", "UPDATE_APPLICATION"]], "algokit_utils.applications.app_spec.arc56.Compiler": [[11, 2, 1, "", "ALGOD"], [11, 2, 1, "", "PUYA"]], "algokit_utils.applications.app_spec.arc56.CompilerInfo": [[11, 2, 1, "", "compiler"], [11, 2, 1, "", "compiler_version"], [11, 5, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.CompilerVersion": [[11, 2, 1, "", "commit_hash"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "major"], [11, 2, 1, "", "minor"], [11, 2, 1, "", "patch"]], "algokit_utils.applications.app_spec.arc56.CreateEnum": [[11, 2, 1, "", "DELETE_APPLICATION"], [11, 2, 1, "", "NO_OP"], [11, 2, 1, "", "OPT_IN"]], "algokit_utils.applications.app_spec.arc56.DefaultValue": [[11, 2, 1, "", "data"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "source"], [11, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Event": [[11, 2, 1, "", "args"], [11, 2, 1, "", "desc"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "name"]], "algokit_utils.applications.app_spec.arc56.EventArg": [[11, 2, 1, "", "desc"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "name"], [11, 2, 1, "", "struct"], [11, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Global": [[11, 2, 1, "", "bytes"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "ints"]], "algokit_utils.applications.app_spec.arc56.Keys": [[11, 2, 1, "", "box"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "global_state"], [11, 2, 1, "", "local_state"]], "algokit_utils.applications.app_spec.arc56.Local": [[11, 2, 1, "", "bytes"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "ints"]], "algokit_utils.applications.app_spec.arc56.Maps": [[11, 2, 1, "", "box"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "global_state"], [11, 2, 1, "", "local_state"]], "algokit_utils.applications.app_spec.arc56.Method": [[11, 2, 1, "", "actions"], [11, 2, 1, "", "args"], [11, 2, 1, "", "desc"], [11, 2, 1, "", "events"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "name"], [11, 2, 1, "", "readonly"], [11, 2, 1, "", "recommendations"], [11, 2, 1, "", "returns"], [11, 5, 1, "", "to_abi_method"]], "algokit_utils.applications.app_spec.arc56.MethodArg": [[11, 2, 1, "", "default_value"], [11, 2, 1, "", "desc"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "name"], [11, 2, 1, "", "struct"], [11, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Network": [[11, 2, 1, "", "app_id"], [11, 5, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.PcOffsetMethod": [[11, 2, 1, "", "CBLOCKS"], [11, 2, 1, "", "NONE"]], "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo": [[11, 5, 1, "", "from_dict"], [11, 2, 1, "", "pc_offset_method"], [11, 2, 1, "", "source_info"]], "algokit_utils.applications.app_spec.arc56.Recommendations": [[11, 2, 1, "", "accounts"], [11, 2, 1, "", "apps"], [11, 2, 1, "", "assets"], [11, 2, 1, "", "boxes"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "inner_transaction_count"]], "algokit_utils.applications.app_spec.arc56.Returns": [[11, 2, 1, "", "desc"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "struct"], [11, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Schema": [[11, 5, 1, "", "from_dict"], [11, 2, 1, "", "global_state"], [11, 2, 1, "", "local_state"]], "algokit_utils.applications.app_spec.arc56.ScratchVariables": [[11, 5, 1, "", "from_dict"], [11, 2, 1, "", "slot"], [11, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Source": [[11, 2, 1, "", "approval"], [11, 2, 1, "", "clear"], [11, 5, 1, "", "from_dict"], [11, 5, 1, "", "get_decoded_approval"], [11, 5, 1, "", "get_decoded_clear"]], "algokit_utils.applications.app_spec.arc56.SourceInfo": [[11, 2, 1, "", "error_message"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "pc"], [11, 2, 1, "", "source"], [11, 2, 1, "", "teal"]], "algokit_utils.applications.app_spec.arc56.SourceInfoModel": [[11, 2, 1, "", "approval"], [11, 2, 1, "", "clear"], [11, 5, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.State": [[11, 5, 1, "", "from_dict"], [11, 2, 1, "", "keys"], [11, 2, 1, "", "maps"], [11, 2, 1, "", "schema"]], "algokit_utils.applications.app_spec.arc56.StorageKey": [[11, 2, 1, "", "desc"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "key"], [11, 2, 1, "", "key_type"], [11, 2, 1, "", "value_type"]], "algokit_utils.applications.app_spec.arc56.StorageMap": [[11, 2, 1, "", "desc"], [11, 5, 1, "", "from_dict"], [11, 2, 1, "", "key_type"], [11, 2, 1, "", "prefix"], [11, 2, 1, "", "value_type"]], "algokit_utils.applications.app_spec.arc56.StructField": [[11, 5, 1, "", "from_dict"], [11, 2, 1, "", "name"], [11, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.TemplateVariables": [[11, 5, 1, "", "from_dict"], [11, 2, 1, "", "type"], [11, 2, 1, "", "value"]], "algokit_utils.applications.enums": [[13, 1, 1, "", "OnSchemaBreak"], [13, 1, 1, "", "OnUpdate"], [13, 1, 1, "", "OperationPerformed"]], "algokit_utils.applications.enums.OnSchemaBreak": [[13, 2, 1, "", "AppendApp"], [13, 2, 1, "", "Fail"], [13, 2, 1, "", "ReplaceApp"]], "algokit_utils.applications.enums.OnUpdate": [[13, 2, 1, "", "AppendApp"], [13, 2, 1, "", "Fail"], [13, 2, 1, "", "ReplaceApp"], [13, 2, 1, "", "UpdateApp"]], "algokit_utils.applications.enums.OperationPerformed": [[13, 2, 1, "", "Create"], [13, 2, 1, "", "Nothing"], [13, 2, 1, "", "Replace"], [13, 2, 1, "", "Update"]], "algokit_utils.assets": [[15, 0, 0, "-", "asset_manager"]], "algokit_utils.assets.asset_manager": [[15, 1, 1, "", "AccountAssetInformation"], [15, 1, 1, "", "AssetInformation"], [15, 1, 1, "", "AssetManager"], [15, 1, 1, "", "BulkAssetOptInOutResult"]], "algokit_utils.assets.asset_manager.AccountAssetInformation": [[15, 2, 1, "", "asset_id"], [15, 2, 1, "", "balance"], [15, 2, 1, "", "frozen"], [15, 2, 1, "", "round"]], "algokit_utils.assets.asset_manager.AssetInformation": [[15, 2, 1, "", "asset_id"], [15, 2, 1, "", "asset_name"], [15, 2, 1, "", "asset_name_b64"], [15, 2, 1, "", "clawback"], [15, 2, 1, "", "creator"], [15, 2, 1, "", "decimals"], [15, 2, 1, "", "default_frozen"], [15, 2, 1, "", "freeze"], [15, 2, 1, "", "manager"], [15, 2, 1, "", "metadata_hash"], [15, 2, 1, "", "reserve"], [15, 2, 1, "", "total"], [15, 2, 1, "", "unit_name"], [15, 2, 1, "", "unit_name_b64"], [15, 2, 1, "", "url"], [15, 2, 1, "", "url_b64"]], "algokit_utils.assets.asset_manager.AssetManager": [[15, 5, 1, "", "bulk_opt_in"], [15, 5, 1, "", "bulk_opt_out"], [15, 5, 1, "", "get_account_information"], [15, 5, 1, "", "get_by_id"]], "algokit_utils.assets.asset_manager.BulkAssetOptInOutResult": [[15, 2, 1, "", "asset_id"], [15, 2, 1, "", "transaction_id"]], "algokit_utils.clients": [[17, 0, 0, "-", "client_manager"], [18, 0, 0, "-", "dispenser_api_client"]], "algokit_utils.clients.client_manager": [[17, 1, 1, "", "AlgoSdkClients"], [17, 1, 1, "", "ClientManager"], [17, 1, 1, "", "NetworkDetail"]], "algokit_utils.clients.client_manager.AlgoSdkClients": [[17, 2, 1, "", "algod"], [17, 2, 1, "", "indexer"], [17, 2, 1, "", "kmd"]], "algokit_utils.clients.client_manager.ClientManager": [[17, 3, 1, "", "algod"], [17, 5, 1, "", "genesis_id_is_localnet"], [17, 5, 1, "", "get_algod_client"], [17, 5, 1, "", "get_algod_client_from_environment"], [17, 5, 1, "", "get_algod_config_from_environment"], [17, 5, 1, "", "get_algonode_config"], [17, 5, 1, "", "get_app_client_by_creator_and_name"], [17, 5, 1, "", "get_app_client_by_id"], [17, 5, 1, "", "get_app_client_by_network"], [17, 5, 1, "", "get_app_factory"], [17, 5, 1, "", "get_config_from_environment_or_localnet"], [17, 5, 1, "", "get_default_localnet_config"], [17, 5, 1, "", "get_indexer_client"], [17, 5, 1, "", "get_indexer_client_from_environment"], [17, 5, 1, "", "get_indexer_config_from_environment"], [17, 5, 1, "", "get_kmd_client"], [17, 5, 1, "", "get_kmd_client_from_environment"], [17, 5, 1, "", "get_kmd_config_from_environment"], [17, 5, 1, "", "get_testnet_dispenser"], [17, 5, 1, "", "get_typed_app_client_by_creator_and_name"], [17, 5, 1, "", "get_typed_app_client_by_id"], [17, 5, 1, "", "get_typed_app_client_by_network"], [17, 5, 1, "", "get_typed_app_factory"], [17, 3, 1, "", "indexer"], [17, 3, 1, "", "indexer_if_present"], [17, 5, 1, "", "is_localnet"], [17, 5, 1, "", "is_mainnet"], [17, 5, 1, "", "is_testnet"], [17, 3, 1, "", "kmd"], [17, 5, 1, "", "network"]], "algokit_utils.clients.client_manager.NetworkDetail": [[17, 2, 1, "", "genesis_hash"], [17, 2, 1, "", "genesis_id"], [17, 2, 1, "", "is_localnet"], [17, 2, 1, "", "is_mainnet"], [17, 2, 1, "", "is_testnet"]], "algokit_utils.clients.dispenser_api_client": [[18, 4, 1, "", "DISPENSER_ACCESS_TOKEN_KEY"], [18, 4, 1, "", "DISPENSER_ASSETS"], [18, 4, 1, "", "DISPENSER_REQUEST_TIMEOUT"], [18, 1, 1, "", "DispenserApiConfig"], [18, 1, 1, "", "DispenserAsset"], [18, 1, 1, "", "DispenserAssetName"], [18, 1, 1, "", "DispenserFundResponse"], [18, 1, 1, "", "DispenserLimitResponse"], [18, 1, 1, "", "TestNetDispenserApiClient"]], "algokit_utils.clients.dispenser_api_client.DispenserApiConfig": [[18, 2, 1, "", "BASE_URL"]], "algokit_utils.clients.dispenser_api_client.DispenserAsset": [[18, 2, 1, "", "asset_id"], [18, 2, 1, "", "decimals"], [18, 2, 1, "", "description"]], "algokit_utils.clients.dispenser_api_client.DispenserAssetName": [[18, 2, 1, "", "ALGO"]], "algokit_utils.clients.dispenser_api_client.DispenserFundResponse": [[18, 2, 1, "", "amount"], [18, 2, 1, "", "tx_id"]], "algokit_utils.clients.dispenser_api_client.DispenserLimitResponse": [[18, 2, 1, "", "amount"]], "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient": [[18, 2, 1, "", "auth_token"], [18, 5, 1, "", "fund"], [18, 5, 1, "", "get_limit"], [18, 5, 1, "", "refund"], [18, 2, 1, "", "request_timeout"]], "algokit_utils.config": [[20, 4, 1, "", "ALGOKIT_CONFIG_FILENAME"], [20, 4, 1, "", "ALGOKIT_PROJECT_ROOT"], [20, 1, 1, "", "AlgoKitLogger"], [20, 1, 1, "", "UpdatableConfig"], [20, 4, 1, "", "config"]], "algokit_utils.config.AlgoKitLogger": [[20, 5, 1, "", "get_null_logger"]], "algokit_utils.config.UpdatableConfig": [[20, 5, 1, "", "configure"], [20, 3, 1, "", "debug"], [20, 3, 1, "", "logger"], [20, 3, 1, "", "populate_app_call_resource"], [20, 3, 1, "", "project_root"], [20, 3, 1, "", "trace_all"], [20, 3, 1, "", "trace_buffer_size_mb"], [20, 5, 1, "", "with_debug"]], "algokit_utils.errors": [[22, 0, 0, "-", "logic_error"]], "algokit_utils.errors.logic_error": [[22, 6, 1, "", "LogicError"], [22, 1, 1, "", "LogicErrorData"], [22, 7, 1, "", "parse_logic_error"]], "algokit_utils.errors.logic_error.LogicError": [[22, 2, 1, "", "line_no"], [22, 2, 1, "", "lines"], [22, 2, 1, "", "logic_error"], [22, 2, 1, "", "logic_error_str"], [22, 2, 1, "", "message"], [22, 2, 1, "", "pc"], [22, 2, 1, "", "source_map"], [22, 5, 1, "", "trace"], [22, 2, 1, "", "traces"], [22, 2, 1, "", "transaction_id"]], "algokit_utils.errors.logic_error.LogicErrorData": [[22, 2, 1, "", "message"], [22, 2, 1, "", "pc"], [22, 2, 1, "", "transaction_id"]], "algokit_utils.models": [[24, 0, 0, "-", "account"], [25, 0, 0, "-", "amount"], [26, 0, 0, "-", "application"], [28, 0, 0, "-", "network"], [29, 0, 0, "-", "simulate"], [30, 0, 0, "-", "state"], [31, 0, 0, "-", "transaction"]], "algokit_utils.models.account": [[24, 4, 1, "", "DISPENSER_ACCOUNT_NAME"], [24, 1, 1, "", "LogicSigAccount"], [24, 1, 1, "", "MultiSigAccount"], [24, 1, 1, "", "MultisigMetadata"], [24, 1, 1, "", "SigningAccount"], [24, 1, 1, "", "TransactionSignerAccount"]], "algokit_utils.models.account.LogicSigAccount": [[24, 3, 1, "", "address"], [24, 3, 1, "", "lsig"], [24, 3, 1, "", "signer"]], "algokit_utils.models.account.MultiSigAccount": [[24, 3, 1, "", "address"], [24, 3, 1, "", "multisig"], [24, 3, 1, "", "params"], [24, 5, 1, "", "sign"], [24, 3, 1, "", "signer"], [24, 3, 1, "", "signing_accounts"]], "algokit_utils.models.account.MultisigMetadata": [[24, 2, 1, "", "addresses"], [24, 2, 1, "", "threshold"], [24, 2, 1, "", "version"]], "algokit_utils.models.account.SigningAccount": [[24, 2, 1, "", "address"], [24, 5, 1, "", "new_account"], [24, 2, 1, "", "private_key"], [24, 3, 1, "", "public_key"], [24, 3, 1, "", "signer"]], "algokit_utils.models.account.TransactionSignerAccount": [[24, 2, 1, "", "address"], [24, 2, 1, "", "signer"]], "algokit_utils.models.amount": [[25, 4, 1, "", "ALGORAND_MIN_TX_FEE"], [25, 1, 1, "", "AlgoAmount"], [25, 7, 1, "", "algo"], [25, 7, 1, "", "micro_algo"], [25, 7, 1, "", "transaction_fees"]], "algokit_utils.models.amount.AlgoAmount": [[25, 3, 1, "", "algo"], [25, 5, 1, "", "from_algo"], [25, 5, 1, "", "from_micro_algo"], [25, 3, 1, "", "micro_algo"]], "algokit_utils.models.application": [[26, 1, 1, "", "AppCompilationResult"], [26, 1, 1, "", "AppInformation"], [26, 1, 1, "", "AppSourceMaps"], [26, 1, 1, "", "AppState"], [26, 1, 1, "", "CompiledTeal"]], "algokit_utils.models.application.AppCompilationResult": [[26, 2, 1, "", "compiled_approval"], [26, 2, 1, "", "compiled_clear"]], "algokit_utils.models.application.AppInformation": [[26, 2, 1, "", "app_address"], [26, 2, 1, "", "app_id"], [26, 2, 1, "", "approval_program"], [26, 2, 1, "", "clear_state_program"], [26, 2, 1, "", "creator"], [26, 2, 1, "", "extra_program_pages"], [26, 2, 1, "", "global_byte_slices"], [26, 2, 1, "", "global_ints"], [26, 2, 1, "", "global_state"], [26, 2, 1, "", "local_byte_slices"], [26, 2, 1, "", "local_ints"]], "algokit_utils.models.application.AppSourceMaps": [[26, 2, 1, "", "approval_source_map"], [26, 2, 1, "", "clear_source_map"]], "algokit_utils.models.application.AppState": [[26, 2, 1, "", "key_base64"], [26, 2, 1, "", "key_raw"], [26, 2, 1, "", "value"], [26, 2, 1, "", "value_base64"], [26, 2, 1, "", "value_raw"]], "algokit_utils.models.application.CompiledTeal": [[26, 2, 1, "", "compiled"], [26, 2, 1, "", "compiled_base64_to_bytes"], [26, 2, 1, "", "compiled_hash"], [26, 2, 1, "", "source_map"], [26, 2, 1, "", "teal"]], "algokit_utils.models.network": [[28, 1, 1, "", "AlgoClientConfigs"], [28, 1, 1, "", "AlgoClientNetworkConfig"]], "algokit_utils.models.network.AlgoClientConfigs": [[28, 2, 1, "", "algod_config"], [28, 2, 1, "", "indexer_config"], [28, 2, 1, "", "kmd_config"]], "algokit_utils.models.network.AlgoClientNetworkConfig": [[28, 5, 1, "", "full_url"], [28, 2, 1, "", "port"], [28, 2, 1, "", "server"], [28, 2, 1, "", "token"]], "algokit_utils.models.simulate": [[29, 1, 1, "", "SimulationTrace"]], "algokit_utils.models.simulate.SimulationTrace": [[29, 2, 1, "", "app_budget_added"], [29, 2, 1, "", "app_budget_consumed"], [29, 2, 1, "", "exec_trace"], [29, 2, 1, "", "failure_message"]], "algokit_utils.models.state": [[30, 4, 1, "", "BoxIdentifier"], [30, 1, 1, "", "BoxName"], [30, 1, 1, "", "BoxReference"], [30, 1, 1, "", "BoxValue"], [30, 1, 1, "", "DataTypeFlag"], [30, 4, 1, "", "TealTemplateParams"]], "algokit_utils.models.state.BoxName": [[30, 2, 1, "", "name"], [30, 2, 1, "", "name_base64"], [30, 2, 1, "", "name_raw"]], "algokit_utils.models.state.BoxValue": [[30, 2, 1, "", "name"], [30, 2, 1, "", "value"]], "algokit_utils.models.state.DataTypeFlag": [[30, 2, 1, "", "BYTES"], [30, 2, 1, "", "UINT"]], "algokit_utils.models.transaction": [[31, 4, 1, "", "Arc2TransactionNote"], [31, 1, 1, "", "BaseArc2Note"], [31, 1, 1, "", "JsonFormatArc2Note"], [31, 1, 1, "", "SendParams"], [31, 1, 1, "", "StringFormatArc2Note"], [31, 4, 1, "", "TransactionNote"], [31, 4, 1, "", "TransactionNoteData"], [31, 1, 1, "", "TransactionWrapper"]], "algokit_utils.models.transaction.BaseArc2Note": [[31, 2, 1, "", "dapp_name"]], "algokit_utils.models.transaction.JsonFormatArc2Note": [[31, 2, 1, "", "data"], [31, 2, 1, "", "format"]], "algokit_utils.models.transaction.SendParams": [[31, 2, 1, "", "cover_app_call_inner_transaction_fees"], [31, 2, 1, "", "max_rounds_to_wait"], [31, 2, 1, "", "populate_app_call_resources"], [31, 2, 1, "", "suppress_log"]], "algokit_utils.models.transaction.StringFormatArc2Note": [[31, 2, 1, "", "data"], [31, 2, 1, "", "format"]], "algokit_utils.models.transaction.TransactionWrapper": [[31, 3, 1, "", "application_call"], [31, 3, 1, "", "asset_config"], [31, 3, 1, "", "asset_freeze"], [31, 3, 1, "", "asset_transfer"], [31, 3, 1, "", "keyreg"], [31, 3, 1, "", "payment"], [31, 3, 1, "", "raw"], [31, 3, 1, "", "state_proof"]], "algokit_utils.protocols": [[32, 0, 0, "-", "account"], [34, 0, 0, "-", "typed_clients"]], "algokit_utils.protocols.account": [[32, 1, 1, "", "TransactionSignerAccountProtocol"]], "algokit_utils.protocols.account.TransactionSignerAccountProtocol": [[32, 3, 1, "", "address"], [32, 3, 1, "", "signer"]], "algokit_utils.protocols.typed_clients": [[34, 1, 1, "", "TypedAppClientProtocol"], [34, 1, 1, "", "TypedAppFactoryProtocol"]], "algokit_utils.protocols.typed_clients.TypedAppClientProtocol": [[34, 5, 1, "", "from_creator_and_name"], [34, 5, 1, "", "from_network"]], "algokit_utils.protocols.typed_clients.TypedAppFactoryProtocol": [[34, 5, 1, "", "deploy"]], "algokit_utils.transactions": [[36, 0, 0, "-", "transaction_composer"], [37, 0, 0, "-", "transaction_creator"], [38, 0, 0, "-", "transaction_sender"]], "algokit_utils.transactions.transaction_composer": [[36, 1, 1, "", "AppCallMethodCallParams"], [36, 1, 1, "", "AppCallParams"], [36, 1, 1, "", "AppCreateMethodCallParams"], [36, 1, 1, "", "AppCreateParams"], [36, 1, 1, "", "AppCreateSchema"], [36, 1, 1, "", "AppDeleteMethodCallParams"], [36, 1, 1, "", "AppDeleteParams"], [36, 4, 1, "", "AppMethodCallTransactionArgument"], [36, 1, 1, "", "AppUpdateMethodCallParams"], [36, 1, 1, "", "AppUpdateParams"], [36, 1, 1, "", "AssetConfigParams"], [36, 1, 1, "", "AssetCreateParams"], [36, 1, 1, "", "AssetDestroyParams"], [36, 1, 1, "", "AssetFreezeParams"], [36, 1, 1, "", "AssetOptInParams"], [36, 1, 1, "", "AssetOptOutParams"], [36, 1, 1, "", "AssetTransferParams"], [36, 1, 1, "", "BuiltTransactions"], [36, 4, 1, "", "MethodCallParams"], [36, 1, 1, "", "OfflineKeyRegistrationParams"], [36, 1, 1, "", "OnlineKeyRegistrationParams"], [36, 1, 1, "", "PaymentParams"], [36, 1, 1, "", "SendAtomicTransactionComposerResults"], [36, 1, 1, "", "TransactionComposer"], [36, 1, 1, "", "TransactionComposerBuildResult"], [36, 4, 1, "", "TxnParams"], [36, 7, 1, "", "calculate_extra_program_pages"], [36, 7, 1, "", "populate_app_call_resources"], [36, 7, 1, "", "prepare_group_for_sending"], [36, 7, 1, "", "send_atomic_transaction_composer"]], "algokit_utils.transactions.transaction_composer.AppCallMethodCallParams": [[36, 2, 1, "", "app_id"], [36, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AppCallParams": [[36, 2, 1, "", "account_references"], [36, 2, 1, "", "app_id"], [36, 2, 1, "", "app_references"], [36, 2, 1, "", "approval_program"], [36, 2, 1, "", "args"], [36, 2, 1, "", "asset_references"], [36, 2, 1, "", "box_references"], [36, 2, 1, "", "clear_state_program"], [36, 2, 1, "", "extra_pages"], [36, 2, 1, "", "on_complete"], [36, 2, 1, "", "schema"]], "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams": [[36, 2, 1, "", "approval_program"], [36, 2, 1, "", "clear_state_program"], [36, 2, 1, "", "extra_program_pages"], [36, 2, 1, "", "on_complete"], [36, 2, 1, "", "schema"]], "algokit_utils.transactions.transaction_composer.AppCreateParams": [[36, 2, 1, "", "account_references"], [36, 2, 1, "", "app_references"], [36, 2, 1, "", "approval_program"], [36, 2, 1, "", "args"], [36, 2, 1, "", "asset_references"], [36, 2, 1, "", "box_references"], [36, 2, 1, "", "clear_state_program"], [36, 2, 1, "", "extra_program_pages"], [36, 2, 1, "", "on_complete"], [36, 2, 1, "", "schema"]], "algokit_utils.transactions.transaction_composer.AppCreateSchema": [[36, 2, 1, "", "global_byte_slices"], [36, 2, 1, "", "global_ints"], [36, 2, 1, "", "local_byte_slices"], [36, 2, 1, "", "local_ints"]], "algokit_utils.transactions.transaction_composer.AppDeleteMethodCallParams": [[36, 2, 1, "", "app_id"], [36, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AppDeleteParams": [[36, 2, 1, "", "account_references"], [36, 2, 1, "", "app_id"], [36, 2, 1, "", "app_references"], [36, 2, 1, "", "args"], [36, 2, 1, "", "asset_references"], [36, 2, 1, "", "box_references"], [36, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams": [[36, 2, 1, "", "app_id"], [36, 2, 1, "", "approval_program"], [36, 2, 1, "", "clear_state_program"], [36, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AppUpdateParams": [[36, 2, 1, "", "account_references"], [36, 2, 1, "", "app_id"], [36, 2, 1, "", "app_references"], [36, 2, 1, "", "approval_program"], [36, 2, 1, "", "args"], [36, 2, 1, "", "asset_references"], [36, 2, 1, "", "box_references"], [36, 2, 1, "", "clear_state_program"], [36, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AssetConfigParams": [[36, 2, 1, "", "asset_id"], [36, 2, 1, "", "clawback"], [36, 2, 1, "", "freeze"], [36, 2, 1, "", "manager"], [36, 2, 1, "", "reserve"]], "algokit_utils.transactions.transaction_composer.AssetCreateParams": [[36, 2, 1, "", "asset_name"], [36, 2, 1, "", "clawback"], [36, 2, 1, "", "decimals"], [36, 2, 1, "", "default_frozen"], [36, 2, 1, "", "freeze"], [36, 2, 1, "", "manager"], [36, 2, 1, "", "metadata_hash"], [36, 2, 1, "", "reserve"], [36, 2, 1, "", "total"], [36, 2, 1, "", "unit_name"], [36, 2, 1, "", "url"]], "algokit_utils.transactions.transaction_composer.AssetDestroyParams": [[36, 2, 1, "", "asset_id"]], "algokit_utils.transactions.transaction_composer.AssetFreezeParams": [[36, 2, 1, "", "account"], [36, 2, 1, "", "asset_id"], [36, 2, 1, "", "frozen"]], "algokit_utils.transactions.transaction_composer.AssetOptInParams": [[36, 2, 1, "", "asset_id"]], "algokit_utils.transactions.transaction_composer.AssetOptOutParams": [[36, 2, 1, "", "asset_id"], [36, 2, 1, "", "creator"]], "algokit_utils.transactions.transaction_composer.AssetTransferParams": [[36, 2, 1, "", "amount"], [36, 2, 1, "", "asset_id"], [36, 2, 1, "", "clawback_target"], [36, 2, 1, "", "close_asset_to"], [36, 2, 1, "", "receiver"]], "algokit_utils.transactions.transaction_composer.BuiltTransactions": [[36, 2, 1, "", "method_calls"], [36, 2, 1, "", "signers"], [36, 2, 1, "", "transactions"]], "algokit_utils.transactions.transaction_composer.OfflineKeyRegistrationParams": [[36, 2, 1, "", "prevent_account_from_ever_participating_again"]], "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams": [[36, 2, 1, "", "selection_key"], [36, 2, 1, "", "state_proof_key"], [36, 2, 1, "", "vote_first"], [36, 2, 1, "", "vote_key"], [36, 2, 1, "", "vote_key_dilution"], [36, 2, 1, "", "vote_last"]], "algokit_utils.transactions.transaction_composer.PaymentParams": [[36, 2, 1, "", "amount"], [36, 2, 1, "", "close_remainder_to"], [36, 2, 1, "", "receiver"]], "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults": [[36, 2, 1, "", "confirmations"], [36, 2, 1, "", "group_id"], [36, 2, 1, "", "returns"], [36, 2, 1, "", "simulate_response"], [36, 2, 1, "", "transactions"], [36, 2, 1, "", "tx_ids"]], "algokit_utils.transactions.transaction_composer.TransactionComposer": [[36, 5, 1, "", "add_app_call"], [36, 5, 1, "", "add_app_call_method_call"], [36, 5, 1, "", "add_app_create"], [36, 5, 1, "", "add_app_create_method_call"], [36, 5, 1, "", "add_app_delete"], [36, 5, 1, "", "add_app_delete_method_call"], [36, 5, 1, "", "add_app_update"], [36, 5, 1, "", "add_app_update_method_call"], [36, 5, 1, "", "add_asset_config"], [36, 5, 1, "", "add_asset_create"], [36, 5, 1, "", "add_asset_destroy"], [36, 5, 1, "", "add_asset_freeze"], [36, 5, 1, "", "add_asset_opt_in"], [36, 5, 1, "", "add_asset_opt_out"], [36, 5, 1, "", "add_asset_transfer"], [36, 5, 1, "", "add_atc"], [36, 5, 1, "", "add_offline_key_registration"], [36, 5, 1, "", "add_online_key_registration"], [36, 5, 1, "", "add_payment"], [36, 5, 1, "", "add_transaction"], [36, 5, 1, "", "arc2_note"], [36, 5, 1, "", "build"], [36, 5, 1, "", "build_transactions"], [36, 5, 1, "", "count"], [36, 5, 1, "", "execute"], [36, 5, 1, "", "rebuild"], [36, 5, 1, "", "send"], [36, 5, 1, "", "simulate"]], "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult": [[36, 2, 1, "", "atc"], [36, 2, 1, "", "method_calls"], [36, 2, 1, "", "transactions"]], "algokit_utils.transactions.transaction_creator": [[37, 1, 1, "", "AlgorandClientTransactionCreator"]], "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator": [[37, 3, 1, "", "app_call"], [37, 3, 1, "", "app_call_method_call"], [37, 3, 1, "", "app_create"], [37, 3, 1, "", "app_create_method_call"], [37, 3, 1, "", "app_delete"], [37, 3, 1, "", "app_delete_method_call"], [37, 3, 1, "", "app_update"], [37, 3, 1, "", "app_update_method_call"], [37, 3, 1, "", "asset_config"], [37, 3, 1, "", "asset_create"], [37, 3, 1, "", "asset_destroy"], [37, 3, 1, "", "asset_freeze"], [37, 3, 1, "", "asset_opt_in"], [37, 3, 1, "", "asset_opt_out"], [37, 3, 1, "", "asset_transfer"], [37, 3, 1, "", "offline_key_registration"], [37, 3, 1, "", "online_key_registration"], [37, 3, 1, "", "payment"]], "algokit_utils.transactions.transaction_sender": [[38, 1, 1, "", "AlgorandClientTransactionSender"], [38, 1, 1, "", "SendAppCreateTransactionResult"], [38, 1, 1, "", "SendAppTransactionResult"], [38, 1, 1, "", "SendAppUpdateTransactionResult"], [38, 1, 1, "", "SendSingleAssetCreateTransactionResult"], [38, 1, 1, "", "SendSingleTransactionResult"]], "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender": [[38, 5, 1, "", "app_call"], [38, 5, 1, "", "app_call_method_call"], [38, 5, 1, "", "app_create"], [38, 5, 1, "", "app_create_method_call"], [38, 5, 1, "", "app_delete"], [38, 5, 1, "", "app_delete_method_call"], [38, 5, 1, "", "app_update"], [38, 5, 1, "", "app_update_method_call"], [38, 5, 1, "", "asset_config"], [38, 5, 1, "", "asset_create"], [38, 5, 1, "", "asset_destroy"], [38, 5, 1, "", "asset_freeze"], [38, 5, 1, "", "asset_opt_in"], [38, 5, 1, "", "asset_opt_out"], [38, 5, 1, "", "asset_transfer"], [38, 5, 1, "", "new_group"], [38, 5, 1, "", "offline_key_registration"], [38, 5, 1, "", "online_key_registration"], [38, 5, 1, "", "payment"]], "algokit_utils.transactions.transaction_sender.SendAppCreateTransactionResult": [[38, 2, 1, "", "app_address"], [38, 2, 1, "", "app_id"]], "algokit_utils.transactions.transaction_sender.SendAppTransactionResult": [[38, 2, 1, "", "abi_return"]], "algokit_utils.transactions.transaction_sender.SendAppUpdateTransactionResult": [[38, 2, 1, "", "compiled_approval"], [38, 2, 1, "", "compiled_clear"]], "algokit_utils.transactions.transaction_sender.SendSingleAssetCreateTransactionResult": [[38, 2, 1, "", "asset_id"]], "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult": [[38, 2, 1, "", "confirmation"], [38, 2, 1, "", "confirmations"], [38, 5, 1, "", "from_composer_result"], [38, 2, 1, "", "group_id"], [38, 2, 1, "", "returns"], [38, 2, 1, "", "transaction"], [38, 2, 1, "", "transactions"], [38, 2, 1, "", "tx_id"], [38, 2, 1, "", "tx_ids"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "property", "Python property"], "4": ["py", "data", "Python data"], "5": ["py", "method", "Python method"], "6": ["py", "exception", "Python exception"], "7": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute", "3": "py:property", "4": "py:data", "5": "py:method", "6": "py:exception", "7": "py:function"}, "terms": {"": [1, 4, 6, 8, 9, 10, 13, 15, 22, 24, 36, 38, 40, 41, 42, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56], "0": [0, 1, 7, 8, 10, 13, 18, 34, 36, 37, 41, 44, 45, 50, 52, 54], "0002": [7, 31, 36], "0032": 10, "0056": 11, "01": 7, "01t12": 48, "03": 48, "1": [0, 1, 4, 9, 10, 13, 22, 25, 30, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 54], "10": [1, 20, 36, 37, 38, 40, 41, 42, 46, 48, 53], "100": [38, 50, 52], "1000": [0, 1, 4, 36, 37, 38, 40, 41, 46, 48, 49, 52, 53], "1000000": 18, "101112": 38, "10_000": [4, 42], "120": 50, "123": [6, 8, 9, 36, 37, 38, 43, 52], "1234": [36, 38, 54], "12345": [36, 38, 41, 44, 46], "123456": [36, 37, 38], "1234567890": [6, 9, 15, 17], "12346": 44, "12_smart": 7, "15": [18, 48], "150": 10, "1_000_000": [25, 41], "1_000_000_000": [1, 40], "2": [0, 1, 7, 10, 13, 22, 30, 36, 38, 40, 44, 45, 48, 49, 51, 52, 53, 54], "20": 50, "2000": [37, 38, 46, 52], "200_000": 44, "2022": 48, "20220301t123456z_lr1000_2pay_1axf": 48, "2023": 7, "2100": 38, "256": [0, 20, 48], "3": [0, 1, 4, 10, 13, 36, 38, 41, 44, 45, 51, 52, 53, 54], "3000": [1, 36, 37, 38, 40, 44, 52, 53], "32": [8, 15, 44, 45, 46, 54, 55, 56], "34": 48, "4": [0, 36, 37, 38, 44, 45, 52, 53], "4001": 28, "42": 38, "4321": 54, "456": [38, 52], "5": [22, 36, 38, 40, 42, 50, 53], "500": 46, "5000": 52, "500_000": 42, "512": 48, "544": 34, "56": [5, 6, 8, 17, 44, 45, 51, 54, 55, 56], "56z": 48, "64": [36, 38], "67890": 46, "6e6": 4, "700": 52, "789": [36, 37, 38, 52], "8": [43, 52], "8601": 48, "8980": 28, "A": [1, 4, 6, 7, 8, 9, 15, 20, 24, 36, 37, 38, 40, 41, 44, 48, 51, 52, 54, 55], "AND": [38, 40, 53], "As": [45, 56], "Be": 1, "By": [41, 48, 53, 54], "For": [10, 22, 23, 34, 36, 43, 45, 48, 50, 52, 54, 55, 56], "IN": 41, "If": [1, 3, 5, 6, 7, 9, 10, 11, 15, 17, 18, 24, 36, 38, 40, 41, 44, 45, 47, 49, 53, 54, 55, 56], "In": [40, 41, 45, 52, 53, 54, 56], "It": [9, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 56], "No": [13, 51], "Not": 53, "ONE": 44, "On": 43, "One": 40, "Or": 52, "Such": 34, "The": [1, 3, 4, 5, 6, 7, 8, 9, 11, 15, 17, 18, 20, 24, 25, 26, 30, 32, 36, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "Then": 41, "There": [20, 40, 42, 44, 45, 47, 52, 53], "These": [41, 48, 51, 52, 54, 56], "To": [7, 18, 20, 40, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 55], "Will": 17, "With": [1, 45, 49, 53], "_": [48, 50, 52], "_baseappmethodcal": 36, "_commonensurefundedparam": 1, "_commontxnparam": 36, "_debug": 0, "_ensure_fund": 0, "_legacy_v2": [8, 17], "_lr": 48, "_method_cal": 41, "_methodparamsbuild": [6, 8], "_miss": 6, "_mnemon": [1, 40], "_sender": [1, 40], "_stateaccessor": 6, "_transactioncr": [6, 8], "_transactionsend": [6, 8], "_transfer": 0, "aavail": 52, "abc": [0, 1, 3, 6, 9, 15, 20, 22, 36, 37, 38], "abi": [0, 6, 7, 8, 9, 10, 11, 14, 36, 37, 38, 39, 41, 43, 44, 45, 50, 51, 52, 54, 55, 56], "abi_arg": 0, "abi_kwarg": 0, "abi_method": [0, 43, 52], "abi_return": [5, 8, 9, 38, 43, 50, 51, 56], "abi_typ": [6, 9], "abi_valu": [43, 51], "abiargsdict": 0, "abiargtyp": 0, "abiargumenttyp": 5, "abical": 0, "abicallarg": 0, "abicallargsdict": 0, "abicreatecallarg": 0, "abicreatecallargsdict": 0, "abil": [40, 41, 44, 45, 55], "abimethod": [0, 36, 52], "abireferencetyp": 5, "abiresult": [5, 56], "abireturn": [5, 7, 9, 36, 38, 51], "abireturnt": [8, 38], "abistringtyp": 44, "abistruct": [5, 6], "abitransactionrespons": 0, "abitransactiontyp": 5, "abityp": [5, 6, 9], "abivalu": [5, 6, 9], "abl": [41, 52], "about": [1, 7, 9, 10, 11, 15, 17, 40, 42, 44, 46, 47, 48], "abov": [20, 40, 45, 52], "absolut": 54, "abstract": [3, 32, 40, 51, 55, 56], "accept": [41, 52], "access": [3, 4, 7, 8, 17, 18, 24, 40, 42, 44, 46, 51, 52, 55, 56], "accessor": [6, 56], "accord": [5, 6, 51], "account": [0, 4, 6, 7, 8, 9, 11, 15, 18, 23, 27, 33, 36, 37, 38, 39, 41, 43, 45, 50, 51, 52, 53, 54, 55], "account1": [1, 36, 37, 38, 40], "account2": [1, 38, 40], "account_1": [36, 38], "account_address": [43, 46, 56], "account_asset_info": 15, "account_info": [1, 46], "account_manag": [2, 4, 39, 40], "account_refer": [6, 36, 37, 38, 43, 52, 56], "account_sign": 43, "account_to_freez": [36, 37], "account_to_fund": [0, 1, 50, 53], "accountaddress": [1, 38, 40, 44, 53], "accountassetinform": 15, "accountinform": 1, "accountmanag": [1, 4, 41, 55, 56], "accountmanager1": 1, "accountmanager2": 1, "accounttransactionsign": [0, 24, 30], "across": [45, 47, 52], "act": [1, 34, 40], "action": [6, 7, 8, 10, 11, 13, 36, 40, 43, 44, 56], "activ": 53, "actual": [41, 52], "ad": [40, 56], "add": [6, 36, 41, 44, 45, 51, 52, 53, 55, 56], "add_": [41, 52], "add_app_cal": 36, "add_app_call_method_cal": [36, 52], "add_app_cr": 36, "add_app_create_method_cal": 36, "add_app_delet": 36, "add_app_delete_method_cal": 36, "add_app_upd": 36, "add_app_update_method_cal": 36, "add_asset_config": 36, "add_asset_cr": 36, "add_asset_destroi": 36, "add_asset_freez": 36, "add_asset_opt_in": [36, 41], "add_asset_opt_out": 36, "add_asset_transf": 36, "add_atc": 36, "add_method_cal": 0, "add_offline_key_registr": 36, "add_online_key_registr": 36, "add_pay": [36, 41, 52, 53], "add_transact": [4, 36, 52], "addit": [6, 36, 41, 43, 45, 48, 52, 53, 56], "addition": 52, "additional_atc_context": 36, "additionalatccontext": 36, "addr": [1, 4, 52], "address": [0, 1, 3, 4, 6, 7, 8, 9, 15, 17, 18, 24, 26, 32, 36, 38, 40, 41, 43, 44, 46, 49, 50, 51, 52, 53, 56], "address1": [1, 40], "address2": [1, 40], "addresstocloseto": 38, "advanc": [1, 36, 37, 38, 40, 41, 43, 44, 45, 46, 53, 55], "after": [6, 41, 44, 45], "again": [36, 45], "against": [1, 3, 7, 8, 15, 38, 40, 44, 45, 47, 53, 55, 56], "aka": [1, 3], "algo": [1, 3, 4, 18, 25, 36, 37, 38, 40, 41, 49, 50, 52, 55, 56], "algoamount": [1, 3, 4, 6, 15, 25, 36, 37, 38, 40, 41, 44, 46, 50, 52, 53, 54, 55, 56], "algoclientconfig": [0, 4, 17, 28, 47], "algoclientnetworkconfig": [4, 17, 28, 47, 55], "algod": [0, 1, 4, 9, 11, 15, 17, 28, 36, 38, 41, 43, 45, 46, 47, 52, 55, 56], "algod_cli": [0, 9, 15, 17, 38, 41, 43, 46, 47, 48, 56], "algod_config": [4, 28, 41, 47, 55], "algod_serv": 17, "algodcli": [0, 4, 9, 15, 17, 28, 36, 38, 47, 48], "algodresponsetyp": [9, 36, 38, 51], "algokit": [7, 8, 18, 20, 23, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 56], "algokit_config_filenam": 20, "algokit_deploy": [0, 7, 45], "algokit_dispenser_access_token": [18, 49], "algokit_project_root": [20, 48], "algokit_util": [39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56], "algokitlogg": [20, 55], "algonod": [4, 17, 28, 41, 47, 55], "algorand": [1, 3, 6, 7, 8, 9, 15, 17, 23, 34, 36, 37, 38, 39, 40, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56], "algorand_cli": [17, 47, 53], "algorand_min_tx_fe": 25, "algorandcli": [4, 6, 8, 17, 34, 38, 40, 41, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55], "algorandclienttransactioncr": [4, 37, 41], "algorandclienttransactionsend": [4, 7, 38, 41, 45], "algorandfound": [7, 10, 11, 18, 36], "algosdk": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 17, 24, 26, 28, 30, 31, 32, 34, 36, 37, 38, 40, 41, 42, 43, 44, 46, 47, 52, 56], "algosdkcli": [4, 17, 47], "algosdklogicsigaccount": 1, "algosourcemap": [0, 22, 44], "align": 56, "all": [0, 1, 6, 7, 9, 10, 15, 20, 22, 24, 36, 41, 44, 45, 48, 51, 52, 53, 55], "alloc": [1, 36], "allow": [1, 6, 8, 10, 11, 36, 40, 41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 55, 56], "allow_act": 45, "allow_delet": 0, "allow_empty_signatur": [36, 48, 52], "allow_more_log": [36, 52], "allow_unnamed_resourc": [36, 48, 52], "allow_upd": 0, "allowact": 45, "along": [5, 6, 40, 56], "alreadi": [38, 40, 44, 45, 51, 53, 54], "also": [18, 30, 40, 41, 42, 44, 45, 47, 48, 52, 53, 56], "altern": [18, 40, 42, 45, 48, 49], "alwai": [52, 56], "amount": [0, 1, 3, 4, 6, 15, 18, 27, 36, 37, 38, 39, 40, 41, 44, 46, 49, 50, 52, 53, 55, 56], "amount1": 42, "amount2": 42, "amount_fund": 53, "amount_without_pending_reward": 1, "amountfund": 1, "an": [1, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 17, 18, 20, 24, 25, 28, 32, 36, 37, 38, 40, 41, 43, 45, 46, 48, 50, 51, 52, 53, 55, 56], "analyz": 6, "ani": [0, 1, 3, 5, 6, 8, 9, 10, 11, 15, 20, 31, 34, 36, 38, 40, 41, 42, 44, 45, 47, 48, 49, 51, 52, 56], "anoth": [24, 41], "another_account_manag": 1, "anyth": [44, 48], "anywher": 40, "api": [1, 4, 17, 18, 28, 41, 44, 49, 52, 53, 55, 56], "app": [4, 6, 7, 8, 11, 17, 20, 30, 36, 38, 41, 48, 50, 51, 55], "app1": 45, "app1_metadata": 45, "app_address": [6, 7, 8, 26, 38, 44, 50, 51, 56], "app_arg": 0, "app_budget_ad": 29, "app_budget_consum": 29, "app_cal": [37, 38, 51], "app_call_arg": 52, "app_call_method_cal": [37, 38, 52], "app_client": [8, 14, 17, 34, 39, 44, 50, 51, 52, 54, 56], "app_client1": [44, 54], "app_client2": [44, 54], "app_client3": 44, "app_client4": 44, "app_client5": 44, "app_client6": 44, "app_client_1": 52, "app_client_2": 52, "app_compilation_data": 8, "app_creat": [37, 38, 44, 51], "app_create_method_cal": [8, 37, 38, 44], "app_delet": [37, 38], "app_delete_method_cal": [37, 38], "app_deploy": [4, 6, 8, 14, 17, 34, 39, 45], "app_deploy_note_dapp": 7, "app_factori": [14, 17, 34, 39, 51, 52], "app_id": [0, 6, 7, 8, 9, 11, 17, 26, 30, 34, 36, 37, 38, 43, 44, 45, 50, 51, 52, 54, 56], "app_index": 30, "app_info": [9, 43], "app_lookup": 45, "app_lookup_cach": [6, 8, 17, 34], "app_manag": [4, 6, 7, 14, 36, 38, 39, 43, 45, 52], "app_nam": [0, 6, 8, 17, 34, 44, 54], "app_refer": [6, 36, 37, 38, 43, 52, 56], "app_spec": [0, 5, 6, 8, 14, 17, 23, 39, 44, 50, 52], "app_spec_json": [6, 56], "app_upd": [37, 38, 51], "app_update_method_cal": [37, 38], "appcal": 56, "appcallmethodcallparam": [36, 37, 38, 41, 51, 52], "appcallparam": [36, 37, 38, 41, 52], "appclient": [6, 8, 17, 23, 51, 52, 55], "appclientbarecallcreateparam": [6, 8], "appclientbarecallparam": [6, 8, 44], "appclientcompilationparam": [6, 8, 17, 34], "appclientcompilationresult": [6, 8], "appclientcreateschema": 6, "appclientmethodcallcreateparam": [6, 8], "appclientmethodcallparam": [6, 8, 44, 50, 52], "appclientparam": [6, 44], "appcompilationresult": 26, "appcreat": 38, "appcreatemethodcallparam": [7, 36, 37, 38, 41, 52], "appcreateparam": [7, 36, 37, 38, 41, 45, 52], "appcreateschema": [6, 36], "appdeletemethodcallparam": [7, 36, 37, 38, 41, 52], "appdeleteparam": [7, 36, 37, 38, 41, 45, 52], "appdeploy": [4, 7, 55, 56], "appdeploymentmetadata": [7, 45], "appdeploymetadata": [0, 45], "appdeploynot": 7, "appdeployparam": [7, 8, 45], "appdeployresult": [7, 8, 45], "append": [7, 45], "appendapp": [0, 7, 8, 13], "appendsignmultisigtransact": 40, "appfactori": [8, 17, 51, 55, 56], "appfactorycreatemethodcallparam": 8, "appfactorycreatemethodcallresult": 8, "appfactorycreateparam": 8, "appfactorydeployresult": [8, 34], "appfactoryparam": 8, "appinform": [9, 26], "appli": [36, 41, 44, 45, 52], "applic": [1, 4, 17, 20, 23, 27, 30, 34, 36, 37, 38, 39, 43, 44, 45, 48, 52, 55, 56], "application_cal": 31, "application_cli": 0, "application_spec": [10, 11], "application_specif": [0, 8, 17], "applicationcalltxn": 31, "applicationcli": [0, 7], "applicationlookup": [6, 7, 8, 17, 34, 45], "applicationmetadata": [7, 8, 45], "applicationrefer": 7, "applicationspecif": [0, 8, 17], "applookup": 0, "appmanag": [4, 6, 7, 9, 36, 38, 45, 52, 55], "appmetadata": 0, "appmethodcal": [6, 56], "appmethodcalltransactionargu": [6, 36], "appnam": 6, "apprefer": 0, "approach": [54, 55], "appropri": [52, 56], "approv": [0, 6, 7, 8, 10, 11, 13, 17, 26, 36, 38], "approval_program": [0, 6, 7, 8, 10, 26, 36, 37, 38, 44, 45], "approval_source_map": [0, 6, 8, 17, 26, 34, 44], "approval_teal_source_map": 44, "approval_teal_template_or_byte_cod": 45, "approvalsourc": 6, "apps_local_st": 1, "apps_total_extra_pag": 1, "apps_total_schema": 1, "appsourcemap": [6, 8, 26], "appspecstatedict": [0, 10], "appstat": [6, 9, 26], "appupdatemethodcallparam": [7, 36, 37, 38, 41, 52], "appupdateparam": [7, 36, 37, 38, 41, 45, 52], "ar": [1, 6, 17, 18, 20, 24, 30, 34, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 52, 53, 54, 55, 56], "arbitrari": [20, 45], "arc": [5, 6, 7, 8, 10, 11, 17, 31, 36, 44, 45, 51, 54, 55, 56], "arc2_not": 36, "arc2transactionnot": [31, 36], "arc32": [6, 11, 12, 39], "arc32_application_spec": 11, "arc32contract": [6, 10, 11, 56], "arc4": 45, "arc52contract": 23, "arc56": [5, 6, 8, 12, 17, 39, 56], "arc56_app_spec": 56, "arc56contract": [6, 8, 11, 17, 56], "arc56returnvaluetyp": [5, 8, 51], "architectur": [7, 45], "area": 20, "arg": [0, 1, 4, 6, 8, 11, 13, 24, 30, 36, 37, 38, 40, 43, 44, 50, 51, 52, 54, 56], "arg1": [36, 37, 38], "arg1_valu": [36, 38], "arg2": [37, 38], "argst": 6, "argument": [1, 6, 7, 8, 10, 11, 18, 22, 36, 43, 48, 49, 52, 55, 56], "arithmet": 42, "around": [31, 40, 42, 56], "arrai": [15, 30, 38, 45, 56], "articul": 45, "artifact": [6, 10, 48, 50, 54], "asa": [15, 38, 46, 50, 52], "asid": 44, "assembl": 56, "assert": [44, 45, 50], "asset": [1, 4, 6, 11, 18, 23, 36, 37, 38, 39, 41, 43, 48, 52, 55], "asset_config": [31, 37, 38], "asset_cr": [37, 38, 50, 51], "asset_destroi": [37, 38], "asset_freez": [31, 37, 38], "asset_id": [0, 15, 18, 36, 37, 38, 41, 46, 50, 51, 56], "asset_info": [15, 46], "asset_manag": [4, 16, 38, 39, 46], "asset_nam": [15, 36, 37, 38, 46, 50], "asset_name_b64": 15, "asset_opt_in": [37, 38, 50, 56], "asset_opt_out": [37, 38], "asset_refer": [6, 36, 37, 38, 43, 52, 56], "asset_transf": [31, 37, 38, 50, 56], "assetconfigparam": [36, 37, 38, 41, 52], "assetconfigtxn": 31, "assetcreateparam": [36, 37, 38, 41, 50, 52], "assetdestroyparam": [36, 37, 38, 41, 52], "assetfreezeparam": [36, 37, 38, 41, 52], "assetfreezetxn": 31, "assetinform": 15, "assetmanag": [4, 15, 38, 41, 55, 56], "assetnam": 38, "assetoptinparam": [36, 37, 38, 41, 50, 52, 56], "assetoptoutparam": [36, 37, 38, 41, 52], "assettransferparam": [36, 37, 38, 41, 50, 52], "assettransfertxn": [0, 31], "associ": [6, 9, 40, 43, 55, 56], "assum": [48, 52], "atc": [0, 36, 48, 56], "atom": [36, 45, 48, 51], "atomic_transaction_compos": [0, 1, 4, 5, 6, 8, 15, 17, 24, 32, 34, 36], "atomictransactioncompos": [0, 36, 48, 56], "atomictransactionrespons": 0, "attach": [41, 45], "attempt": [1, 6, 41], "attribut": [34, 48], "au_deploi": 0, "au_spec": 0, "augment": 44, "auth": 49, "auth_addr": 1, "auth_token": [0, 17, 18, 49], "authent": [17, 28], "author": [1, 49, 52], "authoris": 40, "auto": [18, 39, 47, 55, 56], "autoapi": 39, "autocomplet": 56, "autom": [40, 42, 45, 47, 53, 55], "automat": [1, 40, 41, 42, 44, 45, 48, 51, 52, 53, 54, 55, 56], "avail": [1, 9, 40, 44, 45, 52, 53, 56], "avm": [48, 56], "avoid": [41, 43, 53], "awai": 40, "await": [4, 6, 7], "awar": 52, "b": [31, 36, 37, 38, 43, 46, 50, 52, 53], "back": 49, "backward": 56, "balanc": [1, 15, 36, 38, 44, 46, 50, 52, 53, 56], "bare": [6, 8, 11, 44, 52, 56], "bare_act": 11, "bare_call_config": 10, "bareact": 11, "baremethod": 45, "base": [0, 1, 3, 6, 7, 8, 10, 11, 13, 18, 20, 22, 30, 31, 32, 34, 36, 38, 40, 41, 44, 45, 51, 53, 56], "base64": [3, 11, 24, 26, 30, 43], "base_result": 51, "base_url": 18, "baseappclientmethodcallparam": 6, "basearc2not": 31, "basic": [1, 24, 36, 37, 38, 40, 43, 46, 53, 55], "beaker": 54, "becaus": [44, 52, 56], "been": [1, 6, 13, 40, 44, 45, 54, 56], "befor": [36, 38, 41, 52], "behalf": 40, "behav": 52, "behavior": 51, "behaviour": [41, 52, 55], "behind": [7, 45], "being": [41, 42, 52, 55], "below": [45, 50, 52, 54, 55], "benefit": 40, "best": 55, "beta": 56, "better": [44, 52, 53, 56], "between": [4, 25, 37, 38, 42, 50, 51, 53, 54, 55], "binari": [1, 44], "bit": [40, 44], "blob": [7, 11, 18, 36], "block": [1, 6, 52, 55], "blockchain": [44, 46, 47, 48, 55], "boilerpl": 40, "bool": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 15, 17, 20, 31, 34, 36, 38, 41, 44, 45, 46, 51, 52], "boolean": 45, "bootstrap": 44, "both": [10, 18, 47, 49, 52], "box": [0, 1, 5, 6, 9, 11, 30, 36, 44, 45, 52, 55, 56], "box1": [36, 38, 44], "box2": [36, 38, 44], "box_abi_valu": 44, "box_id": [9, 43], "box_nam": [6, 9, 43, 44, 50, 56], "box_name1": 43, "box_name2": [43, 44], "box_name_1": 9, "box_name_2": 9, "box_name_byt": 9, "box_ref": 43, "box_refer": [6, 9, 30, 36, 37, 38, 43, 44, 50, 52, 56], "box_valu": [6, 9, 43, 44, 50, 56], "boxabivalu": [5, 6], "boxidentifi": [6, 9, 30, 36], "boxnam": [5, 6, 9, 30], "boxrefer": [6, 9, 30, 36, 43, 44], "boxvalu": [6, 30], "break": [7, 8, 13, 44, 45, 55], "broadli": 56, "broker": [4, 41], "budget": [36, 44, 48], "buffer": [20, 48], "buffer_size_mb": [0, 48], "build": [4, 23, 36, 43, 44, 45, 48, 52, 53, 55], "build_group": 36, "build_transact": 36, "builder": [6, 56], "built": [36, 45, 51, 55], "built_txn": 37, "builttransact": [36, 37, 41], "bulk": [15, 41, 55], "bulk_opt_in": [15, 46], "bulk_opt_out": [15, 46], "bulkassetoptinoutresult": [15, 46], "bump": 56, "bypass": 45, "byte": [0, 1, 5, 6, 9, 10, 11, 15, 24, 26, 30, 36, 41, 43, 44, 45, 46, 51], "byte_cod": 11, "bytearrai": [0, 5], "bytecblock": 6, "bytecod": [11, 43], "c": 34, "cach": [4, 6, 7, 8, 9, 17, 41, 43, 45, 47, 56], "cached_result": 43, "calcul": [6, 25, 36, 41, 44, 52], "calculate_extra_program_pag": 36, "call": [0, 1, 4, 5, 6, 7, 8, 10, 11, 20, 36, 37, 38, 40, 41, 42, 45, 47, 51, 53, 54, 55, 56], "call1": 44, "call2": 44, "call3": 44, "call4": 44, "call_abi_method": 0, "call_config": [0, 10], "call_typ": [41, 56], "callabl": [0, 1, 3, 6, 15, 20, 22, 36, 37, 38], "callconfig": [0, 10], "callenum": 11, "caller": 10, "calleraddress": 38, "callmethod": 38, "calltyp": 56, "can": [1, 3, 4, 6, 7, 9, 10, 15, 18, 20, 24, 34, 36, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "cannot": [5, 36, 52], "capabl": [3, 40, 41, 42, 43, 44, 45, 47, 51, 52, 53, 56], "captur": 45, "care": [1, 41, 45, 52, 55], "carefulli": 53, "case": [40, 41, 43, 44, 45, 53, 54, 55, 56], "catch": 44, "cater": 20, "caus": [44, 56], "caution": [38, 40, 53], "caveat": 44, "cblock": 11, "certain": [1, 44, 53, 56], "chain": [1, 4, 36, 44, 52, 56], "chainabl": 41, "chang": [7, 8, 13, 36, 40, 41, 45, 47, 52, 55], "channel": 20, "characterist": 45, "charg": 52, "check": [7, 8, 15, 17, 34, 38, 42, 45, 47, 52, 53, 55], "checker": 34, "choos": 41, "ci": 18, "class": [42, 43, 44, 45, 46, 47, 48, 51, 52, 55], "classmethod": [8, 20, 34, 38], "clawback": [15, 36, 37, 38, 46, 50], "clawback_address": [36, 37], "clawback_target": [36, 37, 38], "clawback_target_address": [36, 37], "clawbackaddress": 38, "cleaner": 56, "cleanup": 48, "clear": [0, 6, 7, 8, 10, 11, 13, 17, 26, 36, 38, 44, 56], "clear_program": [0, 10], "clear_source_map": [6, 8, 17, 26, 34, 44], "clear_stat": [0, 10, 11, 44, 56], "clear_state_program": [6, 7, 8, 26, 36, 37, 38, 44, 45], "clear_state_teal_template_or_byte_cod": 45, "clear_teal_source_map": 44, "clearsourc": 6, "clearstat": [11, 36], "cli": [7, 54], "client": [0, 1, 3, 4, 6, 7, 8, 9, 15, 23, 36, 38, 39, 45, 48, 50, 51, 52, 53, 55], "client_manag": [1, 3, 4, 19, 39, 40, 47], "clientmanag": [1, 3, 4, 17, 40, 41, 55], "clients_or_config": 17, "clone": 6, "cloned_cli": 6, "close": [1, 6, 36, 44, 53], "close_address": 36, "close_asset_to": [36, 37, 38], "close_asset_to_address": 37, "close_out": [0, 10, 11, 44, 56], "close_remainder_to": [6, 36, 37, 38, 53], "closed_at_round": 1, "closeout": 11, "closeremaindertoaddress": [37, 38, 53], "cloud": 28, "code": [1, 6, 7, 8, 9, 11, 24, 26, 40, 43, 44, 45, 47, 48, 49, 55, 56], "codebas": 56, "coerc": 42, "collect": [0, 1, 3, 6, 9, 15, 20, 22, 36, 37, 38, 50], "colon": 48, "com": [7, 10, 11, 18, 36, 37, 47, 50], "combin": [40, 44, 51], "come": 44, "commensur": 56, "comment": [9, 45], "commit": [1, 11, 36, 52], "commit_hash": 11, "common": [6, 22, 40, 41, 50, 51, 53, 55, 56], "commonappcallcreateparam": 6, "commonappcallparam": 6, "commonli": [23, 56], "commun": 56, "compar": 51, "comparison": 42, "compat": [44, 48, 54, 55, 56], "compil": [1, 6, 7, 8, 9, 11, 17, 26, 36, 38, 44, 51, 52], "compilation_param": [6, 8, 17, 34, 44, 45, 50], "compilation_result": [8, 9, 43], "compile_app": 6, "compile_t": [9, 43, 45], "compile_teal_templ": [9, 43, 45], "compiled_approv": [6, 8, 26, 38, 45], "compiled_base64_to_byt": [26, 43], "compiled_clear": [6, 8, 26, 38, 45], "compiled_hash": [26, 43], "compiled_t": 9, "compiledt": [6, 9, 26, 45], "compiler_info": 11, "compiler_vers": 11, "compilerinfo": 11, "compilervers": 11, "complet": [6, 7, 8, 10, 38, 40, 43, 45, 53], "complex": 52, "compliant": [1, 48, 51, 52, 56], "compos": [4, 36, 38, 51, 55, 56], "compose_cal": 0, "compose_clear_st": 0, "compose_close_out": 0, "compose_cr": 0, "compose_delet": 0, "compose_opt_in": 0, "compose_upd": 0, "composer_from_algorand": 52, "composer_from_app_cli": 52, "composer_from_constructor": 52, "composit": 56, "comprehens": 45, "concept": 45, "concert": 45, "confid": 45, "config": [0, 1, 4, 17, 23, 37, 39, 41, 44, 47, 48, 52], "config_or_port": 17, "configur": [1, 3, 4, 6, 8, 15, 17, 20, 36, 38, 44, 45, 50, 51, 52, 53, 55], "confirm": [4, 7, 8, 9, 36, 38, 41, 43, 50, 51, 52], "confirmed_round": 0, "conform": 40, "confus": [42, 44], "congest": 41, "connect": [17, 28, 47, 56], "consist": [40, 41, 51, 55, 56], "consolid": 44, "constant": [6, 10], "construct": [8, 43, 44, 45, 49, 51, 53, 54, 55, 56], "constructor": [18, 42, 44, 49, 52, 56], "constuct": 52, "consult": [51, 56], "consum": [52, 53], "consumpt": [48, 56], "contain": [6, 8, 9, 10, 11, 17, 24, 36, 38, 39, 43, 45, 46, 48, 49, 51], "context": 36, "continu": [45, 56], "contract": [6, 7, 10, 11, 17, 43, 44, 48, 50, 52, 54, 55, 56], "control": [1, 7, 9, 40, 41, 43, 44, 45, 50, 51, 55], "control_templ": 43, "conveni": [23, 40, 41, 44, 47, 51, 56], "convent": [1, 40, 45, 56], "convers": [25, 42, 55, 56], "convert": [5, 11, 42], "coordin": 52, "core": [40, 42, 43, 44, 45, 47, 51, 52, 53, 56], "correct": 45, "costli": 42, "count": [11, 36, 48], "counter": [11, 44], "cover": [36, 41, 44, 51], "cover_app_call_inner_transaction_fe": [31, 36, 41, 52], "coverag": 52, "coverappcallinnertransactionfe": 52, "creat": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 13, 15, 18, 24, 25, 36, 37, 38, 39, 40, 43, 45, 46, 48, 51, 52, 53, 55, 56], "create_app_param": 8, "create_appl": 44, "create_arg": 0, "create_kmd_wallet_account": 0, "create_method": 8, "create_param": [7, 8, 34, 45], "create_result": [7, 8, 45, 50], "create_transact": [4, 6, 8, 41, 44, 52, 53, 56], "createcallabi": 45, "createcallparamet": 0, "createcallparametersdict": 0, "created_app": 1, "created_app_id": 38, "created_asset": 1, "created_at_round": 1, "created_round": 7, "createenum": 11, "createoncomplet": [6, 8], "createparamst": 34, "createtransact": 41, "createtransactionparamet": 0, "creation": [6, 7, 8, 36, 38, 45, 55, 56], "creator": [0, 6, 7, 8, 15, 17, 26, 36, 37, 38, 44, 45, 46, 54], "creator_account": 0, "creator_address": [6, 7, 8, 17, 34, 36, 37, 44, 45, 54], "creatoraddress": [6, 36, 38, 44, 45, 54], "cross": 52, "cryptograph": 40, "csv": 20, "ctrl": 41, "current": [1, 8, 10, 15, 17, 18, 41, 44, 45, 46, 47, 55], "current_vers": 0, "custom": [6, 20, 40, 41, 44, 48, 52, 55], "d": [10, 22, 36, 38, 53], "daemon": 40, "dapp_nam": [31, 36], "data": [1, 8, 9, 10, 11, 31, 44, 45, 46], "dataclass": [41, 45, 46, 47, 51, 52, 56], "datatypeflag": 30, "date": [13, 45], "debug": [20, 43, 44, 56], "debugg": 55, "decid": 52, "decim": [15, 18, 25, 36, 37, 38, 42, 46, 50], "decis": [7, 45], "decod": [5, 6, 9, 11, 43, 44, 51, 56], "decode_app_st": [9, 43], "decode_error": [0, 5], "decoded_st": [9, 43], "decoded_tupl": [5, 11], "decor": 34, "dedic": [40, 53, 55, 56], "deem": 56, "def": [34, 45, 50], "default": [1, 3, 4, 6, 7, 8, 10, 11, 15, 17, 18, 20, 36, 38, 41, 45, 46, 47, 48, 52, 53, 54, 55, 56], "default_argu": 10, "default_dispenser_account": 40, "default_factori": 45, "default_frozen": [15, 36, 37, 38, 46, 50], "default_localnet": [4, 41, 50, 55], "default_send": [6, 8, 17, 34, 44, 50, 52, 54], "default_sign": [6, 8, 17, 34], "default_validity_window": [36, 52], "default_valu": 11, "defaultargu": 10, "defaultargumentdict": [0, 10], "defaultargumenttyp": [0, 10], "defaultdispenseraccount": 1, "defaultvalu": 11, "defer": [8, 44], "defin": [1, 4, 6, 8, 10, 20, 34, 41, 44, 45, 54, 55], "definit": [5, 11], "deleg": 24, "delet": [0, 1, 6, 7, 8, 13, 36, 37, 38, 43, 50, 52, 55, 56], "deletable_template_nam": [0, 9, 43], "delete_abi": 44, "delete_appl": [10, 11], "delete_arg": [0, 36, 37], "delete_param": [7, 8, 34, 45], "delete_result": [7, 8, 45], "deleteappl": [11, 45], "deleteapplicationoc": [36, 37, 38], "deletecallabi": 45, "deletemethod": 38, "deleteparamst": 34, "deleteresult": 8, "deliveri": 45, "delta": 52, "demonstr": 45, "denot": 40, "depend": [54, 56], "deploi": [0, 7, 8, 9, 17, 34, 40, 50, 55, 56], "deploy": [7, 8, 9, 11, 13, 43, 44, 53, 54, 55, 56], "deploy_metadata": 7, "deploy_param": 8, "deploy_respons": 50, "deploy_time_param": [6, 7, 44, 45, 50], "deploycallarg": 0, "deploycallargsdict": 0, "deploycreatecallarg": 0, "deploycreatecallargsdict": 0, "deployment_metadata": [9, 43, 45], "deployment_result": 45, "deploymentfailederror": 0, "deployrespons": 0, "deprec": [18, 54], "depth": [20, 48], "desc": 11, "describ": [10, 13, 45, 55], "descript": [1, 11, 18, 52, 56], "design": [45, 55, 56], "desir": [45, 56], "despit": 56, "destroi": [15, 36, 37, 38, 52, 55], "destruct": [36, 38], "detail": [1, 17, 28, 34, 43, 44, 46, 49, 51, 52, 54, 55, 56], "detect": [45, 52], "determin": [17, 45, 52, 56], "develop": [1, 20, 44, 48, 52, 54, 55], "devnet": 17, "diagnos": 55, "dict": [0, 1, 3, 5, 6, 7, 9, 10, 11, 22, 26, 29, 30, 31, 36, 41, 44, 45, 51], "dictifi": [7, 10, 11], "dictionari": [5, 10, 11, 22, 36, 41], "did": 45, "differ": [7, 8, 11, 40, 41, 44, 45, 48, 51, 52, 54, 56], "difficult": 52, "dilut": 36, "direct": [51, 56], "directli": [23, 40, 42, 43, 44, 45, 46, 47, 49, 51, 55, 56], "directori": [0, 10, 20, 48], "disabl": 52, "discov": [7, 52, 56], "disk": 10, "dispens": [1, 3, 17, 18, 24, 50, 55, 56], "dispenser_access_token_kei": 18, "dispenser_account": [1, 50, 53], "dispenser_account_nam": 24, "dispenser_api": 0, "dispenser_api_cli": [1, 17, 19, 39], "dispenser_asset": 18, "dispenser_cli": [1, 18, 53], "dispenser_from_environ": [1, 40, 53, 56], "dispenser_mnemon": [1, 53], "dispenser_request_timeout": [0, 18], "dispenser_send": [1, 53], "dispenser_via_kmd": 40, "dispenseraddress": [1, 53], "dispenserapiconfig": 18, "dispenserasset": 18, "dispenserassetnam": 18, "dispenserfundrespons": [0, 18, 49], "dispenserlimitrespons": [0, 18, 49], "dispos": 53, "distribut": 52, "diverg": 45, "divis": [15, 36], "do": [40, 41, 44, 45, 52, 56], "doc": [1, 7, 18, 41, 44, 49, 52, 54, 55], "document": [39, 41, 42, 51, 54], "doe": [20, 40, 45, 48, 52], "doesn": [1, 38, 40, 44, 45, 47, 53], "domain": [55, 56], "don": [36, 40, 44, 52, 54, 56], "done": [40, 44, 45, 49], "doubl": 41, "driven": 54, "duck": 34, "due": 56, "duplic": 43, "dure": [5, 6, 7, 13, 41, 44, 56], "dynam": [52, 55], "e": [1, 8, 15, 20, 28, 40, 41, 44, 45, 46, 47, 49, 52, 53, 55, 56], "each": [10, 36, 40, 45, 48, 49, 55], "earn": 1, "easi": [4, 41, 42, 45, 51], "easier": [3, 44, 45, 54, 55, 56], "easili": [1, 52, 53, 55], "effect": 52, "effici": 52, "effort": 55, "either": [4, 11, 17, 24, 40, 41, 43, 44, 45, 47, 51, 52, 53, 55], "element": 10, "elig": 1, "emit": [41, 44], "empti": [4, 10, 22, 36, 52], "enabl": [20, 44, 48, 52], "encapsul": 56, "encod": [3, 5, 11, 24, 26, 30, 36, 40, 43, 44, 45, 50], "encount": 9, "end": [6, 45, 55], "endpoint": [48, 49, 52], "enforc": 41, "enhanc": 51, "ensur": [1, 25, 42, 52, 56], "ensure_budget": 52, "ensure_fund": [0, 1, 50, 55], "ensure_funded_from_environ": [1, 53], "ensure_funded_from_testnet_dispenser_api": [1, 53], "ensure_zero_bal": [15, 38, 46], "ensurebalanceparamet": 0, "ensurebudget": 52, "ensurefundedfromtestnetdispenserapiresult": 1, "ensurefundedrespons": [0, 53], "ensurefundedresult": 1, "enter": 42, "entri": [10, 11, 56], "entrypoint": [41, 55, 56], "enum": [0, 7, 10, 11, 14, 18, 30, 39], "env": [1, 40], "environ": [1, 4, 17, 18, 40, 41, 45, 46, 47, 48, 49, 53, 54, 55], "ephemer": 53, "equival": [40, 55, 56], "error": [1, 5, 7, 11, 17, 23, 36, 39, 41, 47, 52, 54, 55, 56], "error_messag": [11, 44], "error_str": 22, "escrow": 24, "especi": 41, "etc": [1, 23, 41, 42, 43, 45, 48, 56], "eval": 44, "evalu": 52, "even": [41, 52], "event": 11, "eventarg": 11, "ever": 36, "everi": 54, "evolv": 45, "exact": [41, 45, 52], "exactli": [20, 45], "exampl": [1, 4, 6, 7, 8, 9, 10, 15, 17, 18, 22, 25, 34, 36, 37, 38, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54], "exceed": [48, 52], "except": [0, 3, 5, 6, 18, 36, 40, 41, 44, 49, 52], "exclus": 41, "exec_trac": 29, "exec_trace_config": [36, 48, 52], "exece": 52, "execut": [1, 11, 20, 36, 40, 41, 45, 52, 53, 56], "execute_atc_with_logic_error": [0, 56], "exhaust": 44, "exist": [1, 7, 8, 13, 17, 36, 37, 38, 40, 42, 44, 45, 47, 56], "existing_account": 40, "existing_deploy": [0, 7, 8, 34, 45], "exit": 22, "expect": [4, 52, 56], "experi": [44, 52, 54, 56], "expir": 41, "explain": 45, "explicit": [25, 45, 55, 56], "explicitli": [42, 45, 52, 56], "export": [0, 6, 10], "export_source_map": [0, 6, 8, 44], "expos": [40, 41, 44, 55, 56], "expose_logic_error": 44, "express": [40, 42], "extend": [3, 41, 48, 51], "extens": 48, "extern": 40, "extra": [1, 6, 15, 26, 36, 38, 48, 55, 56], "extra_fe": [1, 6, 15, 36, 37, 38, 40, 41, 46, 53], "extra_opcode_budget": [36, 48, 52], "extra_pag": [0, 36, 37], "extra_program_pag": [6, 26, 36, 37, 38], "extract": 41, "extrafe": 38, "f": [43, 47, 49, 50], "face": 42, "facilit": 53, "fact": [41, 56], "factori": [8, 17, 43, 50, 51, 55, 56], "fail": [0, 7, 9, 13, 18, 36, 41, 44, 45], "failur": 47, "failure_messag": 29, "fair": 40, "fairli": 40, "fall": 56, "fallback": 17, "fals": [0, 5, 7, 8, 10, 20, 34, 36, 37, 38, 44, 45, 48, 50, 52], "famili": 51, "featur": [40, 52, 54, 56], "fee": [1, 6, 7, 15, 25, 36, 38, 40, 41, 44, 51, 53, 55], "fee_micro_algo": 0, "fetch": 45, "few": 42, "field": [0, 1, 5, 11, 38, 44, 45, 49, 51, 52, 53, 56], "file": [1, 10, 20, 48, 54, 55], "filter": [1, 3, 6, 44], "filter_func": 6, "final": 45, "find": [1, 3, 6, 41, 44], "first": [1, 4, 6, 15, 36, 41, 45, 47, 49, 50, 53, 56], "first_valid_round": [1, 6, 15, 36, 37, 38, 40, 41, 53], "fix": [6, 52], "fixtur": 50, "flag": [1, 6, 11, 17, 44], "float": [0, 4, 20], "fluentli": 52, "fly": 44, "focu": 51, "folder": 48, "follow": [36, 40, 41, 44, 45, 47, 48, 50, 53, 54, 55, 56], "forc": [7, 8], "foreign": [30, 52, 56], "foreign_app": 0, "foreign_asset": 0, "format": [5, 6, 7, 9, 31, 42, 44], "fortun": 52, "forward": [40, 56], "found": [1, 3, 6, 9, 13, 47], "framework": 45, "free": [1, 17, 41, 47, 53, 55], "freez": [15, 36, 37, 38, 46, 50, 52, 56], "freeze_address": [36, 37], "freezeaddress": 38, "fresh": [41, 44, 45], "fresh_account_via_kmd": 40, "from": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 17, 18, 22, 23, 36, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "from_account": 56, "from_algo": [1, 25, 36, 37, 40, 42, 50, 54, 56], "from_arc32": [11, 56], "from_atr": 0, "from_client": [4, 41, 55], "from_composer_result": 38, "from_config": [4, 41, 55], "from_creator_and_nam": [6, 34, 44, 54], "from_deploy_result": 8, "from_dict": 11, "from_environ": [1, 4, 40, 41, 54, 55, 56], "from_json": [6, 10, 11, 56], "from_kmd": [1, 40], "from_micro_algo": [1, 25, 36, 37, 40, 42, 52], "from_microalgo": 44, "from_mnemon": [1, 40, 56], "from_network": [6, 34, 44], "from_signatur": 52, "fromsignatur": 52, "frozen": [15, 36, 37, 38, 41, 46, 51], "full": [1, 6, 24, 28, 36, 38, 54], "full_url": 28, "fulli": [52, 55, 56], "func": [20, 34], "function": [1, 4, 7, 8, 9, 15, 20, 23, 24, 38, 40, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56], "fund": [0, 1, 3, 6, 18, 40, 50, 53, 55], "fund_app_account": [6, 44, 50, 56], "fund_with": [1, 3, 40], "fund_with_algo": 0, "fundament": 46, "fundappaccountparam": [6, 44, 50], "funded_account": 50, "funding_sourc": 0, "further": [41, 44, 55], "furthermor": 45, "futur": [6, 8, 41, 56], "g": [1, 15, 20, 28, 41, 44, 45, 46, 47, 52, 55, 56], "gener": [0, 1, 6, 8, 10, 34, 38, 39, 40, 41, 48, 52, 53, 55], "generate_account": 1, "generate_test_asset": 50, "genesi": [17, 47], "genesis_hash": [17, 47], "genesis_id": [17, 47], "genesis_id_is_localnet": 17, "genproto": 34, "get": [1, 3, 4, 5, 6, 7, 8, 9, 11, 17, 18, 24, 36, 38, 41, 44, 45, 47, 50, 51, 52, 53, 55, 56], "get_abi_decoded_valu": 5, "get_abi_encoded_valu": 5, "get_abi_return": [9, 43], "get_abi_struct_from_abi_tupl": [5, 11], "get_abi_tuple_from_abi_struct": 5, "get_abi_tuple_type_from_abi_struct_definit": 5, "get_account": [0, 1, 56], "get_account_from_mnemon": [0, 56], "get_account_inform": [15, 46, 50], "get_al": [44, 56], "get_algod_cli": [0, 17, 47, 56], "get_algod_client_from_environ": [17, 47], "get_algod_config_from_environ": [17, 47], "get_algonode_config": [17, 47], "get_app_client_by_creator_and_nam": [8, 17, 44, 54], "get_app_client_by_id": [8, 17, 44, 54], "get_app_client_by_network": 17, "get_app_factori": [17, 44, 50, 52], "get_app_id_from_tx_id": 0, "get_arc56_method": 11, "get_arc56_valu": 5, "get_box_nam": [6, 9, 43, 44], "get_box_refer": [9, 43], "get_box_valu": [6, 9, 43, 44, 50, 56], "get_box_value_from_abi_typ": [6, 9, 43, 44], "get_box_values_from_abi_typ": [6, 9, 43, 44], "get_by_id": [9, 15, 43, 46], "get_compilation_result": [9, 43], "get_config_from_environment_or_localnet": [17, 47], "get_constant_block_offset": 6, "get_creator_app": 0, "get_creator_apps_by_nam": [7, 45], "get_decoded_approv": 11, "get_decoded_clear": 11, "get_default_localnet_config": [0, 17, 47], "get_dispenser_account": [0, 56], "get_global_st": [0, 6, 9, 43, 44, 56], "get_indexer_cli": [0, 17, 47, 56], "get_indexer_client_from_environ": [17, 47], "get_indexer_config_from_environ": [17, 47], "get_inform": 1, "get_kmd_client": [17, 47], "get_kmd_client_from_algod_cli": 0, "get_kmd_client_from_environ": [17, 47], "get_kmd_config_from_environ": 17, "get_kmd_wallet_account": 0, "get_limit": [0, 18, 49], "get_line_for_pc": 22, "get_local_st": [0, 6, 9, 43, 44, 56], "get_localnet_default_account": [0, 56], "get_localnet_dispenser_account": [3, 40], "get_map": 44, "get_map_valu": [44, 56], "get_next_vers": 0, "get_null_logg": [20, 48], "get_or_create_kmd_wallet_account": 0, "get_or_create_wallet_account": [3, 40], "get_sender_from_sign": 0, "get_sign": [1, 36, 40, 52], "get_signer_send": 0, "get_suggested_param": [4, 36, 41, 52], "get_testnet_dispens": [17, 49], "get_testnet_dispenser_from_environ": [1, 49, 53], "get_typed_app_client_by_creator_and_nam": [17, 54], "get_typed_app_client_by_id": [17, 54], "get_typed_app_client_by_network": 17, "get_typed_app_factori": [17, 54], "get_valu": [44, 56], "get_wallet_account": [3, 40], "getenv": 56, "git": 11, "github": [7, 10, 11, 18, 36], "give": [41, 44, 54, 56], "given": [1, 3, 4, 5, 7, 8, 15, 20, 24, 25, 34, 36, 40, 41, 45, 47, 48, 53, 54, 55, 56], "global": [6, 9, 10, 11, 26, 36, 44, 45, 52, 56], "global_byte_slic": [7, 8, 26, 36, 37, 38, 45], "global_int": [7, 8, 26, 36, 37, 38, 45], "global_schema": 0, "global_st": [6, 9, 11, 26, 43, 44, 56], "global_state_schema": 10, "gnu": 20, "gnumer": 20, "go": [40, 44], "goal": [45, 55], "good": [8, 55], "gradual": 56, "great": 52, "group": [4, 15, 36, 37, 38, 48, 51, 52, 53, 56], "group_id": [36, 38, 51], "guid": [41, 55], "guidanc": [1, 41], "guidelin": 56, "ha": [1, 13, 15, 32, 38, 40, 41, 42, 44, 45, 52, 53, 54, 55, 56], "had": [44, 45, 56], "hand": 54, "handl": [1, 6, 10, 45, 47, 51, 52, 53, 55, 56], "happen": [44, 52], "hash": [11, 15, 17, 24, 26, 36, 43, 46, 47], "have": [1, 7, 20, 36, 40, 41, 44, 45, 47, 52, 53, 54, 55, 56], "haven": 6, "heartbeat": 1, "heavi": 45, "heavyweight": 45, "held": [1, 15, 46], "hello": [6, 8, 50, 54], "hello_world_app": 54, "helloarg": 54, "helloworldapp": 54, "helloworldappcli": 54, "helloworldappfactori": 54, "help": [41, 45, 50, 55, 56], "helper": [17, 42, 50], "henc": 56, "here": [38, 40, 49, 50, 52, 53], "hexadecim": 45, "hierarch": 56, "hierarchi": 20, "high": [6, 36, 41, 44, 51, 52, 55, 56], "higher": [43, 44, 45, 53, 55], "highest": 51, "highli": [51, 55], "hint": [10, 55, 56], "hit": 45, "hold": [15, 17, 24, 36, 40, 52], "holder": 15, "holderaddress": 38, "hood": 52, "how": [1, 10, 20, 40, 41, 45, 49, 50, 51, 52, 54], "howev": [52, 54, 56], "http": [1, 7, 10, 11, 18, 28, 36, 37, 47, 50, 55], "human": 44, "i": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 17, 18, 20, 24, 36, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56], "id": [6, 7, 8, 9, 11, 15, 17, 18, 26, 36, 38, 41, 43, 44, 45, 46, 47, 49, 50, 51, 53, 54, 56], "ideal": [1, 41], "idempot": [3, 7, 8, 40, 44, 53, 54, 55, 56], "ident": 56, "identifi": [1, 6, 9, 20, 40, 45], "ignor": [6, 7, 8, 17, 34, 48], "ignore_cach": [6, 7, 8, 17, 34, 44, 45], "immedi": [41, 52, 53], "immut": [9, 44, 45, 55], "implement": [3, 32, 45], "impli": 56, "implicit": 56, "import": [6, 8, 23, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56], "import_source_map": [0, 6, 8, 44], "improv": 56, "incent": 1, "incentive_elig": 1, "includ": [1, 4, 6, 7, 8, 15, 17, 20, 36, 37, 38, 41, 43, 44, 45, 46, 47, 48, 51, 52, 53, 55], "incorrect": 44, "incorrectli": 53, "increas": [45, 52], "increaseopcodebudget": 52, "increment": [1, 45, 56], "indefinit": 56, "indent": [10, 11], "index": [0, 4, 7, 8, 17, 28, 30, 36, 38, 41, 44, 45, 47, 50, 55, 56], "indexer_cli": [0, 17, 41, 47], "indexer_config": [4, 28, 41, 55], "indexer_if_pres": 17, "indexer_serv": 17, "indexercli": [0, 4, 7, 17, 28, 47], "indic": [6, 17, 20, 45, 48, 49], "individu": [44, 48, 49], "infer": 40, "info": [5, 11, 36, 43, 46, 51], "inform": [1, 6, 7, 9, 11, 15, 17, 40, 41, 44, 45, 48, 50, 52, 54, 55, 56], "init": 54, "initi": [0, 3, 10, 11, 22, 36, 49, 53, 55, 56], "initialis": 41, "inject": [40, 55], "inlin": 47, "inner": [11, 36, 41], "inner_transaction_count": 11, "input": [20, 44], "insid": 48, "inspect": 49, "instanc": [1, 6, 7, 8, 9, 11, 17, 20, 24, 25, 36, 38, 40, 43, 44, 45, 48, 50, 52, 53, 55, 56], "instanti": [17, 40, 41, 43, 44, 45, 46, 47, 52, 56], "instead": [8, 40, 41, 45, 52, 56], "int": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 15, 17, 18, 20, 22, 24, 25, 26, 28, 29, 30, 31, 34, 36, 38, 41, 42, 43, 44, 46, 50, 51, 52], "intact": 40, "intcblock": 6, "integ": [11, 26, 42], "intellisens": [41, 54, 55], "intention": 41, "intenum": [18, 30], "interact": [6, 8, 9, 18, 43, 44, 46, 49, 53, 54, 55, 56], "interfac": [6, 36, 51, 55], "intern": 40, "interpol": 42, "interpret": 51, "intflag": [0, 10], "introduc": 56, "intuit": [55, 56], "invalid": [5, 6, 7, 9, 36], "invoc": 54, "invok": [45, 49, 52, 54], "is_clear": 44, "is_localnet": [0, 17, 47], "is_mainnet": [0, 17, 47], "is_success": 5, "is_testnet": [0, 17, 47], "isn": [1, 17, 52], "iso": 48, "issu": [40, 44, 49, 53, 55, 56], "iter": [10, 22, 36], "its": [5, 44, 45, 50], "itself": [44, 45, 56], "j": [0, 31, 45], "java": 20, "json": [6, 31, 44, 48, 50, 54], "jsonformatarc2not": 31, "just": 56, "k": [10, 22, 36], "keep": [1, 40, 43, 45, 49], "kei": [1, 3, 10, 11, 22, 24, 26, 30, 36, 37, 38, 40, 41, 44, 45, 46, 51, 52, 53, 55, 56], "key_base64": [26, 43], "key_nam": 56, "key_raw": [26, 43], "key_typ": [11, 44], "keyboard": 41, "keyreg": 31, "keyregtxn": 31, "keyword": [10, 22, 36], "kmd": [0, 1, 3, 4, 17, 41, 47, 53, 55, 56], "kmd_account_manag": [1, 2, 39, 40], "kmd_client": [0, 41, 47], "kmd_config": [4, 28, 41, 55], "kmd_manag": 1, "kmdaccount": 3, "kmdaccountmanag": [1, 3, 23, 40], "kmdclient": [0, 3, 4, 17, 47], "know": 44, "knowledg": 44, "known": [41, 44, 47, 56], "kw_onli": 51, "kwarg": [10, 22, 34, 36], "kwd": [0, 13], "lack": 44, "lambda": [1, 37, 40, 46, 52], "languag": [44, 45, 52], "larg": [55, 56], "last": [1, 4, 6, 15, 36, 38, 41, 48, 51], "last_heartbeat": 1, "last_propos": 1, "last_round": 48, "last_valid_round": [1, 6, 15, 41], "lastvalid": 41, "later": [1, 4], "latest": [13, 41, 45, 56], "leas": [0, 1, 6, 15, 36, 37, 38, 40, 41, 43, 46, 53], "least": [52, 56], "led": 44, "left": 41, "less": [54, 56], "let": [44, 55], "level": [6, 20, 23, 36, 40, 44, 51, 52, 55, 56], "leverag": [41, 52, 54, 55, 56], "librari": [36, 55], "lifecycl": [50, 55], "lift": 45, "like": [1, 7, 8, 9, 20, 41, 43, 44, 45, 47, 52, 55, 56], "likelihood": 45, "limit": [18, 20, 36, 44, 45, 52, 55], "line": [22, 44], "line_no": [22, 44], "link": 56, "list": [0, 1, 5, 6, 9, 10, 11, 15, 22, 24, 31, 36, 38, 41, 44, 46, 48, 51], "list_of_op_cod": 44, "liter": [0, 7, 10, 11, 17, 31], "ll": [40, 44, 50], "load": [1, 3, 4, 6, 18, 40, 43, 47, 50, 53], "local": [1, 6, 9, 10, 11, 17, 26, 36, 40, 44, 45, 52, 56], "local_byte_slic": [7, 8, 26, 36, 37, 38, 45], "local_int": [7, 8, 26, 36, 37, 38, 45], "local_schema": 0, "local_st": [9, 11, 43, 44, 56], "local_state_schema": 10, "localhost": 28, "localnet": [1, 3, 4, 17, 40, 41, 45, 47, 50, 52, 53, 54, 55], "localnet_dispens": [1, 40, 50, 56], "localnet_dispenser_account": 40, "locat": 11, "lock": [1, 53, 54], "log": [1, 20, 36, 41, 51, 52], "logger": [20, 48, 55], "logic": [1, 24, 40, 45, 47, 55], "logic_error": [0, 21, 39, 44], "logic_error_str": [0, 22, 44], "logic_sig": 1, "logicerror": [0, 22, 44], "logicerrordata": 22, "logicsig": [1, 24, 40], "logicsigaccount": [1, 4, 24, 32, 40, 56], "logicsigtransactionsign": 24, "login": 18, "long": 41, "longer": [45, 56], "look": [1, 8, 15, 41, 44, 45, 56], "lookup": [6, 7, 8, 17, 44, 55], "loos": 56, "loss": [40, 53], "low": [40, 56], "lsig": [24, 40], "m": 31, "ma": [36, 37], "made": [41, 45, 52], "mai": [10, 38, 41, 44, 45, 52, 56], "main": [7, 11, 18, 36, 40, 41, 55, 56], "mainnet": [4, 8, 17, 40, 41, 45, 47, 55, 56], "maintain": [45, 53, 56], "major": [11, 56], "make": [1, 3, 38, 40, 42, 44, 47, 49, 53, 54, 55, 56], "makemultisigaccounttransactionsign": 40, "manag": [1, 3, 6, 7, 9, 15, 17, 20, 24, 36, 37, 38, 44, 45, 46, 48, 50, 53, 54, 55], "manager_address": [36, 37], "manageraddress": 38, "mani": [40, 41, 53, 54], "manner": 55, "manual": [1, 40, 44, 47, 48, 51, 54], "map": [6, 8, 9, 10, 11, 17, 22, 26, 30, 36, 43, 44, 45, 48, 56], "map1": 44, "map_dict": 44, "map_nam": [44, 56], "map_valu": [44, 56], "mapkei": 44, "match": [3, 15, 40, 55], "max": [1, 38, 40, 41, 45, 52, 53], "max_fe": [1, 6, 7, 15, 36, 37, 38, 40, 41, 46, 52, 53], "max_fee_micro_algo": 0, "max_rounds_to_wait": [31, 36, 53], "max_rounds_to_wait_for_confirm": [38, 40, 41], "max_search_depth": [20, 48], "maxfe": 52, "maximum": [1, 6, 7, 15, 20, 36, 48, 52], "mb": 48, "mbr": 50, "md": [7, 11, 18, 36], "mean": [45, 48, 56], "mechan": [43, 44, 45, 51, 55], "megabyt": [20, 48], "member": [18, 30], "mental": [8, 44], "merg": 1, "messag": [0, 11, 22, 41, 44, 49, 56], "metadata": [1, 4, 7, 8, 9, 15, 24, 36, 41, 43, 46, 55], "metadata_hash": [15, 36, 38, 46], "metadatahash": 38, "meth": 34, "method": [0, 1, 4, 5, 6, 8, 9, 10, 11, 17, 36, 37, 38, 40, 41, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "method_arg": 37, "method_cal": [36, 41], "method_nam": 9, "method_name_or_signatur": 11, "methodarg": 11, "methodcallparam": [36, 41], "methodconfigdict": [0, 10], "methoddict": 10, "methodhint": [0, 10], "methodnam": 54, "methodt": 6, "micro_algo": [25, 38, 42], "microalgo": [41, 42, 49, 53, 55], "might": [20, 48, 56], "migrat": 55, "millisecond": 4, "min_bal": 1, "min_funding_incr": [1, 50, 53], "min_funding_increment_micro_algo": 0, "min_spending_bal": [1, 50, 53], "min_spending_balance_micro_algo": 0, "mind": [34, 49], "minim": [44, 53], "minimis": 52, "minimum": [1, 36, 44, 52, 53], "minor": 11, "miss": [1, 5, 6], "mistak": 42, "mnemon": [0, 1, 40, 53, 55, 56], "mode": [20, 44, 48, 56], "model": [0, 1, 3, 4, 5, 6, 7, 8, 9, 15, 17, 22, 23, 34, 36, 38, 39, 44, 50], "modifi": [18, 36], "modul": [23, 55, 56], "modular": [42, 47, 55], "more": [8, 15, 23, 36, 38, 40, 41, 43, 44, 45, 46, 50, 52, 54, 55, 56], "most": [41, 48, 56], "move": 56, "much": [20, 42, 44], "multi_sig": 1, "multipl": [6, 7, 9, 41, 44, 45, 47, 51, 52, 53, 54], "multisig": [1, 24, 40, 55], "multisig_param": [1, 24], "multisigaccount": [1, 4, 24, 32, 40, 56], "multisigaddress": 40, "multisigmetadata": [1, 24, 40], "multisigtransact": 24, "must": [18, 30, 36, 42, 45], "mutual": 41, "my": [6, 44, 48], "my_account": 1, "my_account_mnemon": [1, 56], "my_app": [7, 8], "my_box": 43, "my_default_sign": 40, "my_factori": 45, "my_method": [6, 8, 51, 52], "my_method2": 6, "my_method_cal": 6, "my_other_method": 52, "myalgodnod": 47, "myapp": 45, "myappclient": 17, "myappfactori": 17, "myasset": [36, 37], "mycontractcli": 54, "mycontractfactori": 54, "mymap": 44, "mymethod": 52, "mypi": 55, "n": 45, "name": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 15, 17, 20, 22, 30, 36, 38, 40, 43, 44, 46, 48, 52, 54, 55, 56], "name_base64": 30, "name_raw": 30, "namespac": 20, "nativ": 55, "natur": [20, 45], "necess": 56, "need": [1, 3, 38, 40, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 54, 56], "nest": [6, 8, 20], "network": [1, 4, 6, 9, 11, 17, 27, 36, 39, 40, 41, 45, 52, 55], "network_cli": 0, "network_detail": 17, "networkdetail": 17, "never": [0, 1, 10, 42], "new": [1, 4, 6, 8, 10, 13, 15, 17, 18, 22, 24, 36, 37, 38, 40, 41, 44, 45, 47, 54, 56], "new_account": [24, 40, 50], "new_arg1": [36, 37], "new_arg2": 37, "new_clawback_address": [36, 37], "new_freeze_address": [36, 37], "new_group": [4, 15, 37, 38, 41, 46, 52, 53, 56], "new_manager_address": [36, 37], "new_reserve_address": [36, 37], "new_send": 6, "new_signer_account": 40, "new_valu": 38, "newaddress": [1, 40], "newli": [8, 38], "newsigneraccount": 1, "nice": 42, "no_op": [10, 11], "node": 36, "non": [1, 15, 22, 38, 45, 48, 52, 54], "nondefaultappnam": 44, "none": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 17, 18, 20, 22, 24, 26, 28, 29, 31, 34, 36, 38, 41, 44, 45, 46, 50, 51, 52, 53], "noop": 11, "noopoc": [0, 36, 37], "normal": [6, 10, 38, 53], "normalise_app_spec": 6, "note": [0, 1, 6, 7, 8, 15, 31, 36, 37, 38, 40, 41, 43, 44, 45, 46, 51, 52, 53, 54, 55, 56], "note_prefix": 0, "noth": [0, 13, 20, 45, 55], "notic": 56, "notset": 20, "now": [40, 56], "null": 20, "num_extra_program_pag": 0, "number": [1, 3, 4, 6, 7, 11, 17, 20, 25, 26, 36, 40, 41, 42, 44, 45, 46, 47, 52, 53, 55], "number_of_transact": 25, "o": [49, 56], "object": [5, 10, 22, 24, 25, 29, 36, 40, 41, 42, 44, 45, 46, 47, 48, 49, 52, 53, 55, 56], "obtain": [49, 54, 56], "occur": [5, 44, 49], "offici": [1, 41, 54], "offlin": [1, 36, 37, 38, 40, 52], "offline_key_registr": [37, 38], "offlinekeyregistrationparam": [36, 37, 38, 41, 52], "offset": [6, 11], "often": [44, 53], "old": [13, 45], "older": [54, 56], "oldest": 48, "on_complet": [0, 6, 8, 36, 37, 38, 43, 44], "on_schema_break": [0, 7, 8, 34, 45], "on_upd": [0, 7, 8, 34, 45], "onc": [41, 44, 47], "oncomplet": [0, 6, 10, 36, 37, 38, 44], "oncompleteactionnam": [0, 10], "oncompletecallparamet": 0, "oncompletecallparametersdict": 0, "oncompletionactionnam": 10, "ondelet": 45, "one": [1, 8, 10, 22, 36, 38, 40, 41, 42, 44, 45, 47, 50, 51, 52, 53, 54, 55, 56], "onli": [10, 17, 34, 38, 41, 44, 45, 53, 56], "onlin": [1, 36, 37, 38, 52], "online_key_registr": [37, 38], "onlinekeyregistrationparam": [36, 37, 38, 41, 52], "onschemabreak": [0, 7, 8, 13, 34, 45], "onupd": [0, 7, 8, 13, 34, 45], "op": 44, "opcod": [36, 44, 48, 52], "oper": [1, 6, 7, 8, 20, 36, 37, 38, 40, 41, 42, 45, 48, 55, 56], "operation_perform": [7, 8, 45], "operationperform": [0, 7, 8, 13, 45], "opinion": 45, "opt": [1, 15, 36, 37, 38, 41, 44, 45, 50, 52, 55, 56], "opt_in": [0, 10, 11, 44, 56], "opt_out": 0, "optim": [48, 51, 52], "optin": [11, 44], "optinoc": [36, 38], "option": [1, 3, 6, 7, 8, 11, 15, 17, 31, 36, 40, 41, 43, 44, 45, 46, 47, 52, 53, 55], "orchestr": 38, "order": [40, 43, 44, 45, 53, 55, 56], "org": 1, "organ": [20, 55], "origin": [13, 43, 44, 45], "other": [1, 3, 4, 8, 36, 40, 41, 43, 44, 45, 52, 55], "otherwis": [3, 5, 9, 17, 43, 44, 55], "out": [10, 13, 15, 36, 37, 38, 41, 42, 44, 45, 47, 52, 53, 55], "outcom": 51, "outlin": 56, "output": [45, 48, 54, 55], "outsid": 45, "over": [3, 44, 45, 55, 56], "overal": 52, "overhead": 52, "overrid": [3, 6, 41, 44], "overridden": 6, "overriddenappnam": 44, "overspend": 41, "overview": 56, "overwrit": 1, "overwrite_exist": 1, "own": [44, 45], "packag": [20, 48], "page": [1, 6, 26, 36, 39, 43, 44, 55], "pai": [41, 52], "paid": [52, 53], "pair": [10, 22, 36, 40, 45], "parallel": 45, "param": [4, 6, 8, 9, 24, 36, 37, 38, 41, 44, 45, 52, 53, 56], "paramet": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 17, 18, 20, 24, 25, 31, 36, 37, 38, 40, 44, 47, 48, 52, 53, 55, 56], "parent": [41, 52], "pariti": 56, "pars": [9, 43, 44, 51, 56], "parse_logic_error": 22, "parsed_app_spec": 44, "parsed_arc32_or_arc56_app_spec": 44, "parsed_valu": 51, "part": [41, 55], "partial": [1, 24], "particip": [1, 36], "particular": [15, 41, 46], "particularli": [44, 45, 52, 53], "pass": [1, 6, 18, 34, 38, 40, 42, 43, 44, 45, 48, 49, 52, 53, 56], "past": 41, "patch": 11, "path": [0, 10, 20, 48, 50, 54, 56], "pathlib": [0, 10, 20], "pattern": [44, 56], "payload": 45, "payment": [4, 31, 36, 37, 38, 44, 48, 49, 51, 52, 55, 56], "payment_arg": 52, "paymentparam": [4, 36, 37, 38, 41, 52, 53], "paymenttxn": [0, 31], "pc": [0, 11, 22, 44], "pc_offset_method": 11, "pcoffsetmethod": 11, "pend": 1, "pending_reward": 1, "pending_transaction_info": 9, "pep": 34, "per": [1, 42, 45, 51, 53], "perform": [1, 7, 8, 15, 36, 40, 42, 44, 48, 49, 52, 55, 56], "period": [20, 41, 48], "perman": [9, 40, 44, 45, 55], "persist": 48, "persist_sourcemap": [0, 48], "persistsourcemapinput": 0, "pin": 54, "pip": 55, "place": [15, 18, 36, 46], "placehold": [7, 8], "pleas": [1, 7, 36, 41, 56], "poetri": 55, "point": [4, 17, 41, 44, 55, 56], "popul": [20, 36, 41, 44, 48, 56], "populate_app_call_resourc": [20, 31, 36, 41, 45, 48, 52], "populateappcallresourc": 41, "port": [4, 17, 28, 55], "posit": 6, "possibl": [40, 44, 55, 56], "post": 41, "potenti": [42, 56], "power": [40, 52, 56], "practic": [45, 55], "pragma": 43, "pre": [17, 40, 41, 44, 45, 55, 56], "preced": [18, 49], "predic": [0, 1, 3], "prefer": [38, 47, 55], "prefix": [11, 44], "prepar": [0, 36, 52], "prepare_group_for_send": 36, "presenc": 34, "present": [1, 24, 40, 41, 44, 45, 53, 54, 56], "prevent": [36, 41], "prevent_account_from_ever_participating_again": [36, 37, 38], "previou": 40, "previous": [1, 45, 54, 56], "primarili": 34, "primit": [51, 55], "principl": [42, 45, 47], "print": [38, 47, 49, 54], "prior": 10, "privat": [1, 3, 24, 40, 53], "private_kei": [0, 1, 3, 4, 6, 24], "problem": 56, "process": [1, 20, 40, 45, 52], "produc": 47, "product": [1, 44, 54, 55], "program": [0, 1, 4, 6, 7, 8, 9, 10, 11, 13, 17, 22, 24, 26, 36, 38, 40, 44, 45], "program_counter_valu": 44, "programmat": 53, "programsourceinfo": 11, "project": [20, 44, 48, 55], "project_root": [0, 20, 48], "proof": 36, "properli": 45, "properti": [0, 1, 4, 5, 6, 7, 8, 17, 20, 24, 25, 31, 32, 37, 40, 41, 42, 44, 45, 55, 56], "propos": 1, "proto": 34, "protocol": [1, 4, 23, 39], "provid": [1, 3, 6, 8, 9, 10, 17, 23, 24, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56], "public": [24, 36, 45, 55, 56], "public_kei": [0, 24], "pull": 10, "purpos": 56, "put": 55, "puya": 11, "py": [7, 10, 20, 28, 48, 54, 56], "pypi": 55, "pyteal": 54, "pytest": [50, 55], "python": [4, 20, 23, 42, 45, 48, 51, 52, 54, 56], "qualiti": 45, "queri": [8, 45], "quicker": 55, "quickli": [41, 56], "rais": [1, 3, 5, 6, 7, 9, 11, 15, 17, 18, 36, 38, 49, 52, 56], "ramp": 54, "randint": 50, "random": [1, 3, 24, 40, 50], "randomli": 40, "rather": [1, 40, 42, 44, 45, 52, 56], "raw": [0, 5, 6, 9, 24, 26, 30, 31, 36, 42, 43, 45, 51, 56], "raw_stat": 43, "raw_valu": [0, 5], "re": [7, 8, 44], "read": [1, 11, 20, 41, 55], "read_byt": 11, "read_onli": 10, "read_text": 50, "readabl": 44, "readi": 36, "readonli": [11, 52], "realli": 45, "reason": [44, 45], "rebuild": 36, "rebuilt": 36, "receiv": [4, 36, 37, 38, 41, 44, 47, 49, 50, 51, 52, 53, 56], "receiver_address": [36, 37, 49], "receiver_bal": 50, "receiveraddress": [4, 37, 38, 41, 53], "recogn": 34, "recognis": 17, "recommend": [11, 41, 43, 44, 45, 52, 54, 55, 56], "recompil": 56, "reconfigur": [37, 52], "record": [15, 45], "reduc": [7, 41, 45], "redund": 56, "refer": [6, 7, 9, 17, 30, 36, 42, 45, 49, 50, 52, 56], "refin": 56, "reflect": 56, "refund": [0, 18, 53, 55], "refund_txn_id": [0, 18], "regener": 56, "regist": [1, 18, 38, 41, 53, 55], "registr": [36, 37, 38, 52], "regular": [1, 36], "reiter": 56, "rekei": [1, 3, 6, 15, 41, 53, 55], "rekey_account": [1, 40, 53], "rekey_to": [0, 1, 6, 15, 37, 38, 40, 41, 53], "rekeyed_account": [1, 40], "rekeyto": 40, "rekeytoaddress": [37, 38, 53], "relat": [8, 40, 41, 56], "releas": [52, 55], "relev": [1, 15, 23, 41, 45, 52], "reli": 56, "reliabl": [42, 45, 55], "remain": [36, 53, 56], "remaind": 6, "rememb": 44, "remov": [48, 56], "renam": [40, 56], "replac": [0, 7, 8, 9, 13, 44, 45], "replace_teal_template_deploy_time_control_param": [9, 45], "replace_template_vari": [0, 9, 45], "replaceapp": [0, 13], "repositori": 53, "repres": [1, 5, 8, 10, 11, 20, 25, 30, 38, 40, 48], "represent": [5, 44], "request": [17, 18, 45, 49], "request_timeout": [0, 17, 18, 49], "requir": [1, 5, 7, 11, 36, 41, 44, 45, 49, 52, 53, 54, 56], "requisit": 45, "reserv": [15, 36, 37, 38, 46, 50], "reserve_address": [36, 37], "reserveaddress": 38, "reset": 1, "resolut": 56, "resolv": [0, 8, 10, 17, 40, 44, 45, 47, 52, 54, 55, 56], "resolve_signer_send": 0, "resourc": [20, 36, 41, 48], "respect": [52, 56], "respons": [1, 8, 36, 45, 48, 49, 51, 52, 54, 56], "rest": 1, "result": [0, 1, 4, 5, 6, 7, 8, 9, 15, 36, 38, 40, 41, 42, 43, 44, 45, 46, 50, 52, 53, 54, 55, 56], "result2": 53, "retri": 55, "retriev": [1, 3, 4, 15, 17, 40, 45, 46, 53, 54, 55, 56], "retryabl": [45, 55], "return": [1, 3, 4, 5, 6, 7, 8, 9, 11, 15, 17, 18, 20, 24, 25, 28, 34, 36, 38, 40, 41, 42, 43, 44, 46, 47, 49, 50, 51, 52, 53, 56], "return_valu": 0, "returntyp": 0, "reus": 55, "reusabl": 55, "reward": 1, "reward_bas": 1, "risk": 44, "root": [20, 23, 36, 44, 48, 55], "round": [1, 4, 6, 15, 36, 41, 46, 48, 52], "rule": [36, 44], "run": [1, 3, 40, 53], "runtim": [34, 45], "runtime_check": 34, "safe": [25, 42, 45, 54, 55, 56], "safer": [42, 55], "safeti": [55, 56], "sake": 50, "same": [40, 41, 44, 45, 47], "sampl": 45, "scenario": [41, 44, 52, 54], "schema": [1, 6, 7, 8, 10, 11, 13, 36, 37, 38, 44, 45, 56], "scope": 50, "scratch": [11, 36], "scratch_vari": 11, "scratchvari": 11, "script": 53, "sdk": [17, 40, 45, 55], "seamlessli": 1, "search": [7, 20, 48], "second": [17, 18, 41, 45, 49], "secret": [1, 40], "secret_token": 47, "see": [1, 7, 10, 11, 34, 36, 42, 43, 44, 45, 47, 49, 53, 54, 55, 56], "seed": 40, "seen": 54, "selection_kei": [36, 37, 38], "selectionkei": 38, "self": [1, 4, 8, 34, 38, 45], "semant": [8, 43, 44, 51, 53, 55, 56], "semver": 45, "send": [1, 4, 6, 7, 8, 15, 31, 36, 38, 40, 44, 45, 49, 50, 51, 52, 53, 54, 55, 56], "send_atomic_transaction_compos": 36, "send_param": [1, 6, 7, 8, 15, 34, 38, 41, 45, 46, 52, 53], "sendappcreatefactorytransactionresult": [8, 51], "sendappcreatetransactionresult": [7, 8, 38, 51], "sendappfactorytransactionresult": [8, 51], "sendapptransactionresult": [7, 8, 38, 45, 51], "sendappupdatefactorytransactionresult": [8, 51], "sendappupdatetransactionresult": [7, 8, 38, 51], "sendatomictransactioncomposerresult": [1, 36, 38], "sender": [0, 1, 3, 4, 6, 7, 8, 15, 17, 36, 37, 38, 40, 41, 43, 44, 45, 49, 50, 51, 52, 53, 56], "sender2address": 44, "sender_address": [7, 8, 9, 18, 36, 37, 40], "senderaddress": [1, 4, 6, 37, 38, 40, 41, 44, 45, 53], "sendparam": [1, 6, 7, 8, 15, 31, 34, 36, 38, 41, 45, 46, 52, 53], "sendsingleassetcreatetransactionresult": [38, 51], "sendsingletransactionresult": [1, 6, 8, 38, 41], "sens": [38, 40, 53], "sensibl": 55, "sent": [1, 36, 45, 51, 52, 53], "separ": [20, 48], "sequenc": [0, 6], "seri": [15, 41, 45, 55], "serialis": 44, "serv": 56, "server": [0, 28, 47, 55], "servic": [1, 17, 28, 53], "set": [1, 4, 7, 8, 17, 18, 20, 23, 36, 38, 40, 41, 44, 45, 48, 49, 52, 53, 55, 56], "set_box": 50, "set_default_sign": [1, 4, 40], "set_default_validity_window": [4, 41], "set_sign": [1, 4, 40, 50], "set_signer_from_account": [1, 4, 40], "set_suggested_param": 41, "set_suggested_params_cach": 4, "set_suggested_params_cache_timeout": 4, "set_suggested_params_timeout": 41, "setdefaultsign": 41, "setsign": 41, "setsignerfromaccount": 41, "setup": 55, "sever": [43, 52], "share": 41, "short": 36, "shortcut": [41, 47], "should": [1, 6, 10, 20, 36, 40, 41, 45, 52, 53], "shouldn": [42, 45], "show": 44, "shown": 43, "sig": [24, 40], "sig_typ": 1, "sign": [1, 3, 4, 24, 40, 41, 44, 53, 55, 56], "signatur": [1, 34, 36, 40, 41, 44, 52], "signer": [0, 1, 3, 4, 6, 8, 15, 17, 24, 32, 36, 38, 41, 43, 46, 50, 52, 53, 55], "signer_account": 1, "signeraccount": 6, "signerprivatekei": 6, "signifi": 41, "significantli": [40, 56], "signing_account": [1, 4, 24], "signingaccount": [1, 3, 4, 15, 24, 32, 40, 50, 56], "signmultisigtransact": 40, "similar": [52, 53, 54, 56], "simpl": [34, 54, 56], "simpler": 56, "simpli": [48, 56], "simplic": 50, "simplifi": [40, 56], "simul": [20, 22, 27, 36, 39, 41, 44, 48, 51, 55], "simulate_and_persist_respons": [0, 48], "simulate_respons": [36, 51, 52], "simulateatomictransactionrespons": 0, "simulatetraceconfig": [36, 52], "simulation_round": [36, 48, 52], "simulationtrac": [22, 29, 44], "sinc": [20, 40, 44, 45, 56], "singl": [8, 13, 20, 38, 44, 45, 51, 53, 54, 56], "singlesendtransactionresult": 41, "situat": 52, "size": [20, 48], "skip": [36, 45, 52, 56], "skip_signatur": [36, 52], "skip_wait": 36, "slice": [11, 26, 36], "slightli": [41, 56], "slot": 11, "small": [52, 53], "smallest": [15, 36], "smallish": 41, "smart": [6, 17, 43, 44, 48, 50, 52, 54, 55, 56], "snippet": [50, 55], "so": [1, 4, 7, 20, 40, 44, 45, 47, 52, 53, 54, 55], "solut": [23, 45, 55], "some": [10, 15, 40, 41, 42, 45, 47, 53, 55], "some_abi_method_object": 37, "some_byt": 38, "someth": [40, 44], "somewher": 47, "soon": 44, "sourc": [0, 1, 6, 8, 9, 10, 11, 17, 26, 43, 44, 45, 48, 53, 55, 56], "source_info": 11, "source_map": [0, 6, 8, 17, 22, 26, 34, 43, 44], "source_map_json": 0, "sourceinfo": 11, "sourceinfomodel": 11, "sourcemap": [0, 6, 8, 17, 26, 34, 48], "space": [11, 41], "spec": [6, 7, 8, 17, 36, 50, 51, 55, 56], "special": 47, "specif": [6, 7, 8, 10, 11, 17, 20, 23, 41, 44, 48, 52, 54, 55, 56], "specifi": [1, 3, 4, 7, 8, 10, 17, 38, 40, 41, 42, 43, 44, 45, 47, 52, 53, 55], "spend": [1, 53], "spendabl": 1, "sphinx": 39, "split": [44, 56], "stabil": 45, "stai": 40, "stale": 4, "standalon": 56, "standard": [9, 15, 36, 37, 38, 46, 50, 52, 55], "start": [4, 18, 37, 41, 45, 50, 55], "state": [1, 5, 6, 7, 8, 9, 10, 11, 26, 27, 36, 38, 39, 42, 45, 52, 55], "state_proof": 31, "state_proof_kei": [36, 37, 38], "state_proof_key_byt": 37, "statedict": 10, "stateless": 56, "stateprooftxn": 31, "stateschema": [0, 10, 45], "static": [0, 1, 4, 6, 9, 10, 11, 15, 17, 24, 25, 34, 36, 41, 42, 45, 55, 56], "static_fe": [1, 6, 15, 36, 37, 38, 40, 41, 44, 46, 53], "staticfe": 38, "statu": [1, 20, 40], "step": [44, 55], "still": [52, 56], "storag": [1, 11, 43, 44, 45, 48, 55, 56], "storagekei": 11, "storagemap": 11, "store": [1, 3, 5, 7, 9, 20, 40, 48, 50, 53], "stored_valu": 50, "str": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 17, 18, 20, 22, 24, 26, 28, 29, 30, 31, 32, 34, 36, 38, 41, 42, 43, 44, 45, 46, 49, 51, 53], "straight": [45, 56], "string": [1, 5, 10, 11, 17, 20, 26, 30, 31, 36, 38, 40, 41, 42, 43, 44, 45, 48], "string_io": 44, "stringformatarc2not": 31, "stringtyp": 43, "strip": [9, 45], "strip_teal_com": [9, 45], "stripped_teal_cod": 9, "strong": [44, 55], "stronger": 56, "struct": [5, 10, 11, 51], "struct_def": 5, "struct_field": [5, 11], "struct_valu": 5, "structargdict": 10, "structfield": [5, 11], "structur": [31, 34, 53, 56], "sub": 20, "subclass": 48, "submit": [41, 56], "submodul": 55, "subsequ": [7, 45, 47], "substitut": [7, 8, 9, 43, 55], "subtli": 52, "subtract": 42, "subtyp": 34, "success": 5, "successfulli": [41, 52], "suggest": [4, 36, 41, 52], "suggested_param": [0, 4, 36, 41, 52], "suggestedparam": [0, 4, 36], "summaris": 54, "suppli": [15, 36, 45], "support": [1, 11, 24, 36, 40, 42, 45, 51, 52, 54, 55, 56], "suppress": [1, 36, 41, 55], "suppress_log": [1, 31, 36, 38, 40, 41, 48, 53, 55], "suppresslog": 41, "supress": 48, "sure": [1, 7, 8, 41], "surplu": 52, "symbol": 44, "syntax": 40, "system": 1, "t": [1, 6, 7, 17, 34, 36, 38, 40, 42, 44, 45, 47, 52, 53, 54, 56], "take": [1, 8, 13, 18, 36, 40, 42, 44, 45, 47, 49, 52, 53], "taken": 13, "target": [1, 10], "task": 55, "teal": [6, 7, 8, 9, 11, 26, 36, 43, 44, 45, 48, 52, 55], "teal_approval_cod": [36, 37], "teal_clear_cod": [36, 37], "teal_cod": [9, 43, 45], "teal_new_approval_cod": [36, 37], "teal_new_clear_cod": [36, 37], "teal_template_cod": [9, 45], "tealclear_advanc": 38, "tealcod": [36, 38], "tealcode_advanc": 38, "tealscript": [52, 54], "tealtemplateparam": [6, 7, 9, 30, 45], "templat": [6, 7, 8, 9, 11, 43, 54, 55], "template_cod": 43, "template_param": [9, 43, 45], "template_valu": [0, 9, 45], "template_vari": 11, "templatevaluedict": 0, "templatevaluemap": 0, "templatevar": 45, "templatevari": 11, "temporarili": 20, "ters": [42, 55], "terser": 55, "test": [42, 45, 47, 48, 52, 53], "test_app_deploy": 50, "test_app_method_cal": 50, "test_asset_transf": 50, "test_box": 50, "test_box_storag": 50, "test_valu": 50, "testing_app_arc32_app_spec": 56, "testnet": [1, 4, 17, 18, 28, 40, 41, 45, 53, 55, 56], "testnet_api": 18, "testnetdispenserapicli": [0, 1, 17, 18, 49, 53], "than": [1, 36, 40, 41, 42, 44, 45, 52, 56], "thei": [1, 34, 40, 44, 48, 52, 53, 56], "them": [17, 36, 41, 42, 43, 44, 52, 55], "therefor": 52, "thi": [1, 3, 4, 6, 7, 8, 9, 15, 20, 23, 24, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56], "thin": 55, "thing": [41, 55, 56], "think": [41, 56], "those": [8, 44, 47], "though": 52, "threshold": [1, 24, 40], "through": [41, 44, 46, 52, 55, 56], "throw": [7, 40, 41, 44], "thrown": [1, 17, 44, 52, 56], "thu": 44, "ticker": [15, 36, 46], "tier": [17, 41, 47, 55], "time": [4, 7, 8, 9, 40, 41, 44, 45, 47, 48, 52, 53, 54, 55, 56], "timeout": [4, 17, 18, 41, 49], "timestamp": [4, 48], "tmpl_": 45, "tmpl_delet": [9, 45], "tmpl_updat": [9, 45], "tmpl_valu": 43, "to_abi_method": 11, "to_addr": 56, "to_json": [10, 11], "to_resolv": 0, "togeth": 52, "token": [0, 4, 17, 18, 28, 47, 49, 55], "toml": [20, 48], "too": 47, "tool": [18, 48, 55], "top": [41, 43, 44, 45, 53, 55, 56], "total": [1, 15, 25, 36, 37, 38, 42, 46, 50], "total_apps_opted_in": 1, "total_assets_opted_in": 1, "total_box": 1, "total_box_byt": 1, "total_created_app": 1, "total_created_asset": 1, "trace": [0, 20, 22, 36, 44, 52, 55], "trace_al": [20, 48], "trace_buffer_size_mb": [20, 48], "track": [1, 4, 40, 43], "traffic": 41, "transact": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 18, 23, 24, 25, 27, 32, 39, 40, 43, 44, 45, 46, 48, 49, 53, 54, 55], "transaction_compos": [1, 4, 6, 7, 15, 35, 37, 38, 39], "transaction_cr": [4, 35, 39], "transaction_fe": 25, "transaction_id": [0, 15, 22, 44, 46, 49, 53], "transaction_index": 0, "transaction_paramet": 0, "transaction_send": [1, 4, 6, 7, 8, 35, 39, 45], "transaction_sign": [1, 40, 46, 53], "transaction_typ": [48, 52], "transactioncompos": [4, 15, 36, 37, 38, 40, 41, 46, 51, 52, 56], "transactioncomposerbuildresult": 36, "transactionnot": 31, "transactionnotedata": 31, "transactionparamet": 0, "transactionparametersdict": 0, "transactionpool": 44, "transactionrespons": 0, "transactionsign": [0, 1, 4, 6, 8, 15, 17, 24, 32, 34, 36, 38, 40, 41, 52], "transactionsigneraccount": [1, 4, 24, 32, 40, 41, 56], "transactionsigneraccountprotocol": [1, 4, 32, 55, 56], "transactionwithsign": 36, "transactionwrapp": [31, 36, 38, 51], "transfer": [0, 36, 37, 38, 41, 46, 48, 52, 55, 56], "transfer_algo": 56, "transfer_amount": 50, "transfer_asset": [0, 56], "transferassetparamet": 0, "transferparamet": 0, "transferparametersbas": 0, "transient": 47, "transpil": 45, "travers": 48, "trigger": [44, 47], "troubleshoot": 55, "true": [0, 1, 5, 9, 15, 17, 36, 37, 38, 40, 41, 43, 44, 45, 46, 48, 50, 51, 52, 53, 55], "try": [44, 49], "tst": 50, "tupl": [0, 5, 8, 9, 34], "tupletyp": 5, "turn": [41, 44, 45, 55, 56], "two": [10, 22, 36, 40, 44, 46, 49, 53], "tx_id": [0, 9, 18, 36, 38, 49, 51], "tx_info": [0, 5], "txn": [36, 37, 41, 49], "txn_id": 49, "txnparam": [36, 41], "type": [0, 1, 5, 6, 9, 10, 11, 17, 23, 34, 36, 37, 38, 40, 41, 43, 44, 45, 47, 48, 49, 52, 53], "type_str": 5, "typealia": [0, 5, 10, 30], "typed_app_cli": 17, "typed_app_factori": 17, "typed_cli": [17, 33, 39], "typed_factori": 17, "typedappclientprotocol": 34, "typedappclientt": 17, "typedappfactoryprotocol": 34, "typeddict": [0, 6, 10, 22, 31, 36, 44], "typedfactoryt": 17, "typescript": [45, 52, 55], "typing_extens": [1, 4, 8, 34, 38], "u": 31, "uint": [9, 30], "uint64": 38, "uint8arrai": [1, 38, 45], "unabl": 1, "uncircul": [15, 36], "undefin": 41, "under": [40, 44, 52], "underli": [11, 24, 42, 43, 44, 47, 54, 55, 56], "underpin": 40, "underscor": 48, "understand": [7, 44, 51, 54], "undictifi": 10, "unencrypt": [1, 40], "unexpect": 9, "unfreez": [15, 36, 38], "unifi": 56, "union": 41, "uniqu": [20, 40, 44, 45], "unit": [15, 36, 38, 46], "unit_nam": [15, 36, 37, 38, 46, 50], "unit_name_b64": 15, "unitnam": 38, "unknown": 9, "unless": 41, "unnam": [36, 48, 52], "unsign": 48, "unspecifi": 45, "unsur": 56, "until": [4, 41, 56], "untyp": [44, 56], "up": [1, 15, 20, 45, 52, 54, 56], "updat": [0, 6, 7, 8, 13, 20, 36, 37, 38, 43, 48, 50, 51, 52, 54, 55], "updatable_template_nam": [0, 9, 43], "updatableconfig": [20, 48], "update_abi": 44, "update_appl": [10, 11], "update_arg": 0, "update_param": [7, 8, 34, 45], "update_result": [7, 8, 45], "updateapp": [0, 13], "updateappl": [11, 45], "updateapplicationoc": [36, 37, 38], "updatecallabi": 45, "updated_program": 9, "updated_round": 7, "updated_teal_cod": 9, "updatemethod": 38, "updateparamst": 34, "upgrad": [45, 56], "upper": 20, "upskil": 54, "url": [15, 28, 36, 37, 38, 46, 50], "url_b64": 15, "us": [1, 3, 4, 6, 7, 8, 9, 10, 11, 15, 17, 20, 23, 34, 36, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "usag": [42, 45, 47, 51, 53], "user": [42, 45, 52, 56], "usual": 41, "util": [20, 23, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 53, 54, 56], "utilis": [45, 54], "v": [10, 22, 36, 44, 54], "v1": [17, 56], "v2accountsaddress": 1, "v2client": [0, 4, 7, 9, 15, 17, 28, 36, 38, 46, 47], "v3": [45, 55], "v4": 56, "v7": 56, "valid": [1, 4, 6, 15, 31, 36, 41, 44, 45, 52, 55], "validity_window": [1, 4, 6, 15, 36, 37, 38, 40, 41, 46, 53], "valu": [4, 5, 6, 8, 9, 10, 11, 22, 26, 30, 36, 38, 41, 43, 44, 48, 50, 51, 52, 56], "value1": [43, 44], "value_base64": [26, 43], "value_raw": [26, 43], "value_typ": 11, "valueerror": [1, 5, 6, 7, 9, 11, 15, 17, 36, 38], "vari": 45, "variabl": [1, 4, 6, 9, 11, 15, 17, 18, 40, 41, 45, 47, 48, 49, 53, 54, 55], "variant": 53, "variat": 51, "variou": [1, 8, 9, 20, 36, 37, 38, 41, 44, 47, 52, 55], "various": 44, "verbos": 55, "veri": [52, 56], "verif": 52, "verifi": [45, 50], "version": [0, 1, 7, 8, 11, 13, 17, 24, 40, 43, 44, 45, 50, 54, 56], "via": [1, 8, 10, 18, 22, 36, 40, 41, 42, 43, 44, 45, 46, 48, 49, 51, 52, 53, 55, 56], "void": [38, 51, 52], "vote_first": [36, 37, 38], "vote_kei": [36, 37, 38], "vote_key_dilut": [36, 37, 38], "vote_last": [36, 37, 38], "votekei": 38, "vrf": 36, "wa": [1, 3, 5, 13, 15, 18, 36, 45, 46, 48, 51, 52, 53], "wai": [42, 43, 47, 49, 53, 54, 55, 56], "wait": [4, 36, 41], "wait_round": 0, "wallet": [1, 3, 40], "wallet_nam": 3, "want": [7, 38, 40, 41, 43, 44, 45, 48, 52, 53, 54, 55, 56], "warn": [40, 41, 53], "wasn": [7, 54], "we": [40, 41, 44, 45, 50, 52, 56], "well": [40, 45, 47], "were": [1, 15, 36, 45, 51], "weren": 56, "what": [42, 44, 45], "when": [1, 3, 4, 7, 8, 40, 41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 55, 56], "whenev": 42, "where": [10, 15, 18, 20, 30, 41, 42, 44, 48, 52, 56], "wherea": 56, "wherev": 55, "whether": [1, 7, 8, 15, 17, 20, 36, 41, 45, 46, 48], "which": [1, 4, 17, 40, 41, 42, 44, 45, 46, 47, 48, 49, 52, 53, 54, 55, 56], "while": [40, 45, 49, 51, 56], "who": 48, "window": [1, 4, 15, 36, 41], "with_debug": 20, "with_sourc": [0, 48], "within": [40, 41, 44, 45, 47, 56], "without": [1, 3, 6, 36, 40, 44, 45, 47, 55, 56], "won": [7, 56], "work": [1, 10, 17, 44, 45, 47, 51, 52, 54, 55, 56], "world": [50, 54], "worth": [55, 56], "worthwhil": 56, "would": 56, "wouldn": [38, 53], "wrap": [5, 41, 55], "wrapper": [1, 24, 25, 31, 40, 42, 44, 47, 55], "write": [1, 10, 11, 45, 47, 55], "write_byt": 11, "written": [10, 55], "x": [34, 54, 56], "xbyls2e6yi6xxl5bwcamoa4gtwhxwenzmx5uhxmrnwwuq7bxcy5wc5tepa": [1, 46], "xl": 20, "yet": [40, 44, 56], "you": [1, 7, 8, 36, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56], "your": [41, 44, 45, 48, 49, 50, 52, 54, 56], "your_address": 40, "your_auth_token": 49, "your_sign": 40, "yourself": 49, "zero": [15, 38], "\u00b5algo": [25, 52]}, "titles": ["algokit_utils", "algokit_utils.accounts.account_manager", "algokit_utils.accounts", "algokit_utils.accounts.kmd_account_manager", "algokit_utils.algorand", "algokit_utils.applications.abi", "algokit_utils.applications.app_client", "algokit_utils.applications.app_deployer", "algokit_utils.applications.app_factory", "algokit_utils.applications.app_manager", "algokit_utils.applications.app_spec.arc32", "algokit_utils.applications.app_spec.arc56", "algokit_utils.applications.app_spec", "algokit_utils.applications.enums", "algokit_utils.applications", "algokit_utils.assets.asset_manager", "algokit_utils.assets", "algokit_utils.clients.client_manager", "algokit_utils.clients.dispenser_api_client", "algokit_utils.clients", "algokit_utils.config", "algokit_utils.errors", "algokit_utils.errors.logic_error", "algokit_utils", "algokit_utils.models.account", "algokit_utils.models.amount", "algokit_utils.models.application", "algokit_utils.models", "algokit_utils.models.network", "algokit_utils.models.simulate", "algokit_utils.models.state", "algokit_utils.models.transaction", "algokit_utils.protocols.account", "algokit_utils.protocols", "algokit_utils.protocols.typed_clients", "algokit_utils.transactions", "algokit_utils.transactions.transaction_composer", "algokit_utils.transactions.transaction_creator", "algokit_utils.transactions.transaction_sender", "API Reference", "Account management", "Algorand client", "Algo amount handling", "App management", "App client and App factory", "App deployment", "Assets", "Client management", "Debugger", "TestNet Dispenser Client", "Testing", "Transaction management", "Transaction composer", "Algo transfers (payments)", "Typed application clients", "AlgoKit Python Utilities", "Migration Guide - v3"], "titleterms": {"1": 56, "2": 56, "3": 56, "4": 56, "5": 56, "6": 56, "7": 56, "8": 56, "A": 56, "In": 46, "abi": 5, "access": [41, 43, 47], "account": [1, 2, 3, 24, 32, 40, 44, 46, 49, 56], "account_manag": 1, "accountassetinform": 46, "accountmanag": 40, "addit": 42, "after": 56, "algo": [42, 53], "algoamount": 42, "algokit": 55, "algokit_util": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "algokitlogg": 48, "algorand": [4, 41], "algorandcli": 56, "all": 56, "amount": [25, 42], "an": [42, 44, 47, 49, 54], "api": [0, 39, 47], "app": [43, 44, 45, 52, 54, 56], "app_client": 6, "app_deploy": 7, "app_factori": 8, "app_manag": 9, "app_spec": [10, 11, 12], "appclient": [44, 56], "appdeploy": 45, "appfactori": 44, "applic": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 26, 50, 51, 54], "applicationcli": 56, "applicationspecif": 56, "appmanag": 43, "arc32": 10, "arc56": 11, "argument": 44, "asset": [15, 16, 46, 50, 56], "asset_manag": 15, "assetinform": 46, "assetmanag": 46, "attribut": [5, 6, 7, 9, 10, 18, 20, 24, 25, 30, 31, 36], "automat": 47, "basic": 50, "befor": 56, "best": 56, "box": [43, 50], "break": 56, "budget": 52, "bulk": 46, "call": [43, 44, 48, 50, 52], "capabl": 55, "chang": 56, "class": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 18, 20, 22, 24, 25, 26, 28, 29, 30, 31, 32, 34, 36, 37, 38, 40, 41, 56], "client": [17, 18, 19, 41, 43, 44, 47, 49, 54, 56], "client_manag": 17, "clientmanag": 47, "common": 43, "compil": [43, 45], "compos": [41, 52], "config": [20, 55], "configur": [41, 47, 48], "construct": 52, "content": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 18, 20, 22, 24, 25, 26, 28, 29, 30, 31, 32, 34, 36, 37, 38, 55], "contract": 45, "convert": 56, "core": 55, "correctli": 56, "cover": [52, 56], "creat": [41, 42, 44, 47, 49, 50, 54], "current": 49, "data": 0, "debug": [48, 55], "debugg": 48, "default": [40, 44], "delet": [44, 45], "deploi": [44, 45, 54], "deploy": [45, 50], "deprec": 56, "develop": 45, "diagnos": 44, "dispens": [40, 47, 49, 53], "dispenser_api_cli": 18, "displai": 56, "document": 55, "doe": 56, "dynam": 44, "each": 51, "encount": 51, "ensure_fund": 53, "enum": 13, "error": [21, 22, 44, 49], "exampl": [40, 53], "except": 22, "extract": 42, "factori": [44, 54], "featur": 42, "fee": 52, "filenam": 48, "format": 48, "from": 42, "function": [0, 5, 6, 22, 25, 36], "fund": [44, 49], "further": 51, "gener": [44, 54, 56], "get": [40, 43, 46, 49, 54], "given": 44, "global": [43, 48], "group": 41, "guid": 56, "handl": [42, 44, 49], "hold": 46, "i": 54, "idempot": 45, "inform": [43, 46, 47], "inner": 52, "input": 45, "instal": 55, "instanc": [41, 47, 54], "interfac": 56, "issu": 41, "kmd": 40, "kmd_account_manag": 3, "lifecycl": 45, "limit": 49, "ll": 51, "local": 43, "log": [48, 55], "logic": 44, "logic_error": 22, "lookup": 45, "make": 45, "manag": [40, 41, 43, 47, 51, 56], "messag": 48, "metadata": 45, "method": [44, 56], "migrat": 56, "mode": 55, "model": [24, 25, 26, 27, 28, 29, 30, 31], "modul": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 18, 20, 22, 24, 25, 26, 28, 29, 30, 31, 32, 34, 36, 37, 38], "name": 45, "network": [28, 47], "onli": 52, "op": 52, "oper": 46, "opt": 46, "out": 46, "packag": 0, "paramet": [41, 43, 45, 46], "payment": 53, "per": 48, "perform": 45, "popul": 52, "practic": 56, "prerequisit": 56, "principl": 55, "protocol": [32, 33, 34], "python": 55, "read": [44, 51, 52], "refer": [39, 43, 55], "refund": 49, "regist": [40, 49], "rekei": 40, "replac": 56, "resourc": 52, "result": 51, "retri": 47, "return": 45, "scenario": 56, "sdk": [41, 47, 56], "send": 41, "sendatomictransactioncomposerresult": 51, "sendsingletransactionresult": 51, "setup": 50, "sign": 52, "signer": 40, "simul": [29, 52], "singl": 41, "singleton": 55, "smart": 45, "spec": [44, 54], "specif": 51, "state": [30, 43, 44, 56], "step": 56, "storag": 50, "submodul": [2, 12, 14, 16, 19, 21, 23, 27, 33, 35], "substitut": 45, "suppress": 48, "templat": 45, "test": [50, 55], "testnet": [47, 49], "trace": 48, "transact": [31, 35, 36, 37, 38, 41, 51, 52, 56], "transaction_compos": 36, "transaction_cr": 37, "transaction_send": 38, "transactionsigneraccountprotocol": 40, "transfer": [50, 53], "troubleshoot": 56, "type": [51, 54, 55, 56], "typed_cli": 34, "underli": 40, "updat": [44, 45, 56], "us": 56, "usag": [54, 55, 56], "util": [48, 55], "v2": 56, "v3": 56, "valu": [42, 45], "via": 47, "warn": 56, "where": 51, "without": 52, "you": 51}}) \ No newline at end of file +Search.setIndex({"alltitles": {"A v2 interface/method/class does not display a deprecation warning correctly or at all": [[55, "a-v2-interface-method-class-does-not-display-a-deprecation-warning-correctly-or-at-all"]], "API Reference": [[38, null]], "Accessing SDK clients": [[40, "accessing-sdk-clients"]], "Accessing SDK clients via ClientManager instance": [[46, "accessing-sdk-clients-via-clientmanager-instance"]], "Accessing manager class instances": [[40, "accessing-manager-class-instances"]], "Accessing state": [[42, "accessing-state"]], "Account management": [[39, null]], "AccountAssetInformation": [[45, "accountassetinformation"]], "AccountManager": [[39, "accountmanager"]], "Accounts": [[39, "accounts"]], "Additional Features": [[41, "additional-features"]], "After:": [[55, "after"], [55, "id2"]], "Algo amount handling": [[41, null]], "Algo transfers (payments)": [[52, null]], "AlgoAmount": [[41, "algoamount"]], "AlgoKit Python Utilities": [[54, null]], "AlgoKitLogger": [[47, "algokitlogger"]], "Algorand client": [[40, null]], "App Clients": [[42, "app-clients"]], "App client and App factory": [[43, null]], "App deployment": [[44, null]], "App is deployed": [[53, "app-is-deployed"]], "App is not deployed": [[53, "app-is-not-deployed"]], "App management": [[42, null]], "App spec methods": [[43, "app-spec-methods"]], "AppClient": [[43, "appclient"]], "AppDeployer": [[44, "appdeployer"]], "AppFactory": [[43, "appfactory"]], "AppManager": [[42, "appmanager"]], "Application-specific Result Types": [[50, "application-specific-result-types"]], "Asset Information": [[45, "asset-information"]], "AssetInformation": [[45, "assetinformation"]], "AssetManager": [[45, "assetmanager"]], "Assets": [[45, null]], "Attributes": [[4, "attributes"], [5, "attributes"], [6, "attributes"], [8, "attributes"], [9, "attributes"], [17, "attributes"], [19, "attributes"], [23, "attributes"], [24, "attributes"], [29, "attributes"], [30, "attributes"], [35, "attributes"]], "Automatic retry": [[46, "automatic-retry"]], "Basic Test Setup": [[49, "basic-test-setup"]], "Before:": [[55, "before"], [55, "id1"]], "Best Practices": [[55, "best-practices"]], "Box references": [[42, "box-references"]], "Boxes": [[42, "boxes"]], "Breaking Changes": [[55, "breaking-changes"]], "Bulk Operations": [[45, "bulk-operations"]], "Bulk Opt-In": [[45, "bulk-opt-in"]], "Bulk Opt-Out": [[45, "bulk-opt-out"]], "Calling apps": [[42, "calling-apps"]], "Calling the app": [[43, "calling-the-app"]], "Capabilities": [[54, "capabilities"]], "Classes": [[0, "classes"], [2, "classes"], [3, "classes"], [4, "classes"], [5, "classes"], [6, "classes"], [7, "classes"], [8, "classes"], [9, "classes"], [10, "classes"], [12, "classes"], [14, "classes"], [16, "classes"], [17, "classes"], [19, "classes"], [21, "classes"], [23, "classes"], [24, "classes"], [25, "classes"], [27, "classes"], [28, "classes"], [29, "classes"], [30, "classes"], [31, "classes"], [33, "classes"], [35, "classes"], [36, "classes"], [37, "classes"]], "Client management": [[46, null]], "Client usage": [[53, "client-usage"]], "ClientManager": [[46, "clientmanager"]], "Clients": [[46, "clients"]], "Common app parameters": [[42, "common-app-parameters"]], "Compilation": [[42, "compilation"]], "Compilation and template substitution": [[44, "compilation-and-template-substitution"]], "Composing a group of transactions": [[40, "composing-a-group-of-transactions"]], "Config and logging": [[54, "config-and-logging"]], "Config singleton": [[54, "config-singleton"]], "Configuration": [[47, "configuration"]], "Constructing a transaction": [[51, "constructing-a-transaction"]], "Contents": [[54, null]], "Core principles": [[54, "core-principles"]], "Covering App Call Inner Transaction Fees": [[51, "covering-app-call-inner-transaction-fees"]], "Covering App Call Op Budget": [[51, "covering-app-call-op-budget"]], "Create": [[43, "create"]], "Creating Test Assets": [[49, "creating-test-assets"]], "Creating a Dispenser Client": [[48, "creating-a-dispenser-client"]], "Creating a TestNet dispenser API client instance": [[46, "creating-a-testnet-dispenser-api-client-instance"]], "Creating a typed factory instance": [[53, "creating-a-typed-factory-instance"]], "Creating an AlgoAmount": [[41, "creating-an-algoamount"]], "Creating an SDK client instance": [[46, "creating-an-sdk-client-instance"]], "Creating and deploying an app": [[43, "creating-and-deploying-an-app"]], "Creating and issuing transactions": [[40, "creating-and-issuing-transactions"]], "Creating transactions": [[40, "creating-transactions"]], "Debug mode": [[54, "debug-mode"]], "Debugger": [[47, null]], "Debugging Utilities": [[47, "debugging-utilities"]], "Default arguments": [[43, "default-arguments"]], "Default signer": [[39, "default-signer"]], "Deployment metadata": [[44, "deployment-metadata"]], "Dispenser": [[39, "dispenser"], [52, "dispenser"]], "Dynamically creating clients for a given app spec": [[43, "dynamically-creating-clients-for-a-given-app-spec"]], "Error Handling": [[48, "error-handling"]], "Examples": [[39, "examples"], [52, "examples"]], "Exceptions": [[21, "exceptions"]], "Extracting a value from AlgoAmount": [[41, "extracting-a-value-from-algoamount"]], "Functions": [[4, "functions"], [5, "functions"], [21, "functions"], [24, "functions"], [35, "functions"]], "Funding an Account": [[48, "funding-an-account"]], "Funding the app account": [[43, "funding-the-app-account"]], "Further reading": [[50, "further-reading"]], "Generating a typed client": [[53, "generating-a-typed-client"]], "Generating an app spec": [[53, "generating-an-app-spec"]], "Generic methods": [[43, "generic-methods"]], "Get Asset Information": [[45, "get-asset-information"]], "Get a signer": [[39, "get-a-signer"]], "Getting Account Holdings": [[45, "getting-account-holdings"]], "Getting Asset Parameters": [[45, "getting-asset-parameters"]], "Getting Current Limit": [[48, "getting-current-limit"]], "Getting a typed client instance": [[53, "getting-a-typed-client-instance"]], "Getting app information": [[42, "getting-app-information"]], "Global state": [[42, "global-state"]], "Handling logic errors and diagnosing errors": [[43, "handling-logic-errors-and-diagnosing-errors"]], "Idempotency": [[44, "idempotency"]], "Input parameters": [[44, "input-parameters"]], "Installation": [[54, "installation"]], "KMD account management": [[39, "kmd-account-management"]], "Local state": [[42, "local-state"]], "Logging": [[54, "logging"]], "Lookup deployed apps by name": [[44, "lookup-deployed-apps-by-name"]], "Making updatable/deletable apps": [[44, "making-updatable-deletable-apps"]], "Migration Guide - v3": [[55, null]], "Migration Steps": [[55, "migration-steps"]], "Module Contents": [[0, "module-contents"], [2, "module-contents"], [3, "module-contents"], [4, "module-contents"], [5, "module-contents"], [6, "module-contents"], [7, "module-contents"], [8, "module-contents"], [9, "module-contents"], [10, "module-contents"], [12, "module-contents"], [14, "module-contents"], [16, "module-contents"], [17, "module-contents"], [19, "module-contents"], [21, "module-contents"], [23, "module-contents"], [24, "module-contents"], [25, "module-contents"], [27, "module-contents"], [28, "module-contents"], [29, "module-contents"], [30, "module-contents"], [31, "module-contents"], [33, "module-contents"], [35, "module-contents"], [36, "module-contents"], [37, "module-contents"]], "Network configuration": [[46, "network-configuration"]], "Network information": [[46, "network-information"]], "Performing a deployment": [[44, "performing-a-deployment"]], "Prerequisites": [[55, "prerequisites"]], "Read-only calls": [[51, "read-only-calls"]], "Reading state": [[43, "reading-state"]], "Reference documentation": [[54, "reference-documentation"]], "Registering a Refund": [[48, "registering-a-refund"]], "Registering a signer": [[39, "registering-a-signer"]], "Rekey account": [[39, "rekey-account"]], "Resource Population": [[51, "resource-population"]], "Return value": [[44, "return-value"]], "SendAtomicTransactionComposerResults": [[50, "sendatomictransactioncomposerresults"]], "SendSingleTransactionResult": [[50, "sendsingletransactionresult"]], "Sending a single transaction": [[40, "sending-a-single-transaction"]], "Simulate without signing": [[51, "simulate-without-signing"]], "Simulating a transaction": [[51, "simulating-a-transaction"]], "Smart contract development lifecycle": [[44, "smart-contract-development-lifecycle"]], "Step 1 - Replace SDK Clients with AlgorandClient": [[55, "step-1-replace-sdk-clients-with-algorandclient"]], "Step 2 - Update Account Management": [[55, "step-2-update-account-management"]], "Step 3 - Update Transaction Management": [[55, "step-3-update-transaction-management"]], "Step 4 - Update ApplicationSpecification usage": [[55, "step-4-update-applicationspecification-usage"]], "Step 5 - Replace ApplicationClient usage": [[55, "step-5-replace-applicationclient-usage"]], "Step 6 - Replace typed app client usage": [[55, "step-6-replace-typed-app-client-usage"]], "Step 7 - Update AppClient State Management": [[55, "step-7-update-appclient-state-management"]], "Step 8 - Update Asset Management": [[55, "step-8-update-asset-management"]], "Submodules": [[1, "submodules"], [11, "submodules"], [13, "submodules"], [15, "submodules"], [18, "submodules"], [20, "submodules"], [22, "submodules"], [26, "submodules"], [32, "submodules"], [34, "submodules"]], "Suppressing log messages globally": [[47, "suppressing-log-messages-globally"]], "Suppressing log messages per log call": [[47, "suppressing-log-messages-per-log-call"]], "TestNet Dispenser Client": [[48, null]], "Testing": [[49, null], [54, "testing"]], "Testing Application Calls": [[49, "testing-application-calls"]], "Testing Application Deployments": [[49, "testing-application-deployments"]], "Testing Asset Transfers": [[49, "testing-asset-transfers"]], "Testing Box Storage": [[49, "testing-box-storage"]], "Trace filename format": [[47, "trace-filename-format"]], "Transaction Results": [[50, "transaction-results"]], "Transaction composer": [[51, null]], "Transaction configuration": [[40, "transaction-configuration"]], "Transaction management": [[50, null]], "Transaction parameters": [[40, "transaction-parameters"]], "TransactionSignerAccountProtocol": [[39, "transactionsigneraccountprotocol"]], "Troubleshooting": [[55, "troubleshooting"]], "Typed application clients": [[53, null]], "Types": [[54, "types"]], "Underlying account classes": [[39, "underlying-account-classes"]], "Updating and deleting an app": [[43, "updating-and-deleting-an-app"]], "Usage": [[54, "usage"]], "Useful scenario of converting v2 to v3 not covered in generic migration guide": [[55, "useful-scenario-of-converting-v2-to-v3-not-covered-in-generic-migration-guide"]], "Where You\u2019ll Encounter Each Result Type": [[50, "where-you-ll-encounter-each-result-type"]], "algokit_utils": [[22, null]], "algokit_utils.accounts": [[1, null]], "algokit_utils.accounts.account_manager": [[0, null]], "algokit_utils.accounts.kmd_account_manager": [[2, null]], "algokit_utils.algorand": [[3, null]], "algokit_utils.applications": [[13, null]], "algokit_utils.applications.abi": [[4, null]], "algokit_utils.applications.app_client": [[5, null]], "algokit_utils.applications.app_deployer": [[6, null]], "algokit_utils.applications.app_factory": [[7, null]], "algokit_utils.applications.app_manager": [[8, null]], "algokit_utils.applications.app_spec": [[11, null]], "algokit_utils.applications.app_spec.arc32": [[9, null]], "algokit_utils.applications.app_spec.arc56": [[10, null]], "algokit_utils.applications.enums": [[12, null]], "algokit_utils.assets": [[15, null]], "algokit_utils.assets.asset_manager": [[14, null]], "algokit_utils.clients": [[18, null]], "algokit_utils.clients.client_manager": [[16, null]], "algokit_utils.clients.dispenser_api_client": [[17, null]], "algokit_utils.config": [[19, null]], "algokit_utils.errors": [[20, null]], "algokit_utils.errors.logic_error": [[21, null]], "algokit_utils.models": [[26, null]], "algokit_utils.models.account": [[23, null]], "algokit_utils.models.amount": [[24, null]], "algokit_utils.models.application": [[25, null]], "algokit_utils.models.network": [[27, null]], "algokit_utils.models.simulate": [[28, null]], "algokit_utils.models.state": [[29, null]], "algokit_utils.models.transaction": [[30, null]], "algokit_utils.protocols": [[32, null]], "algokit_utils.protocols.account": [[31, null]], "algokit_utils.protocols.typed_clients": [[33, null]], "algokit_utils.transactions": [[34, null]], "algokit_utils.transactions.transaction_composer": [[35, null]], "algokit_utils.transactions.transaction_creator": [[36, null]], "algokit_utils.transactions.transaction_sender": [[37, null]], "ensure_funded": [[52, "ensure-funded"]], "payment": [[52, "payment"]]}, "docnames": ["autoapi/algokit_utils/accounts/account_manager/index", "autoapi/algokit_utils/accounts/index", "autoapi/algokit_utils/accounts/kmd_account_manager/index", "autoapi/algokit_utils/algorand/index", "autoapi/algokit_utils/applications/abi/index", "autoapi/algokit_utils/applications/app_client/index", "autoapi/algokit_utils/applications/app_deployer/index", "autoapi/algokit_utils/applications/app_factory/index", "autoapi/algokit_utils/applications/app_manager/index", "autoapi/algokit_utils/applications/app_spec/arc32/index", "autoapi/algokit_utils/applications/app_spec/arc56/index", "autoapi/algokit_utils/applications/app_spec/index", "autoapi/algokit_utils/applications/enums/index", "autoapi/algokit_utils/applications/index", "autoapi/algokit_utils/assets/asset_manager/index", "autoapi/algokit_utils/assets/index", "autoapi/algokit_utils/clients/client_manager/index", "autoapi/algokit_utils/clients/dispenser_api_client/index", "autoapi/algokit_utils/clients/index", "autoapi/algokit_utils/config/index", "autoapi/algokit_utils/errors/index", "autoapi/algokit_utils/errors/logic_error/index", "autoapi/algokit_utils/index", "autoapi/algokit_utils/models/account/index", "autoapi/algokit_utils/models/amount/index", "autoapi/algokit_utils/models/application/index", "autoapi/algokit_utils/models/index", "autoapi/algokit_utils/models/network/index", "autoapi/algokit_utils/models/simulate/index", "autoapi/algokit_utils/models/state/index", "autoapi/algokit_utils/models/transaction/index", "autoapi/algokit_utils/protocols/account/index", "autoapi/algokit_utils/protocols/index", "autoapi/algokit_utils/protocols/typed_clients/index", "autoapi/algokit_utils/transactions/index", "autoapi/algokit_utils/transactions/transaction_composer/index", "autoapi/algokit_utils/transactions/transaction_creator/index", "autoapi/algokit_utils/transactions/transaction_sender/index", "autoapi/index", "capabilities/account", "capabilities/algorand-client", "capabilities/amount", "capabilities/app", "capabilities/app-client", "capabilities/app-deploy", "capabilities/asset", "capabilities/client", "capabilities/debugging", "capabilities/dispenser-client", "capabilities/testing", "capabilities/transaction", "capabilities/transaction-composer", "capabilities/transfer", "capabilities/typed-app-clients", "index", "v3-migration-guide"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["autoapi/algokit_utils/accounts/account_manager/index.rst", "autoapi/algokit_utils/accounts/index.rst", "autoapi/algokit_utils/accounts/kmd_account_manager/index.rst", "autoapi/algokit_utils/algorand/index.rst", "autoapi/algokit_utils/applications/abi/index.rst", "autoapi/algokit_utils/applications/app_client/index.rst", "autoapi/algokit_utils/applications/app_deployer/index.rst", "autoapi/algokit_utils/applications/app_factory/index.rst", "autoapi/algokit_utils/applications/app_manager/index.rst", "autoapi/algokit_utils/applications/app_spec/arc32/index.rst", "autoapi/algokit_utils/applications/app_spec/arc56/index.rst", "autoapi/algokit_utils/applications/app_spec/index.rst", "autoapi/algokit_utils/applications/enums/index.rst", "autoapi/algokit_utils/applications/index.rst", "autoapi/algokit_utils/assets/asset_manager/index.rst", "autoapi/algokit_utils/assets/index.rst", "autoapi/algokit_utils/clients/client_manager/index.rst", "autoapi/algokit_utils/clients/dispenser_api_client/index.rst", "autoapi/algokit_utils/clients/index.rst", "autoapi/algokit_utils/config/index.rst", "autoapi/algokit_utils/errors/index.rst", "autoapi/algokit_utils/errors/logic_error/index.rst", "autoapi/algokit_utils/index.rst", "autoapi/algokit_utils/models/account/index.rst", "autoapi/algokit_utils/models/amount/index.rst", "autoapi/algokit_utils/models/application/index.rst", "autoapi/algokit_utils/models/index.rst", "autoapi/algokit_utils/models/network/index.rst", "autoapi/algokit_utils/models/simulate/index.rst", "autoapi/algokit_utils/models/state/index.rst", "autoapi/algokit_utils/models/transaction/index.rst", "autoapi/algokit_utils/protocols/account/index.rst", "autoapi/algokit_utils/protocols/index.rst", "autoapi/algokit_utils/protocols/typed_clients/index.rst", "autoapi/algokit_utils/transactions/index.rst", "autoapi/algokit_utils/transactions/transaction_composer/index.rst", "autoapi/algokit_utils/transactions/transaction_creator/index.rst", "autoapi/algokit_utils/transactions/transaction_sender/index.rst", "autoapi/index.rst", "capabilities/account.md", "capabilities/algorand-client.md", "capabilities/amount.md", "capabilities/app.md", "capabilities/app-client.md", "capabilities/app-deploy.md", "capabilities/asset.md", "capabilities/client.md", "capabilities/debugging.md", "capabilities/dispenser-client.md", "capabilities/testing.md", "capabilities/transaction.md", "capabilities/transaction-composer.md", "capabilities/transfer.md", "capabilities/typed-app-clients.md", "index.md", "v3-migration-guide.md"], "indexentries": {"abi_return (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.abi_return", false]], "abi_return (algokit_utils.transactions.transaction_sender.sendapptransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendAppTransactionResult.abi_return", false]], "abiargumenttype (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.ABIArgumentType", false]], "abireturn (class in algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.ABIReturn", false]], "abistruct (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.ABIStruct", false]], "abitype (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.ABIType", false]], "abivalue (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.ABIValue", false]], "account (algokit_utils.algorand.algorandclient property)": [[3, "algokit_utils.algorand.AlgorandClient.account", false]], "account (algokit_utils.transactions.transaction_composer.assetfreezeparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetFreezeParams.account", false]], "account_references (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.account_references", false]], "account_references (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.account_references", false]], "account_references (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.account_references", false]], "account_references (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteParams.account_references", false]], "account_references (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams.account_references", false]], "accountassetinformation (class in algokit_utils.assets.asset_manager)": [[14, "algokit_utils.assets.asset_manager.AccountAssetInformation", false]], "accountinformation (class in algokit_utils.accounts.account_manager)": [[0, "algokit_utils.accounts.account_manager.AccountInformation", false]], "accountmanager (class in algokit_utils.accounts.account_manager)": [[0, "algokit_utils.accounts.account_manager.AccountManager", false]], "accounts (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Recommendations.accounts", false]], "actions (algokit_utils.applications.app_spec.arc56.method attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Method.actions", false]], "actions (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Actions", false]], "add_app_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_call", false]], "add_app_call_method_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_call_method_call", false]], "add_app_create() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_create", false]], "add_app_create_method_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_create_method_call", false]], "add_app_delete() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_delete", false]], "add_app_delete_method_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_delete_method_call", false]], "add_app_update() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_update", false]], "add_app_update_method_call() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_app_update_method_call", false]], "add_asset_config() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_config", false]], "add_asset_create() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_create", false]], "add_asset_destroy() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_destroy", false]], "add_asset_freeze() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_freeze", false]], "add_asset_opt_in() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_opt_in", false]], "add_asset_opt_out() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_opt_out", false]], "add_asset_transfer() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_asset_transfer", false]], "add_atc() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_atc", false]], "add_offline_key_registration() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_offline_key_registration", false]], "add_online_key_registration() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_online_key_registration", false]], "add_payment() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_payment", false]], "add_transaction() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.add_transaction", false]], "address (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.address", false]], "address (algokit_utils.models.account.logicsigaccount property)": [[23, "algokit_utils.models.account.LogicSigAccount.address", false]], "address (algokit_utils.models.account.multisigaccount property)": [[23, "algokit_utils.models.account.MultiSigAccount.address", false]], "address (algokit_utils.models.account.signingaccount attribute)": [[23, "algokit_utils.models.account.SigningAccount.address", false]], "address (algokit_utils.models.account.transactionsigneraccount attribute)": [[23, "algokit_utils.models.account.TransactionSignerAccount.address", false]], "address (algokit_utils.protocols.account.transactionsigneraccountprotocol property)": [[31, "algokit_utils.protocols.account.TransactionSignerAccountProtocol.address", false]], "addresses (algokit_utils.models.account.multisigmetadata attribute)": [[23, "algokit_utils.models.account.MultisigMetadata.addresses", false]], "algo (algokit_utils.clients.dispenser_api_client.dispenserassetname attribute)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserAssetName.ALGO", false]], "algo (algokit_utils.models.amount.algoamount property)": [[24, "algokit_utils.models.amount.AlgoAmount.algo", false]], "algo() (in module algokit_utils.models.amount)": [[24, "algokit_utils.models.amount.algo", false]], "algoamount (class in algokit_utils.models.amount)": [[24, "algokit_utils.models.amount.AlgoAmount", false]], "algoclientconfigs (class in algokit_utils.models.network)": [[27, "algokit_utils.models.network.AlgoClientConfigs", false]], "algoclientnetworkconfig (class in algokit_utils.models.network)": [[27, "algokit_utils.models.network.AlgoClientNetworkConfig", false]], "algod (algokit_utils.applications.app_spec.arc56.compiler attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Compiler.ALGOD", false]], "algod (algokit_utils.clients.client_manager.algosdkclients attribute)": [[16, "algokit_utils.clients.client_manager.AlgoSdkClients.algod", false]], "algod (algokit_utils.clients.client_manager.clientmanager property)": [[16, "algokit_utils.clients.client_manager.ClientManager.algod", false]], "algod_config (algokit_utils.models.network.algoclientconfigs attribute)": [[27, "algokit_utils.models.network.AlgoClientConfigs.algod_config", false]], "algokit_config_filename (in module algokit_utils.config)": [[19, "algokit_utils.config.ALGOKIT_CONFIG_FILENAME", false]], "algokit_project_root (in module algokit_utils.config)": [[19, "algokit_utils.config.ALGOKIT_PROJECT_ROOT", false]], "algokit_utils": [[22, "module-algokit_utils", false]], "algokit_utils.accounts": [[1, "module-algokit_utils.accounts", false]], "algokit_utils.accounts.account_manager": [[0, "module-algokit_utils.accounts.account_manager", false]], "algokit_utils.accounts.kmd_account_manager": [[2, "module-algokit_utils.accounts.kmd_account_manager", false]], "algokit_utils.algorand": [[3, "module-algokit_utils.algorand", false]], "algokit_utils.applications": [[13, "module-algokit_utils.applications", false]], "algokit_utils.applications.abi": [[4, "module-algokit_utils.applications.abi", false]], "algokit_utils.applications.app_client": [[5, "module-algokit_utils.applications.app_client", false]], "algokit_utils.applications.app_deployer": [[6, "module-algokit_utils.applications.app_deployer", false]], "algokit_utils.applications.app_factory": [[7, "module-algokit_utils.applications.app_factory", false]], "algokit_utils.applications.app_manager": [[8, "module-algokit_utils.applications.app_manager", false]], "algokit_utils.applications.app_spec": [[11, "module-algokit_utils.applications.app_spec", false]], "algokit_utils.applications.app_spec.arc32": [[9, "module-algokit_utils.applications.app_spec.arc32", false]], "algokit_utils.applications.app_spec.arc56": [[10, "module-algokit_utils.applications.app_spec.arc56", false]], "algokit_utils.applications.enums": [[12, "module-algokit_utils.applications.enums", false]], "algokit_utils.assets": [[15, "module-algokit_utils.assets", false]], "algokit_utils.assets.asset_manager": [[14, "module-algokit_utils.assets.asset_manager", false]], "algokit_utils.clients": [[18, "module-algokit_utils.clients", false]], "algokit_utils.clients.client_manager": [[16, "module-algokit_utils.clients.client_manager", false]], "algokit_utils.clients.dispenser_api_client": [[17, "module-algokit_utils.clients.dispenser_api_client", false]], "algokit_utils.config": [[19, "module-algokit_utils.config", false]], "algokit_utils.errors": [[20, "module-algokit_utils.errors", false]], "algokit_utils.errors.logic_error": [[21, "module-algokit_utils.errors.logic_error", false]], "algokit_utils.models": [[26, "module-algokit_utils.models", false]], "algokit_utils.models.account": [[23, "module-algokit_utils.models.account", false]], "algokit_utils.models.amount": [[24, "module-algokit_utils.models.amount", false]], "algokit_utils.models.application": [[25, "module-algokit_utils.models.application", false]], "algokit_utils.models.network": [[27, "module-algokit_utils.models.network", false]], "algokit_utils.models.simulate": [[28, "module-algokit_utils.models.simulate", false]], "algokit_utils.models.state": [[29, "module-algokit_utils.models.state", false]], "algokit_utils.models.transaction": [[30, "module-algokit_utils.models.transaction", false]], "algokit_utils.protocols": [[32, "module-algokit_utils.protocols", false]], "algokit_utils.protocols.account": [[31, "module-algokit_utils.protocols.account", false]], "algokit_utils.protocols.typed_clients": [[33, "module-algokit_utils.protocols.typed_clients", false]], "algokit_utils.transactions": [[34, "module-algokit_utils.transactions", false]], "algokit_utils.transactions.transaction_composer": [[35, "module-algokit_utils.transactions.transaction_composer", false]], "algokit_utils.transactions.transaction_creator": [[36, "module-algokit_utils.transactions.transaction_creator", false]], "algokit_utils.transactions.transaction_sender": [[37, "module-algokit_utils.transactions.transaction_sender", false]], "algokitlogger (class in algokit_utils.config)": [[19, "algokit_utils.config.AlgoKitLogger", false]], "algorand (algokit_utils.applications.app_client.appclient property)": [[5, "algokit_utils.applications.app_client.AppClient.algorand", false]], "algorand (algokit_utils.applications.app_client.appclientparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientParams.algorand", false]], "algorand (algokit_utils.applications.app_factory.appfactory property)": [[7, "algokit_utils.applications.app_factory.AppFactory.algorand", false]], "algorand (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryParams.algorand", false]], "algorand_min_tx_fee (in module algokit_utils.models.amount)": [[24, "algokit_utils.models.amount.ALGORAND_MIN_TX_FEE", false]], "algorandclient (class in algokit_utils.algorand)": [[3, "algokit_utils.algorand.AlgorandClient", false]], "algorandclienttransactioncreator (class in algokit_utils.transactions.transaction_creator)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator", false]], "algorandclienttransactionsender (class in algokit_utils.transactions.transaction_sender)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender", false]], "algosdkclients (class in algokit_utils.clients.client_manager)": [[16, "algokit_utils.clients.client_manager.AlgoSdkClients", false]], "all (algokit_utils.applications.app_spec.arc32.callconfig attribute)": [[9, "algokit_utils.applications.app_spec.arc32.CallConfig.ALL", false]], "amount (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.amount", false]], "amount (algokit_utils.applications.app_client.fundappaccountparams attribute)": [[5, "algokit_utils.applications.app_client.FundAppAccountParams.amount", false]], "amount (algokit_utils.clients.dispenser_api_client.dispenserfundresponse attribute)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserFundResponse.amount", false]], "amount (algokit_utils.clients.dispenser_api_client.dispenserlimitresponse attribute)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserLimitResponse.amount", false]], "amount (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetTransferParams.amount", false]], "amount (algokit_utils.transactions.transaction_composer.paymentparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.PaymentParams.amount", false]], "amount_without_pending_rewards (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.amount_without_pending_rewards", false]], "app (algokit_utils.algorand.algorandclient property)": [[3, "algokit_utils.algorand.AlgorandClient.app", false]], "app (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployResult.app", false]], "app (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryDeployResult.app", false]], "app (algokit_utils.applications.app_spec.arc56.boxes attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Boxes.app", false]], "app_address (algokit_utils.applications.app_client.appclient property)": [[5, "algokit_utils.applications.app_client.AppClient.app_address", false]], "app_address (algokit_utils.applications.app_deployer.applicationmetadata property)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.app_address", false]], "app_address (algokit_utils.applications.app_deployer.applicationreference attribute)": [[6, "algokit_utils.applications.app_deployer.ApplicationReference.app_address", false]], "app_address (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.app_address", false]], "app_address (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.app_address", false]], "app_address (algokit_utils.transactions.transaction_sender.sendappcreatetransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendAppCreateTransactionResult.app_address", false]], "app_budget_added (algokit_utils.models.simulate.simulationtrace attribute)": [[28, "algokit_utils.models.simulate.SimulationTrace.app_budget_added", false]], "app_budget_consumed (algokit_utils.models.simulate.simulationtrace attribute)": [[28, "algokit_utils.models.simulate.SimulationTrace.app_budget_consumed", false]], "app_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_call", false]], "app_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_call", false]], "app_call_method_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_call_method_call", false]], "app_call_method_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_call_method_call", false]], "app_create (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_create", false]], "app_create() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_create", false]], "app_create_method_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_create_method_call", false]], "app_create_method_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_create_method_call", false]], "app_delete (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_delete", false]], "app_delete() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_delete", false]], "app_delete_method_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_delete_method_call", false]], "app_delete_method_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_delete_method_call", false]], "app_deploy_note_dapp (in module algokit_utils.applications.app_deployer)": [[6, "algokit_utils.applications.app_deployer.APP_DEPLOY_NOTE_DAPP", false]], "app_deployer (algokit_utils.algorand.algorandclient property)": [[3, "algokit_utils.algorand.AlgorandClient.app_deployer", false]], "app_id (algokit_utils.applications.app_client.appclient property)": [[5, "algokit_utils.applications.app_client.AppClient.app_id", false]], "app_id (algokit_utils.applications.app_client.appclientparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientParams.app_id", false]], "app_id (algokit_utils.applications.app_deployer.applicationmetadata property)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.app_id", false]], "app_id (algokit_utils.applications.app_deployer.applicationreference attribute)": [[6, "algokit_utils.applications.app_deployer.ApplicationReference.app_id", false]], "app_id (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.app_id", false]], "app_id (algokit_utils.applications.app_spec.arc56.network attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Network.app_id", false]], "app_id (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appcallmethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallMethodCallParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appdeletemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteMethodCallParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appupdatemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams.app_id", false]], "app_id (algokit_utils.transactions.transaction_sender.sendappcreatetransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendAppCreateTransactionResult.app_id", false]], "app_name (algokit_utils.applications.app_client.appclient property)": [[5, "algokit_utils.applications.app_client.AppClient.app_name", false]], "app_name (algokit_utils.applications.app_client.appclientparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientParams.app_name", false]], "app_name (algokit_utils.applications.app_factory.appfactory property)": [[7, "algokit_utils.applications.app_factory.AppFactory.app_name", false]], "app_name (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryParams.app_name", false]], "app_references (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.app_references", false]], "app_references (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.app_references", false]], "app_references (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.app_references", false]], "app_references (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteParams.app_references", false]], "app_references (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams.app_references", false]], "app_spec (algokit_utils.applications.app_client.appclient property)": [[5, "algokit_utils.applications.app_client.AppClient.app_spec", false]], "app_spec (algokit_utils.applications.app_client.appclientparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientParams.app_spec", false]], "app_spec (algokit_utils.applications.app_factory.appfactory property)": [[7, "algokit_utils.applications.app_factory.AppFactory.app_spec", false]], "app_spec (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryParams.app_spec", false]], "app_update (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_update", false]], "app_update() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_update", false]], "app_update_method_call (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.app_update_method_call", false]], "app_update_method_call() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.app_update_method_call", false]], "appcallmethodcallparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppCallMethodCallParams", false]], "appcallparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams", false]], "appclient (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.AppClient", false]], "appclientbarecallcreateparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.AppClientBareCallCreateParams", false]], "appclientbarecallparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.AppClientBareCallParams", false]], "appclientcompilationparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.AppClientCompilationParams", false]], "appclientcompilationresult (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.AppClientCompilationResult", false]], "appclientcreateschema (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.AppClientCreateSchema", false]], "appclientmethodcallcreateparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.AppClientMethodCallCreateParams", false]], "appclientmethodcallparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.AppClientMethodCallParams", false]], "appclientparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.AppClientParams", false]], "appcompilationresult (class in algokit_utils.models.application)": [[25, "algokit_utils.models.application.AppCompilationResult", false]], "appcreatemethodcallparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams", false]], "appcreateparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams", false]], "appcreateschema (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateSchema", false]], "appdeletemethodcallparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteMethodCallParams", false]], "appdeleteparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteParams", false]], "appdeployer (class in algokit_utils.applications.app_deployer)": [[6, "algokit_utils.applications.app_deployer.AppDeployer", false]], "appdeploymentmetadata (class in algokit_utils.applications.app_deployer)": [[6, "algokit_utils.applications.app_deployer.AppDeploymentMetaData", false]], "appdeployparams (class in algokit_utils.applications.app_deployer)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams", false]], "appdeployresult (class in algokit_utils.applications.app_deployer)": [[6, "algokit_utils.applications.app_deployer.AppDeployResult", false]], "appendapp (algokit_utils.applications.enums.onschemabreak attribute)": [[12, "algokit_utils.applications.enums.OnSchemaBreak.AppendApp", false]], "appendapp (algokit_utils.applications.enums.onupdate attribute)": [[12, "algokit_utils.applications.enums.OnUpdate.AppendApp", false]], "appfactory (class in algokit_utils.applications.app_factory)": [[7, "algokit_utils.applications.app_factory.AppFactory", false]], "appfactorycreatemethodcallparams (class in algokit_utils.applications.app_factory)": [[7, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallParams", false]], "appfactorycreatemethodcallresult (class in algokit_utils.applications.app_factory)": [[7, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult", false]], "appfactorycreateparams (class in algokit_utils.applications.app_factory)": [[7, "algokit_utils.applications.app_factory.AppFactoryCreateParams", false]], "appfactorydeployresult (class in algokit_utils.applications.app_factory)": [[7, "algokit_utils.applications.app_factory.AppFactoryDeployResult", false]], "appfactoryparams (class in algokit_utils.applications.app_factory)": [[7, "algokit_utils.applications.app_factory.AppFactoryParams", false]], "appinformation (class in algokit_utils.models.application)": [[25, "algokit_utils.models.application.AppInformation", false]], "application_call (algokit_utils.models.transaction.transactionwrapper property)": [[30, "algokit_utils.models.transaction.TransactionWrapper.application_call", false]], "applicationlookup (class in algokit_utils.applications.app_deployer)": [[6, "algokit_utils.applications.app_deployer.ApplicationLookup", false]], "applicationmetadata (class in algokit_utils.applications.app_deployer)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData", false]], "applicationreference (class in algokit_utils.applications.app_deployer)": [[6, "algokit_utils.applications.app_deployer.ApplicationReference", false]], "appmanager (class in algokit_utils.applications.app_manager)": [[8, "algokit_utils.applications.app_manager.AppManager", false]], "appmethodcalltransactionargument (in module algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppMethodCallTransactionArgument", false]], "approval (algokit_utils.applications.app_spec.arc56.bytecode attribute)": [[10, "algokit_utils.applications.app_spec.arc56.ByteCode.approval", false]], "approval (algokit_utils.applications.app_spec.arc56.source attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Source.approval", false]], "approval (algokit_utils.applications.app_spec.arc56.sourceinfomodel attribute)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfoModel.approval", false]], "approval_program (algokit_utils.applications.app_client.appclientcompilationresult attribute)": [[5, "algokit_utils.applications.app_client.AppClientCompilationResult.approval_program", false]], "approval_program (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.approval_program", false]], "approval_program (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appupdatemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams.approval_program", false]], "approval_program (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams.approval_program", false]], "approval_source_map (algokit_utils.applications.app_client.appclientparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientParams.approval_source_map", false]], "approval_source_map (algokit_utils.models.application.appsourcemaps attribute)": [[25, "algokit_utils.models.application.AppSourceMaps.approval_source_map", false]], "apps (algokit_utils.applications.app_deployer.applicationlookup attribute)": [[6, "algokit_utils.applications.app_deployer.ApplicationLookup.apps", false]], "apps (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Recommendations.apps", false]], "apps_local_state (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.apps_local_state", false]], "apps_total_extra_pages (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.apps_total_extra_pages", false]], "apps_total_schema (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.apps_total_schema", false]], "appsourcemaps (class in algokit_utils.models.application)": [[25, "algokit_utils.models.application.AppSourceMaps", false]], "appspecstatedict (in module algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.AppSpecStateDict", false]], "appstate (class in algokit_utils.models.application)": [[25, "algokit_utils.models.application.AppState", false]], "appupdatemethodcallparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams", false]], "appupdateparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams", false]], "arc2_note() (algokit_utils.transactions.transaction_composer.transactioncomposer static method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.arc2_note", false]], "arc2transactionnote (in module algokit_utils.models.transaction)": [[30, "algokit_utils.models.transaction.Arc2TransactionNote", false]], "arc32contract (class in algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract", false]], "arc56contract (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract", false]], "arc56returnvaluetype (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.Arc56ReturnValueType", false]], "arcs (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.arcs", false]], "args (algokit_utils.applications.app_client.appclientbarecallparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientBareCallParams.args", false]], "args (algokit_utils.applications.app_client.baseappclientmethodcallparams attribute)": [[5, "algokit_utils.applications.app_client.BaseAppClientMethodCallParams.args", false]], "args (algokit_utils.applications.app_spec.arc56.event attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Event.args", false]], "args (algokit_utils.applications.app_spec.arc56.method attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Method.args", false]], "args (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.args", false]], "args (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.args", false]], "args (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteParams.args", false]], "args (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams.args", false]], "asset (algokit_utils.algorand.algorandclient property)": [[3, "algokit_utils.algorand.AlgorandClient.asset", false]], "asset_config (algokit_utils.models.transaction.transactionwrapper property)": [[30, "algokit_utils.models.transaction.TransactionWrapper.asset_config", false]], "asset_config (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_config", false]], "asset_config() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_config", false]], "asset_create (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_create", false]], "asset_create() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_create", false]], "asset_destroy (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_destroy", false]], "asset_destroy() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_destroy", false]], "asset_freeze (algokit_utils.models.transaction.transactionwrapper property)": [[30, "algokit_utils.models.transaction.TransactionWrapper.asset_freeze", false]], "asset_freeze (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_freeze", false]], "asset_freeze() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_freeze", false]], "asset_id (algokit_utils.assets.asset_manager.accountassetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AccountAssetInformation.asset_id", false]], "asset_id (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.asset_id", false]], "asset_id (algokit_utils.assets.asset_manager.bulkassetoptinoutresult attribute)": [[14, "algokit_utils.assets.asset_manager.BulkAssetOptInOutResult.asset_id", false]], "asset_id (algokit_utils.clients.dispenser_api_client.dispenserasset attribute)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserAsset.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetConfigParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetdestroyparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetDestroyParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetfreezeparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetFreezeParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetoptinparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetOptInParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assetoptoutparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetOptOutParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetTransferParams.asset_id", false]], "asset_id (algokit_utils.transactions.transaction_sender.sendsingleassetcreatetransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleAssetCreateTransactionResult.asset_id", false]], "asset_name (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.asset_name", false]], "asset_name (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.asset_name", false]], "asset_name_b64 (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.asset_name_b64", false]], "asset_opt_in (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_opt_in", false]], "asset_opt_in() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_opt_in", false]], "asset_opt_out (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_opt_out", false]], "asset_opt_out() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_opt_out", false]], "asset_references (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.asset_references", false]], "asset_references (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.asset_references", false]], "asset_references (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.asset_references", false]], "asset_references (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteParams.asset_references", false]], "asset_references (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams.asset_references", false]], "asset_transfer (algokit_utils.models.transaction.transactionwrapper property)": [[30, "algokit_utils.models.transaction.TransactionWrapper.asset_transfer", false]], "asset_transfer (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.asset_transfer", false]], "asset_transfer() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.asset_transfer", false]], "assetconfigparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AssetConfigParams", false]], "assetcreateparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams", false]], "assetdestroyparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AssetDestroyParams", false]], "assetfreezeparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AssetFreezeParams", false]], "assetinformation (class in algokit_utils.assets.asset_manager)": [[14, "algokit_utils.assets.asset_manager.AssetInformation", false]], "assetmanager (class in algokit_utils.assets.asset_manager)": [[14, "algokit_utils.assets.asset_manager.AssetManager", false]], "assetoptinparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AssetOptInParams", false]], "assetoptoutparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AssetOptOutParams", false]], "assets (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.assets", false]], "assets (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Recommendations.assets", false]], "assettransferparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.AssetTransferParams", false]], "atc (algokit_utils.transactions.transaction_composer.transactioncomposerbuildresult attribute)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult.atc", false]], "auth_addr (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.auth_addr", false]], "auth_token (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient attribute)": [[17, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.auth_token", false]], "balance (algokit_utils.assets.asset_manager.accountassetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AccountAssetInformation.balance", false]], "bare_actions (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.bare_actions", false]], "bare_call_config (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.bare_call_config", false]], "bareactions (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.BareActions", false]], "base_url (algokit_utils.clients.dispenser_api_client.dispenserapiconfig attribute)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserApiConfig.BASE_URL", false]], "baseappclientmethodcallparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.BaseAppClientMethodCallParams", false]], "basearc2note (class in algokit_utils.models.transaction)": [[30, "algokit_utils.models.transaction.BaseArc2Note", false]], "box (algokit_utils.applications.app_spec.arc56.keys attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Keys.box", false]], "box (algokit_utils.applications.app_spec.arc56.maps attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Maps.box", false]], "box_references (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.box_references", false]], "box_references (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.box_references", false]], "box_references (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.box_references", false]], "box_references (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteParams.box_references", false]], "box_references (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams.box_references", false]], "boxabivalue (class in algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.BoxABIValue", false]], "boxes (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Recommendations.boxes", false]], "boxes (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Boxes", false]], "boxidentifier (in module algokit_utils.models.state)": [[29, "algokit_utils.models.state.BoxIdentifier", false]], "boxname (class in algokit_utils.models.state)": [[29, "algokit_utils.models.state.BoxName", false]], "boxreference (class in algokit_utils.models.state)": [[29, "algokit_utils.models.state.BoxReference", false]], "boxvalue (class in algokit_utils.models.state)": [[29, "algokit_utils.models.state.BoxValue", false]], "build() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.build", false]], "build_transactions() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.build_transactions", false]], "builttransactions (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.BuiltTransactions", false]], "bulk_opt_in() (algokit_utils.assets.asset_manager.assetmanager method)": [[14, "algokit_utils.assets.asset_manager.AssetManager.bulk_opt_in", false]], "bulk_opt_out() (algokit_utils.assets.asset_manager.assetmanager method)": [[14, "algokit_utils.assets.asset_manager.AssetManager.bulk_opt_out", false]], "bulkassetoptinoutresult (class in algokit_utils.assets.asset_manager)": [[14, "algokit_utils.assets.asset_manager.BulkAssetOptInOutResult", false]], "byte_code (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.byte_code", false]], "bytecode (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.ByteCode", false]], "bytes (algokit_utils.applications.app_spec.arc56.global attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Global.bytes", false]], "bytes (algokit_utils.applications.app_spec.arc56.local attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Local.bytes", false]], "bytes (algokit_utils.models.state.datatypeflag attribute)": [[29, "algokit_utils.models.state.DataTypeFlag.BYTES", false]], "calculate_extra_program_pages() (in module algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.calculate_extra_program_pages", false]], "call (algokit_utils.applications.app_spec.arc32.callconfig attribute)": [[9, "algokit_utils.applications.app_spec.arc32.CallConfig.CALL", false]], "call (algokit_utils.applications.app_spec.arc56.actions attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Actions.call", false]], "call (algokit_utils.applications.app_spec.arc56.bareactions attribute)": [[10, "algokit_utils.applications.app_spec.arc56.BareActions.call", false]], "call_config (algokit_utils.applications.app_spec.arc32.methodhints attribute)": [[9, "algokit_utils.applications.app_spec.arc32.MethodHints.call_config", false]], "callconfig (class in algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.CallConfig", false]], "callenum (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.CallEnum", false]], "cblocks (algokit_utils.applications.app_spec.arc56.pcoffsetmethod attribute)": [[10, "algokit_utils.applications.app_spec.arc56.PcOffsetMethod.CBLOCKS", false]], "clawback (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.clawback", false]], "clawback (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetConfigParams.clawback", false]], "clawback (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.clawback", false]], "clawback_target (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetTransferParams.clawback_target", false]], "clear (algokit_utils.applications.app_spec.arc56.bytecode attribute)": [[10, "algokit_utils.applications.app_spec.arc56.ByteCode.clear", false]], "clear (algokit_utils.applications.app_spec.arc56.source attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Source.clear", false]], "clear (algokit_utils.applications.app_spec.arc56.sourceinfomodel attribute)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfoModel.clear", false]], "clear_program (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.clear_program", false]], "clear_source_map (algokit_utils.applications.app_client.appclientparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientParams.clear_source_map", false]], "clear_source_map (algokit_utils.models.application.appsourcemaps attribute)": [[25, "algokit_utils.models.application.AppSourceMaps.clear_source_map", false]], "clear_state (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CallEnum.CLEAR_STATE", false]], "clear_state_program (algokit_utils.applications.app_client.appclientcompilationresult attribute)": [[5, "algokit_utils.applications.app_client.AppClientCompilationResult.clear_state_program", false]], "clear_state_program (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appupdatemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams.clear_state_program", false]], "clear_state_program (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams.clear_state_program", false]], "client (algokit_utils.algorand.algorandclient property)": [[3, "algokit_utils.algorand.AlgorandClient.client", false]], "clientmanager (class in algokit_utils.clients.client_manager)": [[16, "algokit_utils.clients.client_manager.ClientManager", false]], "clone() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.clone", false]], "close_asset_to (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetTransferParams.close_asset_to", false]], "close_out (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CallEnum.CLOSE_OUT", false]], "close_remainder_to (algokit_utils.applications.app_client.fundappaccountparams attribute)": [[5, "algokit_utils.applications.app_client.FundAppAccountParams.close_remainder_to", false]], "close_remainder_to (algokit_utils.transactions.transaction_composer.paymentparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.PaymentParams.close_remainder_to", false]], "closed_at_round (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.closed_at_round", false]], "commit_hash (algokit_utils.applications.app_spec.arc56.compilerversion attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerVersion.commit_hash", false]], "commonappcallcreateparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.CommonAppCallCreateParams", false]], "commonappcallparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams", false]], "compilation_params (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryParams.compilation_params", false]], "compile() (algokit_utils.applications.app_client.appclient static method)": [[5, "algokit_utils.applications.app_client.AppClient.compile", false]], "compile() (algokit_utils.applications.app_factory.appfactory method)": [[7, "algokit_utils.applications.app_factory.AppFactory.compile", false]], "compile_app() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.compile_app", false]], "compile_teal() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.compile_teal", false]], "compile_teal_template() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.compile_teal_template", false]], "compiled (algokit_utils.models.application.compiledteal attribute)": [[25, "algokit_utils.models.application.CompiledTeal.compiled", false]], "compiled_approval (algokit_utils.applications.app_client.appclientcompilationresult attribute)": [[5, "algokit_utils.applications.app_client.AppClientCompilationResult.compiled_approval", false]], "compiled_approval (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.compiled_approval", false]], "compiled_approval (algokit_utils.models.application.appcompilationresult attribute)": [[25, "algokit_utils.models.application.AppCompilationResult.compiled_approval", false]], "compiled_approval (algokit_utils.transactions.transaction_sender.sendappupdatetransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendAppUpdateTransactionResult.compiled_approval", false]], "compiled_base64_to_bytes (algokit_utils.models.application.compiledteal attribute)": [[25, "algokit_utils.models.application.CompiledTeal.compiled_base64_to_bytes", false]], "compiled_clear (algokit_utils.applications.app_client.appclientcompilationresult attribute)": [[5, "algokit_utils.applications.app_client.AppClientCompilationResult.compiled_clear", false]], "compiled_clear (algokit_utils.applications.app_factory.appfactorycreatemethodcallresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult.compiled_clear", false]], "compiled_clear (algokit_utils.models.application.appcompilationresult attribute)": [[25, "algokit_utils.models.application.AppCompilationResult.compiled_clear", false]], "compiled_clear (algokit_utils.transactions.transaction_sender.sendappupdatetransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendAppUpdateTransactionResult.compiled_clear", false]], "compiled_hash (algokit_utils.models.application.compiledteal attribute)": [[25, "algokit_utils.models.application.CompiledTeal.compiled_hash", false]], "compiledteal (class in algokit_utils.models.application)": [[25, "algokit_utils.models.application.CompiledTeal", false]], "compiler (algokit_utils.applications.app_spec.arc56.compilerinfo attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerInfo.compiler", false]], "compiler (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Compiler", false]], "compiler_info (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.compiler_info", false]], "compiler_version (algokit_utils.applications.app_spec.arc56.compilerinfo attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerInfo.compiler_version", false]], "compilerinfo (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerInfo", false]], "compilerversion (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerVersion", false]], "config (in module algokit_utils.config)": [[19, "algokit_utils.config.config", false]], "configure() (algokit_utils.config.updatableconfig method)": [[19, "algokit_utils.config.UpdatableConfig.configure", false]], "confirmation (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.confirmation", false]], "confirmations (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[35, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.confirmations", false]], "confirmations (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.confirmations", false]], "contract (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.contract", false]], "count() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.count", false]], "cover_app_call_inner_transaction_fees (algokit_utils.models.transaction.sendparams attribute)": [[30, "algokit_utils.models.transaction.SendParams.cover_app_call_inner_transaction_fees", false]], "create (algokit_utils.applications.app_spec.arc32.callconfig attribute)": [[9, "algokit_utils.applications.app_spec.arc32.CallConfig.CREATE", false]], "create (algokit_utils.applications.app_spec.arc56.actions attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Actions.create", false]], "create (algokit_utils.applications.app_spec.arc56.bareactions attribute)": [[10, "algokit_utils.applications.app_spec.arc56.BareActions.create", false]], "create (algokit_utils.applications.enums.operationperformed attribute)": [[12, "algokit_utils.applications.enums.OperationPerformed.Create", false]], "create_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.create_params", false]], "create_result (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployResult.create_result", false]], "create_result (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryDeployResult.create_result", false]], "create_transaction (algokit_utils.algorand.algorandclient property)": [[3, "algokit_utils.algorand.AlgorandClient.create_transaction", false]], "create_transaction (algokit_utils.applications.app_client.appclient property)": [[5, "algokit_utils.applications.app_client.AppClient.create_transaction", false]], "create_transaction (algokit_utils.applications.app_factory.appfactory property)": [[7, "algokit_utils.applications.app_factory.AppFactory.create_transaction", false]], "created_apps (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.created_apps", false]], "created_assets (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.created_assets", false]], "created_at_round (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.created_at_round", false]], "created_round (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.created_round", false]], "createenum (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.CreateEnum", false]], "createoncomplete (in module algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.CreateOnComplete", false]], "creator (algokit_utils.applications.app_deployer.applicationlookup attribute)": [[6, "algokit_utils.applications.app_deployer.ApplicationLookup.creator", false]], "creator (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.creator", false]], "creator (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.creator", false]], "creator (algokit_utils.transactions.transaction_composer.assetoptoutparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetOptOutParams.creator", false]], "dapp_name (algokit_utils.models.transaction.basearc2note attribute)": [[30, "algokit_utils.models.transaction.BaseArc2Note.dapp_name", false]], "data (algokit_utils.applications.app_spec.arc32.defaultargumentdict attribute)": [[9, "algokit_utils.applications.app_spec.arc32.DefaultArgumentDict.data", false]], "data (algokit_utils.applications.app_spec.arc56.defaultvalue attribute)": [[10, "algokit_utils.applications.app_spec.arc56.DefaultValue.data", false]], "data (algokit_utils.models.transaction.jsonformatarc2note attribute)": [[30, "algokit_utils.models.transaction.JsonFormatArc2Note.data", false]], "data (algokit_utils.models.transaction.stringformatarc2note attribute)": [[30, "algokit_utils.models.transaction.StringFormatArc2Note.data", false]], "datatypeflag (class in algokit_utils.models.state)": [[29, "algokit_utils.models.state.DataTypeFlag", false]], "debug (algokit_utils.config.updatableconfig property)": [[19, "algokit_utils.config.UpdatableConfig.debug", false]], "decimals (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.decimals", false]], "decimals (algokit_utils.clients.dispenser_api_client.dispenserasset attribute)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserAsset.decimals", false]], "decimals (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.decimals", false]], "decode_app_state() (algokit_utils.applications.app_manager.appmanager static method)": [[8, "algokit_utils.applications.app_manager.AppManager.decode_app_state", false]], "decode_error (algokit_utils.applications.abi.abireturn attribute)": [[4, "algokit_utils.applications.abi.ABIReturn.decode_error", false]], "default_arguments (algokit_utils.applications.app_spec.arc32.methodhints attribute)": [[9, "algokit_utils.applications.app_spec.arc32.MethodHints.default_arguments", false]], "default_frozen (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.default_frozen", false]], "default_frozen (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.default_frozen", false]], "default_localnet() (algokit_utils.algorand.algorandclient static method)": [[3, "algokit_utils.algorand.AlgorandClient.default_localnet", false]], "default_sender (algokit_utils.applications.app_client.appclientparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientParams.default_sender", false]], "default_sender (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryParams.default_sender", false]], "default_signer (algokit_utils.applications.app_client.appclientparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientParams.default_signer", false]], "default_signer (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryParams.default_signer", false]], "default_value (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[10, "algokit_utils.applications.app_spec.arc56.MethodArg.default_value", false]], "defaultargumentdict (class in algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.DefaultArgumentDict", false]], "defaultargumenttype (in module algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.DefaultArgumentType", false]], "defaultvalue (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.DefaultValue", false]], "deletable (algokit_utils.applications.app_client.appclientcompilationparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientCompilationParams.deletable", false]], "deletable (algokit_utils.applications.app_deployer.appdeploymentmetadata attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.deletable", false]], "deletable (algokit_utils.applications.app_deployer.applicationmetadata property)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.deletable", false]], "deletable_template_name (in module algokit_utils.applications.app_manager)": [[8, "algokit_utils.applications.app_manager.DELETABLE_TEMPLATE_NAME", false]], "delete_application (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CallEnum.DELETE_APPLICATION", false]], "delete_application (algokit_utils.applications.app_spec.arc56.createenum attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CreateEnum.DELETE_APPLICATION", false]], "delete_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.delete_params", false]], "delete_result (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployResult.delete_result", false]], "delete_result (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryDeployResult.delete_result", false]], "deleted (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.deleted", false]], "deleted (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.deleted", false]], "deploy() (algokit_utils.applications.app_deployer.appdeployer method)": [[6, "algokit_utils.applications.app_deployer.AppDeployer.deploy", false]], "deploy() (algokit_utils.applications.app_factory.appfactory method)": [[7, "algokit_utils.applications.app_factory.AppFactory.deploy", false]], "deploy() (algokit_utils.protocols.typed_clients.typedappfactoryprotocol method)": [[33, "algokit_utils.protocols.typed_clients.TypedAppFactoryProtocol.deploy", false]], "deploy_metadata (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.deploy_metadata", false]], "deploy_time_params (algokit_utils.applications.app_client.appclientcompilationparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientCompilationParams.deploy_time_params", false]], "deploy_time_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.deploy_time_params", false]], "desc (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.event attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Event.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.eventarg attribute)": [[10, "algokit_utils.applications.app_spec.arc56.EventArg.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.method attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Method.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[10, "algokit_utils.applications.app_spec.arc56.MethodArg.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.returns attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Returns.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.storagekey attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StorageKey.desc", false]], "desc (algokit_utils.applications.app_spec.arc56.storagemap attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StorageMap.desc", false]], "description (algokit_utils.clients.dispenser_api_client.dispenserasset attribute)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserAsset.description", false]], "dictify() (algokit_utils.applications.app_deployer.appdeploymentmetadata method)": [[6, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.dictify", false]], "dictify() (algokit_utils.applications.app_spec.arc32.arc32contract method)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.dictify", false]], "dictify() (algokit_utils.applications.app_spec.arc32.methodhints method)": [[9, "algokit_utils.applications.app_spec.arc32.MethodHints.dictify", false]], "dictify() (algokit_utils.applications.app_spec.arc56.arc56contract method)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.dictify", false]], "dispenser_access_token_key (in module algokit_utils.clients.dispenser_api_client)": [[17, "algokit_utils.clients.dispenser_api_client.DISPENSER_ACCESS_TOKEN_KEY", false]], "dispenser_account_name (in module algokit_utils.models.account)": [[23, "algokit_utils.models.account.DISPENSER_ACCOUNT_NAME", false]], "dispenser_assets (in module algokit_utils.clients.dispenser_api_client)": [[17, "algokit_utils.clients.dispenser_api_client.DISPENSER_ASSETS", false]], "dispenser_from_environment() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.dispenser_from_environment", false]], "dispenser_request_timeout (in module algokit_utils.clients.dispenser_api_client)": [[17, "algokit_utils.clients.dispenser_api_client.DISPENSER_REQUEST_TIMEOUT", false]], "dispenserapiconfig (class in algokit_utils.clients.dispenser_api_client)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserApiConfig", false]], "dispenserasset (class in algokit_utils.clients.dispenser_api_client)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserAsset", false]], "dispenserassetname (class in algokit_utils.clients.dispenser_api_client)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserAssetName", false]], "dispenserfundresponse (class in algokit_utils.clients.dispenser_api_client)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserFundResponse", false]], "dispenserlimitresponse (class in algokit_utils.clients.dispenser_api_client)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserLimitResponse", false]], "elements (algokit_utils.applications.app_spec.arc32.structargdict attribute)": [[9, "algokit_utils.applications.app_spec.arc32.StructArgDict.elements", false]], "empty() (algokit_utils.applications.app_spec.arc32.methodhints method)": [[9, "algokit_utils.applications.app_spec.arc32.MethodHints.empty", false]], "ensure_funded() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.ensure_funded", false]], "ensure_funded_from_environment() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.ensure_funded_from_environment", false]], "ensure_funded_from_testnet_dispenser_api() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.ensure_funded_from_testnet_dispenser_api", false]], "ensurefundedfromtestnetdispenserapiresult (class in algokit_utils.accounts.account_manager)": [[0, "algokit_utils.accounts.account_manager.EnsureFundedFromTestnetDispenserApiResult", false]], "ensurefundedresult (class in algokit_utils.accounts.account_manager)": [[0, "algokit_utils.accounts.account_manager.EnsureFundedResult", false]], "error_message (algokit_utils.applications.app_spec.arc56.sourceinfo attribute)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfo.error_message", false]], "event (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Event", false]], "eventarg (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.EventArg", false]], "events (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.events", false]], "events (algokit_utils.applications.app_spec.arc56.method attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Method.events", false]], "exec_trace (algokit_utils.models.simulate.simulationtrace attribute)": [[28, "algokit_utils.models.simulate.SimulationTrace.exec_trace", false]], "execute() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.execute", false]], "existing_deployments (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.existing_deployments", false]], "export() (algokit_utils.applications.app_spec.arc32.arc32contract method)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.export", false]], "export_source_maps() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.export_source_maps", false]], "export_source_maps() (algokit_utils.applications.app_factory.appfactory method)": [[7, "algokit_utils.applications.app_factory.AppFactory.export_source_maps", false]], "extra_fee (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.extra_fee", false]], "extra_pages (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.extra_pages", false]], "extra_program_pages (algokit_utils.applications.app_client.appclientcreateschema attribute)": [[5, "algokit_utils.applications.app_client.AppClientCreateSchema.extra_program_pages", false]], "extra_program_pages (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.extra_program_pages", false]], "extra_program_pages (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.extra_program_pages", false]], "extra_program_pages (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.extra_program_pages", false]], "fail (algokit_utils.applications.enums.onschemabreak attribute)": [[12, "algokit_utils.applications.enums.OnSchemaBreak.Fail", false]], "fail (algokit_utils.applications.enums.onupdate attribute)": [[12, "algokit_utils.applications.enums.OnUpdate.Fail", false]], "failure_message (algokit_utils.models.simulate.simulationtrace attribute)": [[28, "algokit_utils.models.simulate.SimulationTrace.failure_message", false]], "first_valid_round (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.first_valid_round", false]], "format (algokit_utils.models.transaction.jsonformatarc2note attribute)": [[30, "algokit_utils.models.transaction.JsonFormatArc2Note.format", false]], "format (algokit_utils.models.transaction.stringformatarc2note attribute)": [[30, "algokit_utils.models.transaction.StringFormatArc2Note.format", false]], "freeze (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.freeze", false]], "freeze (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetConfigParams.freeze", false]], "freeze (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.freeze", false]], "from_algo() (algokit_utils.models.amount.algoamount static method)": [[24, "algokit_utils.models.amount.AlgoAmount.from_algo", false]], "from_arc32() (algokit_utils.applications.app_spec.arc56.arc56contract static method)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.from_arc32", false]], "from_clients() (algokit_utils.algorand.algorandclient static method)": [[3, "algokit_utils.algorand.AlgorandClient.from_clients", false]], "from_composer_result() (algokit_utils.transactions.transaction_sender.sendsingletransactionresult class method)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.from_composer_result", false]], "from_config() (algokit_utils.algorand.algorandclient static method)": [[3, "algokit_utils.algorand.AlgorandClient.from_config", false]], "from_creator_and_name() (algokit_utils.applications.app_client.appclient static method)": [[5, "algokit_utils.applications.app_client.AppClient.from_creator_and_name", false]], "from_creator_and_name() (algokit_utils.protocols.typed_clients.typedappclientprotocol class method)": [[33, "algokit_utils.protocols.typed_clients.TypedAppClientProtocol.from_creator_and_name", false]], "from_deploy_result() (algokit_utils.applications.app_factory.appfactorydeployresult class method)": [[7, "algokit_utils.applications.app_factory.AppFactoryDeployResult.from_deploy_result", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.actions static method)": [[10, "algokit_utils.applications.app_spec.arc56.Actions.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.arc56contract static method)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.bareactions static method)": [[10, "algokit_utils.applications.app_spec.arc56.BareActions.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.boxes static method)": [[10, "algokit_utils.applications.app_spec.arc56.Boxes.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.bytecode static method)": [[10, "algokit_utils.applications.app_spec.arc56.ByteCode.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.compilerinfo static method)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerInfo.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.compilerversion static method)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerVersion.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.defaultvalue static method)": [[10, "algokit_utils.applications.app_spec.arc56.DefaultValue.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.event static method)": [[10, "algokit_utils.applications.app_spec.arc56.Event.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.eventarg static method)": [[10, "algokit_utils.applications.app_spec.arc56.EventArg.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.global static method)": [[10, "algokit_utils.applications.app_spec.arc56.Global.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.keys static method)": [[10, "algokit_utils.applications.app_spec.arc56.Keys.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.local static method)": [[10, "algokit_utils.applications.app_spec.arc56.Local.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.maps static method)": [[10, "algokit_utils.applications.app_spec.arc56.Maps.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.method static method)": [[10, "algokit_utils.applications.app_spec.arc56.Method.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.methodarg static method)": [[10, "algokit_utils.applications.app_spec.arc56.MethodArg.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.network static method)": [[10, "algokit_utils.applications.app_spec.arc56.Network.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.programsourceinfo static method)": [[10, "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.recommendations static method)": [[10, "algokit_utils.applications.app_spec.arc56.Recommendations.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.returns static method)": [[10, "algokit_utils.applications.app_spec.arc56.Returns.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.schema static method)": [[10, "algokit_utils.applications.app_spec.arc56.Schema.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.scratchvariables static method)": [[10, "algokit_utils.applications.app_spec.arc56.ScratchVariables.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.source static method)": [[10, "algokit_utils.applications.app_spec.arc56.Source.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.sourceinfo static method)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfo.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.sourceinfomodel static method)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfoModel.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.state static method)": [[10, "algokit_utils.applications.app_spec.arc56.State.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.storagekey static method)": [[10, "algokit_utils.applications.app_spec.arc56.StorageKey.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.storagemap static method)": [[10, "algokit_utils.applications.app_spec.arc56.StorageMap.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.structfield static method)": [[10, "algokit_utils.applications.app_spec.arc56.StructField.from_dict", false]], "from_dict() (algokit_utils.applications.app_spec.arc56.templatevariables static method)": [[10, "algokit_utils.applications.app_spec.arc56.TemplateVariables.from_dict", false]], "from_environment() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.from_environment", false]], "from_environment() (algokit_utils.algorand.algorandclient static method)": [[3, "algokit_utils.algorand.AlgorandClient.from_environment", false]], "from_json() (algokit_utils.applications.app_spec.arc32.arc32contract static method)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.from_json", false]], "from_json() (algokit_utils.applications.app_spec.arc56.arc56contract static method)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.from_json", false]], "from_kmd() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.from_kmd", false]], "from_micro_algo() (algokit_utils.models.amount.algoamount static method)": [[24, "algokit_utils.models.amount.AlgoAmount.from_micro_algo", false]], "from_mnemonic() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.from_mnemonic", false]], "from_network() (algokit_utils.applications.app_client.appclient static method)": [[5, "algokit_utils.applications.app_client.AppClient.from_network", false]], "from_network() (algokit_utils.protocols.typed_clients.typedappclientprotocol class method)": [[33, "algokit_utils.protocols.typed_clients.TypedAppClientProtocol.from_network", false]], "frozen (algokit_utils.assets.asset_manager.accountassetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AccountAssetInformation.frozen", false]], "frozen (algokit_utils.transactions.transaction_composer.assetfreezeparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetFreezeParams.frozen", false]], "full_url() (algokit_utils.models.network.algoclientnetworkconfig method)": [[27, "algokit_utils.models.network.AlgoClientNetworkConfig.full_url", false]], "fund() (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient method)": [[17, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.fund", false]], "fund_app_account() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.fund_app_account", false]], "fundappaccountparams (class in algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.FundAppAccountParams", false]], "genesis_hash (algokit_utils.clients.client_manager.networkdetail attribute)": [[16, "algokit_utils.clients.client_manager.NetworkDetail.genesis_hash", false]], "genesis_id (algokit_utils.clients.client_manager.networkdetail attribute)": [[16, "algokit_utils.clients.client_manager.NetworkDetail.genesis_id", false]], "genesis_id_is_localnet() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.genesis_id_is_localnet", false]], "get_abi_decoded_value() (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.get_abi_decoded_value", false]], "get_abi_encoded_value() (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.get_abi_encoded_value", false]], "get_abi_return() (algokit_utils.applications.app_manager.appmanager static method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_abi_return", false]], "get_abi_struct_from_abi_tuple() (algokit_utils.applications.app_spec.arc56.arc56contract static method)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.get_abi_struct_from_abi_tuple", false]], "get_abi_struct_from_abi_tuple() (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.get_abi_struct_from_abi_tuple", false]], "get_abi_tuple_from_abi_struct() (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.get_abi_tuple_from_abi_struct", false]], "get_abi_tuple_type_from_abi_struct_definition() (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.get_abi_tuple_type_from_abi_struct_definition", false]], "get_account() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.get_account", false]], "get_account_information() (algokit_utils.assets.asset_manager.assetmanager method)": [[14, "algokit_utils.assets.asset_manager.AssetManager.get_account_information", false]], "get_algod_client() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_algod_client", false]], "get_algod_client_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_algod_client_from_environment", false]], "get_algod_config_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_algod_config_from_environment", false]], "get_algonode_config() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_algonode_config", false]], "get_app_client_by_creator_and_name() (algokit_utils.applications.app_factory.appfactory method)": [[7, "algokit_utils.applications.app_factory.AppFactory.get_app_client_by_creator_and_name", false]], "get_app_client_by_creator_and_name() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_app_client_by_creator_and_name", false]], "get_app_client_by_id() (algokit_utils.applications.app_factory.appfactory method)": [[7, "algokit_utils.applications.app_factory.AppFactory.get_app_client_by_id", false]], "get_app_client_by_id() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_app_client_by_id", false]], "get_app_client_by_network() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_app_client_by_network", false]], "get_app_factory() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_app_factory", false]], "get_arc56_method() (algokit_utils.applications.app_spec.arc56.arc56contract method)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.get_arc56_method", false]], "get_arc56_value() (algokit_utils.applications.abi.abireturn method)": [[4, "algokit_utils.applications.abi.ABIReturn.get_arc56_value", false]], "get_arc56_value() (in module algokit_utils.applications.abi)": [[4, "algokit_utils.applications.abi.get_arc56_value", false]], "get_box_names() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.get_box_names", false]], "get_box_names() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_box_names", false]], "get_box_reference() (algokit_utils.applications.app_manager.appmanager static method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_box_reference", false]], "get_box_value() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.get_box_value", false]], "get_box_value() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_box_value", false]], "get_box_value_from_abi_type() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.get_box_value_from_abi_type", false]], "get_box_value_from_abi_type() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_box_value_from_abi_type", false]], "get_box_values() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.get_box_values", false]], "get_box_values() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_box_values", false]], "get_box_values_from_abi_type() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.get_box_values_from_abi_type", false]], "get_box_values_from_abi_type() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_box_values_from_abi_type", false]], "get_by_id() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_by_id", false]], "get_by_id() (algokit_utils.assets.asset_manager.assetmanager method)": [[14, "algokit_utils.assets.asset_manager.AssetManager.get_by_id", false]], "get_compilation_result() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_compilation_result", false]], "get_config_from_environment_or_localnet() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_config_from_environment_or_localnet", false]], "get_constant_block_offset() (in module algokit_utils.applications.app_client)": [[5, "algokit_utils.applications.app_client.get_constant_block_offset", false]], "get_creator_apps_by_name() (algokit_utils.applications.app_deployer.appdeployer method)": [[6, "algokit_utils.applications.app_deployer.AppDeployer.get_creator_apps_by_name", false]], "get_decoded_approval() (algokit_utils.applications.app_spec.arc56.source method)": [[10, "algokit_utils.applications.app_spec.arc56.Source.get_decoded_approval", false]], "get_decoded_clear() (algokit_utils.applications.app_spec.arc56.source method)": [[10, "algokit_utils.applications.app_spec.arc56.Source.get_decoded_clear", false]], "get_default_localnet_config() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_default_localnet_config", false]], "get_global_state() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.get_global_state", false]], "get_global_state() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_global_state", false]], "get_indexer_client() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_indexer_client", false]], "get_indexer_client_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_indexer_client_from_environment", false]], "get_indexer_config_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_indexer_config_from_environment", false]], "get_information() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.get_information", false]], "get_kmd_client() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_kmd_client", false]], "get_kmd_client_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_kmd_client_from_environment", false]], "get_kmd_config_from_environment() (algokit_utils.clients.client_manager.clientmanager static method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_kmd_config_from_environment", false]], "get_limit() (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient method)": [[17, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.get_limit", false]], "get_local_state() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.get_local_state", false]], "get_local_state() (algokit_utils.applications.app_manager.appmanager method)": [[8, "algokit_utils.applications.app_manager.AppManager.get_local_state", false]], "get_localnet_dispenser_account() (algokit_utils.accounts.kmd_account_manager.kmdaccountmanager method)": [[2, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager.get_localnet_dispenser_account", false]], "get_null_logger() (algokit_utils.config.algokitlogger class method)": [[19, "algokit_utils.config.AlgoKitLogger.get_null_logger", false]], "get_or_create_wallet_account() (algokit_utils.accounts.kmd_account_manager.kmdaccountmanager method)": [[2, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager.get_or_create_wallet_account", false]], "get_signer() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.get_signer", false]], "get_suggested_params() (algokit_utils.algorand.algorandclient method)": [[3, "algokit_utils.algorand.AlgorandClient.get_suggested_params", false]], "get_testnet_dispenser() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_testnet_dispenser", false]], "get_typed_app_client_by_creator_and_name() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_typed_app_client_by_creator_and_name", false]], "get_typed_app_client_by_id() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_typed_app_client_by_id", false]], "get_typed_app_client_by_network() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_typed_app_client_by_network", false]], "get_typed_app_factory() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.get_typed_app_factory", false]], "get_wallet_account() (algokit_utils.accounts.kmd_account_manager.kmdaccountmanager method)": [[2, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager.get_wallet_account", false]], "global (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Global", false]], "global_byte_slices (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.global_byte_slices", false]], "global_byte_slices (algokit_utils.transactions.transaction_composer.appcreateschema attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateSchema.global_byte_slices", false]], "global_ints (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.global_ints", false]], "global_ints (algokit_utils.transactions.transaction_composer.appcreateschema attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateSchema.global_ints", false]], "global_state (algokit_utils.applications.app_spec.arc56.keys attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Keys.global_state", false]], "global_state (algokit_utils.applications.app_spec.arc56.maps attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Maps.global_state", false]], "global_state (algokit_utils.applications.app_spec.arc56.schema attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Schema.global_state", false]], "global_state (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.global_state", false]], "global_state_schema (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.global_state_schema", false]], "group_id (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[35, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.group_id", false]], "group_id (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.group_id", false]], "hints (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.hints", false]], "ignore_cache (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.ignore_cache", false]], "import_source_maps() (algokit_utils.applications.app_client.appclient method)": [[5, "algokit_utils.applications.app_client.AppClient.import_source_maps", false]], "import_source_maps() (algokit_utils.applications.app_factory.appfactory method)": [[7, "algokit_utils.applications.app_factory.AppFactory.import_source_maps", false]], "incentive_eligible (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.incentive_eligible", false]], "indexer (algokit_utils.clients.client_manager.algosdkclients attribute)": [[16, "algokit_utils.clients.client_manager.AlgoSdkClients.indexer", false]], "indexer (algokit_utils.clients.client_manager.clientmanager property)": [[16, "algokit_utils.clients.client_manager.ClientManager.indexer", false]], "indexer_config (algokit_utils.models.network.algoclientconfigs attribute)": [[27, "algokit_utils.models.network.AlgoClientConfigs.indexer_config", false]], "indexer_if_present (algokit_utils.clients.client_manager.clientmanager property)": [[16, "algokit_utils.clients.client_manager.ClientManager.indexer_if_present", false]], "inner_transaction_count (algokit_utils.applications.app_spec.arc56.recommendations attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Recommendations.inner_transaction_count", false]], "ints (algokit_utils.applications.app_spec.arc56.global attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Global.ints", false]], "ints (algokit_utils.applications.app_spec.arc56.local attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Local.ints", false]], "is_localnet (algokit_utils.clients.client_manager.networkdetail attribute)": [[16, "algokit_utils.clients.client_manager.NetworkDetail.is_localnet", false]], "is_localnet() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.is_localnet", false]], "is_mainnet (algokit_utils.clients.client_manager.networkdetail attribute)": [[16, "algokit_utils.clients.client_manager.NetworkDetail.is_mainnet", false]], "is_mainnet() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.is_mainnet", false]], "is_success (algokit_utils.applications.abi.abireturn property)": [[4, "algokit_utils.applications.abi.ABIReturn.is_success", false]], "is_testnet (algokit_utils.clients.client_manager.networkdetail attribute)": [[16, "algokit_utils.clients.client_manager.NetworkDetail.is_testnet", false]], "is_testnet() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.is_testnet", false]], "jsonformatarc2note (class in algokit_utils.models.transaction)": [[30, "algokit_utils.models.transaction.JsonFormatArc2Note", false]], "key (algokit_utils.applications.app_spec.arc56.boxes attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Boxes.key", false]], "key (algokit_utils.applications.app_spec.arc56.storagekey attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StorageKey.key", false]], "key_base64 (algokit_utils.models.application.appstate attribute)": [[25, "algokit_utils.models.application.AppState.key_base64", false]], "key_raw (algokit_utils.models.application.appstate attribute)": [[25, "algokit_utils.models.application.AppState.key_raw", false]], "key_type (algokit_utils.applications.app_spec.arc56.storagekey attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StorageKey.key_type", false]], "key_type (algokit_utils.applications.app_spec.arc56.storagemap attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StorageMap.key_type", false]], "keyreg (algokit_utils.models.transaction.transactionwrapper property)": [[30, "algokit_utils.models.transaction.TransactionWrapper.keyreg", false]], "keys (algokit_utils.applications.app_spec.arc56.state attribute)": [[10, "algokit_utils.applications.app_spec.arc56.State.keys", false]], "keys (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Keys", false]], "kmd (algokit_utils.accounts.account_manager.accountmanager property)": [[0, "algokit_utils.accounts.account_manager.AccountManager.kmd", false]], "kmd (algokit_utils.clients.client_manager.algosdkclients attribute)": [[16, "algokit_utils.clients.client_manager.AlgoSdkClients.kmd", false]], "kmd (algokit_utils.clients.client_manager.clientmanager property)": [[16, "algokit_utils.clients.client_manager.ClientManager.kmd", false]], "kmd() (algokit_utils.accounts.kmd_account_manager.kmdaccountmanager method)": [[2, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager.kmd", false]], "kmd_config (algokit_utils.models.network.algoclientconfigs attribute)": [[27, "algokit_utils.models.network.AlgoClientConfigs.kmd_config", false]], "kmdaccount (class in algokit_utils.accounts.kmd_account_manager)": [[2, "algokit_utils.accounts.kmd_account_manager.KmdAccount", false]], "kmdaccountmanager (class in algokit_utils.accounts.kmd_account_manager)": [[2, "algokit_utils.accounts.kmd_account_manager.KmdAccountManager", false]], "last_heartbeat (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.last_heartbeat", false]], "last_proposed (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.last_proposed", false]], "last_valid_round (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.last_valid_round", false]], "lease (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.lease", false]], "line_no (algokit_utils.errors.logic_error.logicerror attribute)": [[21, "algokit_utils.errors.logic_error.LogicError.line_no", false]], "lines (algokit_utils.errors.logic_error.logicerror attribute)": [[21, "algokit_utils.errors.logic_error.LogicError.lines", false]], "local (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Local", false]], "local_byte_slices (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.local_byte_slices", false]], "local_byte_slices (algokit_utils.transactions.transaction_composer.appcreateschema attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateSchema.local_byte_slices", false]], "local_ints (algokit_utils.models.application.appinformation attribute)": [[25, "algokit_utils.models.application.AppInformation.local_ints", false]], "local_ints (algokit_utils.transactions.transaction_composer.appcreateschema attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateSchema.local_ints", false]], "local_state (algokit_utils.applications.app_spec.arc56.keys attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Keys.local_state", false]], "local_state (algokit_utils.applications.app_spec.arc56.maps attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Maps.local_state", false]], "local_state (algokit_utils.applications.app_spec.arc56.schema attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Schema.local_state", false]], "local_state_schema (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.local_state_schema", false]], "localnet_dispenser() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.localnet_dispenser", false]], "logger (algokit_utils.config.updatableconfig property)": [[19, "algokit_utils.config.UpdatableConfig.logger", false]], "logic_error (algokit_utils.errors.logic_error.logicerror attribute)": [[21, "algokit_utils.errors.logic_error.LogicError.logic_error", false]], "logic_error_str (algokit_utils.errors.logic_error.logicerror attribute)": [[21, "algokit_utils.errors.logic_error.LogicError.logic_error_str", false]], "logicerror": [[21, "algokit_utils.errors.logic_error.LogicError", false]], "logicerrordata (class in algokit_utils.errors.logic_error)": [[21, "algokit_utils.errors.logic_error.LogicErrorData", false]], "logicsig() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.logicsig", false]], "logicsigaccount (class in algokit_utils.models.account)": [[23, "algokit_utils.models.account.LogicSigAccount", false]], "lsig (algokit_utils.models.account.logicsigaccount property)": [[23, "algokit_utils.models.account.LogicSigAccount.lsig", false]], "mainnet() (algokit_utils.algorand.algorandclient static method)": [[3, "algokit_utils.algorand.AlgorandClient.mainnet", false]], "major (algokit_utils.applications.app_spec.arc56.compilerversion attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerVersion.major", false]], "manager (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.manager", false]], "manager (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetConfigParams.manager", false]], "manager (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.manager", false]], "maps (algokit_utils.applications.app_spec.arc56.state attribute)": [[10, "algokit_utils.applications.app_spec.arc56.State.maps", false]], "maps (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Maps", false]], "max_fee (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.max_fee", false]], "max_fee (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.max_fee", false]], "max_rounds_to_wait (algokit_utils.models.transaction.sendparams attribute)": [[30, "algokit_utils.models.transaction.SendParams.max_rounds_to_wait", false]], "message (algokit_utils.errors.logic_error.logicerror attribute)": [[21, "algokit_utils.errors.logic_error.LogicError.message", false]], "message (algokit_utils.errors.logic_error.logicerrordata attribute)": [[21, "algokit_utils.errors.logic_error.LogicErrorData.message", false]], "metadata (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.metadata", false]], "metadata_hash (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.metadata_hash", false]], "metadata_hash (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.metadata_hash", false]], "method (algokit_utils.applications.abi.abireturn attribute)": [[4, "algokit_utils.applications.abi.ABIReturn.method", false]], "method (algokit_utils.applications.app_client.baseappclientmethodcallparams attribute)": [[5, "algokit_utils.applications.app_client.BaseAppClientMethodCallParams.method", false]], "method (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Method", false]], "method_calls (algokit_utils.transactions.transaction_composer.builttransactions attribute)": [[35, "algokit_utils.transactions.transaction_composer.BuiltTransactions.method_calls", false]], "method_calls (algokit_utils.transactions.transaction_composer.transactioncomposerbuildresult attribute)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult.method_calls", false]], "methodarg (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.MethodArg", false]], "methodcallparams (in module algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.MethodCallParams", false]], "methodconfigdict (in module algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.MethodConfigDict", false]], "methodhints (class in algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.MethodHints", false]], "methods (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.methods", false]], "micro_algo (algokit_utils.models.amount.algoamount property)": [[24, "algokit_utils.models.amount.AlgoAmount.micro_algo", false]], "micro_algo() (in module algokit_utils.models.amount)": [[24, "algokit_utils.models.amount.micro_algo", false]], "min_balance (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.min_balance", false]], "minor (algokit_utils.applications.app_spec.arc56.compilerversion attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerVersion.minor", false]], "module": [[0, "module-algokit_utils.accounts.account_manager", false], [1, "module-algokit_utils.accounts", false], [2, "module-algokit_utils.accounts.kmd_account_manager", false], [3, "module-algokit_utils.algorand", false], [4, "module-algokit_utils.applications.abi", false], [5, "module-algokit_utils.applications.app_client", false], [6, "module-algokit_utils.applications.app_deployer", false], [7, "module-algokit_utils.applications.app_factory", false], [8, "module-algokit_utils.applications.app_manager", false], [9, "module-algokit_utils.applications.app_spec.arc32", false], [10, "module-algokit_utils.applications.app_spec.arc56", false], [11, "module-algokit_utils.applications.app_spec", false], [12, "module-algokit_utils.applications.enums", false], [13, "module-algokit_utils.applications", false], [14, "module-algokit_utils.assets.asset_manager", false], [15, "module-algokit_utils.assets", false], [16, "module-algokit_utils.clients.client_manager", false], [17, "module-algokit_utils.clients.dispenser_api_client", false], [18, "module-algokit_utils.clients", false], [19, "module-algokit_utils.config", false], [20, "module-algokit_utils.errors", false], [21, "module-algokit_utils.errors.logic_error", false], [22, "module-algokit_utils", false], [23, "module-algokit_utils.models.account", false], [24, "module-algokit_utils.models.amount", false], [25, "module-algokit_utils.models.application", false], [26, "module-algokit_utils.models", false], [27, "module-algokit_utils.models.network", false], [28, "module-algokit_utils.models.simulate", false], [29, "module-algokit_utils.models.state", false], [30, "module-algokit_utils.models.transaction", false], [31, "module-algokit_utils.protocols.account", false], [32, "module-algokit_utils.protocols", false], [33, "module-algokit_utils.protocols.typed_clients", false], [34, "module-algokit_utils.transactions", false], [35, "module-algokit_utils.transactions.transaction_composer", false], [36, "module-algokit_utils.transactions.transaction_creator", false], [37, "module-algokit_utils.transactions.transaction_sender", false]], "multisig (algokit_utils.models.account.multisigaccount property)": [[23, "algokit_utils.models.account.MultiSigAccount.multisig", false]], "multisig() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.multisig", false]], "multisigaccount (class in algokit_utils.models.account)": [[23, "algokit_utils.models.account.MultiSigAccount", false]], "multisigmetadata (class in algokit_utils.models.account)": [[23, "algokit_utils.models.account.MultisigMetadata", false]], "name (algokit_utils.applications.abi.boxabivalue attribute)": [[4, "algokit_utils.applications.abi.BoxABIValue.name", false]], "name (algokit_utils.applications.app_deployer.appdeploymentmetadata attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.name", false]], "name (algokit_utils.applications.app_deployer.applicationmetadata property)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.name", false]], "name (algokit_utils.applications.app_spec.arc32.structargdict attribute)": [[9, "algokit_utils.applications.app_spec.arc32.StructArgDict.name", false]], "name (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.name", false]], "name (algokit_utils.applications.app_spec.arc56.event attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Event.name", false]], "name (algokit_utils.applications.app_spec.arc56.eventarg attribute)": [[10, "algokit_utils.applications.app_spec.arc56.EventArg.name", false]], "name (algokit_utils.applications.app_spec.arc56.method attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Method.name", false]], "name (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[10, "algokit_utils.applications.app_spec.arc56.MethodArg.name", false]], "name (algokit_utils.applications.app_spec.arc56.structfield attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StructField.name", false]], "name (algokit_utils.models.state.boxname attribute)": [[29, "algokit_utils.models.state.BoxName.name", false]], "name (algokit_utils.models.state.boxvalue attribute)": [[29, "algokit_utils.models.state.BoxValue.name", false]], "name_base64 (algokit_utils.models.state.boxname attribute)": [[29, "algokit_utils.models.state.BoxName.name_base64", false]], "name_raw (algokit_utils.models.state.boxname attribute)": [[29, "algokit_utils.models.state.BoxName.name_raw", false]], "network (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Network", false]], "network() (algokit_utils.clients.client_manager.clientmanager method)": [[16, "algokit_utils.clients.client_manager.ClientManager.network", false]], "networkdetail (class in algokit_utils.clients.client_manager)": [[16, "algokit_utils.clients.client_manager.NetworkDetail", false]], "networks (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.networks", false]], "never (algokit_utils.applications.app_spec.arc32.callconfig attribute)": [[9, "algokit_utils.applications.app_spec.arc32.CallConfig.NEVER", false]], "new_account() (algokit_utils.models.account.signingaccount static method)": [[23, "algokit_utils.models.account.SigningAccount.new_account", false]], "new_group() (algokit_utils.algorand.algorandclient method)": [[3, "algokit_utils.algorand.AlgorandClient.new_group", false]], "new_group() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.new_group", false]], "no_op (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CallEnum.NO_OP", false]], "no_op (algokit_utils.applications.app_spec.arc56.createenum attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CreateEnum.NO_OP", false]], "none (algokit_utils.applications.app_spec.arc56.pcoffsetmethod attribute)": [[10, "algokit_utils.applications.app_spec.arc56.PcOffsetMethod.NONE", false]], "normalise_app_spec() (algokit_utils.applications.app_client.appclient static method)": [[5, "algokit_utils.applications.app_client.AppClient.normalise_app_spec", false]], "note (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.note", false]], "nothing (algokit_utils.applications.enums.operationperformed attribute)": [[12, "algokit_utils.applications.enums.OperationPerformed.Nothing", false]], "offline_key_registration (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.offline_key_registration", false]], "offline_key_registration() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.offline_key_registration", false]], "offlinekeyregistrationparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.OfflineKeyRegistrationParams", false]], "on_complete (algokit_utils.applications.app_client.appclientbarecallcreateparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientBareCallCreateParams.on_complete", false]], "on_complete (algokit_utils.applications.app_client.appclientmethodcallcreateparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientMethodCallCreateParams.on_complete", false]], "on_complete (algokit_utils.applications.app_client.commonappcallcreateparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallCreateParams.on_complete", false]], "on_complete (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.on_complete", false]], "on_complete (algokit_utils.applications.app_factory.appfactorycreateparams attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryCreateParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appcallmethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallMethodCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appdeletemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteMethodCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appdeleteparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppDeleteParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appupdatemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams.on_complete", false]], "on_complete (algokit_utils.transactions.transaction_composer.appupdateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppUpdateParams.on_complete", false]], "on_schema_break (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.on_schema_break", false]], "on_update (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.on_update", false]], "oncompleteactionname (in module algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.OnCompleteActionName", false]], "online_key_registration (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.online_key_registration", false]], "online_key_registration() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.online_key_registration", false]], "onlinekeyregistrationparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams", false]], "onschemabreak (class in algokit_utils.applications.enums)": [[12, "algokit_utils.applications.enums.OnSchemaBreak", false]], "onupdate (class in algokit_utils.applications.enums)": [[12, "algokit_utils.applications.enums.OnUpdate", false]], "operation_performed (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployResult.operation_performed", false]], "operation_performed (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryDeployResult.operation_performed", false]], "operationperformed (class in algokit_utils.applications.enums)": [[12, "algokit_utils.applications.enums.OperationPerformed", false]], "opt_in (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CallEnum.OPT_IN", false]], "opt_in (algokit_utils.applications.app_spec.arc56.createenum attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CreateEnum.OPT_IN", false]], "params (algokit_utils.applications.app_client.appclient property)": [[5, "algokit_utils.applications.app_client.AppClient.params", false]], "params (algokit_utils.applications.app_factory.appfactory property)": [[7, "algokit_utils.applications.app_factory.AppFactory.params", false]], "params (algokit_utils.models.account.multisigaccount property)": [[23, "algokit_utils.models.account.MultiSigAccount.params", false]], "parse_logic_error() (in module algokit_utils.errors.logic_error)": [[21, "algokit_utils.errors.logic_error.parse_logic_error", false]], "participation (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.participation", false]], "patch (algokit_utils.applications.app_spec.arc56.compilerversion attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CompilerVersion.patch", false]], "payment (algokit_utils.models.transaction.transactionwrapper property)": [[30, "algokit_utils.models.transaction.TransactionWrapper.payment", false]], "payment (algokit_utils.transactions.transaction_creator.algorandclienttransactioncreator property)": [[36, "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator.payment", false]], "payment() (algokit_utils.transactions.transaction_sender.algorandclienttransactionsender method)": [[37, "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender.payment", false]], "paymentparams (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.PaymentParams", false]], "pc (algokit_utils.applications.app_spec.arc56.sourceinfo attribute)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfo.pc", false]], "pc (algokit_utils.errors.logic_error.logicerror attribute)": [[21, "algokit_utils.errors.logic_error.LogicError.pc", false]], "pc (algokit_utils.errors.logic_error.logicerrordata attribute)": [[21, "algokit_utils.errors.logic_error.LogicErrorData.pc", false]], "pc_offset_method (algokit_utils.applications.app_spec.arc56.programsourceinfo attribute)": [[10, "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo.pc_offset_method", false]], "pcoffsetmethod (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.PcOffsetMethod", false]], "pending_rewards (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.pending_rewards", false]], "populate_app_call_resource (algokit_utils.config.updatableconfig property)": [[19, "algokit_utils.config.UpdatableConfig.populate_app_call_resource", false]], "populate_app_call_resources (algokit_utils.models.transaction.sendparams attribute)": [[30, "algokit_utils.models.transaction.SendParams.populate_app_call_resources", false]], "populate_app_call_resources() (in module algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.populate_app_call_resources", false]], "port (algokit_utils.models.network.algoclientnetworkconfig attribute)": [[27, "algokit_utils.models.network.AlgoClientNetworkConfig.port", false]], "prefix (algokit_utils.applications.app_spec.arc56.storagemap attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StorageMap.prefix", false]], "prepare_group_for_sending() (in module algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.prepare_group_for_sending", false]], "prevent_account_from_ever_participating_again (algokit_utils.transactions.transaction_composer.offlinekeyregistrationparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.OfflineKeyRegistrationParams.prevent_account_from_ever_participating_again", false]], "private_key (algokit_utils.models.account.signingaccount attribute)": [[23, "algokit_utils.models.account.SigningAccount.private_key", false]], "programsourceinfo (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo", false]], "project_root (algokit_utils.config.updatableconfig property)": [[19, "algokit_utils.config.UpdatableConfig.project_root", false]], "public_key (algokit_utils.models.account.signingaccount property)": [[23, "algokit_utils.models.account.SigningAccount.public_key", false]], "puya (algokit_utils.applications.app_spec.arc56.compiler attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Compiler.PUYA", false]], "random() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.random", false]], "raw (algokit_utils.models.transaction.transactionwrapper property)": [[30, "algokit_utils.models.transaction.TransactionWrapper.raw", false]], "raw_value (algokit_utils.applications.abi.abireturn attribute)": [[4, "algokit_utils.applications.abi.ABIReturn.raw_value", false]], "read_bytes (algokit_utils.applications.app_spec.arc56.boxes attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Boxes.read_bytes", false]], "read_only (algokit_utils.applications.app_spec.arc32.methodhints attribute)": [[9, "algokit_utils.applications.app_spec.arc32.MethodHints.read_only", false]], "readonly (algokit_utils.applications.app_spec.arc56.method attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Method.readonly", false]], "rebuild() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.rebuild", false]], "receiver (algokit_utils.transactions.transaction_composer.assettransferparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetTransferParams.receiver", false]], "receiver (algokit_utils.transactions.transaction_composer.paymentparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.PaymentParams.receiver", false]], "recommendations (algokit_utils.applications.app_spec.arc56.method attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Method.recommendations", false]], "recommendations (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Recommendations", false]], "reference (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.reference", false]], "refund() (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient method)": [[17, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.refund", false]], "rekey_account() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.rekey_account", false]], "rekey_to (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.rekey_to", false]], "rekeyed() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.rekeyed", false]], "replace (algokit_utils.applications.enums.operationperformed attribute)": [[12, "algokit_utils.applications.enums.OperationPerformed.Replace", false]], "replace_teal_template_deploy_time_control_params() (algokit_utils.applications.app_manager.appmanager static method)": [[8, "algokit_utils.applications.app_manager.AppManager.replace_teal_template_deploy_time_control_params", false]], "replace_template_variables() (algokit_utils.applications.app_manager.appmanager static method)": [[8, "algokit_utils.applications.app_manager.AppManager.replace_template_variables", false]], "replaceapp (algokit_utils.applications.enums.onschemabreak attribute)": [[12, "algokit_utils.applications.enums.OnSchemaBreak.ReplaceApp", false]], "replaceapp (algokit_utils.applications.enums.onupdate attribute)": [[12, "algokit_utils.applications.enums.OnUpdate.ReplaceApp", false]], "request_timeout (algokit_utils.clients.dispenser_api_client.testnetdispenserapiclient attribute)": [[17, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient.request_timeout", false]], "reserve (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.reserve", false]], "reserve (algokit_utils.transactions.transaction_composer.assetconfigparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetConfigParams.reserve", false]], "reserve (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.reserve", false]], "returns (algokit_utils.applications.app_spec.arc56.method attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Method.returns", false]], "returns (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[35, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.returns", false]], "returns (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.returns", false]], "returns (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Returns", false]], "reward_base (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.reward_base", false]], "rewards (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.rewards", false]], "round (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.round", false]], "round (algokit_utils.assets.asset_manager.accountassetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AccountAssetInformation.round", false]], "schema (algokit_utils.applications.app_client.appclientcreateschema attribute)": [[5, "algokit_utils.applications.app_client.AppClientCreateSchema.schema", false]], "schema (algokit_utils.applications.app_spec.arc32.arc32contract attribute)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.schema", false]], "schema (algokit_utils.applications.app_spec.arc56.state attribute)": [[10, "algokit_utils.applications.app_spec.arc56.State.schema", false]], "schema (algokit_utils.transactions.transaction_composer.appcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCallParams.schema", false]], "schema (algokit_utils.transactions.transaction_composer.appcreatemethodcallparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams.schema", false]], "schema (algokit_utils.transactions.transaction_composer.appcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AppCreateParams.schema", false]], "schema (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Schema", false]], "scratch_variables (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.scratch_variables", false]], "scratchvariables (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.ScratchVariables", false]], "selection_key (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.selection_key", false]], "send (algokit_utils.algorand.algorandclient property)": [[3, "algokit_utils.algorand.AlgorandClient.send", false]], "send (algokit_utils.applications.app_client.appclient property)": [[5, "algokit_utils.applications.app_client.AppClient.send", false]], "send (algokit_utils.applications.app_factory.appfactory property)": [[7, "algokit_utils.applications.app_factory.AppFactory.send", false]], "send() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.send", false]], "send_atomic_transaction_composer() (in module algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.send_atomic_transaction_composer", false]], "send_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.send_params", false]], "sendappcreatefactorytransactionresult (class in algokit_utils.applications.app_factory)": [[7, "algokit_utils.applications.app_factory.SendAppCreateFactoryTransactionResult", false]], "sendappcreatetransactionresult (class in algokit_utils.transactions.transaction_sender)": [[37, "algokit_utils.transactions.transaction_sender.SendAppCreateTransactionResult", false]], "sendappfactorytransactionresult (class in algokit_utils.applications.app_factory)": [[7, "algokit_utils.applications.app_factory.SendAppFactoryTransactionResult", false]], "sendapptransactionresult (class in algokit_utils.transactions.transaction_sender)": [[37, "algokit_utils.transactions.transaction_sender.SendAppTransactionResult", false]], "sendappupdatefactorytransactionresult (class in algokit_utils.applications.app_factory)": [[7, "algokit_utils.applications.app_factory.SendAppUpdateFactoryTransactionResult", false]], "sendappupdatetransactionresult (class in algokit_utils.transactions.transaction_sender)": [[37, "algokit_utils.transactions.transaction_sender.SendAppUpdateTransactionResult", false]], "sendatomictransactioncomposerresults (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults", false]], "sender (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.sender", false]], "sendparams (class in algokit_utils.models.transaction)": [[30, "algokit_utils.models.transaction.SendParams", false]], "sendsingleassetcreatetransactionresult (class in algokit_utils.transactions.transaction_sender)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleAssetCreateTransactionResult", false]], "sendsingletransactionresult (class in algokit_utils.transactions.transaction_sender)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult", false]], "server (algokit_utils.models.network.algoclientnetworkconfig attribute)": [[27, "algokit_utils.models.network.AlgoClientNetworkConfig.server", false]], "set_default_signer() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.set_default_signer", false]], "set_default_signer() (algokit_utils.algorand.algorandclient method)": [[3, "algokit_utils.algorand.AlgorandClient.set_default_signer", false]], "set_default_validity_window() (algokit_utils.algorand.algorandclient method)": [[3, "algokit_utils.algorand.AlgorandClient.set_default_validity_window", false]], "set_signer() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.set_signer", false]], "set_signer() (algokit_utils.algorand.algorandclient method)": [[3, "algokit_utils.algorand.AlgorandClient.set_signer", false]], "set_signer_from_account() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.set_signer_from_account", false]], "set_signer_from_account() (algokit_utils.algorand.algorandclient method)": [[3, "algokit_utils.algorand.AlgorandClient.set_signer_from_account", false]], "set_signers() (algokit_utils.accounts.account_manager.accountmanager method)": [[0, "algokit_utils.accounts.account_manager.AccountManager.set_signers", false]], "set_suggested_params_cache() (algokit_utils.algorand.algorandclient method)": [[3, "algokit_utils.algorand.AlgorandClient.set_suggested_params_cache", false]], "set_suggested_params_cache_timeout() (algokit_utils.algorand.algorandclient method)": [[3, "algokit_utils.algorand.AlgorandClient.set_suggested_params_cache_timeout", false]], "sig_type (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.sig_type", false]], "sign() (algokit_utils.models.account.multisigaccount method)": [[23, "algokit_utils.models.account.MultiSigAccount.sign", false]], "signer (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.signer", false]], "signer (algokit_utils.models.account.logicsigaccount property)": [[23, "algokit_utils.models.account.LogicSigAccount.signer", false]], "signer (algokit_utils.models.account.multisigaccount property)": [[23, "algokit_utils.models.account.MultiSigAccount.signer", false]], "signer (algokit_utils.models.account.signingaccount property)": [[23, "algokit_utils.models.account.SigningAccount.signer", false]], "signer (algokit_utils.models.account.transactionsigneraccount attribute)": [[23, "algokit_utils.models.account.TransactionSignerAccount.signer", false]], "signer (algokit_utils.protocols.account.transactionsigneraccountprotocol property)": [[31, "algokit_utils.protocols.account.TransactionSignerAccountProtocol.signer", false]], "signers (algokit_utils.transactions.transaction_composer.builttransactions attribute)": [[35, "algokit_utils.transactions.transaction_composer.BuiltTransactions.signers", false]], "signing_accounts (algokit_utils.models.account.multisigaccount property)": [[23, "algokit_utils.models.account.MultiSigAccount.signing_accounts", false]], "signingaccount (class in algokit_utils.models.account)": [[23, "algokit_utils.models.account.SigningAccount", false]], "simulate() (algokit_utils.transactions.transaction_composer.transactioncomposer method)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer.simulate", false]], "simulate_response (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[35, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.simulate_response", false]], "simulationtrace (class in algokit_utils.models.simulate)": [[28, "algokit_utils.models.simulate.SimulationTrace", false]], "slot (algokit_utils.applications.app_spec.arc56.scratchvariables attribute)": [[10, "algokit_utils.applications.app_spec.arc56.ScratchVariables.slot", false]], "source (algokit_utils.applications.app_spec.arc32.defaultargumentdict attribute)": [[9, "algokit_utils.applications.app_spec.arc32.DefaultArgumentDict.source", false]], "source (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.source", false]], "source (algokit_utils.applications.app_spec.arc56.defaultvalue attribute)": [[10, "algokit_utils.applications.app_spec.arc56.DefaultValue.source", false]], "source (algokit_utils.applications.app_spec.arc56.sourceinfo attribute)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfo.source", false]], "source (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.Source", false]], "source_info (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.source_info", false]], "source_info (algokit_utils.applications.app_spec.arc56.programsourceinfo attribute)": [[10, "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo.source_info", false]], "source_map (algokit_utils.errors.logic_error.logicerror attribute)": [[21, "algokit_utils.errors.logic_error.LogicError.source_map", false]], "source_map (algokit_utils.models.application.compiledteal attribute)": [[25, "algokit_utils.models.application.CompiledTeal.source_map", false]], "sourceinfo (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfo", false]], "sourceinfomodel (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfoModel", false]], "state (algokit_utils.applications.app_client.appclient property)": [[5, "algokit_utils.applications.app_client.AppClient.state", false]], "state (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.state", false]], "state (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.State", false]], "state_proof (algokit_utils.models.transaction.transactionwrapper property)": [[30, "algokit_utils.models.transaction.TransactionWrapper.state_proof", false]], "state_proof_key (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.state_proof_key", false]], "statedict (in module algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.StateDict", false]], "static_fee (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.static_fee", false]], "status (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.status", false]], "storagekey (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.StorageKey", false]], "storagemap (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.StorageMap", false]], "stringformatarc2note (class in algokit_utils.models.transaction)": [[30, "algokit_utils.models.transaction.StringFormatArc2Note", false]], "strip_teal_comments() (algokit_utils.applications.app_manager.appmanager static method)": [[8, "algokit_utils.applications.app_manager.AppManager.strip_teal_comments", false]], "struct (algokit_utils.applications.app_spec.arc56.eventarg attribute)": [[10, "algokit_utils.applications.app_spec.arc56.EventArg.struct", false]], "struct (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[10, "algokit_utils.applications.app_spec.arc56.MethodArg.struct", false]], "struct (algokit_utils.applications.app_spec.arc56.returns attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Returns.struct", false]], "structargdict (class in algokit_utils.applications.app_spec.arc32)": [[9, "algokit_utils.applications.app_spec.arc32.StructArgDict", false]], "structfield (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.StructField", false]], "structs (algokit_utils.applications.app_spec.arc32.methodhints attribute)": [[9, "algokit_utils.applications.app_spec.arc32.MethodHints.structs", false]], "structs (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.structs", false]], "suppress_log (algokit_utils.models.transaction.sendparams attribute)": [[30, "algokit_utils.models.transaction.SendParams.suppress_log", false]], "teal (algokit_utils.applications.app_spec.arc56.sourceinfo attribute)": [[10, "algokit_utils.applications.app_spec.arc56.SourceInfo.teal", false]], "teal (algokit_utils.models.application.compiledteal attribute)": [[25, "algokit_utils.models.application.CompiledTeal.teal", false]], "tealtemplateparams (in module algokit_utils.models.state)": [[29, "algokit_utils.models.state.TealTemplateParams", false]], "template_variables (algokit_utils.applications.app_spec.arc56.arc56contract attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.template_variables", false]], "templatevariables (class in algokit_utils.applications.app_spec.arc56)": [[10, "algokit_utils.applications.app_spec.arc56.TemplateVariables", false]], "testnet() (algokit_utils.algorand.algorandclient static method)": [[3, "algokit_utils.algorand.AlgorandClient.testnet", false]], "testnetdispenserapiclient (class in algokit_utils.clients.dispenser_api_client)": [[17, "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient", false]], "threshold (algokit_utils.models.account.multisigmetadata attribute)": [[23, "algokit_utils.models.account.MultisigMetadata.threshold", false]], "to_abi_method() (algokit_utils.applications.app_spec.arc56.method method)": [[10, "algokit_utils.applications.app_spec.arc56.Method.to_abi_method", false]], "to_json() (algokit_utils.applications.app_spec.arc32.arc32contract method)": [[9, "algokit_utils.applications.app_spec.arc32.Arc32Contract.to_json", false]], "to_json() (algokit_utils.applications.app_spec.arc56.arc56contract method)": [[10, "algokit_utils.applications.app_spec.arc56.Arc56Contract.to_json", false]], "token (algokit_utils.models.network.algoclientnetworkconfig attribute)": [[27, "algokit_utils.models.network.AlgoClientNetworkConfig.token", false]], "total (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.total", false]], "total (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.total", false]], "total_apps_opted_in (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.total_apps_opted_in", false]], "total_assets_opted_in (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.total_assets_opted_in", false]], "total_box_bytes (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.total_box_bytes", false]], "total_boxes (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.total_boxes", false]], "total_created_apps (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.total_created_apps", false]], "total_created_assets (algokit_utils.accounts.account_manager.accountinformation attribute)": [[0, "algokit_utils.accounts.account_manager.AccountInformation.total_created_assets", false]], "trace() (algokit_utils.errors.logic_error.logicerror method)": [[21, "algokit_utils.errors.logic_error.LogicError.trace", false]], "trace_all (algokit_utils.config.updatableconfig property)": [[19, "algokit_utils.config.UpdatableConfig.trace_all", false]], "trace_buffer_size_mb (algokit_utils.config.updatableconfig property)": [[19, "algokit_utils.config.UpdatableConfig.trace_buffer_size_mb", false]], "traces (algokit_utils.errors.logic_error.logicerror attribute)": [[21, "algokit_utils.errors.logic_error.LogicError.traces", false]], "transaction (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.transaction", false]], "transaction_fees() (in module algokit_utils.models.amount)": [[24, "algokit_utils.models.amount.transaction_fees", false]], "transaction_id (algokit_utils.assets.asset_manager.bulkassetoptinoutresult attribute)": [[14, "algokit_utils.assets.asset_manager.BulkAssetOptInOutResult.transaction_id", false]], "transaction_id (algokit_utils.errors.logic_error.logicerror attribute)": [[21, "algokit_utils.errors.logic_error.LogicError.transaction_id", false]], "transaction_id (algokit_utils.errors.logic_error.logicerrordata attribute)": [[21, "algokit_utils.errors.logic_error.LogicErrorData.transaction_id", false]], "transactioncomposer (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposer", false]], "transactioncomposerbuildresult (class in algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult", false]], "transactionnote (in module algokit_utils.models.transaction)": [[30, "algokit_utils.models.transaction.TransactionNote", false]], "transactionnotedata (in module algokit_utils.models.transaction)": [[30, "algokit_utils.models.transaction.TransactionNoteData", false]], "transactions (algokit_utils.transactions.transaction_composer.builttransactions attribute)": [[35, "algokit_utils.transactions.transaction_composer.BuiltTransactions.transactions", false]], "transactions (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[35, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.transactions", false]], "transactions (algokit_utils.transactions.transaction_composer.transactioncomposerbuildresult attribute)": [[35, "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult.transactions", false]], "transactions (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.transactions", false]], "transactionsigneraccount (class in algokit_utils.models.account)": [[23, "algokit_utils.models.account.TransactionSignerAccount", false]], "transactionsigneraccountprotocol (class in algokit_utils.protocols.account)": [[31, "algokit_utils.protocols.account.TransactionSignerAccountProtocol", false]], "transactionwrapper (class in algokit_utils.models.transaction)": [[30, "algokit_utils.models.transaction.TransactionWrapper", false]], "tx_id (algokit_utils.clients.dispenser_api_client.dispenserfundresponse attribute)": [[17, "algokit_utils.clients.dispenser_api_client.DispenserFundResponse.tx_id", false]], "tx_id (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.tx_id", false]], "tx_ids (algokit_utils.transactions.transaction_composer.sendatomictransactioncomposerresults attribute)": [[35, "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults.tx_ids", false]], "tx_ids (algokit_utils.transactions.transaction_sender.sendsingletransactionresult attribute)": [[37, "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult.tx_ids", false]], "tx_info (algokit_utils.applications.abi.abireturn attribute)": [[4, "algokit_utils.applications.abi.ABIReturn.tx_info", false]], "txnparams (in module algokit_utils.transactions.transaction_composer)": [[35, "algokit_utils.transactions.transaction_composer.TxnParams", false]], "type (algokit_utils.applications.app_spec.arc56.defaultvalue attribute)": [[10, "algokit_utils.applications.app_spec.arc56.DefaultValue.type", false]], "type (algokit_utils.applications.app_spec.arc56.eventarg attribute)": [[10, "algokit_utils.applications.app_spec.arc56.EventArg.type", false]], "type (algokit_utils.applications.app_spec.arc56.methodarg attribute)": [[10, "algokit_utils.applications.app_spec.arc56.MethodArg.type", false]], "type (algokit_utils.applications.app_spec.arc56.returns attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Returns.type", false]], "type (algokit_utils.applications.app_spec.arc56.scratchvariables attribute)": [[10, "algokit_utils.applications.app_spec.arc56.ScratchVariables.type", false]], "type (algokit_utils.applications.app_spec.arc56.structfield attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StructField.type", false]], "type (algokit_utils.applications.app_spec.arc56.templatevariables attribute)": [[10, "algokit_utils.applications.app_spec.arc56.TemplateVariables.type", false]], "typedappclientprotocol (class in algokit_utils.protocols.typed_clients)": [[33, "algokit_utils.protocols.typed_clients.TypedAppClientProtocol", false]], "typedappfactoryprotocol (class in algokit_utils.protocols.typed_clients)": [[33, "algokit_utils.protocols.typed_clients.TypedAppFactoryProtocol", false]], "uint (algokit_utils.models.state.datatypeflag attribute)": [[29, "algokit_utils.models.state.DataTypeFlag.UINT", false]], "undictify() (algokit_utils.applications.app_spec.arc32.methodhints static method)": [[9, "algokit_utils.applications.app_spec.arc32.MethodHints.undictify", false]], "unit_name (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.unit_name", false]], "unit_name (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.unit_name", false]], "unit_name_b64 (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.unit_name_b64", false]], "updatable (algokit_utils.applications.app_client.appclientcompilationparams attribute)": [[5, "algokit_utils.applications.app_client.AppClientCompilationParams.updatable", false]], "updatable (algokit_utils.applications.app_deployer.appdeploymentmetadata attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.updatable", false]], "updatable (algokit_utils.applications.app_deployer.applicationmetadata property)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.updatable", false]], "updatable_template_name (in module algokit_utils.applications.app_manager)": [[8, "algokit_utils.applications.app_manager.UPDATABLE_TEMPLATE_NAME", false]], "updatableconfig (class in algokit_utils.config)": [[19, "algokit_utils.config.UpdatableConfig", false]], "update (algokit_utils.applications.enums.operationperformed attribute)": [[12, "algokit_utils.applications.enums.OperationPerformed.Update", false]], "update_application (algokit_utils.applications.app_spec.arc56.callenum attribute)": [[10, "algokit_utils.applications.app_spec.arc56.CallEnum.UPDATE_APPLICATION", false]], "update_params (algokit_utils.applications.app_deployer.appdeployparams attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployParams.update_params", false]], "update_result (algokit_utils.applications.app_deployer.appdeployresult attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeployResult.update_result", false]], "update_result (algokit_utils.applications.app_factory.appfactorydeployresult attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryDeployResult.update_result", false]], "updateapp (algokit_utils.applications.enums.onupdate attribute)": [[12, "algokit_utils.applications.enums.OnUpdate.UpdateApp", false]], "updated_round (algokit_utils.applications.app_deployer.applicationmetadata attribute)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.updated_round", false]], "url (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.url", false]], "url (algokit_utils.transactions.transaction_composer.assetcreateparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.AssetCreateParams.url", false]], "url_b64 (algokit_utils.assets.asset_manager.assetinformation attribute)": [[14, "algokit_utils.assets.asset_manager.AssetInformation.url_b64", false]], "validity_window (algokit_utils.applications.app_client.commonappcallparams attribute)": [[5, "algokit_utils.applications.app_client.CommonAppCallParams.validity_window", false]], "value (algokit_utils.applications.abi.abireturn attribute)": [[4, "algokit_utils.applications.abi.ABIReturn.value", false]], "value (algokit_utils.applications.abi.boxabivalue attribute)": [[4, "algokit_utils.applications.abi.BoxABIValue.value", false]], "value (algokit_utils.applications.app_spec.arc56.templatevariables attribute)": [[10, "algokit_utils.applications.app_spec.arc56.TemplateVariables.value", false]], "value (algokit_utils.models.application.appstate attribute)": [[25, "algokit_utils.models.application.AppState.value", false]], "value (algokit_utils.models.state.boxvalue attribute)": [[29, "algokit_utils.models.state.BoxValue.value", false]], "value_base64 (algokit_utils.models.application.appstate attribute)": [[25, "algokit_utils.models.application.AppState.value_base64", false]], "value_raw (algokit_utils.models.application.appstate attribute)": [[25, "algokit_utils.models.application.AppState.value_raw", false]], "value_type (algokit_utils.applications.app_spec.arc56.storagekey attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StorageKey.value_type", false]], "value_type (algokit_utils.applications.app_spec.arc56.storagemap attribute)": [[10, "algokit_utils.applications.app_spec.arc56.StorageMap.value_type", false]], "version (algokit_utils.applications.app_deployer.appdeploymentmetadata attribute)": [[6, "algokit_utils.applications.app_deployer.AppDeploymentMetaData.version", false]], "version (algokit_utils.applications.app_deployer.applicationmetadata property)": [[6, "algokit_utils.applications.app_deployer.ApplicationMetaData.version", false]], "version (algokit_utils.applications.app_factory.appfactoryparams attribute)": [[7, "algokit_utils.applications.app_factory.AppFactoryParams.version", false]], "version (algokit_utils.models.account.multisigmetadata attribute)": [[23, "algokit_utils.models.account.MultisigMetadata.version", false]], "vote_first (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.vote_first", false]], "vote_key (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.vote_key", false]], "vote_key_dilution (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.vote_key_dilution", false]], "vote_last (algokit_utils.transactions.transaction_composer.onlinekeyregistrationparams attribute)": [[35, "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams.vote_last", false]], "with_debug() (algokit_utils.config.updatableconfig method)": [[19, "algokit_utils.config.UpdatableConfig.with_debug", false]], "write_bytes (algokit_utils.applications.app_spec.arc56.boxes attribute)": [[10, "algokit_utils.applications.app_spec.arc56.Boxes.write_bytes", false]]}, "objects": {"": [[22, 0, 0, "-", "algokit_utils"]], "algokit_utils": [[1, 0, 0, "-", "accounts"], [3, 0, 0, "-", "algorand"], [13, 0, 0, "-", "applications"], [15, 0, 0, "-", "assets"], [18, 0, 0, "-", "clients"], [19, 0, 0, "-", "config"], [20, 0, 0, "-", "errors"], [26, 0, 0, "-", "models"], [32, 0, 0, "-", "protocols"], [34, 0, 0, "-", "transactions"]], "algokit_utils.accounts": [[0, 0, 0, "-", "account_manager"], [2, 0, 0, "-", "kmd_account_manager"]], "algokit_utils.accounts.account_manager": [[0, 1, 1, "", "AccountInformation"], [0, 1, 1, "", "AccountManager"], [0, 1, 1, "", "EnsureFundedFromTestnetDispenserApiResult"], [0, 1, 1, "", "EnsureFundedResult"]], "algokit_utils.accounts.account_manager.AccountInformation": [[0, 2, 1, "", "address"], [0, 2, 1, "", "amount"], [0, 2, 1, "", "amount_without_pending_rewards"], [0, 2, 1, "", "apps_local_state"], [0, 2, 1, "", "apps_total_extra_pages"], [0, 2, 1, "", "apps_total_schema"], [0, 2, 1, "", "assets"], [0, 2, 1, "", "auth_addr"], [0, 2, 1, "", "closed_at_round"], [0, 2, 1, "", "created_apps"], [0, 2, 1, "", "created_assets"], [0, 2, 1, "", "created_at_round"], [0, 2, 1, "", "deleted"], [0, 2, 1, "", "incentive_eligible"], [0, 2, 1, "", "last_heartbeat"], [0, 2, 1, "", "last_proposed"], [0, 2, 1, "", "min_balance"], [0, 2, 1, "", "participation"], [0, 2, 1, "", "pending_rewards"], [0, 2, 1, "", "reward_base"], [0, 2, 1, "", "rewards"], [0, 2, 1, "", "round"], [0, 2, 1, "", "sig_type"], [0, 2, 1, "", "status"], [0, 2, 1, "", "total_apps_opted_in"], [0, 2, 1, "", "total_assets_opted_in"], [0, 2, 1, "", "total_box_bytes"], [0, 2, 1, "", "total_boxes"], [0, 2, 1, "", "total_created_apps"], [0, 2, 1, "", "total_created_assets"]], "algokit_utils.accounts.account_manager.AccountManager": [[0, 3, 1, "", "dispenser_from_environment"], [0, 3, 1, "", "ensure_funded"], [0, 3, 1, "", "ensure_funded_from_environment"], [0, 3, 1, "", "ensure_funded_from_testnet_dispenser_api"], [0, 3, 1, "", "from_environment"], [0, 3, 1, "", "from_kmd"], [0, 3, 1, "", "from_mnemonic"], [0, 3, 1, "", "get_account"], [0, 3, 1, "", "get_information"], [0, 3, 1, "", "get_signer"], [0, 4, 1, "", "kmd"], [0, 3, 1, "", "localnet_dispenser"], [0, 3, 1, "", "logicsig"], [0, 3, 1, "", "multisig"], [0, 3, 1, "", "random"], [0, 3, 1, "", "rekey_account"], [0, 3, 1, "", "rekeyed"], [0, 3, 1, "", "set_default_signer"], [0, 3, 1, "", "set_signer"], [0, 3, 1, "", "set_signer_from_account"], [0, 3, 1, "", "set_signers"]], "algokit_utils.accounts.kmd_account_manager": [[2, 1, 1, "", "KmdAccount"], [2, 1, 1, "", "KmdAccountManager"]], "algokit_utils.accounts.kmd_account_manager.KmdAccountManager": [[2, 3, 1, "", "get_localnet_dispenser_account"], [2, 3, 1, "", "get_or_create_wallet_account"], [2, 3, 1, "", "get_wallet_account"], [2, 3, 1, "", "kmd"]], "algokit_utils.algorand": [[3, 1, 1, "", "AlgorandClient"]], "algokit_utils.algorand.AlgorandClient": [[3, 4, 1, "", "account"], [3, 4, 1, "", "app"], [3, 4, 1, "", "app_deployer"], [3, 4, 1, "", "asset"], [3, 4, 1, "", "client"], [3, 4, 1, "", "create_transaction"], [3, 3, 1, "", "default_localnet"], [3, 3, 1, "", "from_clients"], [3, 3, 1, "", "from_config"], [3, 3, 1, "", "from_environment"], [3, 3, 1, "", "get_suggested_params"], [3, 3, 1, "", "mainnet"], [3, 3, 1, "", "new_group"], [3, 4, 1, "", "send"], [3, 3, 1, "", "set_default_signer"], [3, 3, 1, "", "set_default_validity_window"], [3, 3, 1, "", "set_signer"], [3, 3, 1, "", "set_signer_from_account"], [3, 3, 1, "", "set_suggested_params_cache"], [3, 3, 1, "", "set_suggested_params_cache_timeout"], [3, 3, 1, "", "testnet"]], "algokit_utils.applications": [[4, 0, 0, "-", "abi"], [5, 0, 0, "-", "app_client"], [6, 0, 0, "-", "app_deployer"], [7, 0, 0, "-", "app_factory"], [8, 0, 0, "-", "app_manager"], [11, 0, 0, "-", "app_spec"], [12, 0, 0, "-", "enums"]], "algokit_utils.applications.abi": [[4, 5, 1, "", "ABIArgumentType"], [4, 1, 1, "", "ABIReturn"], [4, 5, 1, "", "ABIStruct"], [4, 5, 1, "", "ABIType"], [4, 5, 1, "", "ABIValue"], [4, 5, 1, "", "Arc56ReturnValueType"], [4, 1, 1, "", "BoxABIValue"], [4, 6, 1, "", "get_abi_decoded_value"], [4, 6, 1, "", "get_abi_encoded_value"], [4, 6, 1, "", "get_abi_struct_from_abi_tuple"], [4, 6, 1, "", "get_abi_tuple_from_abi_struct"], [4, 6, 1, "", "get_abi_tuple_type_from_abi_struct_definition"], [4, 6, 1, "", "get_arc56_value"]], "algokit_utils.applications.abi.ABIReturn": [[4, 2, 1, "", "decode_error"], [4, 3, 1, "", "get_arc56_value"], [4, 4, 1, "", "is_success"], [4, 2, 1, "", "method"], [4, 2, 1, "", "raw_value"], [4, 2, 1, "", "tx_info"], [4, 2, 1, "", "value"]], "algokit_utils.applications.abi.BoxABIValue": [[4, 2, 1, "", "name"], [4, 2, 1, "", "value"]], "algokit_utils.applications.app_client": [[5, 1, 1, "", "AppClient"], [5, 1, 1, "", "AppClientBareCallCreateParams"], [5, 1, 1, "", "AppClientBareCallParams"], [5, 1, 1, "", "AppClientCompilationParams"], [5, 1, 1, "", "AppClientCompilationResult"], [5, 1, 1, "", "AppClientCreateSchema"], [5, 1, 1, "", "AppClientMethodCallCreateParams"], [5, 1, 1, "", "AppClientMethodCallParams"], [5, 1, 1, "", "AppClientParams"], [5, 1, 1, "", "BaseAppClientMethodCallParams"], [5, 1, 1, "", "CommonAppCallCreateParams"], [5, 1, 1, "", "CommonAppCallParams"], [5, 5, 1, "", "CreateOnComplete"], [5, 1, 1, "", "FundAppAccountParams"], [5, 6, 1, "", "get_constant_block_offset"]], "algokit_utils.applications.app_client.AppClient": [[5, 4, 1, "", "algorand"], [5, 4, 1, "", "app_address"], [5, 4, 1, "", "app_id"], [5, 4, 1, "", "app_name"], [5, 4, 1, "", "app_spec"], [5, 3, 1, "", "clone"], [5, 3, 1, "", "compile"], [5, 3, 1, "", "compile_app"], [5, 4, 1, "", "create_transaction"], [5, 3, 1, "", "export_source_maps"], [5, 3, 1, "", "from_creator_and_name"], [5, 3, 1, "", "from_network"], [5, 3, 1, "", "fund_app_account"], [5, 3, 1, "", "get_box_names"], [5, 3, 1, "", "get_box_value"], [5, 3, 1, "", "get_box_value_from_abi_type"], [5, 3, 1, "", "get_box_values"], [5, 3, 1, "", "get_box_values_from_abi_type"], [5, 3, 1, "", "get_global_state"], [5, 3, 1, "", "get_local_state"], [5, 3, 1, "", "import_source_maps"], [5, 3, 1, "", "normalise_app_spec"], [5, 4, 1, "", "params"], [5, 4, 1, "", "send"], [5, 4, 1, "", "state"]], "algokit_utils.applications.app_client.AppClientBareCallCreateParams": [[5, 2, 1, "", "on_complete"]], "algokit_utils.applications.app_client.AppClientBareCallParams": [[5, 2, 1, "", "args"]], "algokit_utils.applications.app_client.AppClientCompilationParams": [[5, 2, 1, "", "deletable"], [5, 2, 1, "", "deploy_time_params"], [5, 2, 1, "", "updatable"]], "algokit_utils.applications.app_client.AppClientCompilationResult": [[5, 2, 1, "", "approval_program"], [5, 2, 1, "", "clear_state_program"], [5, 2, 1, "", "compiled_approval"], [5, 2, 1, "", "compiled_clear"]], "algokit_utils.applications.app_client.AppClientCreateSchema": [[5, 2, 1, "", "extra_program_pages"], [5, 2, 1, "", "schema"]], "algokit_utils.applications.app_client.AppClientMethodCallCreateParams": [[5, 2, 1, "", "on_complete"]], "algokit_utils.applications.app_client.AppClientParams": [[5, 2, 1, "", "algorand"], [5, 2, 1, "", "app_id"], [5, 2, 1, "", "app_name"], [5, 2, 1, "", "app_spec"], [5, 2, 1, "", "approval_source_map"], [5, 2, 1, "", "clear_source_map"], [5, 2, 1, "", "default_sender"], [5, 2, 1, "", "default_signer"]], "algokit_utils.applications.app_client.BaseAppClientMethodCallParams": [[5, 2, 1, "", "args"], [5, 2, 1, "", "method"]], "algokit_utils.applications.app_client.CommonAppCallCreateParams": [[5, 2, 1, "", "on_complete"]], "algokit_utils.applications.app_client.CommonAppCallParams": [[5, 2, 1, "", "account_references"], [5, 2, 1, "", "app_references"], [5, 2, 1, "", "asset_references"], [5, 2, 1, "", "box_references"], [5, 2, 1, "", "extra_fee"], [5, 2, 1, "", "first_valid_round"], [5, 2, 1, "", "last_valid_round"], [5, 2, 1, "", "lease"], [5, 2, 1, "", "max_fee"], [5, 2, 1, "", "note"], [5, 2, 1, "", "on_complete"], [5, 2, 1, "", "rekey_to"], [5, 2, 1, "", "sender"], [5, 2, 1, "", "signer"], [5, 2, 1, "", "static_fee"], [5, 2, 1, "", "validity_window"]], "algokit_utils.applications.app_client.FundAppAccountParams": [[5, 2, 1, "", "amount"], [5, 2, 1, "", "close_remainder_to"]], "algokit_utils.applications.app_deployer": [[6, 5, 1, "", "APP_DEPLOY_NOTE_DAPP"], [6, 1, 1, "", "AppDeployParams"], [6, 1, 1, "", "AppDeployResult"], [6, 1, 1, "", "AppDeployer"], [6, 1, 1, "", "AppDeploymentMetaData"], [6, 1, 1, "", "ApplicationLookup"], [6, 1, 1, "", "ApplicationMetaData"], [6, 1, 1, "", "ApplicationReference"]], "algokit_utils.applications.app_deployer.AppDeployParams": [[6, 2, 1, "", "create_params"], [6, 2, 1, "", "delete_params"], [6, 2, 1, "", "deploy_time_params"], [6, 2, 1, "", "existing_deployments"], [6, 2, 1, "", "ignore_cache"], [6, 2, 1, "", "max_fee"], [6, 2, 1, "", "metadata"], [6, 2, 1, "", "on_schema_break"], [6, 2, 1, "", "on_update"], [6, 2, 1, "", "send_params"], [6, 2, 1, "", "update_params"]], "algokit_utils.applications.app_deployer.AppDeployResult": [[6, 2, 1, "", "app"], [6, 2, 1, "", "create_result"], [6, 2, 1, "", "delete_result"], [6, 2, 1, "", "operation_performed"], [6, 2, 1, "", "update_result"]], "algokit_utils.applications.app_deployer.AppDeployer": [[6, 3, 1, "", "deploy"], [6, 3, 1, "", "get_creator_apps_by_name"]], "algokit_utils.applications.app_deployer.AppDeploymentMetaData": [[6, 2, 1, "", "deletable"], [6, 3, 1, "", "dictify"], [6, 2, 1, "", "name"], [6, 2, 1, "", "updatable"], [6, 2, 1, "", "version"]], "algokit_utils.applications.app_deployer.ApplicationLookup": [[6, 2, 1, "", "apps"], [6, 2, 1, "", "creator"]], "algokit_utils.applications.app_deployer.ApplicationMetaData": [[6, 4, 1, "", "app_address"], [6, 4, 1, "", "app_id"], [6, 2, 1, "", "created_round"], [6, 4, 1, "", "deletable"], [6, 2, 1, "", "deleted"], [6, 2, 1, "", "deploy_metadata"], [6, 4, 1, "", "name"], [6, 2, 1, "", "reference"], [6, 4, 1, "", "updatable"], [6, 2, 1, "", "updated_round"], [6, 4, 1, "", "version"]], "algokit_utils.applications.app_deployer.ApplicationReference": [[6, 2, 1, "", "app_address"], [6, 2, 1, "", "app_id"]], "algokit_utils.applications.app_factory": [[7, 1, 1, "", "AppFactory"], [7, 1, 1, "", "AppFactoryCreateMethodCallParams"], [7, 1, 1, "", "AppFactoryCreateMethodCallResult"], [7, 1, 1, "", "AppFactoryCreateParams"], [7, 1, 1, "", "AppFactoryDeployResult"], [7, 1, 1, "", "AppFactoryParams"], [7, 1, 1, "", "SendAppCreateFactoryTransactionResult"], [7, 1, 1, "", "SendAppFactoryTransactionResult"], [7, 1, 1, "", "SendAppUpdateFactoryTransactionResult"]], "algokit_utils.applications.app_factory.AppFactory": [[7, 4, 1, "", "algorand"], [7, 4, 1, "", "app_name"], [7, 4, 1, "", "app_spec"], [7, 3, 1, "", "compile"], [7, 4, 1, "", "create_transaction"], [7, 3, 1, "", "deploy"], [7, 3, 1, "", "export_source_maps"], [7, 3, 1, "", "get_app_client_by_creator_and_name"], [7, 3, 1, "", "get_app_client_by_id"], [7, 3, 1, "", "import_source_maps"], [7, 4, 1, "", "params"], [7, 4, 1, "", "send"]], "algokit_utils.applications.app_factory.AppFactoryCreateMethodCallResult": [[7, 2, 1, "", "abi_return"], [7, 2, 1, "", "app_address"], [7, 2, 1, "", "app_id"], [7, 2, 1, "", "compiled_approval"], [7, 2, 1, "", "compiled_clear"]], "algokit_utils.applications.app_factory.AppFactoryCreateParams": [[7, 2, 1, "", "on_complete"]], "algokit_utils.applications.app_factory.AppFactoryDeployResult": [[7, 2, 1, "", "app"], [7, 2, 1, "", "create_result"], [7, 2, 1, "", "delete_result"], [7, 3, 1, "", "from_deploy_result"], [7, 2, 1, "", "operation_performed"], [7, 2, 1, "", "update_result"]], "algokit_utils.applications.app_factory.AppFactoryParams": [[7, 2, 1, "", "algorand"], [7, 2, 1, "", "app_name"], [7, 2, 1, "", "app_spec"], [7, 2, 1, "", "compilation_params"], [7, 2, 1, "", "default_sender"], [7, 2, 1, "", "default_signer"], [7, 2, 1, "", "version"]], "algokit_utils.applications.app_manager": [[8, 1, 1, "", "AppManager"], [8, 5, 1, "", "DELETABLE_TEMPLATE_NAME"], [8, 5, 1, "", "UPDATABLE_TEMPLATE_NAME"]], "algokit_utils.applications.app_manager.AppManager": [[8, 3, 1, "", "compile_teal"], [8, 3, 1, "", "compile_teal_template"], [8, 3, 1, "", "decode_app_state"], [8, 3, 1, "", "get_abi_return"], [8, 3, 1, "", "get_box_names"], [8, 3, 1, "", "get_box_reference"], [8, 3, 1, "", "get_box_value"], [8, 3, 1, "", "get_box_value_from_abi_type"], [8, 3, 1, "", "get_box_values"], [8, 3, 1, "", "get_box_values_from_abi_type"], [8, 3, 1, "", "get_by_id"], [8, 3, 1, "", "get_compilation_result"], [8, 3, 1, "", "get_global_state"], [8, 3, 1, "", "get_local_state"], [8, 3, 1, "", "replace_teal_template_deploy_time_control_params"], [8, 3, 1, "", "replace_template_variables"], [8, 3, 1, "", "strip_teal_comments"]], "algokit_utils.applications.app_spec": [[9, 0, 0, "-", "arc32"], [10, 0, 0, "-", "arc56"]], "algokit_utils.applications.app_spec.arc32": [[9, 5, 1, "", "AppSpecStateDict"], [9, 1, 1, "", "Arc32Contract"], [9, 1, 1, "", "CallConfig"], [9, 1, 1, "", "DefaultArgumentDict"], [9, 5, 1, "", "DefaultArgumentType"], [9, 5, 1, "", "MethodConfigDict"], [9, 1, 1, "", "MethodHints"], [9, 5, 1, "", "OnCompleteActionName"], [9, 5, 1, "", "StateDict"], [9, 1, 1, "", "StructArgDict"]], "algokit_utils.applications.app_spec.arc32.Arc32Contract": [[9, 2, 1, "", "approval_program"], [9, 2, 1, "", "bare_call_config"], [9, 2, 1, "", "clear_program"], [9, 2, 1, "", "contract"], [9, 3, 1, "", "dictify"], [9, 3, 1, "", "export"], [9, 3, 1, "", "from_json"], [9, 2, 1, "", "global_state_schema"], [9, 2, 1, "", "hints"], [9, 2, 1, "", "local_state_schema"], [9, 2, 1, "", "schema"], [9, 3, 1, "", "to_json"]], "algokit_utils.applications.app_spec.arc32.CallConfig": [[9, 2, 1, "", "ALL"], [9, 2, 1, "", "CALL"], [9, 2, 1, "", "CREATE"], [9, 2, 1, "", "NEVER"]], "algokit_utils.applications.app_spec.arc32.DefaultArgumentDict": [[9, 2, 1, "", "data"], [9, 2, 1, "", "source"]], "algokit_utils.applications.app_spec.arc32.MethodHints": [[9, 2, 1, "", "call_config"], [9, 2, 1, "", "default_arguments"], [9, 3, 1, "", "dictify"], [9, 3, 1, "", "empty"], [9, 2, 1, "", "read_only"], [9, 2, 1, "", "structs"], [9, 3, 1, "", "undictify"]], "algokit_utils.applications.app_spec.arc32.StructArgDict": [[9, 2, 1, "", "elements"], [9, 2, 1, "", "name"]], "algokit_utils.applications.app_spec.arc56": [[10, 1, 1, "", "Actions"], [10, 1, 1, "", "Arc56Contract"], [10, 1, 1, "", "BareActions"], [10, 1, 1, "", "Boxes"], [10, 1, 1, "", "ByteCode"], [10, 1, 1, "", "CallEnum"], [10, 1, 1, "", "Compiler"], [10, 1, 1, "", "CompilerInfo"], [10, 1, 1, "", "CompilerVersion"], [10, 1, 1, "", "CreateEnum"], [10, 1, 1, "", "DefaultValue"], [10, 1, 1, "", "Event"], [10, 1, 1, "", "EventArg"], [10, 1, 1, "", "Global"], [10, 1, 1, "", "Keys"], [10, 1, 1, "", "Local"], [10, 1, 1, "", "Maps"], [10, 1, 1, "", "Method"], [10, 1, 1, "", "MethodArg"], [10, 1, 1, "", "Network"], [10, 1, 1, "", "PcOffsetMethod"], [10, 1, 1, "", "ProgramSourceInfo"], [10, 1, 1, "", "Recommendations"], [10, 1, 1, "", "Returns"], [10, 1, 1, "", "Schema"], [10, 1, 1, "", "ScratchVariables"], [10, 1, 1, "", "Source"], [10, 1, 1, "", "SourceInfo"], [10, 1, 1, "", "SourceInfoModel"], [10, 1, 1, "", "State"], [10, 1, 1, "", "StorageKey"], [10, 1, 1, "", "StorageMap"], [10, 1, 1, "", "StructField"], [10, 1, 1, "", "TemplateVariables"]], "algokit_utils.applications.app_spec.arc56.Actions": [[10, 2, 1, "", "call"], [10, 2, 1, "", "create"], [10, 3, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.Arc56Contract": [[10, 2, 1, "", "arcs"], [10, 2, 1, "", "bare_actions"], [10, 2, 1, "", "byte_code"], [10, 2, 1, "", "compiler_info"], [10, 2, 1, "", "desc"], [10, 3, 1, "", "dictify"], [10, 2, 1, "", "events"], [10, 3, 1, "", "from_arc32"], [10, 3, 1, "", "from_dict"], [10, 3, 1, "", "from_json"], [10, 3, 1, "", "get_abi_struct_from_abi_tuple"], [10, 3, 1, "", "get_arc56_method"], [10, 2, 1, "", "methods"], [10, 2, 1, "", "name"], [10, 2, 1, "", "networks"], [10, 2, 1, "", "scratch_variables"], [10, 2, 1, "", "source"], [10, 2, 1, "", "source_info"], [10, 2, 1, "", "state"], [10, 2, 1, "", "structs"], [10, 2, 1, "", "template_variables"], [10, 3, 1, "", "to_json"]], "algokit_utils.applications.app_spec.arc56.BareActions": [[10, 2, 1, "", "call"], [10, 2, 1, "", "create"], [10, 3, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.Boxes": [[10, 2, 1, "", "app"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "key"], [10, 2, 1, "", "read_bytes"], [10, 2, 1, "", "write_bytes"]], "algokit_utils.applications.app_spec.arc56.ByteCode": [[10, 2, 1, "", "approval"], [10, 2, 1, "", "clear"], [10, 3, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.CallEnum": [[10, 2, 1, "", "CLEAR_STATE"], [10, 2, 1, "", "CLOSE_OUT"], [10, 2, 1, "", "DELETE_APPLICATION"], [10, 2, 1, "", "NO_OP"], [10, 2, 1, "", "OPT_IN"], [10, 2, 1, "", "UPDATE_APPLICATION"]], "algokit_utils.applications.app_spec.arc56.Compiler": [[10, 2, 1, "", "ALGOD"], [10, 2, 1, "", "PUYA"]], "algokit_utils.applications.app_spec.arc56.CompilerInfo": [[10, 2, 1, "", "compiler"], [10, 2, 1, "", "compiler_version"], [10, 3, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.CompilerVersion": [[10, 2, 1, "", "commit_hash"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "major"], [10, 2, 1, "", "minor"], [10, 2, 1, "", "patch"]], "algokit_utils.applications.app_spec.arc56.CreateEnum": [[10, 2, 1, "", "DELETE_APPLICATION"], [10, 2, 1, "", "NO_OP"], [10, 2, 1, "", "OPT_IN"]], "algokit_utils.applications.app_spec.arc56.DefaultValue": [[10, 2, 1, "", "data"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "source"], [10, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Event": [[10, 2, 1, "", "args"], [10, 2, 1, "", "desc"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "name"]], "algokit_utils.applications.app_spec.arc56.EventArg": [[10, 2, 1, "", "desc"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "name"], [10, 2, 1, "", "struct"], [10, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Global": [[10, 2, 1, "", "bytes"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "ints"]], "algokit_utils.applications.app_spec.arc56.Keys": [[10, 2, 1, "", "box"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "global_state"], [10, 2, 1, "", "local_state"]], "algokit_utils.applications.app_spec.arc56.Local": [[10, 2, 1, "", "bytes"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "ints"]], "algokit_utils.applications.app_spec.arc56.Maps": [[10, 2, 1, "", "box"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "global_state"], [10, 2, 1, "", "local_state"]], "algokit_utils.applications.app_spec.arc56.Method": [[10, 2, 1, "", "actions"], [10, 2, 1, "", "args"], [10, 2, 1, "", "desc"], [10, 2, 1, "", "events"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "name"], [10, 2, 1, "", "readonly"], [10, 2, 1, "", "recommendations"], [10, 2, 1, "", "returns"], [10, 3, 1, "", "to_abi_method"]], "algokit_utils.applications.app_spec.arc56.MethodArg": [[10, 2, 1, "", "default_value"], [10, 2, 1, "", "desc"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "name"], [10, 2, 1, "", "struct"], [10, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Network": [[10, 2, 1, "", "app_id"], [10, 3, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.PcOffsetMethod": [[10, 2, 1, "", "CBLOCKS"], [10, 2, 1, "", "NONE"]], "algokit_utils.applications.app_spec.arc56.ProgramSourceInfo": [[10, 3, 1, "", "from_dict"], [10, 2, 1, "", "pc_offset_method"], [10, 2, 1, "", "source_info"]], "algokit_utils.applications.app_spec.arc56.Recommendations": [[10, 2, 1, "", "accounts"], [10, 2, 1, "", "apps"], [10, 2, 1, "", "assets"], [10, 2, 1, "", "boxes"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "inner_transaction_count"]], "algokit_utils.applications.app_spec.arc56.Returns": [[10, 2, 1, "", "desc"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "struct"], [10, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Schema": [[10, 3, 1, "", "from_dict"], [10, 2, 1, "", "global_state"], [10, 2, 1, "", "local_state"]], "algokit_utils.applications.app_spec.arc56.ScratchVariables": [[10, 3, 1, "", "from_dict"], [10, 2, 1, "", "slot"], [10, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.Source": [[10, 2, 1, "", "approval"], [10, 2, 1, "", "clear"], [10, 3, 1, "", "from_dict"], [10, 3, 1, "", "get_decoded_approval"], [10, 3, 1, "", "get_decoded_clear"]], "algokit_utils.applications.app_spec.arc56.SourceInfo": [[10, 2, 1, "", "error_message"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "pc"], [10, 2, 1, "", "source"], [10, 2, 1, "", "teal"]], "algokit_utils.applications.app_spec.arc56.SourceInfoModel": [[10, 2, 1, "", "approval"], [10, 2, 1, "", "clear"], [10, 3, 1, "", "from_dict"]], "algokit_utils.applications.app_spec.arc56.State": [[10, 3, 1, "", "from_dict"], [10, 2, 1, "", "keys"], [10, 2, 1, "", "maps"], [10, 2, 1, "", "schema"]], "algokit_utils.applications.app_spec.arc56.StorageKey": [[10, 2, 1, "", "desc"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "key"], [10, 2, 1, "", "key_type"], [10, 2, 1, "", "value_type"]], "algokit_utils.applications.app_spec.arc56.StorageMap": [[10, 2, 1, "", "desc"], [10, 3, 1, "", "from_dict"], [10, 2, 1, "", "key_type"], [10, 2, 1, "", "prefix"], [10, 2, 1, "", "value_type"]], "algokit_utils.applications.app_spec.arc56.StructField": [[10, 3, 1, "", "from_dict"], [10, 2, 1, "", "name"], [10, 2, 1, "", "type"]], "algokit_utils.applications.app_spec.arc56.TemplateVariables": [[10, 3, 1, "", "from_dict"], [10, 2, 1, "", "type"], [10, 2, 1, "", "value"]], "algokit_utils.applications.enums": [[12, 1, 1, "", "OnSchemaBreak"], [12, 1, 1, "", "OnUpdate"], [12, 1, 1, "", "OperationPerformed"]], "algokit_utils.applications.enums.OnSchemaBreak": [[12, 2, 1, "", "AppendApp"], [12, 2, 1, "", "Fail"], [12, 2, 1, "", "ReplaceApp"]], "algokit_utils.applications.enums.OnUpdate": [[12, 2, 1, "", "AppendApp"], [12, 2, 1, "", "Fail"], [12, 2, 1, "", "ReplaceApp"], [12, 2, 1, "", "UpdateApp"]], "algokit_utils.applications.enums.OperationPerformed": [[12, 2, 1, "", "Create"], [12, 2, 1, "", "Nothing"], [12, 2, 1, "", "Replace"], [12, 2, 1, "", "Update"]], "algokit_utils.assets": [[14, 0, 0, "-", "asset_manager"]], "algokit_utils.assets.asset_manager": [[14, 1, 1, "", "AccountAssetInformation"], [14, 1, 1, "", "AssetInformation"], [14, 1, 1, "", "AssetManager"], [14, 1, 1, "", "BulkAssetOptInOutResult"]], "algokit_utils.assets.asset_manager.AccountAssetInformation": [[14, 2, 1, "", "asset_id"], [14, 2, 1, "", "balance"], [14, 2, 1, "", "frozen"], [14, 2, 1, "", "round"]], "algokit_utils.assets.asset_manager.AssetInformation": [[14, 2, 1, "", "asset_id"], [14, 2, 1, "", "asset_name"], [14, 2, 1, "", "asset_name_b64"], [14, 2, 1, "", "clawback"], [14, 2, 1, "", "creator"], [14, 2, 1, "", "decimals"], [14, 2, 1, "", "default_frozen"], [14, 2, 1, "", "freeze"], [14, 2, 1, "", "manager"], [14, 2, 1, "", "metadata_hash"], [14, 2, 1, "", "reserve"], [14, 2, 1, "", "total"], [14, 2, 1, "", "unit_name"], [14, 2, 1, "", "unit_name_b64"], [14, 2, 1, "", "url"], [14, 2, 1, "", "url_b64"]], "algokit_utils.assets.asset_manager.AssetManager": [[14, 3, 1, "", "bulk_opt_in"], [14, 3, 1, "", "bulk_opt_out"], [14, 3, 1, "", "get_account_information"], [14, 3, 1, "", "get_by_id"]], "algokit_utils.assets.asset_manager.BulkAssetOptInOutResult": [[14, 2, 1, "", "asset_id"], [14, 2, 1, "", "transaction_id"]], "algokit_utils.clients": [[16, 0, 0, "-", "client_manager"], [17, 0, 0, "-", "dispenser_api_client"]], "algokit_utils.clients.client_manager": [[16, 1, 1, "", "AlgoSdkClients"], [16, 1, 1, "", "ClientManager"], [16, 1, 1, "", "NetworkDetail"]], "algokit_utils.clients.client_manager.AlgoSdkClients": [[16, 2, 1, "", "algod"], [16, 2, 1, "", "indexer"], [16, 2, 1, "", "kmd"]], "algokit_utils.clients.client_manager.ClientManager": [[16, 4, 1, "", "algod"], [16, 3, 1, "", "genesis_id_is_localnet"], [16, 3, 1, "", "get_algod_client"], [16, 3, 1, "", "get_algod_client_from_environment"], [16, 3, 1, "", "get_algod_config_from_environment"], [16, 3, 1, "", "get_algonode_config"], [16, 3, 1, "", "get_app_client_by_creator_and_name"], [16, 3, 1, "", "get_app_client_by_id"], [16, 3, 1, "", "get_app_client_by_network"], [16, 3, 1, "", "get_app_factory"], [16, 3, 1, "", "get_config_from_environment_or_localnet"], [16, 3, 1, "", "get_default_localnet_config"], [16, 3, 1, "", "get_indexer_client"], [16, 3, 1, "", "get_indexer_client_from_environment"], [16, 3, 1, "", "get_indexer_config_from_environment"], [16, 3, 1, "", "get_kmd_client"], [16, 3, 1, "", "get_kmd_client_from_environment"], [16, 3, 1, "", "get_kmd_config_from_environment"], [16, 3, 1, "", "get_testnet_dispenser"], [16, 3, 1, "", "get_typed_app_client_by_creator_and_name"], [16, 3, 1, "", "get_typed_app_client_by_id"], [16, 3, 1, "", "get_typed_app_client_by_network"], [16, 3, 1, "", "get_typed_app_factory"], [16, 4, 1, "", "indexer"], [16, 4, 1, "", "indexer_if_present"], [16, 3, 1, "", "is_localnet"], [16, 3, 1, "", "is_mainnet"], [16, 3, 1, "", "is_testnet"], [16, 4, 1, "", "kmd"], [16, 3, 1, "", "network"]], "algokit_utils.clients.client_manager.NetworkDetail": [[16, 2, 1, "", "genesis_hash"], [16, 2, 1, "", "genesis_id"], [16, 2, 1, "", "is_localnet"], [16, 2, 1, "", "is_mainnet"], [16, 2, 1, "", "is_testnet"]], "algokit_utils.clients.dispenser_api_client": [[17, 5, 1, "", "DISPENSER_ACCESS_TOKEN_KEY"], [17, 5, 1, "", "DISPENSER_ASSETS"], [17, 5, 1, "", "DISPENSER_REQUEST_TIMEOUT"], [17, 1, 1, "", "DispenserApiConfig"], [17, 1, 1, "", "DispenserAsset"], [17, 1, 1, "", "DispenserAssetName"], [17, 1, 1, "", "DispenserFundResponse"], [17, 1, 1, "", "DispenserLimitResponse"], [17, 1, 1, "", "TestNetDispenserApiClient"]], "algokit_utils.clients.dispenser_api_client.DispenserApiConfig": [[17, 2, 1, "", "BASE_URL"]], "algokit_utils.clients.dispenser_api_client.DispenserAsset": [[17, 2, 1, "", "asset_id"], [17, 2, 1, "", "decimals"], [17, 2, 1, "", "description"]], "algokit_utils.clients.dispenser_api_client.DispenserAssetName": [[17, 2, 1, "", "ALGO"]], "algokit_utils.clients.dispenser_api_client.DispenserFundResponse": [[17, 2, 1, "", "amount"], [17, 2, 1, "", "tx_id"]], "algokit_utils.clients.dispenser_api_client.DispenserLimitResponse": [[17, 2, 1, "", "amount"]], "algokit_utils.clients.dispenser_api_client.TestNetDispenserApiClient": [[17, 2, 1, "", "auth_token"], [17, 3, 1, "", "fund"], [17, 3, 1, "", "get_limit"], [17, 3, 1, "", "refund"], [17, 2, 1, "", "request_timeout"]], "algokit_utils.config": [[19, 5, 1, "", "ALGOKIT_CONFIG_FILENAME"], [19, 5, 1, "", "ALGOKIT_PROJECT_ROOT"], [19, 1, 1, "", "AlgoKitLogger"], [19, 1, 1, "", "UpdatableConfig"], [19, 5, 1, "", "config"]], "algokit_utils.config.AlgoKitLogger": [[19, 3, 1, "", "get_null_logger"]], "algokit_utils.config.UpdatableConfig": [[19, 3, 1, "", "configure"], [19, 4, 1, "", "debug"], [19, 4, 1, "", "logger"], [19, 4, 1, "", "populate_app_call_resource"], [19, 4, 1, "", "project_root"], [19, 4, 1, "", "trace_all"], [19, 4, 1, "", "trace_buffer_size_mb"], [19, 3, 1, "", "with_debug"]], "algokit_utils.errors": [[21, 0, 0, "-", "logic_error"]], "algokit_utils.errors.logic_error": [[21, 7, 1, "", "LogicError"], [21, 1, 1, "", "LogicErrorData"], [21, 6, 1, "", "parse_logic_error"]], "algokit_utils.errors.logic_error.LogicError": [[21, 2, 1, "", "line_no"], [21, 2, 1, "", "lines"], [21, 2, 1, "", "logic_error"], [21, 2, 1, "", "logic_error_str"], [21, 2, 1, "", "message"], [21, 2, 1, "", "pc"], [21, 2, 1, "", "source_map"], [21, 3, 1, "", "trace"], [21, 2, 1, "", "traces"], [21, 2, 1, "", "transaction_id"]], "algokit_utils.errors.logic_error.LogicErrorData": [[21, 2, 1, "", "message"], [21, 2, 1, "", "pc"], [21, 2, 1, "", "transaction_id"]], "algokit_utils.models": [[23, 0, 0, "-", "account"], [24, 0, 0, "-", "amount"], [25, 0, 0, "-", "application"], [27, 0, 0, "-", "network"], [28, 0, 0, "-", "simulate"], [29, 0, 0, "-", "state"], [30, 0, 0, "-", "transaction"]], "algokit_utils.models.account": [[23, 5, 1, "", "DISPENSER_ACCOUNT_NAME"], [23, 1, 1, "", "LogicSigAccount"], [23, 1, 1, "", "MultiSigAccount"], [23, 1, 1, "", "MultisigMetadata"], [23, 1, 1, "", "SigningAccount"], [23, 1, 1, "", "TransactionSignerAccount"]], "algokit_utils.models.account.LogicSigAccount": [[23, 4, 1, "", "address"], [23, 4, 1, "", "lsig"], [23, 4, 1, "", "signer"]], "algokit_utils.models.account.MultiSigAccount": [[23, 4, 1, "", "address"], [23, 4, 1, "", "multisig"], [23, 4, 1, "", "params"], [23, 3, 1, "", "sign"], [23, 4, 1, "", "signer"], [23, 4, 1, "", "signing_accounts"]], "algokit_utils.models.account.MultisigMetadata": [[23, 2, 1, "", "addresses"], [23, 2, 1, "", "threshold"], [23, 2, 1, "", "version"]], "algokit_utils.models.account.SigningAccount": [[23, 2, 1, "", "address"], [23, 3, 1, "", "new_account"], [23, 2, 1, "", "private_key"], [23, 4, 1, "", "public_key"], [23, 4, 1, "", "signer"]], "algokit_utils.models.account.TransactionSignerAccount": [[23, 2, 1, "", "address"], [23, 2, 1, "", "signer"]], "algokit_utils.models.amount": [[24, 5, 1, "", "ALGORAND_MIN_TX_FEE"], [24, 1, 1, "", "AlgoAmount"], [24, 6, 1, "", "algo"], [24, 6, 1, "", "micro_algo"], [24, 6, 1, "", "transaction_fees"]], "algokit_utils.models.amount.AlgoAmount": [[24, 4, 1, "", "algo"], [24, 3, 1, "", "from_algo"], [24, 3, 1, "", "from_micro_algo"], [24, 4, 1, "", "micro_algo"]], "algokit_utils.models.application": [[25, 1, 1, "", "AppCompilationResult"], [25, 1, 1, "", "AppInformation"], [25, 1, 1, "", "AppSourceMaps"], [25, 1, 1, "", "AppState"], [25, 1, 1, "", "CompiledTeal"]], "algokit_utils.models.application.AppCompilationResult": [[25, 2, 1, "", "compiled_approval"], [25, 2, 1, "", "compiled_clear"]], "algokit_utils.models.application.AppInformation": [[25, 2, 1, "", "app_address"], [25, 2, 1, "", "app_id"], [25, 2, 1, "", "approval_program"], [25, 2, 1, "", "clear_state_program"], [25, 2, 1, "", "creator"], [25, 2, 1, "", "extra_program_pages"], [25, 2, 1, "", "global_byte_slices"], [25, 2, 1, "", "global_ints"], [25, 2, 1, "", "global_state"], [25, 2, 1, "", "local_byte_slices"], [25, 2, 1, "", "local_ints"]], "algokit_utils.models.application.AppSourceMaps": [[25, 2, 1, "", "approval_source_map"], [25, 2, 1, "", "clear_source_map"]], "algokit_utils.models.application.AppState": [[25, 2, 1, "", "key_base64"], [25, 2, 1, "", "key_raw"], [25, 2, 1, "", "value"], [25, 2, 1, "", "value_base64"], [25, 2, 1, "", "value_raw"]], "algokit_utils.models.application.CompiledTeal": [[25, 2, 1, "", "compiled"], [25, 2, 1, "", "compiled_base64_to_bytes"], [25, 2, 1, "", "compiled_hash"], [25, 2, 1, "", "source_map"], [25, 2, 1, "", "teal"]], "algokit_utils.models.network": [[27, 1, 1, "", "AlgoClientConfigs"], [27, 1, 1, "", "AlgoClientNetworkConfig"]], "algokit_utils.models.network.AlgoClientConfigs": [[27, 2, 1, "", "algod_config"], [27, 2, 1, "", "indexer_config"], [27, 2, 1, "", "kmd_config"]], "algokit_utils.models.network.AlgoClientNetworkConfig": [[27, 3, 1, "", "full_url"], [27, 2, 1, "", "port"], [27, 2, 1, "", "server"], [27, 2, 1, "", "token"]], "algokit_utils.models.simulate": [[28, 1, 1, "", "SimulationTrace"]], "algokit_utils.models.simulate.SimulationTrace": [[28, 2, 1, "", "app_budget_added"], [28, 2, 1, "", "app_budget_consumed"], [28, 2, 1, "", "exec_trace"], [28, 2, 1, "", "failure_message"]], "algokit_utils.models.state": [[29, 5, 1, "", "BoxIdentifier"], [29, 1, 1, "", "BoxName"], [29, 1, 1, "", "BoxReference"], [29, 1, 1, "", "BoxValue"], [29, 1, 1, "", "DataTypeFlag"], [29, 5, 1, "", "TealTemplateParams"]], "algokit_utils.models.state.BoxName": [[29, 2, 1, "", "name"], [29, 2, 1, "", "name_base64"], [29, 2, 1, "", "name_raw"]], "algokit_utils.models.state.BoxValue": [[29, 2, 1, "", "name"], [29, 2, 1, "", "value"]], "algokit_utils.models.state.DataTypeFlag": [[29, 2, 1, "", "BYTES"], [29, 2, 1, "", "UINT"]], "algokit_utils.models.transaction": [[30, 5, 1, "", "Arc2TransactionNote"], [30, 1, 1, "", "BaseArc2Note"], [30, 1, 1, "", "JsonFormatArc2Note"], [30, 1, 1, "", "SendParams"], [30, 1, 1, "", "StringFormatArc2Note"], [30, 5, 1, "", "TransactionNote"], [30, 5, 1, "", "TransactionNoteData"], [30, 1, 1, "", "TransactionWrapper"]], "algokit_utils.models.transaction.BaseArc2Note": [[30, 2, 1, "", "dapp_name"]], "algokit_utils.models.transaction.JsonFormatArc2Note": [[30, 2, 1, "", "data"], [30, 2, 1, "", "format"]], "algokit_utils.models.transaction.SendParams": [[30, 2, 1, "", "cover_app_call_inner_transaction_fees"], [30, 2, 1, "", "max_rounds_to_wait"], [30, 2, 1, "", "populate_app_call_resources"], [30, 2, 1, "", "suppress_log"]], "algokit_utils.models.transaction.StringFormatArc2Note": [[30, 2, 1, "", "data"], [30, 2, 1, "", "format"]], "algokit_utils.models.transaction.TransactionWrapper": [[30, 4, 1, "", "application_call"], [30, 4, 1, "", "asset_config"], [30, 4, 1, "", "asset_freeze"], [30, 4, 1, "", "asset_transfer"], [30, 4, 1, "", "keyreg"], [30, 4, 1, "", "payment"], [30, 4, 1, "", "raw"], [30, 4, 1, "", "state_proof"]], "algokit_utils.protocols": [[31, 0, 0, "-", "account"], [33, 0, 0, "-", "typed_clients"]], "algokit_utils.protocols.account": [[31, 1, 1, "", "TransactionSignerAccountProtocol"]], "algokit_utils.protocols.account.TransactionSignerAccountProtocol": [[31, 4, 1, "", "address"], [31, 4, 1, "", "signer"]], "algokit_utils.protocols.typed_clients": [[33, 1, 1, "", "TypedAppClientProtocol"], [33, 1, 1, "", "TypedAppFactoryProtocol"]], "algokit_utils.protocols.typed_clients.TypedAppClientProtocol": [[33, 3, 1, "", "from_creator_and_name"], [33, 3, 1, "", "from_network"]], "algokit_utils.protocols.typed_clients.TypedAppFactoryProtocol": [[33, 3, 1, "", "deploy"]], "algokit_utils.transactions": [[35, 0, 0, "-", "transaction_composer"], [36, 0, 0, "-", "transaction_creator"], [37, 0, 0, "-", "transaction_sender"]], "algokit_utils.transactions.transaction_composer": [[35, 1, 1, "", "AppCallMethodCallParams"], [35, 1, 1, "", "AppCallParams"], [35, 1, 1, "", "AppCreateMethodCallParams"], [35, 1, 1, "", "AppCreateParams"], [35, 1, 1, "", "AppCreateSchema"], [35, 1, 1, "", "AppDeleteMethodCallParams"], [35, 1, 1, "", "AppDeleteParams"], [35, 5, 1, "", "AppMethodCallTransactionArgument"], [35, 1, 1, "", "AppUpdateMethodCallParams"], [35, 1, 1, "", "AppUpdateParams"], [35, 1, 1, "", "AssetConfigParams"], [35, 1, 1, "", "AssetCreateParams"], [35, 1, 1, "", "AssetDestroyParams"], [35, 1, 1, "", "AssetFreezeParams"], [35, 1, 1, "", "AssetOptInParams"], [35, 1, 1, "", "AssetOptOutParams"], [35, 1, 1, "", "AssetTransferParams"], [35, 1, 1, "", "BuiltTransactions"], [35, 5, 1, "", "MethodCallParams"], [35, 1, 1, "", "OfflineKeyRegistrationParams"], [35, 1, 1, "", "OnlineKeyRegistrationParams"], [35, 1, 1, "", "PaymentParams"], [35, 1, 1, "", "SendAtomicTransactionComposerResults"], [35, 1, 1, "", "TransactionComposer"], [35, 1, 1, "", "TransactionComposerBuildResult"], [35, 5, 1, "", "TxnParams"], [35, 6, 1, "", "calculate_extra_program_pages"], [35, 6, 1, "", "populate_app_call_resources"], [35, 6, 1, "", "prepare_group_for_sending"], [35, 6, 1, "", "send_atomic_transaction_composer"]], "algokit_utils.transactions.transaction_composer.AppCallMethodCallParams": [[35, 2, 1, "", "app_id"], [35, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AppCallParams": [[35, 2, 1, "", "account_references"], [35, 2, 1, "", "app_id"], [35, 2, 1, "", "app_references"], [35, 2, 1, "", "approval_program"], [35, 2, 1, "", "args"], [35, 2, 1, "", "asset_references"], [35, 2, 1, "", "box_references"], [35, 2, 1, "", "clear_state_program"], [35, 2, 1, "", "extra_pages"], [35, 2, 1, "", "on_complete"], [35, 2, 1, "", "schema"]], "algokit_utils.transactions.transaction_composer.AppCreateMethodCallParams": [[35, 2, 1, "", "approval_program"], [35, 2, 1, "", "clear_state_program"], [35, 2, 1, "", "extra_program_pages"], [35, 2, 1, "", "on_complete"], [35, 2, 1, "", "schema"]], "algokit_utils.transactions.transaction_composer.AppCreateParams": [[35, 2, 1, "", "account_references"], [35, 2, 1, "", "app_references"], [35, 2, 1, "", "approval_program"], [35, 2, 1, "", "args"], [35, 2, 1, "", "asset_references"], [35, 2, 1, "", "box_references"], [35, 2, 1, "", "clear_state_program"], [35, 2, 1, "", "extra_program_pages"], [35, 2, 1, "", "on_complete"], [35, 2, 1, "", "schema"]], "algokit_utils.transactions.transaction_composer.AppCreateSchema": [[35, 2, 1, "", "global_byte_slices"], [35, 2, 1, "", "global_ints"], [35, 2, 1, "", "local_byte_slices"], [35, 2, 1, "", "local_ints"]], "algokit_utils.transactions.transaction_composer.AppDeleteMethodCallParams": [[35, 2, 1, "", "app_id"], [35, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AppDeleteParams": [[35, 2, 1, "", "account_references"], [35, 2, 1, "", "app_id"], [35, 2, 1, "", "app_references"], [35, 2, 1, "", "args"], [35, 2, 1, "", "asset_references"], [35, 2, 1, "", "box_references"], [35, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AppUpdateMethodCallParams": [[35, 2, 1, "", "app_id"], [35, 2, 1, "", "approval_program"], [35, 2, 1, "", "clear_state_program"], [35, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AppUpdateParams": [[35, 2, 1, "", "account_references"], [35, 2, 1, "", "app_id"], [35, 2, 1, "", "app_references"], [35, 2, 1, "", "approval_program"], [35, 2, 1, "", "args"], [35, 2, 1, "", "asset_references"], [35, 2, 1, "", "box_references"], [35, 2, 1, "", "clear_state_program"], [35, 2, 1, "", "on_complete"]], "algokit_utils.transactions.transaction_composer.AssetConfigParams": [[35, 2, 1, "", "asset_id"], [35, 2, 1, "", "clawback"], [35, 2, 1, "", "freeze"], [35, 2, 1, "", "manager"], [35, 2, 1, "", "reserve"]], "algokit_utils.transactions.transaction_composer.AssetCreateParams": [[35, 2, 1, "", "asset_name"], [35, 2, 1, "", "clawback"], [35, 2, 1, "", "decimals"], [35, 2, 1, "", "default_frozen"], [35, 2, 1, "", "freeze"], [35, 2, 1, "", "manager"], [35, 2, 1, "", "metadata_hash"], [35, 2, 1, "", "reserve"], [35, 2, 1, "", "total"], [35, 2, 1, "", "unit_name"], [35, 2, 1, "", "url"]], "algokit_utils.transactions.transaction_composer.AssetDestroyParams": [[35, 2, 1, "", "asset_id"]], "algokit_utils.transactions.transaction_composer.AssetFreezeParams": [[35, 2, 1, "", "account"], [35, 2, 1, "", "asset_id"], [35, 2, 1, "", "frozen"]], "algokit_utils.transactions.transaction_composer.AssetOptInParams": [[35, 2, 1, "", "asset_id"]], "algokit_utils.transactions.transaction_composer.AssetOptOutParams": [[35, 2, 1, "", "asset_id"], [35, 2, 1, "", "creator"]], "algokit_utils.transactions.transaction_composer.AssetTransferParams": [[35, 2, 1, "", "amount"], [35, 2, 1, "", "asset_id"], [35, 2, 1, "", "clawback_target"], [35, 2, 1, "", "close_asset_to"], [35, 2, 1, "", "receiver"]], "algokit_utils.transactions.transaction_composer.BuiltTransactions": [[35, 2, 1, "", "method_calls"], [35, 2, 1, "", "signers"], [35, 2, 1, "", "transactions"]], "algokit_utils.transactions.transaction_composer.OfflineKeyRegistrationParams": [[35, 2, 1, "", "prevent_account_from_ever_participating_again"]], "algokit_utils.transactions.transaction_composer.OnlineKeyRegistrationParams": [[35, 2, 1, "", "selection_key"], [35, 2, 1, "", "state_proof_key"], [35, 2, 1, "", "vote_first"], [35, 2, 1, "", "vote_key"], [35, 2, 1, "", "vote_key_dilution"], [35, 2, 1, "", "vote_last"]], "algokit_utils.transactions.transaction_composer.PaymentParams": [[35, 2, 1, "", "amount"], [35, 2, 1, "", "close_remainder_to"], [35, 2, 1, "", "receiver"]], "algokit_utils.transactions.transaction_composer.SendAtomicTransactionComposerResults": [[35, 2, 1, "", "confirmations"], [35, 2, 1, "", "group_id"], [35, 2, 1, "", "returns"], [35, 2, 1, "", "simulate_response"], [35, 2, 1, "", "transactions"], [35, 2, 1, "", "tx_ids"]], "algokit_utils.transactions.transaction_composer.TransactionComposer": [[35, 3, 1, "", "add_app_call"], [35, 3, 1, "", "add_app_call_method_call"], [35, 3, 1, "", "add_app_create"], [35, 3, 1, "", "add_app_create_method_call"], [35, 3, 1, "", "add_app_delete"], [35, 3, 1, "", "add_app_delete_method_call"], [35, 3, 1, "", "add_app_update"], [35, 3, 1, "", "add_app_update_method_call"], [35, 3, 1, "", "add_asset_config"], [35, 3, 1, "", "add_asset_create"], [35, 3, 1, "", "add_asset_destroy"], [35, 3, 1, "", "add_asset_freeze"], [35, 3, 1, "", "add_asset_opt_in"], [35, 3, 1, "", "add_asset_opt_out"], [35, 3, 1, "", "add_asset_transfer"], [35, 3, 1, "", "add_atc"], [35, 3, 1, "", "add_offline_key_registration"], [35, 3, 1, "", "add_online_key_registration"], [35, 3, 1, "", "add_payment"], [35, 3, 1, "", "add_transaction"], [35, 3, 1, "", "arc2_note"], [35, 3, 1, "", "build"], [35, 3, 1, "", "build_transactions"], [35, 3, 1, "", "count"], [35, 3, 1, "", "execute"], [35, 3, 1, "", "rebuild"], [35, 3, 1, "", "send"], [35, 3, 1, "", "simulate"]], "algokit_utils.transactions.transaction_composer.TransactionComposerBuildResult": [[35, 2, 1, "", "atc"], [35, 2, 1, "", "method_calls"], [35, 2, 1, "", "transactions"]], "algokit_utils.transactions.transaction_creator": [[36, 1, 1, "", "AlgorandClientTransactionCreator"]], "algokit_utils.transactions.transaction_creator.AlgorandClientTransactionCreator": [[36, 4, 1, "", "app_call"], [36, 4, 1, "", "app_call_method_call"], [36, 4, 1, "", "app_create"], [36, 4, 1, "", "app_create_method_call"], [36, 4, 1, "", "app_delete"], [36, 4, 1, "", "app_delete_method_call"], [36, 4, 1, "", "app_update"], [36, 4, 1, "", "app_update_method_call"], [36, 4, 1, "", "asset_config"], [36, 4, 1, "", "asset_create"], [36, 4, 1, "", "asset_destroy"], [36, 4, 1, "", "asset_freeze"], [36, 4, 1, "", "asset_opt_in"], [36, 4, 1, "", "asset_opt_out"], [36, 4, 1, "", "asset_transfer"], [36, 4, 1, "", "offline_key_registration"], [36, 4, 1, "", "online_key_registration"], [36, 4, 1, "", "payment"]], "algokit_utils.transactions.transaction_sender": [[37, 1, 1, "", "AlgorandClientTransactionSender"], [37, 1, 1, "", "SendAppCreateTransactionResult"], [37, 1, 1, "", "SendAppTransactionResult"], [37, 1, 1, "", "SendAppUpdateTransactionResult"], [37, 1, 1, "", "SendSingleAssetCreateTransactionResult"], [37, 1, 1, "", "SendSingleTransactionResult"]], "algokit_utils.transactions.transaction_sender.AlgorandClientTransactionSender": [[37, 3, 1, "", "app_call"], [37, 3, 1, "", "app_call_method_call"], [37, 3, 1, "", "app_create"], [37, 3, 1, "", "app_create_method_call"], [37, 3, 1, "", "app_delete"], [37, 3, 1, "", "app_delete_method_call"], [37, 3, 1, "", "app_update"], [37, 3, 1, "", "app_update_method_call"], [37, 3, 1, "", "asset_config"], [37, 3, 1, "", "asset_create"], [37, 3, 1, "", "asset_destroy"], [37, 3, 1, "", "asset_freeze"], [37, 3, 1, "", "asset_opt_in"], [37, 3, 1, "", "asset_opt_out"], [37, 3, 1, "", "asset_transfer"], [37, 3, 1, "", "new_group"], [37, 3, 1, "", "offline_key_registration"], [37, 3, 1, "", "online_key_registration"], [37, 3, 1, "", "payment"]], "algokit_utils.transactions.transaction_sender.SendAppCreateTransactionResult": [[37, 2, 1, "", "app_address"], [37, 2, 1, "", "app_id"]], "algokit_utils.transactions.transaction_sender.SendAppTransactionResult": [[37, 2, 1, "", "abi_return"]], "algokit_utils.transactions.transaction_sender.SendAppUpdateTransactionResult": [[37, 2, 1, "", "compiled_approval"], [37, 2, 1, "", "compiled_clear"]], "algokit_utils.transactions.transaction_sender.SendSingleAssetCreateTransactionResult": [[37, 2, 1, "", "asset_id"]], "algokit_utils.transactions.transaction_sender.SendSingleTransactionResult": [[37, 2, 1, "", "confirmation"], [37, 2, 1, "", "confirmations"], [37, 3, 1, "", "from_composer_result"], [37, 2, 1, "", "group_id"], [37, 2, 1, "", "returns"], [37, 2, 1, "", "transaction"], [37, 2, 1, "", "transactions"], [37, 2, 1, "", "tx_id"], [37, 2, 1, "", "tx_ids"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "property", "Python property"], "5": ["py", "data", "Python data"], "6": ["py", "function", "Python function"], "7": ["py", "exception", "Python exception"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute", "3": "py:method", "4": "py:property", "5": "py:data", "6": "py:function", "7": "py:exception"}, "terms": {"": [0, 3, 5, 7, 8, 9, 12, 14, 21, 23, 35, 37, 39, 40, 41, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 55], "0": [0, 6, 7, 9, 12, 17, 33, 35, 36, 40, 43, 44, 49, 51, 53], "0002": [6, 30, 35], "0032": 9, "0056": 10, "01": 6, "01t12": 47, "03": 47, "1": [0, 3, 8, 9, 12, 21, 24, 29, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53], "10": [0, 19, 35, 36, 37, 39, 40, 41, 45, 47, 52], "100": [37, 49, 51], "1000": [0, 3, 35, 36, 37, 39, 40, 45, 47, 48, 51, 52], "1000000": 17, "101112": 37, "10_000": [3, 41], "120": 49, "123": [5, 7, 8, 35, 36, 37, 42, 51], "1234": [35, 37, 53], "12345": [35, 37, 40, 43, 45], "123456": [35, 36, 37], "1234567890": [5, 8, 14, 16], "12346": 43, "12_smart": 6, "15": [17, 47], "150": 9, "1_000_000": [24, 40], "1_000_000_000": [0, 39], "2": [0, 6, 9, 12, 21, 29, 35, 37, 39, 43, 44, 47, 48, 50, 51, 52, 53], "20": 49, "2000": [36, 37, 45, 51], "200_000": 43, "2022": 47, "20220301t123456z_lr1000_2pay_1axf": 47, "2023": 6, "2100": 37, "256": [19, 47], "3": [0, 3, 9, 12, 35, 37, 40, 43, 44, 50, 51, 52, 53], "3000": [0, 35, 36, 37, 39, 43, 51, 52], "32": [7, 14, 43, 44, 45, 53, 54, 55], "34": 47, "4": [35, 36, 37, 43, 44, 51, 52], "4001": 27, "42": 37, "4321": 53, "456": [37, 51], "5": [21, 35, 37, 39, 41, 49, 52], "500": 45, "5000": 51, "500_000": 41, "512": 47, "544": 33, "56": [4, 5, 7, 16, 43, 44, 50, 53, 54, 55], "56z": 47, "64": [35, 37], "67890": 45, "6e6": 3, "700": 51, "789": [35, 36, 37, 51], "8": [42, 51], "8601": 47, "8980": 27, "A": [0, 3, 5, 6, 7, 8, 14, 19, 23, 35, 36, 37, 39, 40, 43, 47, 50, 51, 53, 54], "AND": [37, 39, 52], "As": [44, 55], "Be": 0, "By": [40, 47, 52, 53], "For": [9, 21, 22, 35, 42, 44, 47, 49, 51, 53, 54, 55], "IN": 40, "If": [0, 2, 4, 5, 6, 8, 9, 10, 14, 16, 17, 23, 35, 37, 39, 40, 43, 44, 46, 48, 52, 53, 54, 55], "In": [39, 40, 44, 51, 52, 53, 55], "It": [8, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 54, 55], "No": [12, 50], "Not": 52, "ONE": 43, "On": 42, "One": 39, "Or": 51, "Such": 33, "The": [0, 2, 3, 4, 5, 6, 7, 8, 10, 14, 16, 17, 19, 23, 24, 25, 29, 31, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "Then": 40, "There": [19, 39, 41, 43, 44, 46, 51, 52], "These": [40, 47, 50, 51, 53, 55], "To": [6, 17, 19, 39, 40, 41, 42, 43, 44, 46, 47, 48, 50, 51, 52, 53, 54], "Will": 16, "With": [0, 44, 48, 52], "_": [47, 49, 51], "_baseappmethodcal": 35, "_commonensurefundedparam": 0, "_commontxnparam": 35, "_debug": [], "_ensure_fund": [], "_legacy_v2": [7, 16], "_lr": 47, "_method_cal": 40, "_methodparamsbuild": [5, 7], "_miss": 5, "_mnemon": [0, 39], "_sender": [0, 39], "_stateaccessor": 5, "_transactioncr": [5, 7], "_transactionsend": [5, 7], "_transfer": [], "aavail": 51, "abc": [0, 2, 5, 8, 14, 19, 21, 35, 36, 37], "abi": [5, 6, 7, 8, 9, 10, 13, 35, 36, 37, 38, 40, 42, 43, 44, 49, 50, 51, 53, 54, 55], "abi_arg": [], "abi_kwarg": [], "abi_method": [42, 51], "abi_return": [4, 7, 8, 37, 42, 49, 50, 55], "abi_typ": [5, 8], "abi_valu": [42, 50], "abiargsdict": [], "abiargtyp": [], "abiargumenttyp": 4, "abical": [], "abicallarg": [], "abicallargsdict": [], "abicreatecallarg": [], "abicreatecallargsdict": [], "abil": [39, 40, 43, 44, 54], "abimethod": [35, 51], "abireferencetyp": 4, "abiresult": [4, 55], "abireturn": [4, 6, 8, 35, 37, 50], "abireturnt": [7, 37], "abistringtyp": 43, "abistruct": [4, 5], "abitransactionrespons": [], "abitransactiontyp": 4, "abityp": [4, 5, 8], "abivalu": [4, 5, 8], "abl": [40, 51], "about": [0, 6, 8, 9, 10, 14, 16, 39, 41, 43, 45, 46, 47], "abov": [19, 39, 44, 51], "absolut": 53, "abstract": [2, 31, 39, 50, 54, 55], "accept": [40, 51], "access": [2, 3, 6, 7, 16, 17, 23, 39, 41, 43, 45, 50, 51, 54, 55], "accessor": [5, 55], "accord": [4, 5, 50], "account": [3, 5, 6, 7, 8, 10, 14, 17, 22, 26, 32, 35, 36, 37, 38, 40, 42, 44, 49, 50, 51, 52, 53, 54], "account1": [0, 35, 36, 37, 39], "account2": [0, 37, 39], "account_1": [35, 37], "account_address": [42, 45, 55], "account_asset_info": 14, "account_info": [0, 45], "account_manag": [1, 3, 38, 39], "account_refer": [5, 35, 36, 37, 42, 51, 55], "account_sign": 42, "account_to_freez": [35, 36], "account_to_fund": [0, 49, 52], "accountaddress": [0, 37, 39, 43, 52], "accountassetinform": 14, "accountinform": 0, "accountmanag": [0, 3, 40, 54, 55], "accountmanager1": 0, "accountmanager2": 0, "accounttransactionsign": [23, 29], "across": [44, 46, 51], "act": [0, 33, 39], "action": [5, 6, 7, 9, 10, 12, 35, 39, 42, 43, 55], "activ": 52, "actual": [40, 51], "ad": [39, 55], "add": [5, 35, 40, 43, 44, 50, 51, 52, 54, 55], "add_": [40, 51], "add_app_cal": 35, "add_app_call_method_cal": [35, 51], "add_app_cr": 35, "add_app_create_method_cal": 35, "add_app_delet": 35, "add_app_delete_method_cal": 35, "add_app_upd": 35, "add_app_update_method_cal": 35, "add_asset_config": 35, "add_asset_cr": 35, "add_asset_destroi": 35, "add_asset_freez": 35, "add_asset_opt_in": [35, 40], "add_asset_opt_out": 35, "add_asset_transf": 35, "add_atc": 35, "add_method_cal": [], "add_offline_key_registr": 35, "add_online_key_registr": 35, "add_pay": [35, 40, 51, 52], "add_transact": [3, 35, 51], "addit": [5, 35, 40, 42, 44, 47, 51, 52, 55], "addition": 51, "additional_atc_context": 35, "additionalatccontext": 35, "addr": [0, 3, 51], "address": [0, 2, 3, 5, 6, 7, 8, 14, 16, 17, 23, 25, 31, 35, 37, 39, 40, 42, 43, 45, 48, 49, 50, 51, 52, 55], "address1": [0, 39], "address2": [0, 39], "addresstocloseto": 37, "advanc": [0, 35, 36, 37, 39, 40, 42, 43, 44, 45, 52, 54], "after": [5, 40, 43, 44], "again": [35, 44], "against": [0, 2, 6, 7, 14, 37, 39, 43, 44, 46, 52, 54, 55], "aka": [0, 2], "algo": [0, 2, 3, 17, 24, 35, 36, 37, 39, 40, 48, 49, 51, 54, 55], "algoamount": [0, 2, 3, 5, 14, 24, 35, 36, 37, 39, 40, 43, 45, 49, 51, 52, 53, 54, 55], "algoclientconfig": [3, 16, 27, 46], "algoclientnetworkconfig": [3, 16, 27, 46, 54], "algod": [0, 3, 8, 10, 14, 16, 27, 35, 37, 40, 42, 44, 45, 46, 51, 54, 55], "algod_cli": [8, 14, 16, 37, 40, 42, 45, 46, 47, 55], "algod_config": [3, 27, 40, 46, 54], "algod_serv": 16, "algodcli": [3, 8, 14, 16, 27, 35, 37, 46, 47], "algodresponsetyp": [8, 35, 37, 50], "algokit": [6, 7, 17, 19, 22, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 52, 53, 55], "algokit_config_filenam": 19, "algokit_deploy": [6, 44], "algokit_dispenser_access_token": [17, 48], "algokit_project_root": [19, 47], "algokit_util": [38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 51, 53, 54, 55], "algokitlogg": [19, 54], "algonod": [3, 16, 27, 40, 46, 54], "algorand": [0, 2, 5, 6, 7, 8, 14, 16, 22, 33, 35, 36, 37, 38, 39, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "algorand_cli": [16, 46, 52], "algorand_min_tx_fe": 24, "algorandcli": [3, 5, 7, 16, 33, 37, 39, 40, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 54], "algorandclienttransactioncr": [3, 36, 40], "algorandclienttransactionsend": [3, 6, 37, 40, 44], "algorandfound": [6, 9, 10, 17, 35], "algosdk": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 16, 23, 25, 27, 29, 30, 31, 33, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 51, 55], "algosdkcli": [3, 16, 46], "algosdklogicsigaccount": 0, "algosourcemap": [21, 43], "align": 55, "all": [0, 5, 6, 8, 9, 14, 19, 21, 23, 35, 40, 43, 44, 47, 50, 51, 52, 54], "alloc": [0, 35], "allow": [0, 5, 7, 9, 10, 35, 39, 40, 41, 42, 43, 44, 46, 47, 50, 51, 52, 53, 54, 55], "allow_act": 44, "allow_delet": [], "allow_empty_signatur": [35, 47, 51], "allow_more_log": [35, 51], "allow_unnamed_resourc": [35, 47, 51], "allow_upd": [], "allowact": 44, "along": [4, 5, 39, 55], "alreadi": [37, 39, 43, 44, 50, 52, 53], "also": [17, 29, 39, 40, 41, 43, 44, 46, 47, 51, 52, 55], "altern": [17, 39, 41, 44, 47, 48], "alwai": [51, 55], "amount": [0, 2, 3, 5, 14, 17, 26, 35, 36, 37, 38, 39, 40, 43, 45, 48, 49, 51, 52, 54, 55], "amount1": 41, "amount2": 41, "amount_fund": 52, "amount_without_pending_reward": 0, "amountfund": 0, "an": [0, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 16, 17, 19, 23, 24, 27, 31, 35, 36, 37, 39, 40, 42, 44, 45, 47, 49, 50, 51, 52, 54, 55], "analyz": 5, "ani": [0, 2, 4, 5, 7, 8, 9, 10, 14, 19, 30, 33, 35, 37, 39, 40, 41, 43, 44, 46, 47, 48, 50, 51, 55], "anoth": [23, 40], "another_account_manag": 0, "anyth": [43, 47], "anywher": 39, "api": [0, 3, 16, 17, 27, 40, 43, 48, 51, 52, 54, 55], "app": [3, 5, 6, 7, 10, 16, 19, 29, 35, 37, 40, 47, 49, 50, 54], "app1": 44, "app1_metadata": 44, "app_address": [5, 6, 7, 25, 37, 43, 49, 50, 55], "app_arg": [], "app_budget_ad": 28, "app_budget_consum": 28, "app_cal": [36, 37, 50], "app_call_arg": 51, "app_call_method_cal": [36, 37, 51], "app_client": [7, 13, 16, 33, 38, 43, 49, 50, 51, 53, 55], "app_client1": [43, 53], "app_client2": [43, 53], "app_client3": 43, "app_client4": 43, "app_client5": 43, "app_client6": 43, "app_client_1": 51, "app_client_2": 51, "app_compilation_data": 7, "app_creat": [36, 37, 43, 50], "app_create_method_cal": [7, 36, 37, 43], "app_delet": [36, 37], "app_delete_method_cal": [36, 37], "app_deploy": [3, 5, 7, 13, 16, 33, 38, 44], "app_deploy_note_dapp": 6, "app_factori": [13, 16, 33, 38, 50, 51], "app_id": [5, 6, 7, 8, 10, 16, 25, 29, 33, 35, 36, 37, 42, 43, 44, 49, 50, 51, 53, 55], "app_index": 29, "app_info": [8, 42], "app_lookup": 44, "app_lookup_cach": [5, 7, 16, 33], "app_manag": [3, 5, 6, 13, 35, 37, 38, 42, 44, 51], "app_nam": [5, 7, 16, 33, 43, 53], "app_refer": [5, 35, 36, 37, 42, 51, 55], "app_spec": [4, 5, 7, 13, 16, 22, 38, 43, 49, 51], "app_spec_json": [5, 55], "app_upd": [36, 37, 50], "app_update_method_cal": [36, 37], "appcal": 55, "appcallmethodcallparam": [35, 36, 37, 40, 50, 51], "appcallparam": [35, 36, 37, 40, 51], "appclient": [5, 7, 16, 22, 50, 51, 54], "appclientbarecallcreateparam": [5, 7], "appclientbarecallparam": [5, 7, 43], "appclientcompilationparam": [5, 7, 16, 33], "appclientcompilationresult": [5, 7], "appclientcreateschema": 5, "appclientmethodcallcreateparam": [5, 7], "appclientmethodcallparam": [5, 7, 43, 49, 51], "appclientparam": [5, 43], "appcompilationresult": 25, "appcreat": 37, "appcreatemethodcallparam": [6, 35, 36, 37, 40, 51], "appcreateparam": [6, 35, 36, 37, 40, 44, 51], "appcreateschema": [5, 35], "appdeletemethodcallparam": [6, 35, 36, 37, 40, 51], "appdeleteparam": [6, 35, 36, 37, 40, 44, 51], "appdeploy": [3, 6, 54, 55], "appdeploymentmetadata": [6, 44], "appdeploymetadata": 44, "appdeploynot": 6, "appdeployparam": [6, 7, 44], "appdeployresult": [6, 7, 44], "append": [6, 44], "appendapp": [6, 7, 12], "appendsignmultisigtransact": 39, "appfactori": [7, 16, 50, 54, 55], "appfactorycreatemethodcallparam": 7, "appfactorycreatemethodcallresult": 7, "appfactorycreateparam": 7, "appfactorydeployresult": [7, 33], "appfactoryparam": 7, "appinform": [8, 25], "appli": [35, 40, 43, 44, 51], "applic": [0, 3, 16, 19, 22, 26, 29, 33, 35, 36, 37, 38, 42, 43, 44, 47, 51, 54, 55], "application_cal": 30, "application_cli": [], "application_spec": [9, 10], "application_specif": [7, 16], "applicationcalltxn": 30, "applicationcli": 6, "applicationlookup": [5, 6, 7, 16, 33, 44], "applicationmetadata": [6, 7, 44], "applicationrefer": 6, "applicationspecif": [7, 16], "applookup": [], "appmanag": [3, 5, 6, 8, 35, 37, 44, 51, 54], "appmetadata": [], "appmethodcal": [5, 55], "appmethodcalltransactionargu": [5, 35], "appnam": 5, "apprefer": [], "approach": [53, 54], "appropri": [51, 55], "approv": [5, 6, 7, 9, 10, 12, 16, 25, 35, 37], "approval_program": [5, 6, 7, 9, 25, 35, 36, 37, 43, 44], "approval_source_map": [5, 7, 16, 25, 33, 43], "approval_teal_source_map": 43, "approval_teal_template_or_byte_cod": 44, "approvalsourc": 5, "apps_local_st": 0, "apps_total_extra_pag": 0, "apps_total_schema": 0, "appsourcemap": [5, 7, 25], "appspecstatedict": 9, "appstat": [5, 8, 25], "appupdatemethodcallparam": [6, 35, 36, 37, 40, 51], "appupdateparam": [6, 35, 36, 37, 40, 44, 51], "ar": [0, 5, 16, 17, 19, 23, 29, 33, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55], "arbitrari": [19, 44], "arc": [4, 5, 6, 7, 9, 10, 16, 30, 35, 43, 44, 50, 53, 54, 55], "arc2_not": 35, "arc2transactionnot": [30, 35], "arc32": [5, 10, 11, 38], "arc32_application_spec": 10, "arc32contract": [5, 9, 10, 55], "arc4": 44, "arc52contract": 22, "arc56": [4, 5, 7, 11, 16, 38, 55], "arc56_app_spec": 55, "arc56contract": [5, 7, 10, 16, 55], "arc56returnvaluetyp": [4, 7, 50], "architectur": [6, 44], "area": 19, "arg": [0, 3, 5, 7, 10, 23, 29, 35, 36, 37, 39, 42, 43, 49, 50, 51, 53, 55], "arg1": [35, 36, 37], "arg1_valu": [35, 37], "arg2": [36, 37], "argst": 5, "argument": [0, 5, 6, 7, 9, 10, 17, 21, 35, 42, 47, 48, 51, 54, 55], "arithmet": 41, "around": [30, 39, 41, 55], "arrai": [14, 29, 37, 44, 55], "articul": 44, "artifact": [5, 9, 47, 49, 53], "asa": [14, 37, 45, 49, 51], "asid": 43, "assembl": 55, "assert": [43, 44, 49], "asset": [0, 3, 5, 10, 17, 22, 35, 36, 37, 38, 40, 42, 47, 51, 54], "asset_config": [30, 36, 37], "asset_cr": [36, 37, 49, 50], "asset_destroi": [36, 37], "asset_freez": [30, 36, 37], "asset_id": [14, 17, 35, 36, 37, 40, 45, 49, 50, 55], "asset_info": [14, 45], "asset_manag": [3, 15, 37, 38, 45], "asset_nam": [14, 35, 36, 37, 45, 49], "asset_name_b64": 14, "asset_opt_in": [36, 37, 49, 55], "asset_opt_out": [36, 37], "asset_refer": [5, 35, 36, 37, 42, 51, 55], "asset_transf": [30, 36, 37, 49, 55], "assetconfigparam": [35, 36, 37, 40, 51], "assetconfigtxn": 30, "assetcreateparam": [35, 36, 37, 40, 49, 51], "assetdestroyparam": [35, 36, 37, 40, 51], "assetfreezeparam": [35, 36, 37, 40, 51], "assetfreezetxn": 30, "assetinform": 14, "assetmanag": [3, 14, 37, 40, 54, 55], "assetnam": 37, "assetoptinparam": [35, 36, 37, 40, 49, 51, 55], "assetoptoutparam": [35, 36, 37, 40, 51], "assettransferparam": [35, 36, 37, 40, 49, 51], "assettransfertxn": 30, "associ": [5, 8, 39, 42, 54, 55], "assum": [47, 51], "atc": [35, 47, 55], "atom": [35, 44, 47, 50], "atomic_transaction_compos": [0, 3, 4, 5, 7, 14, 16, 23, 31, 33, 35], "atomictransactioncompos": [35, 47, 55], "atomictransactionrespons": [], "attach": [40, 44], "attempt": [0, 5, 40], "attribut": [33, 47], "au_deploi": [], "au_spec": [], "augment": 43, "auth": 48, "auth_addr": 0, "auth_token": [16, 17, 48], "authent": [16, 27], "author": [0, 48, 51], "authoris": 39, "auto": [17, 38, 46, 54, 55], "autoapi": 38, "autocomplet": 55, "autom": [39, 41, 44, 46, 52, 54], "automat": [0, 39, 40, 41, 43, 44, 47, 50, 51, 52, 53, 54, 55], "avail": [0, 8, 39, 43, 44, 51, 52, 55], "avm": [47, 55], "avoid": [40, 42, 52], "awai": 39, "await": [3, 5, 6], "awar": 51, "b": [30, 35, 36, 37, 42, 45, 49, 51, 52], "back": 48, "backward": 55, "balanc": [0, 14, 35, 37, 43, 45, 49, 51, 52, 55], "bare": [5, 7, 10, 43, 51, 55], "bare_act": 10, "bare_call_config": 9, "bareact": 10, "baremethod": 44, "base": [0, 2, 5, 6, 7, 9, 10, 12, 17, 19, 21, 29, 30, 31, 33, 35, 37, 39, 40, 43, 44, 50, 52, 55], "base64": [2, 10, 23, 25, 29, 42], "base_result": 50, "base_url": 17, "baseappclientmethodcallparam": 5, "basearc2not": 30, "basic": [0, 23, 35, 36, 37, 39, 42, 45, 52, 54], "beaker": 53, "becaus": [43, 51, 55], "been": [0, 5, 12, 39, 43, 44, 53, 55], "befor": [35, 37, 40, 51], "behalf": 39, "behav": 51, "behavior": 50, "behaviour": [40, 51, 54], "behind": [6, 44], "being": [40, 41, 51, 54], "below": [44, 49, 51, 53, 54], "benefit": 39, "best": 54, "beta": 55, "better": [43, 51, 52, 55], "between": [3, 24, 36, 37, 41, 49, 50, 52, 53, 54], "binari": [0, 43], "bit": [39, 43], "blob": [6, 10, 17, 35], "block": [0, 5, 51, 54], "blockchain": [43, 45, 46, 47, 54], "boilerpl": 39, "bool": [0, 2, 4, 5, 6, 7, 8, 9, 10, 14, 16, 19, 30, 33, 35, 37, 40, 43, 44, 45, 50, 51], "boolean": 44, "bootstrap": 43, "both": [9, 17, 46, 48, 51], "box": [0, 4, 5, 8, 10, 29, 35, 43, 44, 51, 54, 55], "box1": [35, 37, 43], "box2": [35, 37, 43], "box_abi_valu": 43, "box_id": [8, 42], "box_nam": [5, 8, 42, 43, 49, 55], "box_name1": 42, "box_name2": [42, 43], "box_name_1": 8, "box_name_2": 8, "box_name_byt": 8, "box_ref": 42, "box_refer": [5, 8, 29, 35, 36, 37, 42, 43, 49, 51, 55], "box_valu": [5, 8, 42, 43, 49, 55], "boxabivalu": [4, 5], "boxidentifi": [5, 8, 29, 35], "boxnam": [4, 5, 8, 29], "boxrefer": [5, 8, 29, 35, 42, 43], "boxvalu": [5, 29], "break": [6, 7, 12, 43, 44, 54], "broadli": 55, "broker": [3, 40], "budget": [35, 43, 47], "buffer": [19, 47], "buffer_size_mb": 47, "build": [3, 22, 35, 42, 43, 44, 47, 51, 52, 54], "build_group": 35, "build_transact": 35, "builder": [5, 55], "built": [35, 44, 50, 54], "built_txn": 36, "builttransact": [35, 36, 40], "bulk": [14, 40, 54], "bulk_opt_in": [14, 45], "bulk_opt_out": [14, 45], "bulkassetoptinoutresult": [14, 45], "bump": 55, "bypass": 44, "byte": [0, 4, 5, 8, 9, 10, 14, 23, 25, 29, 35, 40, 42, 43, 44, 45, 50], "byte_cod": 10, "bytearrai": 4, "bytecblock": 5, "bytecod": [10, 42], "c": 33, "cach": [3, 5, 6, 7, 8, 16, 40, 42, 44, 46, 55], "cached_result": 42, "calcul": [5, 24, 35, 40, 43, 51], "calculate_extra_program_pag": 35, "call": [0, 3, 4, 5, 6, 7, 9, 10, 19, 35, 36, 37, 39, 40, 41, 44, 46, 50, 52, 53, 54, 55], "call1": 43, "call2": 43, "call3": 43, "call4": 43, "call_abi_method": [], "call_config": 9, "call_typ": [40, 55], "callabl": [0, 2, 5, 14, 19, 21, 35, 36, 37], "callconfig": 9, "callenum": 10, "caller": 9, "calleraddress": 37, "callmethod": 37, "calltyp": 55, "can": [0, 2, 3, 5, 6, 8, 9, 14, 17, 19, 23, 33, 35, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "cannot": [4, 35, 51], "capabl": [2, 39, 40, 41, 42, 43, 44, 46, 50, 51, 52, 55], "captur": 44, "care": [0, 40, 44, 51, 54], "carefulli": 52, "case": [39, 40, 42, 43, 44, 52, 53, 54, 55], "catch": 43, "cater": 19, "caus": [43, 55], "caution": [37, 39, 52], "caveat": 43, "cblock": 10, "certain": [0, 43, 52, 55], "chain": [0, 3, 35, 43, 51, 55], "chainabl": 40, "chang": [6, 7, 12, 35, 39, 40, 44, 46, 51, 54], "channel": 19, "characterist": 44, "charg": 51, "check": [6, 7, 14, 16, 33, 37, 41, 44, 46, 51, 52, 54], "checker": 33, "choos": 40, "ci": 17, "class": [41, 42, 43, 44, 45, 46, 47, 50, 51, 54], "classmethod": [7, 19, 33, 37], "clawback": [14, 35, 36, 37, 45, 49], "clawback_address": [35, 36], "clawback_target": [35, 36, 37], "clawback_target_address": [35, 36], "clawbackaddress": 37, "cleaner": 55, "cleanup": 47, "clear": [5, 6, 7, 9, 10, 12, 16, 25, 35, 37, 43, 55], "clear_program": 9, "clear_source_map": [5, 7, 16, 25, 33, 43], "clear_stat": [9, 10, 43, 55], "clear_state_program": [5, 6, 7, 25, 35, 36, 37, 43, 44], "clear_state_teal_template_or_byte_cod": 44, "clear_teal_source_map": 43, "clearsourc": 5, "clearstat": [10, 35], "cli": [6, 53], "client": [0, 2, 3, 5, 6, 7, 8, 14, 22, 35, 37, 38, 44, 47, 49, 50, 51, 52, 54], "client_manag": [0, 2, 3, 18, 38, 39, 46], "clientmanag": [0, 2, 3, 16, 39, 40, 54], "clients_or_config": 16, "clone": 5, "cloned_cli": 5, "close": [0, 5, 35, 43, 52], "close_address": 35, "close_asset_to": [35, 36, 37], "close_asset_to_address": 36, "close_out": [9, 10, 43, 55], "close_remainder_to": [5, 35, 36, 37, 52], "closed_at_round": 0, "closeout": 10, "closeremaindertoaddress": [36, 37, 52], "cloud": 27, "code": [0, 5, 6, 7, 8, 10, 23, 25, 39, 42, 43, 44, 46, 47, 48, 54, 55], "codebas": 55, "coerc": 41, "collect": [0, 2, 5, 8, 14, 19, 21, 35, 36, 37, 49], "colon": 47, "com": [6, 9, 10, 17, 35, 36, 46, 49], "combin": [39, 43, 50], "come": 43, "commensur": 55, "comment": [8, 44], "commit": [0, 10, 35, 51], "commit_hash": 10, "common": [5, 21, 39, 40, 49, 50, 52, 54, 55], "commonappcallcreateparam": 5, "commonappcallparam": 5, "commonli": [22, 55], "commun": 55, "compar": 50, "comparison": 41, "compat": [43, 47, 53, 54, 55], "compil": [0, 5, 6, 7, 8, 10, 16, 25, 35, 37, 43, 50, 51], "compilation_param": [5, 7, 16, 33, 43, 44, 49], "compilation_result": [7, 8, 42], "compile_app": 5, "compile_t": [8, 42, 44], "compile_teal_templ": [8, 42, 44], "compiled_approv": [5, 7, 25, 37, 44], "compiled_base64_to_byt": [25, 42], "compiled_clear": [5, 7, 25, 37, 44], "compiled_hash": [25, 42], "compiled_t": 8, "compiledt": [5, 8, 25, 44], "compiler_info": 10, "compiler_vers": 10, "compilerinfo": 10, "compilervers": 10, "complet": [5, 6, 7, 9, 37, 39, 42, 44, 52], "complex": 51, "compliant": [0, 47, 50, 51, 55], "compos": [3, 35, 37, 50, 54, 55], "compose_cal": [], "compose_clear_st": [], "compose_close_out": [], "compose_cr": [], "compose_delet": [], "compose_opt_in": [], "compose_upd": [], "composer_from_algorand": 51, "composer_from_app_cli": 51, "composer_from_constructor": 51, "composit": 55, "comprehens": 44, "concept": 44, "concert": 44, "confid": 44, "config": [0, 3, 16, 22, 36, 38, 40, 43, 46, 47, 51], "config_or_port": 16, "configur": [0, 2, 3, 5, 7, 14, 16, 19, 35, 37, 43, 44, 49, 50, 51, 52, 54], "confirm": [3, 6, 7, 8, 35, 37, 40, 42, 49, 50, 51], "confirmed_round": [], "conform": 39, "confus": [41, 43], "congest": 40, "connect": [16, 27, 46, 55], "consist": [39, 40, 50, 54, 55], "consolid": 43, "constant": [5, 9], "construct": [7, 42, 43, 44, 48, 50, 52, 53, 54, 55], "constructor": [17, 41, 43, 48, 51, 55], "constuct": 51, "consult": [50, 55], "consum": [51, 52], "consumpt": [47, 55], "contain": [5, 7, 8, 9, 10, 16, 23, 35, 37, 38, 42, 44, 45, 47, 48, 50], "context": 35, "continu": [44, 55], "contract": [5, 6, 9, 10, 16, 42, 43, 47, 49, 51, 53, 54, 55], "control": [0, 6, 8, 39, 40, 42, 43, 44, 49, 50, 54], "control_templ": 42, "conveni": [22, 39, 40, 43, 46, 50, 55], "convent": [0, 39, 44, 55], "convers": [24, 41, 54, 55], "convert": [4, 10, 41], "coordin": 51, "core": [39, 41, 42, 43, 44, 46, 50, 51, 52, 55], "correct": 44, "costli": 41, "count": [10, 35, 47], "counter": [10, 43], "cover": [35, 40, 43, 50], "cover_app_call_inner_transaction_fe": [30, 35, 40, 51], "coverag": 51, "coverappcallinnertransactionfe": 51, "creat": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12, 14, 17, 23, 24, 35, 36, 37, 38, 39, 42, 44, 45, 47, 50, 51, 52, 54, 55], "create_app_param": 7, "create_appl": 43, "create_arg": [], "create_kmd_wallet_account": [], "create_method": 7, "create_param": [6, 7, 33, 44], "create_result": [6, 7, 44, 49], "create_transact": [3, 5, 7, 40, 43, 51, 52, 55], "createcallabi": 44, "createcallparamet": [], "createcallparametersdict": [], "created_app": 0, "created_app_id": 37, "created_asset": 0, "created_at_round": 0, "created_round": 6, "createenum": 10, "createoncomplet": [5, 7], "createparamst": 33, "createtransact": 40, "createtransactionparamet": [], "creation": [5, 6, 7, 35, 37, 44, 54, 55], "creator": [5, 6, 7, 14, 16, 25, 35, 36, 37, 43, 44, 45, 53], "creator_account": [], "creator_address": [5, 6, 7, 16, 33, 35, 36, 43, 44, 53], "creatoraddress": [5, 35, 37, 43, 44, 53], "cross": 51, "cryptograph": 39, "csv": 19, "ctrl": 40, "current": [0, 7, 9, 14, 16, 17, 40, 43, 44, 45, 46, 54], "current_vers": [], "custom": [5, 19, 39, 40, 43, 47, 51, 54], "d": [9, 21, 35, 37, 52], "daemon": 39, "dapp_nam": [30, 35], "data": [0, 7, 8, 9, 10, 30, 43, 44, 45], "dataclass": [40, 44, 45, 46, 50, 51, 55], "datatypeflag": 29, "date": [12, 44], "debug": [19, 42, 43, 55], "debugg": 54, "decid": 51, "decim": [14, 17, 24, 35, 36, 37, 41, 45, 49], "decis": [6, 44], "decod": [4, 5, 8, 10, 42, 43, 50, 55], "decode_app_st": [8, 42], "decode_error": 4, "decoded_st": [8, 42], "decoded_tupl": [4, 10], "decor": 33, "dedic": [39, 52, 54, 55], "deem": 55, "def": [33, 44, 49], "default": [0, 2, 3, 5, 6, 7, 9, 10, 14, 16, 17, 19, 35, 37, 40, 44, 45, 46, 47, 51, 52, 53, 54, 55], "default_argu": 9, "default_dispenser_account": 39, "default_factori": 44, "default_frozen": [14, 35, 36, 37, 45, 49], "default_localnet": [3, 40, 49, 54], "default_send": [5, 7, 16, 33, 43, 49, 51, 53], "default_sign": [5, 7, 16, 33], "default_validity_window": [35, 51], "default_valu": 10, "defaultargu": 9, "defaultargumentdict": 9, "defaultargumenttyp": 9, "defaultdispenseraccount": 0, "defaultvalu": 10, "defer": [7, 43], "defin": [0, 3, 5, 7, 9, 19, 33, 40, 43, 44, 53, 54], "definit": [4, 10], "deleg": 23, "delet": [0, 5, 6, 7, 12, 35, 36, 37, 42, 49, 51, 54, 55], "deletable_template_nam": [8, 42], "delete_abi": 43, "delete_appl": [9, 10], "delete_arg": [35, 36], "delete_param": [6, 7, 33, 44], "delete_result": [6, 7, 44], "deleteappl": [10, 44], "deleteapplicationoc": [35, 36, 37], "deletecallabi": 44, "deletemethod": 37, "deleteparamst": 33, "deleteresult": 7, "deliveri": 44, "delta": 51, "demonstr": 44, "denot": 39, "depend": [53, 55], "deploi": [6, 7, 8, 16, 33, 39, 49, 54, 55], "deploy": [6, 7, 8, 10, 12, 42, 43, 52, 53, 54, 55], "deploy_metadata": 6, "deploy_param": 7, "deploy_respons": 49, "deploy_time_param": [5, 6, 43, 44, 49], "deploycallarg": [], "deploycallargsdict": [], "deploycreatecallarg": [], "deploycreatecallargsdict": [], "deployment_metadata": [8, 42, 44], "deployment_result": 44, "deploymentfailederror": [], "deployrespons": [], "deprec": [17, 53], "depth": [19, 47], "desc": 10, "describ": [9, 12, 44, 54], "descript": [0, 10, 17, 51, 55], "design": [44, 54, 55], "desir": [44, 55], "despit": 55, "destroi": [14, 35, 36, 37, 51, 54], "destruct": [35, 37], "detail": [0, 16, 27, 33, 42, 43, 45, 48, 50, 51, 53, 54, 55], "detect": [44, 51], "determin": [16, 44, 51, 55], "develop": [0, 19, 43, 47, 51, 53, 54], "devnet": 16, "diagnos": 54, "dict": [0, 2, 4, 5, 6, 8, 9, 10, 21, 25, 28, 29, 30, 35, 40, 43, 44, 50], "dictifi": [6, 9, 10], "dictionari": [4, 9, 10, 21, 35, 40], "did": 44, "differ": [6, 7, 10, 39, 40, 43, 44, 47, 50, 51, 53, 55], "difficult": 51, "dilut": 35, "direct": [50, 55], "directli": [22, 39, 41, 42, 43, 44, 45, 46, 48, 50, 54, 55], "directori": [9, 19, 47], "disabl": 51, "discov": [6, 51, 55], "disk": 9, "dispens": [0, 2, 16, 17, 23, 49, 54, 55], "dispenser_access_token_kei": 17, "dispenser_account": [0, 49, 52], "dispenser_account_nam": 23, "dispenser_api": [], "dispenser_api_cli": [0, 16, 18, 38], "dispenser_asset": 17, "dispenser_cli": [0, 17, 52], "dispenser_from_environ": [0, 39, 52, 55], "dispenser_mnemon": [0, 52], "dispenser_request_timeout": 17, "dispenser_send": [0, 52], "dispenser_via_kmd": 39, "dispenseraddress": [0, 52], "dispenserapiconfig": 17, "dispenserasset": 17, "dispenserassetnam": 17, "dispenserfundrespons": [17, 48], "dispenserlimitrespons": [17, 48], "dispos": 52, "distribut": 51, "diverg": 44, "divis": [14, 35], "do": [39, 40, 43, 44, 51, 55], "doc": [0, 6, 17, 40, 43, 48, 51, 53, 54], "document": [38, 40, 41, 50, 53], "doe": [19, 39, 44, 47, 51], "doesn": [0, 37, 39, 43, 44, 46, 52], "domain": [54, 55], "don": [35, 39, 43, 51, 53, 55], "done": [39, 43, 44, 48], "doubl": 40, "driven": 53, "duck": 33, "due": 55, "duplic": 42, "dure": [4, 5, 6, 12, 40, 43, 55], "dynam": [51, 54], "e": [0, 7, 14, 19, 27, 39, 40, 43, 44, 45, 46, 48, 51, 52, 54, 55], "each": [9, 35, 39, 44, 47, 48, 54], "earn": 0, "easi": [3, 40, 41, 44, 50], "easier": [2, 43, 44, 53, 54, 55], "easili": [0, 51, 52, 54], "effect": 51, "effici": 51, "effort": 54, "either": [3, 10, 16, 23, 39, 40, 42, 43, 44, 46, 50, 51, 52, 54], "element": 9, "elig": 0, "emit": [40, 43], "empti": [3, 9, 21, 35, 51], "enabl": [19, 43, 47, 51], "encapsul": 55, "encod": [2, 4, 10, 23, 25, 29, 35, 39, 42, 43, 44, 49], "encount": 8, "end": [5, 44, 54], "endpoint": [47, 48, 51], "enforc": 40, "enhanc": 50, "ensur": [0, 24, 41, 51, 55], "ensure_budget": 51, "ensure_fund": [0, 49, 54], "ensure_funded_from_environ": [0, 52], "ensure_funded_from_testnet_dispenser_api": [0, 52], "ensure_zero_bal": [14, 37, 45], "ensurebalanceparamet": [], "ensurebudget": 51, "ensurefundedfromtestnetdispenserapiresult": 0, "ensurefundedrespons": 52, "ensurefundedresult": 0, "enter": 41, "entri": [9, 10, 55], "entrypoint": [40, 54, 55], "enum": [6, 9, 10, 13, 17, 29, 38], "env": [0, 39], "environ": [0, 3, 16, 17, 39, 40, 44, 45, 46, 47, 48, 52, 53, 54], "ephemer": 52, "equival": [39, 54, 55], "error": [0, 4, 6, 10, 16, 22, 35, 38, 40, 46, 51, 53, 54, 55], "error_messag": [10, 43], "error_str": 21, "escrow": 23, "especi": 40, "etc": [0, 22, 40, 41, 42, 44, 47, 55], "eval": 43, "evalu": 51, "even": [40, 51], "event": 10, "eventarg": 10, "ever": 35, "everi": 53, "evolv": 44, "exact": [40, 44, 51], "exactli": [19, 44], "exampl": [0, 3, 5, 6, 7, 8, 9, 14, 16, 17, 21, 24, 33, 35, 36, 37, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53], "exceed": [47, 51], "except": [2, 4, 5, 17, 35, 39, 40, 43, 48, 51], "exclus": 40, "exec_trac": 28, "exec_trace_config": [35, 47, 51], "exece": 51, "execut": [0, 10, 19, 35, 39, 40, 44, 51, 52, 55], "execute_atc_with_logic_error": 55, "exhaust": 43, "exist": [0, 6, 7, 12, 16, 35, 36, 37, 39, 41, 43, 44, 46, 55], "existing_account": 39, "existing_deploy": [6, 7, 33, 44], "exit": 21, "expect": [3, 51, 55], "experi": [43, 51, 53, 55], "expir": 40, "explain": 44, "explicit": [24, 44, 54, 55], "explicitli": [41, 44, 51, 55], "export": [5, 9], "export_source_map": [5, 7, 43], "expos": [39, 40, 43, 54, 55], "expose_logic_error": 43, "express": [39, 41], "extend": [2, 40, 47, 50], "extens": 47, "extern": 39, "extra": [0, 5, 14, 25, 35, 37, 47, 54, 55], "extra_fe": [0, 5, 14, 35, 36, 37, 39, 40, 45, 52], "extra_opcode_budget": [35, 47, 51], "extra_pag": [35, 36], "extra_program_pag": [5, 25, 35, 36, 37], "extract": 40, "extrafe": 37, "f": [42, 46, 48, 49], "face": 41, "facilit": 52, "fact": [40, 55], "factori": [7, 16, 42, 49, 50, 54, 55], "fail": [6, 8, 12, 17, 35, 40, 43, 44], "failur": 46, "failure_messag": 28, "fair": 39, "fairli": 39, "fall": 55, "fallback": 16, "fals": [4, 6, 7, 9, 19, 33, 35, 36, 37, 43, 44, 47, 49, 51], "famili": 50, "featur": [39, 51, 53, 55], "fee": [0, 5, 6, 14, 24, 35, 37, 39, 40, 43, 50, 52, 54], "fee_micro_algo": [], "fetch": 44, "few": 41, "field": [0, 4, 10, 37, 43, 44, 48, 50, 51, 52, 55], "file": [0, 9, 19, 47, 53, 54], "filter": [0, 2, 5, 43], "filter_func": 5, "final": 44, "find": [0, 2, 5, 40, 43], "first": [0, 3, 5, 14, 35, 40, 44, 46, 48, 49, 52, 55], "first_valid_round": [0, 5, 14, 35, 36, 37, 39, 40, 52], "fix": [5, 51], "fixtur": 49, "flag": [0, 5, 10, 16, 43], "float": [3, 19], "fluentli": 51, "fly": 43, "focu": 50, "folder": 47, "follow": [35, 39, 40, 43, 44, 46, 47, 49, 52, 53, 54, 55], "forc": [6, 7], "foreign": [29, 51, 55], "foreign_app": [], "foreign_asset": [], "format": [4, 5, 6, 8, 30, 41, 43], "fortun": 51, "forward": [39, 55], "found": [0, 2, 5, 8, 12, 46], "framework": 44, "free": [0, 16, 40, 46, 52, 54], "freez": [14, 35, 36, 37, 45, 49, 51, 55], "freeze_address": [35, 36], "freezeaddress": 37, "fresh": [40, 43, 44], "fresh_account_via_kmd": 39, "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 16, 17, 21, 22, 35, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "from_account": 55, "from_algo": [0, 24, 35, 36, 39, 41, 49, 53, 55], "from_arc32": [10, 55], "from_atr": [], "from_client": [3, 40, 54], "from_composer_result": 37, "from_config": [3, 40, 54], "from_creator_and_nam": [5, 33, 43, 53], "from_deploy_result": 7, "from_dict": 10, "from_environ": [0, 3, 39, 40, 53, 54, 55], "from_json": [5, 9, 10, 55], "from_kmd": [0, 39], "from_micro_algo": [0, 24, 35, 36, 39, 41, 51], "from_microalgo": 43, "from_mnemon": [0, 39, 55], "from_network": [5, 33, 43], "from_signatur": 51, "fromsignatur": 51, "frozen": [14, 35, 36, 37, 40, 45, 50], "full": [0, 5, 23, 27, 35, 37, 53], "full_url": 27, "fulli": [51, 54, 55], "func": [19, 33], "function": [0, 3, 6, 7, 8, 14, 19, 22, 23, 37, 39, 40, 41, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55], "fund": [0, 2, 5, 17, 39, 49, 52, 54], "fund_app_account": [5, 43, 49, 55], "fund_with": [0, 2, 39], "fund_with_algo": [], "fundament": 45, "fundappaccountparam": [5, 43, 49], "funded_account": 49, "funding_sourc": [], "further": [40, 43, 54], "furthermor": 44, "futur": [5, 7, 40, 55], "g": [0, 14, 19, 27, 40, 43, 44, 45, 46, 51, 54, 55], "gener": [0, 5, 7, 9, 33, 37, 38, 39, 40, 47, 51, 52, 54], "generate_account": 0, "generate_test_asset": 49, "genesi": [16, 46], "genesis_hash": [16, 46], "genesis_id": [16, 46], "genesis_id_is_localnet": 16, "genproto": 33, "get": [0, 2, 3, 4, 5, 6, 7, 8, 10, 16, 17, 23, 35, 37, 40, 43, 44, 46, 49, 50, 51, 52, 54, 55], "get_abi_decoded_valu": 4, "get_abi_encoded_valu": 4, "get_abi_return": [8, 42], "get_abi_struct_from_abi_tupl": [4, 10], "get_abi_tuple_from_abi_struct": 4, "get_abi_tuple_type_from_abi_struct_definit": 4, "get_account": [0, 55], "get_account_from_mnemon": 55, "get_account_inform": [14, 45, 49], "get_al": [43, 55], "get_algod_cli": [16, 46, 55], "get_algod_client_from_environ": [16, 46], "get_algod_config_from_environ": [16, 46], "get_algonode_config": [16, 46], "get_app_client_by_creator_and_nam": [7, 16, 43, 53], "get_app_client_by_id": [7, 16, 43, 53], "get_app_client_by_network": 16, "get_app_factori": [16, 43, 49, 51], "get_app_id_from_tx_id": [], "get_arc56_method": 10, "get_arc56_valu": 4, "get_box_nam": [5, 8, 42, 43], "get_box_refer": [8, 42], "get_box_valu": [5, 8, 42, 43, 49, 55], "get_box_value_from_abi_typ": [5, 8, 42, 43], "get_box_values_from_abi_typ": [5, 8, 42, 43], "get_by_id": [8, 14, 42, 45], "get_compilation_result": [8, 42], "get_config_from_environment_or_localnet": [16, 46], "get_constant_block_offset": 5, "get_creator_app": [], "get_creator_apps_by_nam": [6, 44], "get_decoded_approv": 10, "get_decoded_clear": 10, "get_default_localnet_config": [16, 46], "get_dispenser_account": 55, "get_global_st": [5, 8, 42, 43, 55], "get_indexer_cli": [16, 46, 55], "get_indexer_client_from_environ": [16, 46], "get_indexer_config_from_environ": [16, 46], "get_inform": 0, "get_kmd_client": [16, 46], "get_kmd_client_from_algod_cli": [], "get_kmd_client_from_environ": [16, 46], "get_kmd_config_from_environ": 16, "get_kmd_wallet_account": [], "get_limit": [17, 48], "get_line_for_pc": 21, "get_local_st": [5, 8, 42, 43, 55], "get_localnet_default_account": 55, "get_localnet_dispenser_account": [2, 39], "get_map": 43, "get_map_valu": [43, 55], "get_next_vers": [], "get_null_logg": [19, 47], "get_or_create_kmd_wallet_account": [], "get_or_create_wallet_account": [2, 39], "get_sender_from_sign": [], "get_sign": [0, 35, 39, 51], "get_signer_send": [], "get_suggested_param": [3, 35, 40, 51], "get_testnet_dispens": [16, 48], "get_testnet_dispenser_from_environ": [0, 48, 52], "get_typed_app_client_by_creator_and_nam": [16, 53], "get_typed_app_client_by_id": [16, 53], "get_typed_app_client_by_network": 16, "get_typed_app_factori": [16, 53], "get_valu": [43, 55], "get_wallet_account": [2, 39], "getenv": 55, "git": 10, "github": [6, 9, 10, 17, 35], "give": [40, 43, 53, 55], "given": [0, 2, 3, 4, 6, 7, 14, 19, 23, 24, 33, 35, 39, 40, 44, 46, 47, 52, 53, 54, 55], "global": [5, 8, 9, 10, 25, 35, 43, 44, 51, 55], "global_byte_slic": [6, 7, 25, 35, 36, 37, 44], "global_int": [6, 7, 25, 35, 36, 37, 44], "global_schema": [], "global_st": [5, 8, 10, 25, 42, 43, 55], "global_state_schema": 9, "gnu": 19, "gnumer": 19, "go": [39, 43], "goal": [44, 54], "good": [7, 54], "gradual": 55, "great": 51, "group": [3, 14, 35, 36, 37, 47, 50, 51, 52, 55], "group_id": [35, 37, 50], "guid": [40, 54], "guidanc": [0, 40], "guidelin": 55, "ha": [0, 12, 14, 31, 37, 39, 40, 41, 43, 44, 51, 52, 53, 54, 55], "had": [43, 44, 55], "hand": 53, "handl": [0, 5, 9, 44, 46, 50, 51, 52, 54, 55], "happen": [43, 51], "hash": [10, 14, 16, 23, 25, 35, 42, 45, 46], "have": [0, 6, 19, 35, 39, 40, 43, 44, 46, 51, 52, 53, 54, 55], "haven": 5, "heartbeat": 0, "heavi": 44, "heavyweight": 44, "held": [0, 14, 45], "hello": [5, 7, 49, 53], "hello_world_app": 53, "helloarg": 53, "helloworldapp": 53, "helloworldappcli": 53, "helloworldappfactori": 53, "help": [40, 44, 49, 54, 55], "helper": [16, 41, 49], "henc": 55, "here": [37, 39, 48, 49, 51, 52], "hexadecim": 44, "hierarch": 55, "hierarchi": 19, "high": [5, 35, 40, 43, 50, 51, 54, 55], "higher": [42, 43, 44, 52, 54], "highest": 50, "highli": [50, 54], "hint": [9, 54, 55], "hit": 44, "hold": [14, 16, 23, 35, 39, 51], "holder": 14, "holderaddress": 37, "hood": 51, "how": [0, 9, 19, 39, 40, 44, 48, 49, 50, 51, 53], "howev": [51, 53, 55], "http": [0, 6, 9, 10, 17, 27, 35, 36, 46, 49, 54], "human": 43, "i": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 16, 17, 19, 23, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55], "id": [5, 6, 7, 8, 10, 14, 16, 17, 25, 35, 37, 40, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 55], "ideal": [0, 40], "idempot": [2, 6, 7, 39, 43, 52, 53, 54, 55], "ident": 55, "identifi": [0, 5, 8, 19, 39, 44], "ignor": [5, 6, 7, 16, 33, 47], "ignore_cach": [5, 6, 7, 16, 33, 43, 44], "immedi": [40, 51, 52], "immut": [8, 43, 44, 54], "implement": [2, 31, 44], "impli": 55, "implicit": 55, "import": [5, 7, 22, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 51, 53, 54, 55], "import_source_map": [5, 7, 43], "improv": 55, "incent": 0, "incentive_elig": 0, "includ": [0, 3, 5, 6, 7, 14, 16, 19, 35, 36, 37, 40, 42, 43, 44, 45, 46, 47, 50, 51, 52, 54], "incorrect": 43, "incorrectli": 52, "increas": [44, 51], "increaseopcodebudget": 51, "increment": [0, 44, 55], "indefinit": 55, "indent": [9, 10], "index": [3, 6, 7, 16, 27, 29, 35, 37, 40, 43, 44, 46, 49, 54, 55], "indexer_cli": [16, 40, 46], "indexer_config": [3, 27, 40, 54], "indexer_if_pres": 16, "indexer_serv": 16, "indexercli": [3, 6, 16, 27, 46], "indic": [5, 16, 19, 44, 47, 48], "individu": [43, 47, 48], "infer": 39, "info": [4, 10, 35, 42, 45, 50], "inform": [0, 5, 6, 8, 10, 14, 16, 39, 40, 43, 44, 47, 49, 51, 53, 54, 55], "init": 53, "initi": [2, 9, 10, 21, 35, 48, 52, 54, 55], "initialis": 40, "inject": [39, 54], "inlin": 46, "inner": [10, 35, 40], "inner_transaction_count": 10, "input": [19, 43], "insid": 47, "inspect": 48, "instanc": [0, 5, 6, 7, 8, 10, 16, 19, 23, 24, 35, 37, 39, 42, 43, 44, 47, 49, 51, 52, 54, 55], "instanti": [16, 39, 40, 42, 43, 44, 45, 46, 51, 55], "instead": [7, 39, 40, 44, 51, 55], "int": [0, 3, 4, 5, 6, 7, 8, 9, 10, 14, 16, 17, 19, 21, 23, 24, 25, 27, 28, 29, 30, 33, 35, 37, 40, 41, 42, 43, 45, 49, 50, 51], "intact": 39, "intcblock": 5, "integ": [10, 25, 41], "intellisens": [40, 53, 54], "intention": 40, "intenum": [17, 29], "interact": [5, 7, 8, 17, 42, 43, 45, 48, 52, 53, 54, 55], "interfac": [5, 35, 50, 54], "intern": 39, "interpol": 41, "interpret": 50, "intflag": 9, "introduc": 55, "intuit": [54, 55], "invalid": [4, 5, 6, 8, 35], "invoc": 53, "invok": [44, 48, 51, 53], "is_clear": 43, "is_localnet": [16, 46], "is_mainnet": [16, 46], "is_success": 4, "is_testnet": [16, 46], "isn": [0, 16, 51], "iso": 47, "issu": [39, 43, 48, 52, 54, 55], "iter": [9, 21, 35], "its": [4, 43, 44, 49], "itself": [43, 44, 55], "j": [30, 44], "java": 19, "json": [5, 30, 43, 47, 49, 53], "jsonformatarc2not": 30, "just": 55, "k": [9, 21, 35], "keep": [0, 39, 42, 44, 48], "kei": [0, 2, 9, 10, 21, 23, 25, 29, 35, 36, 37, 39, 40, 43, 44, 45, 50, 51, 52, 54, 55], "key_base64": [25, 42], "key_nam": 55, "key_raw": [25, 42], "key_typ": [10, 43], "keyboard": 40, "keyreg": 30, "keyregtxn": 30, "keyword": [9, 21, 35], "kmd": [0, 2, 3, 16, 40, 46, 52, 54, 55], "kmd_account_manag": [0, 1, 38, 39], "kmd_client": [40, 46], "kmd_config": [3, 27, 40, 54], "kmd_manag": 0, "kmdaccount": 2, "kmdaccountmanag": [0, 2, 22, 39], "kmdclient": [2, 3, 16, 46], "know": 43, "knowledg": 43, "known": [40, 43, 46, 55], "kw_onli": 50, "kwarg": [9, 21, 33, 35], "kwd": [], "lack": 43, "lambda": [0, 36, 39, 45, 51], "languag": [43, 44, 51], "larg": [54, 55], "last": [0, 3, 5, 14, 35, 37, 40, 47, 50], "last_heartbeat": 0, "last_propos": 0, "last_round": 47, "last_valid_round": [0, 5, 14, 40], "lastvalid": 40, "later": [0, 3], "latest": [12, 40, 44, 55], "leas": [0, 5, 14, 35, 36, 37, 39, 40, 42, 45, 52], "least": [51, 55], "led": 43, "left": 40, "less": [53, 55], "let": [43, 54], "level": [5, 19, 22, 35, 39, 43, 50, 51, 54, 55], "leverag": [40, 51, 53, 54, 55], "librari": [35, 54], "lifecycl": [49, 54], "lift": 44, "like": [0, 6, 7, 8, 19, 40, 42, 43, 44, 46, 51, 54, 55], "likelihood": 44, "limit": [17, 19, 35, 43, 44, 51, 54], "line": [21, 43], "line_no": [21, 43], "link": 55, "list": [0, 4, 5, 8, 9, 10, 14, 21, 23, 30, 35, 37, 40, 43, 45, 47, 50], "list_of_op_cod": 43, "liter": [6, 9, 10, 16, 30], "ll": [39, 43, 49], "load": [0, 2, 3, 5, 17, 39, 42, 46, 49, 52], "local": [0, 5, 8, 9, 10, 16, 25, 35, 39, 43, 44, 51, 55], "local_byte_slic": [6, 7, 25, 35, 36, 37, 44], "local_int": [6, 7, 25, 35, 36, 37, 44], "local_schema": [], "local_st": [8, 10, 42, 43, 55], "local_state_schema": 9, "localhost": 27, "localnet": [0, 2, 3, 16, 39, 40, 44, 46, 49, 51, 52, 53, 54], "localnet_dispens": [0, 39, 49, 55], "localnet_dispenser_account": 39, "locat": 10, "lock": [0, 52, 53], "log": [0, 19, 35, 40, 50, 51], "logger": [19, 47, 54], "logic": [0, 23, 39, 44, 46, 54], "logic_error": [20, 38, 43], "logic_error_str": [21, 43], "logic_sig": 0, "logicerror": [21, 43], "logicerrordata": 21, "logicsig": [0, 23, 39], "logicsigaccount": [0, 3, 23, 31, 39, 55], "logicsigtransactionsign": 23, "login": 17, "long": 40, "longer": [44, 55], "look": [0, 7, 14, 40, 43, 44, 55], "lookup": [5, 6, 7, 16, 43, 54], "loos": 55, "loss": [39, 52], "low": [39, 55], "lsig": [23, 39], "m": 30, "ma": [35, 36], "made": [40, 44, 51], "mai": [9, 37, 40, 43, 44, 51, 55], "main": [6, 10, 17, 35, 39, 40, 54, 55], "mainnet": [3, 7, 16, 39, 40, 44, 46, 54, 55], "maintain": [44, 52, 55], "major": [10, 55], "make": [0, 2, 37, 39, 41, 43, 46, 48, 52, 53, 54, 55], "makemultisigaccounttransactionsign": 39, "manag": [0, 2, 5, 6, 8, 14, 16, 19, 23, 35, 36, 37, 43, 44, 45, 47, 49, 52, 53, 54], "manager_address": [35, 36], "manageraddress": 37, "mani": [39, 40, 52, 53], "manner": 54, "manual": [0, 39, 43, 46, 47, 50, 53], "map": [5, 7, 8, 9, 10, 16, 21, 25, 29, 35, 42, 43, 44, 47, 55], "map1": 43, "map_dict": 43, "map_nam": [43, 55], "map_valu": [43, 55], "mapkei": 43, "match": [2, 14, 39, 54], "max": [0, 37, 39, 40, 44, 51, 52], "max_fe": [0, 5, 6, 14, 35, 36, 37, 39, 40, 45, 51, 52], "max_fee_micro_algo": [], "max_rounds_to_wait": [30, 35, 52], "max_rounds_to_wait_for_confirm": [37, 39, 40], "max_search_depth": [19, 47], "maxfe": 51, "maximum": [0, 5, 6, 14, 19, 35, 47, 51], "mb": 47, "mbr": 49, "md": [6, 10, 17, 35], "mean": [44, 47, 55], "mechan": [42, 43, 44, 50, 54], "megabyt": [19, 47], "member": [17, 29], "mental": [7, 43], "merg": 0, "messag": [10, 21, 40, 43, 48, 55], "metadata": [0, 3, 6, 7, 8, 14, 23, 35, 40, 42, 45, 54], "metadata_hash": [14, 35, 37, 45], "metadatahash": 37, "meth": 33, "method": [0, 3, 4, 5, 7, 8, 9, 10, 16, 35, 36, 37, 39, 40, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "method_arg": 36, "method_cal": [35, 40], "method_nam": 8, "method_name_or_signatur": 10, "methodarg": 10, "methodcallparam": [35, 40], "methodconfigdict": 9, "methoddict": 9, "methodhint": 9, "methodnam": 53, "methodt": 5, "micro_algo": [24, 37, 41], "microalgo": [40, 41, 48, 52, 54], "might": [19, 47, 55], "migrat": 54, "millisecond": 3, "min_bal": 0, "min_funding_incr": [0, 49, 52], "min_funding_increment_micro_algo": [], "min_spending_bal": [0, 49, 52], "min_spending_balance_micro_algo": [], "mind": [33, 48], "minim": [43, 52], "minimis": 51, "minimum": [0, 35, 43, 51, 52], "minor": 10, "miss": [0, 4, 5], "mistak": 41, "mnemon": [0, 39, 52, 54, 55], "mode": [19, 43, 47, 55], "model": [0, 2, 3, 4, 5, 6, 7, 8, 14, 16, 21, 22, 33, 35, 37, 38, 43, 49], "modifi": [17, 35], "modul": [22, 54, 55], "modular": [41, 46, 54], "more": [7, 14, 22, 35, 37, 39, 40, 42, 43, 44, 45, 49, 51, 53, 54, 55], "most": [40, 47, 55], "move": 55, "much": [19, 41, 43], "multi_sig": 0, "multipl": [5, 6, 8, 40, 43, 44, 46, 50, 51, 52, 53], "multisig": [0, 23, 39, 54], "multisig_param": [0, 23], "multisigaccount": [0, 3, 23, 31, 39, 55], "multisigaddress": 39, "multisigmetadata": [0, 23, 39], "multisigtransact": 23, "must": [17, 29, 35, 41, 44], "mutual": 40, "my": [5, 43, 47], "my_account": 0, "my_account_mnemon": [0, 55], "my_app": [6, 7], "my_box": 42, "my_default_sign": 39, "my_factori": 44, "my_method": [5, 7, 50, 51], "my_method2": 5, "my_method_cal": 5, "my_other_method": 51, "myalgodnod": 46, "myapp": 44, "myappclient": 16, "myappfactori": 16, "myasset": [35, 36], "mycontractcli": 53, "mycontractfactori": 53, "mymap": 43, "mymethod": 51, "mypi": 54, "n": 44, "name": [0, 2, 4, 5, 6, 7, 8, 9, 10, 14, 16, 19, 21, 29, 35, 37, 39, 42, 43, 45, 47, 51, 53, 54, 55], "name_base64": 29, "name_raw": 29, "namespac": 19, "nativ": 54, "natur": [19, 44], "necess": 55, "need": [0, 2, 37, 39, 40, 41, 43, 44, 46, 47, 48, 50, 51, 52, 53, 55], "nest": [5, 7, 19], "network": [0, 3, 5, 8, 10, 16, 26, 35, 38, 39, 40, 44, 51, 54], "network_cli": [], "network_detail": 16, "networkdetail": 16, "never": [0, 9, 41], "new": [0, 3, 5, 7, 9, 12, 14, 16, 17, 21, 23, 35, 36, 37, 39, 40, 43, 44, 46, 53, 55], "new_account": [23, 39, 49], "new_arg1": [35, 36], "new_arg2": 36, "new_clawback_address": [35, 36], "new_freeze_address": [35, 36], "new_group": [3, 14, 36, 37, 40, 45, 51, 52, 55], "new_manager_address": [35, 36], "new_reserve_address": [35, 36], "new_send": 5, "new_signer_account": 39, "new_valu": 37, "newaddress": [0, 39], "newli": [7, 37], "newsigneraccount": 0, "nice": 41, "no_op": [9, 10], "node": 35, "non": [0, 14, 21, 37, 44, 47, 51, 53], "nondefaultappnam": 43, "none": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 16, 17, 19, 21, 23, 25, 27, 28, 30, 33, 35, 37, 40, 43, 44, 45, 49, 50, 51, 52], "noop": 10, "noopoc": [35, 36], "normal": [5, 9, 37, 52], "normalise_app_spec": 5, "note": [0, 5, 6, 7, 14, 30, 35, 36, 37, 39, 40, 42, 43, 44, 45, 50, 51, 52, 53, 54, 55], "note_prefix": [], "noth": [12, 19, 44, 54], "notic": 55, "notset": 19, "now": [39, 55], "null": 19, "num_extra_program_pag": [], "number": [0, 2, 3, 5, 6, 10, 16, 19, 24, 25, 35, 39, 40, 41, 43, 44, 45, 46, 51, 52, 54], "number_of_transact": 24, "o": [48, 55], "object": [4, 9, 21, 23, 24, 28, 35, 39, 40, 41, 43, 44, 45, 46, 47, 48, 51, 52, 54, 55], "obtain": [48, 53, 55], "occur": [4, 43, 48], "offici": [0, 40, 53], "offlin": [0, 35, 36, 37, 39, 51], "offline_key_registr": [36, 37], "offlinekeyregistrationparam": [35, 36, 37, 40, 51], "offset": [5, 10], "often": [43, 52], "old": [12, 44], "older": [53, 55], "oldest": 47, "on_complet": [5, 7, 35, 36, 37, 42, 43], "on_schema_break": [6, 7, 33, 44], "on_upd": [6, 7, 33, 44], "onc": [40, 43, 46], "oncomplet": [5, 9, 35, 36, 37, 43], "oncompleteactionnam": 9, "oncompletecallparamet": [], "oncompletecallparametersdict": [], "oncompletionactionnam": 9, "ondelet": 44, "one": [0, 7, 9, 21, 35, 37, 39, 40, 41, 43, 44, 46, 49, 50, 51, 52, 53, 54, 55], "onli": [9, 16, 33, 37, 40, 43, 44, 52, 55], "onlin": [0, 35, 36, 37, 51], "online_key_registr": [36, 37], "onlinekeyregistrationparam": [35, 36, 37, 40, 51], "onschemabreak": [6, 7, 12, 33, 44], "onupd": [6, 7, 12, 33, 44], "op": 43, "opcod": [35, 43, 47, 51], "oper": [0, 5, 6, 7, 19, 35, 36, 37, 39, 40, 41, 44, 47, 54, 55], "operation_perform": [6, 7, 44], "operationperform": [6, 7, 12, 44], "opinion": 44, "opt": [0, 14, 35, 36, 37, 40, 43, 44, 49, 51, 54, 55], "opt_in": [9, 10, 43, 55], "opt_out": [], "optim": [47, 50, 51], "optin": [10, 43], "optinoc": [35, 37], "option": [0, 2, 5, 6, 7, 10, 14, 16, 30, 35, 39, 40, 42, 43, 44, 45, 46, 51, 52, 54], "orchestr": 37, "order": [39, 42, 43, 44, 52, 54, 55], "org": 0, "organ": [19, 54], "origin": [12, 42, 43, 44], "other": [0, 2, 3, 7, 35, 39, 40, 42, 43, 44, 51, 54], "otherwis": [2, 4, 8, 16, 42, 43, 54], "out": [9, 12, 14, 35, 36, 37, 40, 41, 43, 44, 46, 51, 52, 54], "outcom": 50, "outlin": 55, "output": [44, 47, 53, 54], "outsid": 44, "over": [2, 43, 44, 54, 55], "overal": 51, "overhead": 51, "overrid": [2, 5, 40, 43], "overridden": 5, "overriddenappnam": 43, "overspend": 40, "overview": 55, "overwrit": 0, "overwrite_exist": 0, "own": [43, 44], "packag": [19, 47], "page": [0, 5, 25, 35, 38, 42, 43, 54], "pai": [40, 51], "paid": [51, 52], "pair": [9, 21, 35, 39, 44], "parallel": 44, "param": [3, 5, 7, 8, 23, 35, 36, 37, 40, 43, 44, 51, 52, 55], "paramet": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 16, 17, 19, 23, 24, 30, 35, 36, 37, 39, 43, 46, 47, 51, 52, 54, 55], "parent": [40, 51], "pariti": 55, "pars": [8, 42, 43, 50, 55], "parse_logic_error": 21, "parsed_app_spec": 43, "parsed_arc32_or_arc56_app_spec": 43, "parsed_valu": 50, "part": [40, 54], "partial": [0, 23], "particip": [0, 35], "particular": [14, 40, 45], "particularli": [43, 44, 51, 52], "pass": [0, 5, 17, 33, 37, 39, 41, 42, 43, 44, 47, 48, 51, 52, 55], "past": 40, "patch": 10, "path": [9, 19, 47, 49, 53, 55], "pathlib": [9, 19], "pattern": [43, 55], "payload": 44, "payment": [3, 30, 35, 36, 37, 43, 47, 48, 50, 51, 54, 55], "payment_arg": 51, "paymentparam": [3, 35, 36, 37, 40, 51, 52], "paymenttxn": 30, "pc": [10, 21, 43], "pc_offset_method": 10, "pcoffsetmethod": 10, "pend": 0, "pending_reward": 0, "pending_transaction_info": 8, "pep": 33, "per": [0, 41, 44, 50, 52], "perform": [0, 6, 7, 14, 35, 39, 41, 43, 47, 48, 51, 54, 55], "period": [19, 40, 47], "perman": [8, 39, 43, 44, 54], "persist": 47, "persist_sourcemap": 47, "persistsourcemapinput": [], "pin": 53, "pip": 54, "place": [14, 17, 35, 45], "placehold": [6, 7], "pleas": [0, 6, 35, 40, 55], "poetri": 54, "point": [3, 16, 40, 43, 54, 55], "popul": [19, 35, 40, 43, 47, 55], "populate_app_call_resourc": [19, 30, 35, 40, 44, 47, 51], "populateappcallresourc": 40, "port": [3, 16, 27, 54], "posit": 5, "possibl": [39, 43, 54, 55], "post": 40, "potenti": [41, 55], "power": [39, 51, 55], "practic": [44, 54], "pragma": 42, "pre": [16, 39, 40, 43, 44, 54, 55], "preced": [17, 48], "predic": [0, 2], "prefer": [37, 46, 54], "prefix": [10, 43], "prepar": [35, 51], "prepare_group_for_send": 35, "presenc": 33, "present": [0, 23, 39, 40, 43, 44, 52, 53, 55], "prevent": [35, 40], "prevent_account_from_ever_participating_again": [35, 36, 37], "previou": 39, "previous": [0, 44, 53, 55], "primarili": 33, "primit": [50, 54], "principl": [41, 44, 46], "print": [37, 46, 48, 53], "prior": 9, "privat": [0, 2, 23, 39, 52], "private_kei": [0, 2, 3, 5, 23], "problem": 55, "process": [0, 19, 39, 44, 51], "produc": 46, "product": [0, 43, 53, 54], "program": [0, 3, 5, 6, 7, 8, 9, 10, 12, 16, 21, 23, 25, 35, 37, 39, 43, 44], "program_counter_valu": 43, "programmat": 52, "programsourceinfo": 10, "project": [19, 43, 47, 54], "project_root": [19, 47], "proof": 35, "properli": 44, "properti": [0, 3, 4, 5, 6, 7, 16, 19, 23, 24, 30, 31, 36, 39, 40, 41, 43, 44, 54, 55], "propos": 0, "proto": 33, "protocol": [0, 3, 22, 38], "provid": [0, 2, 5, 7, 8, 9, 16, 22, 23, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55], "public": [23, 35, 44, 54, 55], "public_kei": 23, "pull": 9, "purpos": 55, "put": 54, "puya": 10, "py": [6, 9, 19, 27, 47, 53, 55], "pypi": 54, "pyteal": 53, "pytest": [49, 54], "python": [3, 19, 22, 41, 44, 47, 50, 51, 53, 55], "qualiti": 44, "queri": [7, 44], "quicker": 54, "quickli": [40, 55], "rais": [0, 2, 4, 5, 6, 8, 10, 14, 16, 17, 35, 37, 48, 51, 55], "ramp": 53, "randint": 49, "random": [0, 2, 23, 39, 49], "randomli": 39, "rather": [0, 39, 41, 43, 44, 51, 55], "raw": [4, 5, 8, 23, 25, 29, 30, 35, 41, 42, 44, 50, 55], "raw_stat": 42, "raw_valu": 4, "re": [6, 7, 43], "read": [0, 10, 19, 40, 54], "read_byt": 10, "read_onli": 9, "read_text": 49, "readabl": 43, "readi": 35, "readonli": [10, 51], "realli": 44, "reason": [43, 44], "rebuild": 35, "rebuilt": 35, "receiv": [3, 35, 36, 37, 40, 43, 46, 48, 49, 50, 51, 52, 55], "receiver_address": [35, 36, 48], "receiver_bal": 49, "receiveraddress": [3, 36, 37, 40, 52], "recogn": 33, "recognis": 16, "recommend": [10, 40, 42, 43, 44, 51, 53, 54, 55], "recompil": 55, "reconfigur": [36, 51], "record": [14, 44], "reduc": [6, 40, 44], "redund": 55, "refer": [5, 6, 8, 16, 29, 35, 41, 44, 48, 49, 51, 55], "refin": 55, "reflect": 55, "refund": [17, 52, 54], "refund_txn_id": 17, "regener": 55, "regist": [0, 17, 37, 40, 52, 54], "registr": [35, 36, 37, 51], "regular": [0, 35], "reiter": 55, "rekei": [0, 2, 5, 14, 40, 52, 54], "rekey_account": [0, 39, 52], "rekey_to": [0, 5, 14, 36, 37, 39, 40, 52], "rekeyed_account": [0, 39], "rekeyto": 39, "rekeytoaddress": [36, 37, 52], "relat": [7, 39, 40, 55], "releas": [51, 54], "relev": [0, 14, 22, 40, 44, 51], "reli": 55, "reliabl": [41, 44, 54], "remain": [35, 52, 55], "remaind": 5, "rememb": 43, "remov": [47, 55], "renam": [39, 55], "replac": [6, 7, 8, 12, 43, 44], "replace_teal_template_deploy_time_control_param": [8, 44], "replace_template_vari": [8, 44], "replaceapp": 12, "repositori": 52, "repres": [0, 4, 7, 9, 10, 19, 24, 29, 37, 39, 47], "represent": [4, 43], "request": [16, 17, 44, 48], "request_timeout": [16, 17, 48], "requir": [0, 4, 6, 10, 35, 40, 43, 44, 48, 51, 52, 53, 55], "requisit": 44, "reserv": [14, 35, 36, 37, 45, 49], "reserve_address": [35, 36], "reserveaddress": 37, "reset": 0, "resolut": 55, "resolv": [7, 9, 16, 39, 43, 44, 46, 51, 53, 54, 55], "resolve_signer_send": [], "resourc": [19, 35, 40, 47], "respect": [51, 55], "respons": [0, 7, 35, 44, 47, 48, 50, 51, 53, 55], "rest": 0, "result": [0, 3, 4, 5, 6, 7, 8, 14, 35, 37, 39, 40, 41, 42, 43, 44, 45, 49, 51, 52, 53, 54, 55], "result2": 52, "retri": 54, "retriev": [0, 2, 3, 14, 16, 39, 44, 45, 52, 53, 54, 55], "retryabl": [44, 54], "return": [0, 2, 3, 4, 5, 6, 7, 8, 10, 14, 16, 17, 19, 23, 24, 27, 33, 35, 37, 39, 40, 41, 42, 43, 45, 46, 48, 49, 50, 51, 52, 55], "return_valu": [], "returntyp": [], "reus": 54, "reusabl": 54, "reward": 0, "reward_bas": 0, "risk": 43, "root": [19, 22, 35, 43, 47, 54], "round": [0, 3, 5, 14, 35, 40, 45, 47, 51], "rule": [35, 43], "run": [0, 2, 39, 52], "runtim": [33, 44], "runtime_check": 33, "safe": [24, 41, 44, 53, 54, 55], "safer": [41, 54], "safeti": [54, 55], "sake": 49, "same": [39, 40, 43, 44, 46], "sampl": 44, "scenario": [40, 43, 51, 53], "schema": [0, 5, 6, 7, 9, 10, 12, 35, 36, 37, 43, 44, 55], "scope": 49, "scratch": [10, 35], "scratch_vari": 10, "scratchvari": 10, "script": 52, "sdk": [16, 39, 44, 54], "seamlessli": 0, "search": [6, 19, 47], "second": [16, 17, 40, 44, 48], "secret": [0, 39], "secret_token": 46, "see": [0, 6, 9, 10, 33, 35, 41, 42, 43, 44, 46, 48, 52, 53, 54, 55], "seed": 39, "seen": 53, "selection_kei": [35, 36, 37], "selectionkei": 37, "self": [0, 3, 7, 33, 37, 44], "semant": [7, 42, 43, 50, 52, 54, 55], "semver": 44, "send": [0, 3, 5, 6, 7, 14, 30, 35, 37, 39, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55], "send_atomic_transaction_compos": 35, "send_param": [0, 5, 6, 7, 14, 33, 37, 40, 44, 45, 51, 52], "sendappcreatefactorytransactionresult": [7, 50], "sendappcreatetransactionresult": [6, 7, 37, 50], "sendappfactorytransactionresult": [7, 50], "sendapptransactionresult": [6, 7, 37, 44, 50], "sendappupdatefactorytransactionresult": [7, 50], "sendappupdatetransactionresult": [6, 7, 37, 50], "sendatomictransactioncomposerresult": [0, 35, 37], "sender": [0, 2, 3, 5, 6, 7, 14, 16, 35, 36, 37, 39, 40, 42, 43, 44, 48, 49, 50, 51, 52, 55], "sender2address": 43, "sender_address": [6, 7, 8, 17, 35, 36, 39], "senderaddress": [0, 3, 5, 36, 37, 39, 40, 43, 44, 52], "sendparam": [0, 5, 6, 7, 14, 30, 33, 35, 37, 40, 44, 45, 51, 52], "sendsingleassetcreatetransactionresult": [37, 50], "sendsingletransactionresult": [0, 5, 7, 37, 40], "sens": [37, 39, 52], "sensibl": 54, "sent": [0, 35, 44, 50, 51, 52], "separ": [19, 47], "sequenc": 5, "seri": [14, 40, 44, 54], "serialis": 43, "serv": 55, "server": [27, 46, 54], "servic": [0, 16, 27, 52], "set": [0, 3, 6, 7, 16, 17, 19, 22, 35, 37, 39, 40, 43, 44, 47, 48, 51, 52, 54, 55], "set_box": 49, "set_default_sign": [0, 3, 39], "set_default_validity_window": [3, 40], "set_sign": [0, 3, 39, 49], "set_signer_from_account": [0, 3, 39], "set_suggested_param": 40, "set_suggested_params_cach": 3, "set_suggested_params_cache_timeout": 3, "set_suggested_params_timeout": 40, "setdefaultsign": 40, "setsign": 40, "setsignerfromaccount": 40, "setup": 54, "sever": [42, 51], "share": 40, "short": 35, "shortcut": [40, 46], "should": [0, 5, 9, 19, 35, 39, 40, 44, 51, 52], "shouldn": [41, 44], "show": 43, "shown": 42, "sig": [23, 39], "sig_typ": 0, "sign": [0, 2, 3, 23, 39, 40, 43, 52, 54, 55], "signatur": [0, 33, 35, 39, 40, 43, 51], "signer": [0, 2, 3, 5, 7, 14, 16, 23, 31, 35, 37, 40, 42, 45, 49, 51, 52, 54], "signer_account": 0, "signeraccount": 5, "signerprivatekei": 5, "signifi": 40, "significantli": [39, 55], "signing_account": [0, 3, 23], "signingaccount": [0, 2, 3, 14, 23, 31, 39, 49, 55], "signmultisigtransact": 39, "similar": [51, 52, 53, 55], "simpl": [33, 53, 55], "simpler": 55, "simpli": [47, 55], "simplic": 49, "simplifi": [39, 55], "simul": [19, 21, 26, 35, 38, 40, 43, 47, 50, 54], "simulate_and_persist_respons": 47, "simulate_respons": [35, 50, 51], "simulateatomictransactionrespons": [], "simulatetraceconfig": [35, 51], "simulation_round": [35, 47, 51], "simulationtrac": [21, 28, 43], "sinc": [19, 39, 43, 44, 55], "singl": [7, 12, 19, 37, 43, 44, 50, 52, 53, 55], "singlesendtransactionresult": 40, "situat": 51, "size": [19, 47], "skip": [35, 44, 51, 55], "skip_signatur": [35, 51], "skip_wait": 35, "slice": [10, 25, 35], "slightli": [40, 55], "slot": 10, "small": [51, 52], "smallest": [14, 35], "smallish": 40, "smart": [5, 16, 42, 43, 47, 49, 51, 53, 54, 55], "snippet": [49, 54], "so": [0, 3, 6, 19, 39, 43, 44, 46, 51, 52, 53, 54], "solut": [22, 44, 54], "some": [9, 14, 39, 40, 41, 44, 46, 52, 54], "some_abi_method_object": 36, "some_byt": 37, "someth": [39, 43], "somewher": 46, "soon": 43, "sourc": [0, 5, 7, 8, 9, 10, 16, 25, 42, 43, 44, 47, 52, 54, 55], "source_info": 10, "source_map": [5, 7, 16, 21, 25, 33, 42, 43], "source_map_json": [], "sourceinfo": 10, "sourceinfomodel": 10, "sourcemap": [5, 7, 16, 25, 33, 47], "space": [10, 40], "spec": [5, 6, 7, 16, 35, 49, 50, 54, 55], "special": 46, "specif": [5, 6, 7, 9, 10, 16, 19, 22, 40, 43, 47, 51, 53, 54, 55], "specifi": [0, 2, 3, 6, 7, 9, 16, 37, 39, 40, 41, 42, 43, 44, 46, 51, 52, 54], "spend": [0, 52], "spendabl": 0, "sphinx": 38, "split": [43, 55], "stabil": 44, "stai": 39, "stale": 3, "standalon": 55, "standard": [8, 14, 35, 36, 37, 45, 49, 51, 54], "start": [3, 17, 36, 40, 44, 49, 54], "state": [0, 4, 5, 6, 7, 8, 9, 10, 25, 26, 35, 37, 38, 41, 44, 51, 54], "state_proof": 30, "state_proof_kei": [35, 36, 37], "state_proof_key_byt": 36, "statedict": 9, "stateless": 55, "stateprooftxn": 30, "stateschema": [9, 44], "static": [0, 3, 5, 8, 9, 10, 14, 16, 23, 24, 33, 35, 40, 41, 44, 54, 55], "static_fe": [0, 5, 14, 35, 36, 37, 39, 40, 43, 45, 52], "staticfe": 37, "statu": [0, 19, 39], "step": [43, 54], "still": [51, 55], "storag": [0, 10, 42, 43, 44, 47, 54, 55], "storagekei": 10, "storagemap": 10, "store": [0, 2, 4, 6, 8, 19, 39, 47, 49, 52], "stored_valu": 49, "str": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 16, 17, 19, 21, 23, 25, 27, 28, 29, 30, 31, 33, 35, 37, 40, 41, 42, 43, 44, 45, 48, 50, 52], "straight": [44, 55], "string": [0, 4, 9, 10, 16, 19, 25, 29, 30, 35, 37, 39, 40, 41, 42, 43, 44, 47], "string_io": 43, "stringformatarc2not": 30, "stringtyp": 42, "strip": [8, 44], "strip_teal_com": [8, 44], "stripped_teal_cod": 8, "strong": [43, 54], "stronger": 55, "struct": [4, 9, 10, 50], "struct_def": 4, "struct_field": [4, 10], "struct_valu": 4, "structargdict": 9, "structfield": [4, 10], "structur": [30, 33, 52, 55], "sub": 19, "subclass": 47, "submit": [40, 55], "submodul": 54, "subsequ": [6, 44, 46], "substitut": [6, 7, 8, 42, 54], "subtli": 51, "subtract": 41, "subtyp": 33, "success": 4, "successfulli": [40, 51], "suggest": [3, 35, 40, 51], "suggested_param": [3, 35, 40, 51], "suggestedparam": [3, 35], "summaris": 53, "suppli": [14, 35, 44], "support": [0, 10, 23, 35, 39, 41, 44, 50, 51, 53, 54, 55], "suppress": [0, 35, 40, 54], "suppress_log": [0, 30, 35, 37, 39, 40, 47, 52, 54], "suppresslog": 40, "supress": 47, "sure": [0, 6, 7, 40], "surplu": 51, "symbol": 43, "syntax": 39, "system": 0, "t": [0, 5, 6, 16, 33, 35, 37, 39, 41, 43, 44, 46, 51, 52, 53, 55], "take": [0, 7, 12, 17, 35, 39, 41, 43, 44, 46, 48, 51, 52], "taken": 12, "target": [0, 9], "task": 54, "teal": [5, 6, 7, 8, 10, 25, 35, 42, 43, 44, 47, 51, 54], "teal_approval_cod": [35, 36], "teal_clear_cod": [35, 36], "teal_cod": [8, 42, 44], "teal_new_approval_cod": [35, 36], "teal_new_clear_cod": [35, 36], "teal_template_cod": [8, 44], "tealclear_advanc": 37, "tealcod": [35, 37], "tealcode_advanc": 37, "tealscript": [51, 53], "tealtemplateparam": [5, 6, 8, 29, 44], "templat": [5, 6, 7, 8, 10, 42, 53, 54], "template_cod": 42, "template_param": [8, 42, 44], "template_valu": [8, 44], "template_vari": 10, "templatevaluedict": [], "templatevaluemap": [], "templatevar": 44, "templatevari": 10, "temporarili": 19, "ters": [41, 54], "terser": 54, "test": [41, 44, 46, 47, 51, 52], "test_app_deploy": 49, "test_app_method_cal": 49, "test_asset_transf": 49, "test_box": 49, "test_box_storag": 49, "test_valu": 49, "testing_app_arc32_app_spec": 55, "testnet": [0, 3, 16, 17, 27, 39, 40, 44, 52, 54, 55], "testnet_api": 17, "testnetdispenserapicli": [0, 16, 17, 48, 52], "than": [0, 35, 39, 40, 41, 43, 44, 51, 55], "thei": [0, 33, 39, 43, 47, 51, 52, 55], "them": [16, 35, 40, 41, 42, 43, 51, 54], "therefor": 51, "thi": [0, 2, 3, 5, 6, 7, 8, 14, 19, 22, 23, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55], "thin": 54, "thing": [40, 54, 55], "think": [40, 55], "those": [7, 43, 46], "though": 51, "threshold": [0, 23, 39], "through": [40, 43, 45, 51, 54, 55], "throw": [6, 39, 40, 43], "thrown": [0, 16, 43, 51, 55], "thu": 43, "ticker": [14, 35, 45], "tier": [16, 40, 46, 54], "time": [3, 6, 7, 8, 39, 40, 43, 44, 46, 47, 51, 52, 53, 54, 55], "timeout": [3, 16, 17, 40, 48], "timestamp": [3, 47], "tmpl_": 44, "tmpl_delet": [8, 44], "tmpl_updat": [8, 44], "tmpl_valu": 42, "to_abi_method": 10, "to_addr": 55, "to_json": [9, 10], "to_resolv": [], "togeth": 51, "token": [3, 16, 17, 27, 46, 48, 54], "toml": [19, 47], "too": 46, "tool": [17, 47, 54], "top": [40, 42, 43, 44, 52, 54, 55], "total": [0, 14, 24, 35, 36, 37, 41, 45, 49], "total_apps_opted_in": 0, "total_assets_opted_in": 0, "total_box": 0, "total_box_byt": 0, "total_created_app": 0, "total_created_asset": 0, "trace": [19, 21, 35, 43, 51, 54], "trace_al": [19, 47], "trace_buffer_size_mb": [19, 47], "track": [0, 3, 39, 42], "traffic": 40, "transact": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 17, 22, 23, 24, 26, 31, 38, 39, 42, 43, 44, 45, 47, 48, 52, 53, 54], "transaction_compos": [0, 3, 5, 6, 14, 34, 36, 37, 38], "transaction_cr": [3, 34, 38], "transaction_fe": 24, "transaction_id": [14, 21, 43, 45, 48, 52], "transaction_index": [], "transaction_paramet": [], "transaction_send": [0, 3, 5, 6, 7, 34, 38, 44], "transaction_sign": [0, 39, 45, 52], "transaction_typ": [47, 51], "transactioncompos": [3, 14, 35, 36, 37, 39, 40, 45, 50, 51, 55], "transactioncomposerbuildresult": 35, "transactionnot": 30, "transactionnotedata": 30, "transactionparamet": [], "transactionparametersdict": [], "transactionpool": 43, "transactionrespons": [], "transactionsign": [0, 3, 5, 7, 14, 16, 23, 31, 33, 35, 37, 39, 40, 51], "transactionsigneraccount": [0, 3, 23, 31, 39, 40, 55], "transactionsigneraccountprotocol": [0, 3, 31, 54, 55], "transactionwithsign": 35, "transactionwrapp": [30, 35, 37, 50], "transfer": [35, 36, 37, 40, 45, 47, 51, 54, 55], "transfer_algo": 55, "transfer_amount": 49, "transfer_asset": 55, "transferassetparamet": [], "transferparamet": [], "transferparametersbas": [], "transient": 46, "transpil": 44, "travers": 47, "trigger": [43, 46], "troubleshoot": 54, "true": [0, 4, 8, 14, 16, 35, 36, 37, 39, 40, 42, 43, 44, 45, 47, 49, 50, 51, 52, 54], "try": [43, 48], "tst": 49, "tupl": [4, 7, 8, 33], "tupletyp": 4, "turn": [40, 43, 44, 54, 55], "two": [9, 21, 35, 39, 43, 45, 48, 52], "tx_id": [8, 17, 35, 37, 48, 50], "tx_info": 4, "txn": [35, 36, 40, 48], "txn_id": 48, "txnparam": [35, 40], "type": [0, 4, 5, 8, 9, 10, 16, 22, 33, 35, 36, 37, 39, 40, 42, 43, 44, 46, 47, 48, 51, 52], "type_str": 4, "typealia": [4, 9, 29], "typed_app_cli": 16, "typed_app_factori": 16, "typed_cli": [16, 32, 38], "typed_factori": 16, "typedappclientprotocol": 33, "typedappclientt": 16, "typedappfactoryprotocol": 33, "typeddict": [5, 9, 21, 30, 35, 43], "typedfactoryt": 16, "typescript": [44, 51, 54], "typing_extens": [0, 3, 7, 33, 37], "u": 30, "uint": [8, 29], "uint64": 37, "uint8arrai": [0, 37, 44], "unabl": 0, "uncircul": [14, 35], "undefin": 40, "under": [39, 43, 51], "underli": [10, 23, 41, 42, 43, 46, 53, 54, 55], "underpin": 39, "underscor": 47, "understand": [6, 43, 50, 53], "undictifi": 9, "unencrypt": [0, 39], "unexpect": 8, "unfreez": [14, 35, 37], "unifi": 55, "union": 40, "uniqu": [19, 39, 43, 44], "unit": [14, 35, 37, 45], "unit_nam": [14, 35, 36, 37, 45, 49], "unit_name_b64": 14, "unitnam": 37, "unknown": 8, "unless": 40, "unnam": [35, 47, 51], "unsign": 47, "unspecifi": 44, "unsur": 55, "until": [3, 40, 55], "untyp": [43, 55], "up": [0, 14, 19, 44, 51, 53, 55], "updat": [5, 6, 7, 12, 19, 35, 36, 37, 42, 47, 49, 50, 51, 53, 54], "updatable_template_nam": [8, 42], "updatableconfig": [19, 47], "update_abi": 43, "update_appl": [9, 10], "update_arg": [], "update_param": [6, 7, 33, 44], "update_result": [6, 7, 44], "updateapp": 12, "updateappl": [10, 44], "updateapplicationoc": [35, 36, 37], "updatecallabi": 44, "updated_program": 8, "updated_round": 6, "updated_teal_cod": 8, "updatemethod": 37, "updateparamst": 33, "upgrad": [44, 55], "upper": 19, "upskil": 53, "url": [14, 27, 35, 36, 37, 45, 49], "url_b64": 14, "us": [0, 2, 3, 5, 6, 7, 8, 9, 10, 14, 16, 19, 22, 33, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "usag": [41, 44, 46, 50, 52], "user": [41, 44, 51, 55], "usual": 40, "util": [19, 22, 39, 40, 41, 42, 43, 44, 46, 48, 49, 50, 52, 53, 55], "utilis": [44, 53], "v": [9, 21, 35, 43, 53], "v1": [16, 55], "v2accountsaddress": 0, "v2client": [3, 6, 8, 14, 16, 27, 35, 37, 45, 46], "v3": [44, 54], "v4": 55, "v7": 55, "valid": [0, 3, 5, 14, 30, 35, 40, 43, 44, 51, 54], "validity_window": [0, 3, 5, 14, 35, 36, 37, 39, 40, 45, 52], "valu": [3, 4, 5, 7, 8, 9, 10, 21, 25, 29, 35, 37, 40, 42, 43, 47, 49, 50, 51, 55], "value1": [42, 43], "value_base64": [25, 42], "value_raw": [25, 42], "value_typ": 10, "valueerror": [0, 4, 5, 6, 8, 10, 14, 16, 35, 37], "vari": 44, "variabl": [0, 3, 5, 8, 10, 14, 16, 17, 39, 40, 44, 46, 47, 48, 52, 53, 54], "variant": 52, "variat": 50, "variou": [0, 7, 8, 19, 35, 36, 37, 40, 43, 46, 51, 54], "various": 43, "verbos": 54, "veri": [51, 55], "verif": 51, "verifi": [44, 49], "version": [0, 6, 7, 10, 12, 16, 23, 39, 42, 43, 44, 49, 53, 55], "via": [0, 7, 9, 17, 21, 35, 39, 40, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 54, 55], "void": [37, 50, 51], "vote_first": [35, 36, 37], "vote_kei": [35, 36, 37], "vote_key_dilut": [35, 36, 37], "vote_last": [35, 36, 37], "votekei": 37, "vrf": 35, "wa": [0, 2, 4, 12, 14, 17, 35, 44, 45, 47, 50, 51, 52], "wai": [41, 42, 46, 48, 52, 53, 54, 55], "wait": [3, 35, 40], "wait_round": [], "wallet": [0, 2, 39], "wallet_nam": 2, "want": [6, 37, 39, 40, 42, 43, 44, 47, 51, 52, 53, 54, 55], "warn": [39, 40, 52], "wasn": [6, 53], "we": [39, 40, 43, 44, 49, 51, 55], "well": [39, 44, 46], "were": [0, 14, 35, 44, 50], "weren": 55, "what": [41, 43, 44], "when": [0, 2, 3, 6, 7, 39, 40, 41, 42, 43, 44, 46, 47, 50, 51, 52, 53, 54, 55], "whenev": 41, "where": [9, 14, 17, 19, 29, 40, 41, 43, 47, 51, 55], "wherea": 55, "wherev": 54, "whether": [0, 6, 7, 14, 16, 19, 35, 40, 44, 45, 47], "which": [0, 3, 16, 39, 40, 41, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55], "while": [39, 44, 48, 50, 55], "who": 47, "window": [0, 3, 14, 35, 40], "with_debug": 19, "with_sourc": 47, "within": [39, 40, 43, 44, 46, 55], "without": [0, 2, 5, 35, 39, 43, 44, 46, 54, 55], "won": [6, 55], "work": [0, 9, 16, 43, 44, 46, 50, 51, 53, 54, 55], "world": [49, 53], "worth": [54, 55], "worthwhil": 55, "would": 55, "wouldn": [37, 52], "wrap": [4, 40, 54], "wrapper": [0, 23, 24, 30, 39, 41, 43, 46, 54], "write": [0, 9, 10, 44, 46, 54], "write_byt": 10, "written": [9, 54], "x": [33, 53, 55], "xbyls2e6yi6xxl5bwcamoa4gtwhxwenzmx5uhxmrnwwuq7bxcy5wc5tepa": [0, 45], "xl": 19, "yet": [39, 43, 55], "you": [0, 6, 7, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55], "your": [40, 43, 44, 47, 48, 49, 51, 53, 55], "your_address": 39, "your_auth_token": 48, "your_sign": 39, "yourself": 48, "zero": [14, 37], "\u00b5algo": [24, 51]}, "titles": ["algokit_utils.accounts.account_manager", "algokit_utils.accounts", "algokit_utils.accounts.kmd_account_manager", "algokit_utils.algorand", "algokit_utils.applications.abi", "algokit_utils.applications.app_client", "algokit_utils.applications.app_deployer", "algokit_utils.applications.app_factory", "algokit_utils.applications.app_manager", "algokit_utils.applications.app_spec.arc32", "algokit_utils.applications.app_spec.arc56", "algokit_utils.applications.app_spec", "algokit_utils.applications.enums", "algokit_utils.applications", "algokit_utils.assets.asset_manager", "algokit_utils.assets", "algokit_utils.clients.client_manager", "algokit_utils.clients.dispenser_api_client", "algokit_utils.clients", "algokit_utils.config", "algokit_utils.errors", "algokit_utils.errors.logic_error", "algokit_utils", "algokit_utils.models.account", "algokit_utils.models.amount", "algokit_utils.models.application", "algokit_utils.models", "algokit_utils.models.network", "algokit_utils.models.simulate", "algokit_utils.models.state", "algokit_utils.models.transaction", "algokit_utils.protocols.account", "algokit_utils.protocols", "algokit_utils.protocols.typed_clients", "algokit_utils.transactions", "algokit_utils.transactions.transaction_composer", "algokit_utils.transactions.transaction_creator", "algokit_utils.transactions.transaction_sender", "API Reference", "Account management", "Algorand client", "Algo amount handling", "App management", "App client and App factory", "App deployment", "Assets", "Client management", "Debugger", "TestNet Dispenser Client", "Testing", "Transaction management", "Transaction composer", "Algo transfers (payments)", "Typed application clients", "AlgoKit Python Utilities", "Migration Guide - v3"], "titleterms": {"1": 55, "2": 55, "3": 55, "4": 55, "5": 55, "6": 55, "7": 55, "8": 55, "A": 55, "In": 45, "abi": 4, "access": [40, 42, 46], "account": [0, 1, 2, 23, 31, 39, 43, 45, 48, 55], "account_manag": 0, "accountassetinform": 45, "accountmanag": 39, "addit": 41, "after": 55, "algo": [41, 52], "algoamount": 41, "algokit": 54, "algokit_util": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37], "algokitlogg": 47, "algorand": [3, 40], "algorandcli": 55, "all": 55, "amount": [24, 41], "an": [41, 43, 46, 48, 53], "api": [38, 46], "app": [42, 43, 44, 51, 53, 55], "app_client": 5, "app_deploy": 6, "app_factori": 7, "app_manag": 8, "app_spec": [9, 10, 11], "appclient": [43, 55], "appdeploy": 44, "appfactori": 43, "applic": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 25, 49, 50, 53], "applicationcli": 55, "applicationspecif": 55, "appmanag": 42, "arc32": 9, "arc56": 10, "argument": 43, "asset": [14, 15, 45, 49, 55], "asset_manag": 14, "assetinform": 45, "assetmanag": 45, "attribut": [4, 5, 6, 8, 9, 17, 19, 23, 24, 29, 30, 35], "automat": 46, "basic": 49, "befor": 55, "best": 55, "box": [42, 49], "break": 55, "budget": 51, "bulk": 45, "call": [42, 43, 47, 49, 51], "capabl": 54, "chang": 55, "class": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 17, 19, 21, 23, 24, 25, 27, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40, 55], "client": [16, 17, 18, 40, 42, 43, 46, 48, 53, 55], "client_manag": 16, "clientmanag": 46, "common": 42, "compil": [42, 44], "compos": [40, 51], "config": [19, 54], "configur": [40, 46, 47], "construct": 51, "content": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 17, 19, 21, 23, 24, 25, 27, 28, 29, 30, 31, 33, 35, 36, 37, 54], "contract": 44, "convert": 55, "core": 54, "correctli": 55, "cover": [51, 55], "creat": [40, 41, 43, 46, 48, 49, 53], "current": 48, "data": [], "debug": [47, 54], "debugg": 47, "default": [39, 43], "delet": [43, 44], "deploi": [43, 44, 53], "deploy": [44, 49], "deprec": 55, "develop": 44, "diagnos": 43, "dispens": [39, 46, 48, 52], "dispenser_api_cli": 17, "displai": 55, "document": 54, "doe": 55, "dynam": 43, "each": 50, "encount": 50, "ensure_fund": 52, "enum": 12, "error": [20, 21, 43, 48], "exampl": [39, 52], "except": 21, "extract": 41, "factori": [43, 53], "featur": 41, "fee": 51, "filenam": 47, "format": 47, "from": 41, "function": [4, 5, 21, 24, 35], "fund": [43, 48], "further": 50, "gener": [43, 53, 55], "get": [39, 42, 45, 48, 53], "given": 43, "global": [42, 47], "group": 40, "guid": 55, "handl": [41, 43, 48], "hold": 45, "i": 53, "idempot": 44, "inform": [42, 45, 46], "inner": 51, "input": 44, "instal": 54, "instanc": [40, 46, 53], "interfac": 55, "issu": 40, "kmd": 39, "kmd_account_manag": 2, "lifecycl": 44, "limit": 48, "ll": 50, "local": 42, "log": [47, 54], "logic": 43, "logic_error": 21, "lookup": 44, "make": 44, "manag": [39, 40, 42, 46, 50, 55], "messag": 47, "metadata": 44, "method": [43, 55], "migrat": 55, "mode": 54, "model": [23, 24, 25, 26, 27, 28, 29, 30], "modul": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 17, 19, 21, 23, 24, 25, 27, 28, 29, 30, 31, 33, 35, 36, 37], "name": 44, "network": [27, 46], "onli": 51, "op": 51, "oper": 45, "opt": 45, "out": 45, "packag": [], "paramet": [40, 42, 44, 45], "payment": 52, "per": 47, "perform": 44, "popul": 51, "practic": 55, "prerequisit": 55, "principl": 54, "protocol": [31, 32, 33], "python": 54, "read": [43, 50, 51], "refer": [38, 42, 54], "refund": 48, "regist": [39, 48], "rekei": 39, "replac": 55, "resourc": 51, "result": 50, "retri": 46, "return": 44, "scenario": 55, "sdk": [40, 46, 55], "send": 40, "sendatomictransactioncomposerresult": 50, "sendsingletransactionresult": 50, "setup": 49, "sign": 51, "signer": 39, "simul": [28, 51], "singl": 40, "singleton": 54, "smart": 44, "spec": [43, 53], "specif": 50, "state": [29, 42, 43, 55], "step": 55, "storag": 49, "submodul": [1, 11, 13, 15, 18, 20, 22, 26, 32, 34], "substitut": 44, "suppress": 47, "templat": 44, "test": [49, 54], "testnet": [46, 48], "trace": 47, "transact": [30, 34, 35, 36, 37, 40, 50, 51, 55], "transaction_compos": 35, "transaction_cr": 36, "transaction_send": 37, "transactionsigneraccountprotocol": 39, "transfer": [49, 52], "troubleshoot": 55, "type": [50, 53, 54, 55], "typed_cli": 33, "underli": 39, "updat": [43, 44, 55], "us": 55, "usag": [53, 54, 55], "util": [47, 54], "v2": 55, "v3": 55, "valu": [41, 44], "via": 46, "warn": 55, "where": 50, "without": 51, "you": 50}}) \ No newline at end of file diff --git a/docs/markdown/autoapi/algokit_utils/applications/enums/index.md b/docs/markdown/autoapi/algokit_utils/applications/enums/index.md index ac63173b..c3672fc0 100644 --- a/docs/markdown/autoapi/algokit_utils/applications/enums/index.md +++ b/docs/markdown/autoapi/algokit_utils/applications/enums/index.md @@ -9,7 +9,7 @@ ## Module Contents -### *class* algokit_utils.applications.enums.OnSchemaBreak(\*args, \*\*kwds) +### *class* algokit_utils.applications.enums.OnSchemaBreak Bases: `enum.Enum` @@ -27,7 +27,7 @@ Create a new Application and delete the old Application in a single transaction Create a new Application -### *class* algokit_utils.applications.enums.OnUpdate(\*args, \*\*kwds) +### *class* algokit_utils.applications.enums.OnUpdate Bases: `enum.Enum` @@ -49,7 +49,7 @@ Create a new Application and delete the old Application in a single transaction Create a new application -### *class* algokit_utils.applications.enums.OperationPerformed(\*args, \*\*kwds) +### *class* algokit_utils.applications.enums.OperationPerformed Bases: `enum.Enum` diff --git a/docs/markdown/autoapi/algokit_utils/protocols/typed_clients/index.md b/docs/markdown/autoapi/algokit_utils/protocols/typed_clients/index.md index 751ea934..8cca87b9 100644 --- a/docs/markdown/autoapi/algokit_utils/protocols/typed_clients/index.md +++ b/docs/markdown/autoapi/algokit_utils/protocols/typed_clients/index.md @@ -23,9 +23,7 @@ class Proto(Protocol): ``` Such classes are primarily used with static type checkers that recognize -structural subtyping (static duck-typing). - -For example: +structural subtyping (static duck-typing), for example: ```default class C: @@ -44,7 +42,7 @@ only the presence of given attributes, ignoring their type signatures. Protocol classes can be generic, they are defined as: ```default -class GenProto[T](Protocol): +class GenProto(Protocol[T]): def meth(self) -> T: ... ``` @@ -68,9 +66,7 @@ class Proto(Protocol): ``` Such classes are primarily used with static type checkers that recognize -structural subtyping (static duck-typing). - -For example: +structural subtyping (static duck-typing), for example: ```default class C: @@ -89,7 +85,7 @@ only the presence of given attributes, ignoring their type signatures. Protocol classes can be generic, they are defined as: ```default -class GenProto[T](Protocol): +class GenProto(Protocol[T]): def meth(self) -> T: ... ```