@algorandfoundation/algorand-typescript 1.0.0-beta.26 → 1.0.0-beta.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":["../src/primitives.ts","../src/util.ts","../src/reference.ts","../src/box.ts","../src/state.ts","../src/itxn.ts","../src/gtxn.ts","../src/transactions.ts","../src/logic-sig.ts","../src/template-var.ts","../src/compiled.ts","../src/mutable-array.ts","../src/arc-28.ts","../src/on-complete-action.ts"],"sourcesContent":["import { NoImplementation } from './internal/errors'\n\n/**\n * An alias for types which can be converted to a uint64\n */\nexport type Uint64Compat = uint64 | bigint | boolean | number\n/**\n * An alias for types which can be converted to a biguint\n */\nexport type BigUintCompat = bigint | bytes | number | boolean\n/**\n * An alias for types which can be converted to a string\n */\nexport type StringCompat = string\n/**\n * An alias for types which can be converted to a bytes sequence\n */\nexport type BytesCompat = bytes | string\n\n/**\n * An unsigned integer of exactly 64 bits\n */\nexport type uint64 = {\n /**\n * @hidden\n */\n __type?: 'uint64'\n} & number\n\n/**\n * Create a uint64 with the default value of 0\n */\nexport function Uint64(): uint64\n/**\n * Create a uint64 from a string literal\n */\nexport function Uint64(v: string): uint64\n/**\n * Create a uint64 from a bigint literal\n */\nexport function Uint64(v: bigint): uint64\n/**\n * Create a uint64 from a number literal\n */\nexport function Uint64(v: number): uint64\n/**\n * Create a uint64 from a boolean value. True is 1, False is 0\n */\nexport function Uint64(v: boolean): uint64\nexport function Uint64(v?: Uint64Compat | string): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * An unsigned integer of up to 512 bits\n *\n * Stored as a big-endian variable byte array\n */\nexport type biguint = {\n /**\n * @hidden\n */\n __type?: 'biguint'\n} & bigint\n\n/**\n * Create a biguint from a bigint literal\n */\nexport function BigUint(v: bigint): biguint\n/**\n * Create a biguint from a boolean value (true = 1, false = 0)\n */\nexport function BigUint(v: boolean): biguint\n/**\n * Create a biguint from a uint64 value\n */\nexport function BigUint(v: uint64): biguint\n/**\n * Create a biguint from a number literal\n */\nexport function BigUint(v: number): biguint\n/**\n * Create a biguint from a byte array interpreted as a big-endian number\n */\nexport function BigUint(v: bytes): biguint\n/**\n * Create a biguint from a string literal containing the decimal digits\n */\nexport function BigUint(v: string): biguint\n/**\n * Create a biguint with the default value of 0\n */\nexport function BigUint(): biguint\nexport function BigUint(v?: BigUintCompat | string): biguint {\n throw new NoImplementation()\n}\n\n/**\n * A sequence of zero or more bytes (ie. byte[])\n */\nexport type bytes = {\n /**\n * Retrieve the length of the byte sequence\n */\n readonly length: uint64\n\n /**\n * Retrieve the byte at the index i\n * @param i The index to read. Can be negative to read from the end\n * @returns The byte found at the index, or an empty bytes value\n */\n at(i: Uint64Compat): bytes\n\n /**\n * Concatenate this bytes value with another bytes value\n * @param other The other bytes value\n * @returns The concatenation result\n */\n concat(other: BytesCompat): bytes\n\n /**\n * Perform a bitwise AND operation with this bytes value and another bytes value.\n *\n * The shorter of the two values will be zero-left extended to the larger length.\n * @param other The other bytes value\n * @returns The bitwise operation result\n */\n bitwiseAnd(other: BytesCompat): bytes\n\n /**\n * Perform a bitwise OR operation with this bytes value and another bytes value\n *\n * The shorter of the two values will be zero-left extended to the larger length.\n * @param other The other bytes value\n * @returns The bitwise operation result\n */\n bitwiseOr(other: BytesCompat): bytes\n\n /**\n * Perform a bitwise XOR operation with this bytes value and another bytes value.\n *\n * The shorter of the two values will be zero-left extended to the larger length.\n * @param other The other bytes value\n * @returns The bitwise operation result\n */\n bitwiseXor(other: BytesCompat): bytes\n\n /**\n * Perform a bitwise INVERT operation with this bytes value\n * @returns The bitwise operation result\n */\n bitwiseInvert(): bytes\n\n /**\n * Compares this bytes value with another.\n * @param other The other bytes value\n * @returns True if both values represent the same byte sequence\n */\n equals(other: BytesCompat): boolean\n\n /**\n * Returns a copy of this bytes sequence\n */\n slice(): bytes\n /**\n * Returns a slice of this bytes sequence from the specified start to the end\n * @param start The index to start slicing from. Can be negative to count from the end.\n */\n slice(start: Uint64Compat): bytes\n /**\n * Returns a slice of this bytes sequence from the specified start to the specified end\n * @param start The index to start slicing from. Can be negative to count from the end.\n * @param end The index to end the slice. Can be negative to count from the end.\n */\n slice(start: Uint64Compat, end: Uint64Compat): bytes\n /**\n * @hidden\n */\n slice(start?: Uint64Compat, end?: Uint64Compat): bytes\n\n /**\n * Interpret this byte sequence as a utf-8 string\n */\n toString(): string\n}\n\n/**\n * Create a byte array from a string interpolation template and compatible replacements\n * @param value\n * @param replacements\n */\nexport function Bytes(value: TemplateStringsArray, ...replacements: BytesCompat[]): bytes\n/**\n * Create a byte array from a utf8 string\n */\nexport function Bytes(value: string): bytes\n/**\n * No op, returns the provided byte array.\n */\nexport function Bytes(value: bytes): bytes\n/**\n * Create a byte array from a biguint value encoded as a variable length big-endian number\n */\nexport function Bytes(value: biguint): bytes\n/**\n * Create a byte array from a uint64 value encoded as a fixed length 64-bit number\n */\nexport function Bytes(value: uint64): bytes\n/**\n * Create a byte array from an Iterable<uint64> where each item is interpreted as a single byte and must be between 0 and 255 inclusively\n */\nexport function Bytes(value: Iterable<uint64>): bytes\n/**\n * Create an empty byte array\n */\nexport function Bytes(): bytes\nexport function Bytes(\n value?: BytesCompat | TemplateStringsArray | biguint | uint64 | Iterable<number>,\n ...replacements: BytesCompat[]\n): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Create a new bytes value from a hexadecimal encoded string\n * @param hex A literal string of hexadecimal characters\n */\nBytes.fromHex = (hex: string): bytes => {\n throw new NoImplementation()\n}\n/**\n * Create a new bytes value from a base 64 encoded string\n * @param b64 A literal string of b64 encoded characters\n */\nBytes.fromBase64 = (b64: string): bytes => {\n throw new NoImplementation()\n}\n\n/**\n * Create a new bytes value from a base 32 encoded string\n * @param b32 A literal string of b32 encoded characters\n */\nBytes.fromBase32 = (b32: string): bytes => {\n throw new NoImplementation()\n}\n\n/**\n * An interface for types which are backed by the AVM bytes type\n */\nexport interface BytesBacked {\n /**\n * Retrieve the underlying bytes representing this value\n */\n get bytes(): bytes\n}\n","import { NoImplementation } from './internal/errors'\nimport { biguint, BigUintCompat, BytesBacked, BytesCompat, StringCompat, uint64, Uint64Compat } from './primitives'\n\n/**\n * Write one or more values to the transaction log.\n *\n * Each value is converted to bytes and concatenated\n * @param args The values to write\n */\nexport function log(...args: Array<Uint64Compat | BytesCompat | BigUintCompat | StringCompat | BytesBacked>): void {\n throw new NoImplementation()\n}\n\n/**\n * Asserts that `condition` is truthy, otherwise error and halt execution.\n * @param condition An expression that can be evaluated as truthy of falsy\n * @param message The message to show if `condition` is falsy and an error is raised.\n */\nexport function assert(condition: unknown, message?: string): asserts condition {\n throw new NoImplementation()\n}\n\n/**\n * Raise an error and halt execution\n * @param message The message to accompany the error\n */\nexport function err(message?: string): never {\n throw new NoImplementation()\n}\n\n/**\n * Defines possible comparison expressions for numeric types\n */\ntype NumericComparison<T> =\n | T\n | {\n /**\n * Is the subject less than the specified value\n */\n lessThan: T\n }\n | {\n /**\n * Is the subject greater than the specified value\n */\n greaterThan: T\n }\n | {\n /**\n * Is the subject greater than or equal to the specified value\n */\n greaterThanEq: T\n }\n | {\n /**\n * Is the subject less than or equal to the specified value\n */\n lessThanEq: T\n }\n | {\n /**\n * Is the subject between the specified values (inclusive)\n */\n between: [T, T]\n }\n\n/**\n * Returns compatible comparison expressions for a type `T`\n * @typeParam T The type requiring comparison\n */\ntype ComparisonFor<T> = T extends uint64 | biguint ? NumericComparison<T> : T\n\n/**\n * A set of tests to apply to the match subject\n * @typeParam T The type of the test subject\n */\ntype MatchTest<T> = {\n [key in keyof T]?: ComparisonFor<T[key]>\n}\n\n/**\n * Applies all tests in `test` against `subject` and returns a boolean indicating if they all pass\n * @param subject An object or tuple to be tested\n * @param test An object containing one or more tests to be applied to the subject\n * @typeParam T The type of the subject\n * @returns True if all tests pass, otherwise false\n */\nexport function match<T>(subject: T, test: MatchTest<T>): boolean {\n throw new NoImplementation()\n}\n\n/**\n *\n * Applies all tests in `test` against `subject` and asserts they all pass\n * @param subject An object or tuple to be tested\n * @param test An object containing one or more tests to be applied to the subject\n * @param message An optional message to show if the assertion fails\n * @typeParam T The type of the subject\n */\nexport function assertMatch<T>(subject: T, test: MatchTest<T>, message?: string): boolean {\n throw new NoImplementation()\n}\n\n/**\n * Defines the source of fees for the OpUp utility\n */\nexport enum OpUpFeeSource {\n /**\n * Only the excess fee (credit) on the outer group should be used (itxn.fee = 0)\n */\n GroupCredit = 0,\n /**\n * The app's account will cover all fees (itxn.fee = Global.minTxFee)\n */\n AppAccount = 1,\n /**\n * First the excess will be used, then remaining fees taken from the app account\n */\n Any = 2,\n}\n\n/**\n * Ensure the available op code budget is greater than or equal to requiredBudget.\n *\n * This is done by adding AppCall itxns to the group to increase the available budget. These itxns must be paid for\n * by the caller or the application.\n * @param requiredBudget The total required budget\n * @param feeSource Which source to withdraw txn fees from.\n */\nexport function ensureBudget(requiredBudget: uint64, feeSource: OpUpFeeSource = OpUpFeeSource.GroupCredit) {\n throw new NoImplementation()\n}\n\n/**\n * Generates an iterable sequence from 0...stop inclusive\n * @param stop The stop number of the sequence\n */\nexport function urange(stop: Uint64Compat): IterableIterator<uint64>\n/**\n * Generates an iterable sequence from start...stop inclusive\n * @param start The start number of the sequence\n * @param stop The stop number of the sequence\n */\nexport function urange(start: Uint64Compat, stop: Uint64Compat): IterableIterator<uint64>\n/**\n * Generates an iterable sequence from start...stop inclusive with increments of size step\n * @param start The start number of the sequence\n * @param stop The stop number of the sequence\n * @param step The step size of the sequence\n */\nexport function urange(start: Uint64Compat, stop: Uint64Compat, step: Uint64Compat): IterableIterator<uint64>\nexport function urange(a: Uint64Compat, b?: Uint64Compat, c?: Uint64Compat): IterableIterator<uint64> {\n throw new NoImplementation()\n}\n\n/**\n * Defines a numeric range including all numbers between from and to\n */\nexport type NumberRange = { from: number; to: number }\n","import { NoImplementation } from './internal/errors'\nimport { bytes, uint64 } from './primitives'\n\n/**\n * Represents an Algorand Account and exposes properties and methods for reading account data\n */\nexport type Account = {\n /**\n * Get the accounts address in bytes\n */\n readonly bytes: bytes\n\n /**\n * Account balance in microalgos\n *\n * Account must be an available resource\n */\n readonly balance: uint64\n\n /**\n * Minimum required balance for account, in microalgos\n *\n * Account must be an available resource\n */\n readonly minBalance: uint64\n\n /**\n * Address the account is rekeyed to\n *\n * Account must be an available resource\n */\n readonly authAddress: Account\n\n /**\n * The total number of uint64 values allocated by this account in Global and Local States.\n *\n * Account must be an available resource\n */\n readonly totalNumUint: uint64\n\n /**\n * The total number of byte array values allocated by this account in Global and Local States.\n *\n * Account must be an available resource\n */\n readonly totalNumByteSlice: uint64\n\n /**\n * The number of extra app code pages used by this account.\n *\n * Account must be an available resource\n */\n readonly totalExtraAppPages: uint64\n\n /**\n * The number of existing apps created by this account.\n *\n * Account must be an available resource\n */\n readonly totalAppsCreated: uint64\n\n /**\n * The number of apps this account is opted into.\n *\n * Account must be an available resource\n */\n readonly totalAppsOptedIn: uint64\n\n /**\n * The number of existing ASAs created by this account.\n *\n * Account must be an available resource\n */\n readonly totalAssetsCreated: uint64\n\n /**\n * The numbers of ASAs held by this account (including ASAs this account created).\n *\n * Account must be an available resource\n */\n readonly totalAssets: uint64\n\n /**\n * The number of existing boxes created by this account's app.\n *\n * Account must be an available resource\n */\n readonly totalBoxes: uint64\n\n /**\n * The total number of bytes used by this account's app's box keys and values.\n *\n * Account must be an available resource\n */\n readonly totalBoxBytes: uint64\n\n /**\n * Returns true if this account is opted in to the specified Asset or Application.\n * Note: Account and Asset/Application must be an available resource\n *\n * @param assetOrApp\n */\n isOptedIn(assetOrApp: Asset | Application): boolean\n}\n\n/**\n * Create a new account object representing the zero address\n */\nexport function Account(): Account\n/**\n * Create a new account object representing the provided public key bytes\n * @param publicKey A 32-byte Algorand account public key\n */\nexport function Account(publicKey: bytes): Account\n/**\n * Create a new account object representing the provided address\n * @param address A 56 character base-32 encoded Algorand address\n * @constructor\n */\nexport function Account(address: string): Account\nexport function Account(publicKeyOrAddress?: bytes | string): Account {\n throw new NoImplementation()\n}\n\n/**\n * Creates a new Asset object represent the asset id 0 (an invalid ID)\n */\nexport function Asset(): Asset\n/**\n * Creates a new Asset object representing the asset with the specified id\n * @param assetId The id of the asset\n */\nexport function Asset(assetId: uint64): Asset\nexport function Asset(assetId?: uint64): Asset {\n throw new NoImplementation()\n}\n/**\n * An Asset on the Algorand network.\n */\nexport type Asset = {\n /**\n * Returns the id of the Asset\n */\n readonly id: uint64\n\n /**\n * Total number of units of this asset\n */\n readonly total: uint64\n\n /**\n * @see AssetParams.decimals\n */\n readonly decimals: uint64\n\n /**\n * Frozen by default or not\n */\n readonly defaultFrozen: boolean\n\n /**\n * Asset unit name\n */\n readonly unitName: bytes\n\n /**\n * Asset name\n */\n readonly name: bytes\n\n /**\n * URL with additional info about the asset\n */\n readonly url: bytes\n\n /**\n * Arbitrary commitment\n */\n readonly metadataHash: bytes\n\n /**\n * Manager address\n */\n readonly manager: Account\n\n /**\n * Reserve address\n */\n readonly reserve: Account\n\n /**\n * Freeze address\n */\n readonly freeze: Account\n\n /**\n * Clawback address\n */\n readonly clawback: Account\n\n /**\n * Creator address\n */\n readonly creator: Account\n\n /**\n * Amount of the asset unit held by this account. Fails if the account has not\n * opted in to the asset.\n * Asset and supplied Account must be an available resource\n * @param account Account\n * @return balance: uint64\n */\n balance(account: Account): uint64\n\n /**\n * Is the asset frozen or not. Fails if the account has not\n * opted in to the asset.\n * Asset and supplied Account must be an available resource\n * @param account Account\n * @return isFrozen: boolean\n */\n frozen(account: Account): boolean\n}\n\n/**\n * Creates a new Application object represent the application id 0 (an invalid ID)\n */\nexport function Application(): Application\n/**\n * Creates a new Application object representing the application with the specified id\n * @param applicationId The id of the application\n */\nexport function Application(applicationId: uint64): Application\nexport function Application(applicationId?: uint64): Application {\n throw new NoImplementation()\n}\n\n/**\n * An Application on the Algorand network.\n */\nexport type Application = {\n /**\n * The id of this application on the current network\n */\n readonly id: uint64\n /**\n * Bytecode of Approval Program\n */\n readonly approvalProgram: bytes\n\n /**\n * Bytecode of Clear State Program\n */\n readonly clearStateProgram: bytes\n\n /**\n * Number of uint64 values allowed in Global State\n */\n readonly globalNumUint: uint64\n\n /**\n * Number of byte array values allowed in Global State\n */\n readonly globalNumBytes: uint64\n\n /**\n * Number of uint64 values allowed in Local State\n */\n readonly localNumUint: uint64\n\n /**\n * Number of byte array values allowed in Local State\n */\n readonly localNumBytes: uint64\n\n /**\n * Number of Extra Program Pages of code space\n */\n readonly extraProgramPages: uint64\n\n /**\n * Creator address\n */\n readonly creator: Account\n\n /**\n * Address for which this application has authority\n */\n readonly address: Account\n}\n","import { NoImplementation } from './internal/errors'\nimport { bytes, uint64 } from './primitives'\n\n/**\n * A Box proxy\n * @typeParam TValue The type of the data stored in the box.\n */\nexport type Box<TValue> = {\n /**\n * Get the key used by this box proxy\n */\n readonly key: bytes\n /**\n * Get or set the value stored in the box\n *\n * Get will error if the box does not exist\n */\n value: TValue\n /**\n * Get a boolean indicating if the box exists or not\n */\n readonly exists: boolean\n /**\n * Get the value stored in the box, or return a specified default value if the box does not exist\n * @param options Options to specify a default value to be returned if no other value exists\n * @returns The value if the box exists, else the default value\n */\n get(options: { default: TValue }): TValue\n /**\n * Delete the box associated with this proxy if it exists.\n * @returns True if the box existed and was deleted, else false\n */\n delete(): boolean\n /**\n * Get the value stored in the box if available, and a boolean indicating if the box exists.\n *\n * If the box does not exist, the value returned at position 0 should not be relied on to have a valid value.\n * @returns A tuple with the first item being the box value, and the second item being a boolean indicating if the box exists.\n */\n maybe(): readonly [TValue, boolean]\n /**\n * Returns the length of the box, or error if the box does not exist\n */\n readonly length: uint64\n}\n/**\n * A BoxMap proxy\n * @typeParam TKey The type of the value used to key each box.\n * @typeParam TValue The type of the data stored in the box.\n */\nexport type BoxMap<TKey, TValue> = {\n /**\n * Get the bytes used to prefix each key\n */\n readonly keyPrefix: bytes\n\n /**\n * Get a Box proxy for a single item in the BoxMap\n * @param key The key of the box to retrieve a proxy for\n */\n (key: TKey): Box<TValue>\n}\n\n/**\n * A BoxRef proxy\n */\nexport type BoxRef = {\n /**\n * Get the key used by this box proxy\n */\n readonly key: bytes\n /**\n * Get a boolean indicating if the box exists or not\n */\n readonly exists: boolean\n /**\n * Get the value of the box.\n *\n * Error if this value is larger than what the `bytes` type supports\n * Error if getting the value and the box does not exist\n */\n value: bytes\n /**\n * Get the value stored in the box, or return a specified default value if the box does not exist\n * @param options Options to specify a default value to be returned if no other value exists\n * @returns The value if the box exists, else the default value\n */\n get(options: { default: bytes }): bytes\n /**\n * Puts the specified bytes into the box replacing any existing value.\n *\n * Creates the box if it does not exist\n * Errors if the box exists, but the length does not match the length of `value`\n * @param value The value to put into the box\n */\n put(value: bytes): void\n /**\n * Splice the specified bytes into the box starting at `start`, removing `length` bytes\n * from the existing value and replacing them with `value` before appending the remainder of the original box value.\n *\n * If the resulting byte value is larger than length, bytes will be trimmed from the end\n * If the resulting byte value is smaller than length, zero bytes will be appended to the end\n * Error if the box does not exist\n * @param start The index to start inserting the value\n * @param length The number of bytes after `start` to be omitted\n * @param value The value to be inserted\n */\n splice(start: uint64, length: uint64, value: bytes): void\n /**\n * Replace bytes in a box starting at `start`.\n *\n * Error if the box does not exist\n * Error if `start` + `value.length` is greater than the box size\n * @param start The index to start replacing\n * @param value The value to be written\n */\n replace(start: uint64, value: bytes): void\n /**\n * Extract a slice of bytes from the box\n *\n * Error if the box does not exist\n * Error if `start` + `length` is greater than the box size\n * @param start The index to start extracting\n * @param length The number of bytes to extract\n * @returns The extracted bytes\n */\n extract(start: uint64, length: uint64): bytes\n /**\n * Delete the box associated with this proxy if it exists.\n * @returns True if the box existed and was deleted, else false\n */\n delete(): boolean\n /**\n * Create the box for this proxy with the specified size if it does not exist\n *\n * No op if the box already exists\n * @param options The size of the box to create\n * @returns True if the box was created, false if it already existed\n */\n create(options: { size: uint64 }): boolean\n /**\n * Resize the box to the specified size.\n *\n * Adds zero bytes to the end if the new size is larger\n * Removes end bytes if the new size is smaller\n * Error if the box does not exist\n * @param newSize The new size for the box\n */\n resize(newSize: uint64): void\n /**\n * Get the value stored in the box if available, and a boolean indicating if the box exists.\n *\n * If the box does not exist, the value returned at position 0 will be an empty byte array.\n * @returns A tuple with the first item being the box value, and the second item being a boolean indicating if the box exists.\n */\n maybe(): readonly [bytes, boolean]\n /**\n * Returns the length of the box, or error if the box does not exist\n */\n readonly length: uint64\n}\n\n/**\n * Options for creating a Box proxy\n */\ninterface CreateBoxOptions {\n /**\n * The bytes which make up the key of the box\n */\n key: bytes | string\n}\n\n/**\n * Creates a Box proxy object offering methods of getting and setting the value stored in a single box.\n * @param options Options for creating the Box proxy\n * @typeParam TValue The type of the data stored in the box. This value will be encoded to bytes when stored and decoded on retrieval.\n */\nexport function Box<TValue>(options: CreateBoxOptions): Box<TValue> {\n throw new NoImplementation()\n}\n\n/**\n * Options for creating a BoxMap proxy\n */\ninterface CreateBoxMapOptions {\n /**\n * The bytes which prefix each key of the box map\n */\n keyPrefix: bytes | string\n}\n\n/**\n * Creates a BoxMap proxy object offering methods of getting and setting a set of values stored in individual boxes indexed by a common key type\n * @param options Options for creating the BoxMap proxy\n * @typeParam TKey The type of the value used to key each box. This key will be encoded to bytes and prefixed with `keyPrefix`\n * @typeParam TValue The type of the data stored in the box. This value will be encoded to bytes when stored and decoded on retrieval.\n */\nexport function BoxMap<TKey, TValue>(options: CreateBoxMapOptions): BoxMap<TKey, TValue> {\n throw new NoImplementation()\n}\n\n/**\n * Options for creating a BoxRef proxy\n */\ninterface CreateBoxRefOptions {\n /**\n * The bytes which make up the key of the box\n */\n key: bytes | string\n}\n\n/**\n * Creates a BoxRef proxy object offering methods for getting and setting binary data in a box under a single key. This proxy is particularly\n * relevant when dealing with binary data that is larger than what the AVM can handle in a single value.\n * @param options The options for creating the BoxRef proxy\n */\nexport function BoxRef(options: CreateBoxRefOptions): BoxRef {\n throw new NoImplementation()\n}\n","import { NoImplementation } from './internal/errors'\nimport { bytes } from './primitives'\nimport { Account } from './reference'\n\n/**\n * A proxy for manipulating a global state field\n * @typeParam ValueType The type of the value being stored - must be a serializable type\n */\nexport type GlobalState<ValueType> = {\n /**\n * Get or set the value of this global state field\n */\n value: ValueType\n /**\n * Delete the stored value of this global state field\n */\n delete(): void\n /**\n * Gets a boolean value indicating if global state field currently has a value\n */\n readonly hasValue: boolean\n}\n/**\n * Options for declaring a global state field\n */\nexport type GlobalStateOptions<ValueType> = {\n /**\n * The key to be used for this global state field.\n *\n * Defaults to the name of the property this proxy is assigned to\n */\n key?: bytes | string\n /**\n * An initial value to assign to this global state field when the application is created\n */\n initialValue?: ValueType\n}\n\n/**\n * Creates a new proxy for manipulating a global state field\n * @param options Options for configuring this field\n * @typeParam ValueType The type of the value being stored - must be a serializable type\n */\nexport function GlobalState<ValueType>(options?: GlobalStateOptions<ValueType>): GlobalState<ValueType> {\n throw new NoImplementation()\n}\n\n/**\n * A proxy for manipulating a local state field for a single account\n */\nexport type LocalStateForAccount<ValueType> = {\n /**\n * Get or set the value of this local state field for a single account\n */\n value: ValueType\n /**\n * Delete the stored value of this local state field for a single account\n */\n delete(): void\n /**\n * Gets a boolean value indicating if local state field for a single account currently has a value\n */\n readonly hasValue: boolean\n}\n\n/**\n * A proxy for manipulating a local state field for any account\n */\nexport type LocalState<ValueType> = {\n /**\n * Gets the LocalState proxy for a specific account\n * @param account The account to read or write state for. This account must be opted into the contract\n */\n (account: Account): LocalStateForAccount<ValueType>\n}\n/**\n * Options for declaring a local state field\n */\nexport type LocalStateOptions = {\n /**\n * The key to be used for this local state field.\n *\n * Defaults to the name of the property this proxy is assigned to\n */\n key?: bytes | string\n}\n\n/**\n * Creates a new proxy for manipulating a local state field\n * @param options Options for configuring this field\n */\nexport function LocalState<ValueType>(options?: LocalStateOptions): LocalState<ValueType> {\n throw new NoImplementation()\n}\n","import { NoImplementation } from './internal/errors'\nimport { OnCompleteAction } from './on-complete-action'\nimport { bytes, uint64 } from './primitives'\nimport type { Account, Application, Asset } from './reference'\nimport type * as txnTypes from './transactions'\n\nconst isItxn = Symbol('isItxn')\n\nexport interface PaymentInnerTxn extends txnTypes.PaymentTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface KeyRegistrationInnerTxn extends txnTypes.KeyRegistrationTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface AssetConfigInnerTxn extends txnTypes.AssetConfigTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface AssetTransferInnerTxn extends txnTypes.AssetTransferTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface AssetFreezeInnerTxn extends txnTypes.AssetFreezeTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface ApplicationInnerTxn extends txnTypes.ApplicationTxn {\n /** @hidden */\n [isItxn]?: true\n}\n\ntype AccountInput = Account | bytes\ntype AssetInput = Asset | uint64\ntype ApplicationInput = Application | uint64\n\nexport interface CommonTransactionFields {\n /**\n * 32 byte address\n */\n sender?: AccountInput\n\n /**\n * microalgos\n */\n fee?: uint64\n\n /**\n * round number\n */\n firstValid?: uint64\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n */\n firstValidTime?: uint64\n\n /**\n * Any data up to 1024 bytes\n */\n note?: bytes | string\n\n /**\n * 32 byte lease value\n */\n lease?: bytes\n\n /**\n * 32 byte Sender's new AuthAddr\n */\n rekeyTo?: AccountInput\n}\n\nexport interface PaymentFields extends CommonTransactionFields {\n /**\n * The amount, in microALGO, to transfer\n *\n */\n amount?: uint64\n /**\n * The address of the receiver\n */\n receiver?: AccountInput\n /**\n * If set, bring the sender balance to 0 and send all remaining balance to this address\n */\n closeRemainderTo?: AccountInput\n}\nexport interface KeyRegistrationFields extends CommonTransactionFields {\n /**\n * 32 byte address\n */\n voteKey?: bytes\n\n /**\n * 32 byte address\n */\n selectionKey?: bytes\n\n /**\n * The first round that the participation key is valid.\n */\n voteFirst?: uint64\n\n /**\n * The last round that the participation key is valid.\n */\n voteLast?: uint64\n\n /**\n * Dilution for the 2-level participation key\n */\n voteKeyDilution?: uint64\n\n /**\n * Marks an account nonparticipating for rewards\n */\n nonparticipation?: boolean\n\n /**\n * 64 byte state proof public key\n */\n stateProofKey?: bytes\n}\nexport interface AssetTransferFields extends CommonTransactionFields {\n /** The asset being transferred */\n xferAsset: AssetInput\n /** The amount of the asset being transferred */\n assetAmount?: uint64\n /** The clawback target */\n assetSender?: AccountInput\n /** The receiver of the asset */\n assetReceiver?: AccountInput\n /** The address to close the asset to */\n assetCloseTo?: AccountInput\n}\nexport interface AssetConfigFields extends CommonTransactionFields {\n configAsset?: AssetInput\n manager?: AccountInput\n reserve?: AccountInput\n freeze?: AccountInput\n clawback?: AccountInput\n assetName?: string | bytes\n unitName?: string | bytes\n total?: uint64\n decimals?: uint64\n defaultFrozen?: boolean\n url?: string | bytes\n metadataHash?: bytes\n}\nexport interface AssetFreezeFields extends CommonTransactionFields {\n freezeAsset: AssetInput\n freezeAccount?: AccountInput\n frozen?: boolean\n}\nexport interface ApplicationCallFields extends CommonTransactionFields {\n appId?: ApplicationInput\n approvalProgram?: bytes | readonly [...bytes[]]\n clearStateProgram?: bytes | readonly [...bytes[]]\n onCompletion?: OnCompleteAction | uint64\n globalNumUint?: uint64\n globalNumBytes?: uint64\n localNumUint?: uint64\n localNumBytes?: uint64\n extraProgramPages?: uint64\n appArgs?: readonly [...unknown[]]\n accounts?: readonly [...AccountInput[]]\n assets?: readonly [...AssetInput[]]\n apps?: readonly [...ApplicationInput[]]\n}\n\nexport type InnerTransaction =\n | PaymentItxnParams\n | KeyRegistrationItxnParams\n | AssetConfigItxnParams\n | AssetTransferItxnParams\n | AssetFreezeItxnParams\n | ApplicationCallItxnParams\n\nexport type InnerTxnList = [...InnerTransaction[]]\n\nexport type TxnFor<TFields extends InnerTxnList> = TFields extends [{ submit(): infer TTxn }, ...infer TRest extends InnerTxnList]\n ? [TTxn, ...TxnFor<TRest>]\n : []\n\nexport interface PaymentItxnParams {\n submit(): PaymentInnerTxn\n set(p: Partial<PaymentFields>): void\n copy(): PaymentItxnParams\n}\nexport interface KeyRegistrationItxnParams {\n submit(): KeyRegistrationInnerTxn\n set(p: Partial<KeyRegistrationFields>): void\n copy(): KeyRegistrationItxnParams\n}\nexport interface AssetConfigItxnParams {\n submit(): AssetConfigInnerTxn\n set(p: Partial<AssetConfigFields>): void\n copy(): AssetConfigItxnParams\n}\nexport interface AssetTransferItxnParams {\n submit(): AssetTransferInnerTxn\n set(p: Partial<AssetTransferFields>): void\n copy(): AssetTransferItxnParams\n}\nexport interface AssetFreezeItxnParams {\n submit(): AssetFreezeInnerTxn\n set(p: Partial<AssetFreezeFields>): void\n copy(): AssetFreezeItxnParams\n}\nexport interface ApplicationCallItxnParams {\n submit(): ApplicationInnerTxn\n set(p: Partial<ApplicationCallFields>): void\n copy(): ApplicationCallItxnParams\n}\n\nexport function submitGroup<TFields extends InnerTxnList>(...transactionFields: TFields): TxnFor<TFields> {\n throw new NoImplementation()\n}\nexport function payment(fields: PaymentFields): PaymentItxnParams {\n throw new NoImplementation()\n}\nexport function keyRegistration(fields: KeyRegistrationFields): KeyRegistrationItxnParams {\n throw new NoImplementation()\n}\nexport function assetConfig(fields: AssetConfigFields): AssetConfigItxnParams {\n throw new NoImplementation()\n}\nexport function assetTransfer(fields: AssetTransferFields): AssetTransferItxnParams {\n throw new NoImplementation()\n}\nexport function assetFreeze(fields: AssetFreezeFields): AssetFreezeItxnParams {\n throw new NoImplementation()\n}\nexport function applicationCall(fields: ApplicationCallFields): ApplicationCallItxnParams {\n throw new NoImplementation()\n}\n","import { NoImplementation } from './internal/errors'\nimport { uint64 } from './primitives'\nimport type * as txnTypes from './transactions'\n\nconst isGtxn = Symbol('isGtxn')\nexport interface PaymentTxn extends txnTypes.PaymentTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface KeyRegistrationTxn extends txnTypes.KeyRegistrationTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface AssetConfigTxn extends txnTypes.AssetConfigTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface AssetTransferTxn extends txnTypes.AssetTransferTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface AssetFreezeTxn extends txnTypes.AssetFreezeTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface ApplicationTxn extends txnTypes.ApplicationTxn {\n /** @hidden */\n [isGtxn]?: true\n}\n\nexport type Transaction = PaymentTxn | KeyRegistrationTxn | AssetConfigTxn | AssetTransferTxn | AssetFreezeTxn | ApplicationTxn\n\nexport function Transaction(groupIndex: uint64): Transaction {\n throw new NoImplementation()\n}\nexport function PaymentTxn(groupIndex: uint64): PaymentTxn {\n throw new NoImplementation()\n}\nexport function KeyRegistrationTxn(groupIndex: uint64): KeyRegistrationTxn {\n throw new NoImplementation()\n}\nexport function AssetConfigTxn(groupIndex: uint64): AssetConfigTxn {\n throw new NoImplementation()\n}\nexport function AssetTransferTxn(groupIndex: uint64): AssetTransferTxn {\n throw new NoImplementation()\n}\nexport function AssetFreezeTxn(groupIndex: uint64): AssetFreezeTxn {\n throw new NoImplementation()\n}\nexport function ApplicationTxn(groupIndex: uint64): ApplicationTxn {\n throw new NoImplementation()\n}\n","import { OnCompleteActionStr } from './on-complete-action'\nimport { bytes, uint64 } from './primitives'\nimport { Account, Application, Asset } from './reference'\n\n/**\n * The different transaction types available in a transaction\n */\nexport enum TransactionType {\n /**\n * A Payment transaction\n */\n Payment = 1,\n /**\n * A Key Registration transaction\n */\n KeyRegistration = 2,\n /**\n * An Asset Config transaction\n */\n AssetConfig = 3,\n /**\n * An Asset Transfer transaction\n */\n AssetTransfer = 4,\n /**\n * An Asset Freeze transaction\n */\n AssetFreeze = 5,\n /**\n * An Application Call transaction\n */\n ApplicationCall = 6,\n}\n\ninterface TransactionBase {\n /**\n * 32 byte address\n */\n readonly sender: Account\n\n /**\n * microalgos\n */\n readonly fee: uint64\n\n /**\n * round number\n */\n readonly firstValid: uint64\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n */\n readonly firstValidTime: uint64\n\n /**\n * round number\n */\n readonly lastValid: uint64\n\n /**\n * Any data up to 1024 bytes\n */\n readonly note: bytes\n\n /**\n * 32 byte lease value\n */\n readonly lease: bytes\n\n /**\n * Transaction type as bytes\n */\n readonly typeBytes: bytes\n\n /**\n * Position of this transaction within an atomic group\n * A stand-alone transaction is implicitly element 0 in a group of 1\n */\n readonly groupIndex: uint64\n\n /**\n * The computed ID for this transaction. 32 bytes.\n */\n readonly txnId: bytes\n\n /**\n * 32 byte Sender's new AuthAddr\n */\n readonly rekeyTo: Account\n}\n\n/**\n * A payment transaction\n */\nexport interface PaymentTxn extends TransactionBase {\n /**\n * 32 byte address\n */\n readonly receiver: Account\n\n /**\n * microalgos\n */\n readonly amount: uint64\n\n /**\n * 32 byte address\n */\n readonly closeRemainderTo: Account\n\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.Payment\n}\n\nexport interface KeyRegistrationTxn extends TransactionBase {\n /**\n * 32 byte address\n */\n readonly voteKey: bytes\n\n /**\n * 32 byte address\n */\n readonly selectionKey: bytes\n\n /**\n * The first round that the participation key is valid.\n */\n readonly voteFirst: uint64\n\n /**\n * The last round that the participation key is valid.\n */\n readonly voteLast: uint64\n\n /**\n * Dilution for the 2-level participation key\n */\n readonly voteKeyDilution: uint64\n\n /**\n * Marks an account nonparticipating for rewards\n */\n readonly nonparticipation: boolean\n\n /**\n * 64 byte state proof public key\n */\n readonly stateProofKey: bytes\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.KeyRegistration\n}\n\nexport interface AssetConfigTxn extends TransactionBase {\n /**\n * Asset ID in asset config transaction\n */\n readonly configAsset: Asset\n\n /**\n * Total number of units of this asset created\n */\n readonly total: uint64\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n */\n readonly decimals: uint64\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n */\n readonly defaultFrozen: boolean\n\n /**\n * Unit name of the asset\n */\n readonly unitName: bytes\n\n /**\n * The asset name\n */\n readonly assetName: bytes\n\n /**\n * URL\n */\n readonly url: bytes\n\n /**\n * 32 byte commitment to unspecified asset metadata\n */\n readonly metadataHash: bytes\n\n /**\n * 32 byte address\n */\n readonly manager: Account\n\n /**\n * 32 byte address\n */\n readonly reserve: Account\n\n /**\n * 32 byte address\n */\n readonly freeze: Account\n\n /**\n * 32 byte address\n */\n readonly clawback: Account\n /**\n * Asset ID allocated by the creation of an ASA\n */\n createdAsset: Asset\n\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.AssetConfig\n}\n\nexport interface AssetTransferTxn extends TransactionBase {\n /**\n * Asset ID\n */\n readonly xferAsset: Asset\n\n /**\n * value in Asset's units\n */\n readonly assetAmount: uint64\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n */\n readonly assetSender: Account\n\n /**\n * 32 byte address\n */\n readonly assetReceiver: Account\n\n /**\n * 32 byte address\n */\n readonly assetCloseTo: Account\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.AssetTransfer\n}\n\nexport interface AssetFreezeTxn extends TransactionBase {\n /**\n * Asset ID being frozen or un-frozen\n */\n readonly freezeAsset: Asset\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n */\n readonly freezeAccount: Account\n\n /**\n * The new frozen value\n */\n readonly frozen: boolean\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.AssetFreeze\n}\n\nexport interface ApplicationTxn extends TransactionBase {\n /**\n * ApplicationID from ApplicationCall transaction\n */\n readonly appId: Application\n\n /**\n * ApplicationCall transaction on completion action\n */\n readonly onCompletion: OnCompleteActionStr\n\n /**\n * Number of ApplicationArgs\n */\n readonly numAppArgs: uint64\n\n /**\n * Number of ApplicationArgs\n */\n readonly numAccounts: uint64\n\n /**\n * Approval program\n */\n readonly approvalProgram: bytes\n\n /**\n * Clear State program\n */\n readonly clearStateProgram: bytes\n\n /**\n * Number of Assets\n */\n readonly numAssets: uint64\n\n /**\n * Number of Applications\n */\n readonly numApps: uint64\n\n /**\n * Number of global state integers in ApplicationCall\n */\n readonly globalNumUint: uint64\n\n /**\n * Number of global state byteslices in ApplicationCall\n */\n readonly globalNumBytes: uint64\n\n /**\n * Number of local state integers in ApplicationCall\n */\n readonly localNumUint: uint64\n\n /**\n * Number of local state byteslices in ApplicationCall\n */\n readonly localNumBytes: uint64\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n */\n readonly extraProgramPages: uint64\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n */\n readonly lastLog: bytes\n\n /**\n * Log messages emitted by an application call\n */\n logs(index: uint64): bytes\n\n /**\n * Number of logs\n */\n readonly numLogs: uint64\n\n /**\n * ApplicationID allocated by the creation of an application\n */\n readonly createdApp: Application\n\n /**\n * Number of Approval Program pages\n */\n readonly numApprovalProgramPages: uint64\n\n /**\n * Number of Clear State Program pages\n */\n readonly numClearStateProgramPages: uint64\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * @param index\n */\n appArgs(index: uint64): bytes\n\n /**\n * Accounts listed in the ApplicationCall transaction\n */\n accounts(index: uint64): Account\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n */\n assets(index: uint64): Asset\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n */\n apps(index: uint64): Application\n\n /**\n * Approval Program as an array of pages\n */\n approvalProgramPages(index: uint64): bytes\n\n /**\n * Clear State Program as an array of pages\n */\n clearStateProgramPages(index: uint64): bytes\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.ApplicationCall\n}\n\nexport type Transaction = PaymentTxn | KeyRegistrationTxn | AssetConfigTxn | AssetTransferTxn | AssetFreezeTxn | ApplicationTxn\n","import { ConstructorFor } from './internal/typescript-helpers'\nimport { uint64 } from './primitives'\n\n/**\n * Base class for Algorand TypeScript Logic Signatures (also known as Smart Signatures)\n */\nexport abstract class LogicSig {\n /**\n * The logic signature program logic\n */\n abstract program(): boolean | uint64\n}\n\n/**\n * Alias for a numeric range specification.\n */\ntype NumberRange = {\n /**\n * The start point of the range (inclusive)\n */\n from: number\n /**\n * The end point of the range (inclusive)\n */\n to: number\n}\n\n/**\n * Defines optional configuration for a logic signature\n */\ntype LogicSigOptions = {\n /**\n * Determines which AVM version to use, this affects what operations are supported.\n * Defaults to value provided supplied on command line (which defaults to current mainnet version)\n */\n avmVersion?: 10 | 11\n /**\n * Override the name of the logic signature when generating build artifacts.\n * Defaults to the class name\n */\n name?: string\n /**\n * Allows you to mark a slot ID or range of slot IDs as \"off limits\" to Puya.\n * These slot ID(s) will never be written to or otherwise manipulating by the compiler itself.\n * This is particularly useful in combination with `op.gload_bytes` / `op.gload_uint64`\n * which lets a contract in a group transaction read from the scratch slots of another contract\n * that occurs earlier in the transaction group.\n */\n scratchSlots?: Array<number | NumberRange>\n}\n\n/**\n * The logicsig decorator can be used to specify additional configuration options for a logic signature\n * @param options An object containing the configuration options\n */\nexport function logicsig(options: LogicSigOptions) {\n return <T extends ConstructorFor<LogicSig>>(logicSig: T) => logicSig\n}\n","import { NoImplementation } from './internal/errors'\n\n/**\n * Declare a template variable which can be replaced at compile time with an environment specific value.\n *\n * The final variable name will be `prefix + variableName`\n * @param variableName The key used to identify the variable.\n * @param prefix The prefix to apply the variable name (Defaults to 'TMPL_')\n */\nexport function TemplateVar<T>(variableName: string, prefix = 'TMPL_'): T {\n throw new NoImplementation()\n}\n","import { BaseContract } from './base-contract'\nimport { NoImplementation } from './internal/errors'\nimport { ConstructorFor, DeliberateAny } from './internal/typescript-helpers'\nimport { LogicSig } from './logic-sig'\nimport { bytes, uint64 } from './primitives'\nimport { Account } from './reference'\n\n/**\n * Provides compiled programs and state allocation values for a Contract. Created by calling `compile(ExampleContractType)`\n */\nexport type CompiledContract = {\n /**\n * Approval program pages for a contract, after template variables have been replaced and compiled to AVM bytecode\n */\n approvalProgram: [bytes, bytes]\n /**\n * Clear state program pages for a contract, after template variables have been replaced and compiled to AVM bytecode\n */\n clearStateProgram: [bytes, bytes]\n /**\n * By default, provides extra program pages required based on approval and clear state program size, can be overridden when calling `compile(ExampleContractType, { extraProgramPages: ... })`\n */\n extraProgramPages: uint64\n /**\n * By default, provides global num uints based on contract state totals, can be overridden when calling `compile(ExampleContractType, { globalUints: ... })`\n */\n globalUints: uint64\n /**\n * By default, provides global num bytes based on contract state totals, can be overridden when calling `compile(ExampleContractType, { globalBytes: ... })`\n */\n globalBytes: uint64\n /**\n * By default, provides local num uints based on contract state totals, can be overridden when calling `compile(ExampleContractType, { localUints: ... })`\n */\n localUints: uint64\n /**\n * By default, provides local num bytes based on contract state totals, can be overridden when calling `compile(ExampleContractType, { localBytes: ... })`\n */\n localBytes: uint64\n}\n\n/**\n * Provides account for a Logic Signature. Created by calling `compile(LogicSigType)`\n */\nexport type CompiledLogicSig = {\n /**\n * Address of a logic sig program, after template variables have been replaced and compiled to AVM bytecode\n */\n account: Account\n}\n\n/**\n * Options for compiling a contract\n */\nexport type CompileContractOptions = {\n /**\n * Number of extra program pages, defaults to minimum required for contract\n */\n extraProgramPages?: uint64\n /**\n * Number of global uint64s, defaults to value defined for contract\n */\n globalUints?: uint64\n /**\n * Number of global bytes, defaults to value defined for contract\n */\n globalBytes?: uint64\n /**\n * Number of local uint64s, defaults to value defined for contract\n */\n localUints?: uint64\n /**\n * Number of local bytes, defaults to value defined for contract\n */\n localBytes?: uint64\n /**\n * Template variables to substitute into the contract, key should be without the prefix, must evaluate to a compile time constant\n * and match the type of the template var declaration\n */\n templateVars?: Record<string, DeliberateAny>\n /**\n * Prefix to add to provided template vars, defaults to the prefix supplied on command line (which defaults to TMPL_)\n */\n templateVarsPrefix?: string\n}\n\n/**\n * Options for compiling a logic signature\n */\nexport type CompileLogicSigOptions = {\n /**\n * Template variables to substitute into the contract, key should be without the prefix, must evaluate to a compile time constant\n * and match the type of the template var declaration\n */\n templateVars?: Record<string, DeliberateAny>\n /**\n * Prefix to add to provided template vars, defaults to the prefix supplied on command line (which defaults to TMPL_)\n */\n templateVarsPrefix?: string\n}\n\n/**\n * Compile a contract and return the resulting byte code for approval and clear state programs.\n * @param contract The contract class to compile\n * @param options Options for compiling the contract\n */\nexport function compile(contract: ConstructorFor<BaseContract>, options?: CompileContractOptions): CompiledContract\n/**\n * Compile a logic signature and return an account ready for signing transactions.\n * @param logicSig The logic sig class to compile\n * @param options Options for compiling the logic sig\n */\nexport function compile(logicSig: ConstructorFor<LogicSig>, options?: CompileLogicSigOptions): CompiledLogicSig\nexport function compile(artefact: ConstructorFor<BaseContract> | ConstructorFor<LogicSig>): CompiledLogicSig | CompiledContract {\n throw new NoImplementation()\n}\n","import { NoImplementation } from './internal/errors'\nimport { uint64, Uint64Compat } from './primitives'\n\n/**\n * An in memory mutable array which is passed by reference\n */\nexport class MutableArray<TItem> {\n /**\n * Create a new MutableArray with the specified items\n * @param items The initial items for the array\n */\n constructor(...items: TItem[]) {}\n\n /**\n * Returns the current length of this array\n */\n get length(): uint64 {\n throw new NoImplementation()\n }\n\n /**\n * Returns the item at the given index.\n * Negative indexes are taken from the end.\n * @param index The index of the item to retrieve\n */\n at(index: Uint64Compat): TItem {\n throw new NoImplementation()\n }\n\n /**\n * Create a new Dynamic array with all items from this array\n * @internal Not supported yet\n */\n slice(): MutableArray<TItem>\n /**\n * Create a new MutableArray with all items up till `end`.\n * Negative indexes are taken from the end.\n * @param end An index in which to stop copying items.\n * @internal Not supported yet\n */\n slice(end: Uint64Compat): MutableArray<TItem>\n /**\n * Create a new MutableArray with items from `start`, up until `end`\n * Negative indexes are taken from the end.\n * @param start An index in which to start copying items.\n * @param end An index in which to stop copying items\n * @internal Not supported yet\n */\n slice(start: Uint64Compat, end: Uint64Compat): MutableArray<TItem>\n slice(start?: Uint64Compat, end?: Uint64Compat): MutableArray<TItem> {\n throw new NoImplementation()\n }\n\n /**\n * Returns an iterator for the items in this array\n */\n [Symbol.iterator](): IterableIterator<TItem> {\n throw new NoImplementation()\n }\n\n /**\n * Returns an iterator for a tuple of the indexes and items in this array\n */\n entries(): IterableIterator<readonly [uint64, TItem]> {\n throw new NoImplementation()\n }\n\n /**\n * Returns an iterator for the indexes in this array\n */\n keys(): IterableIterator<uint64> {\n throw new NoImplementation()\n }\n\n /**\n * Get or set the item at the specified index.\n * Negative indexes are not supported\n */\n [index: uint64]: TItem\n\n /**\n * Push a number of items into this array\n * @param items The items to be added to this array\n */\n push(...items: TItem[]): void {\n throw new NoImplementation()\n }\n\n /**\n * Pop a single item from this array\n */\n pop(): TItem {\n throw new NoImplementation()\n }\n\n /**\n * Create a copy of this array\n */\n copy(): MutableArray<TItem> {\n throw new NoImplementation()\n }\n}\n","import { NoImplementation } from './internal/errors'\nimport { DeliberateAny } from './internal/typescript-helpers'\n\n/**\n * Emit an arc28 event log using either an ARC4Struct type or a named object type.\n * Object types must have an ARC4 equivalent type.\n *\n * Anonymous types cannot be used as the type name is used to determine the event prefix\n * @param event An ARC4Struct instance, or a plain object with a named type\n *\n * @example\n * class Demo extends Struct<{ a: UintN64 }> {}\n * emit(new Demo({ a: new UintN64(123) }))\n *\n * @example\n * type Demo = { a: uint64 }\n * emit<Demo>({a: 123})\n * // or\n * const d: Demo = { a: 123 }\n * emit(d)\n */\nexport function emit<TEvent extends Record<string, DeliberateAny>>(event: TEvent): void\n/**\n * Emit an arc28 event log using an explicit name and inferred property/field types.\n * Property types must be ARC4 or have an ARC4 equivalent type.\n * @param eventName The name of the event (must be a compile time constant)\n * @param eventProps A set of event properties (order is significant)\n *\n * @example\n * emit(\"Demo\", new UintN64(123))\n *\n * @example\n * const a: uint64 = 123\n * emit(\"Demo\", a)\n */\nexport function emit<TProps extends [...DeliberateAny[]]>(eventName: string, ...eventProps: TProps): void\nexport function emit<T>(event: T | string, ...eventProps: unknown[]): void {\n throw new NoImplementation()\n}\n","/**\n * The possible on complete actions a method can handle, represented as a string\n */\nexport type OnCompleteActionStr = 'NoOp' | 'OptIn' | 'ClearState' | 'CloseOut' | 'UpdateApplication' | 'DeleteApplication'\n\n/**\n * The possible on complete actions a method can handle, represented as an integer\n */\nexport enum OnCompleteAction {\n /**\n * Do nothing after the transaction has completed\n */\n NoOp = 0,\n /**\n * Opt the calling user into the contract\n */\n OptIn = 1,\n /**\n * Close the calling user out of the contract\n */\n CloseOut = 2,\n /**\n * Run the clear state program and forcibly close the user out of the contract\n */\n ClearState = 3,\n /**\n * Replace the application's approval and clear state programs with the bytes from this transaction\n */\n UpdateApplication = 4,\n /**\n * Delete the application\n */\n DeleteApplication = 5,\n}\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.mjs","sources":["../src/primitives.ts","../src/util.ts","../src/reference.ts","../src/box.ts","../src/state.ts","../src/itxn.ts","../src/gtxn.ts","../src/transactions.ts","../src/logic-sig.ts","../src/template-var.ts","../src/compiled.ts","../src/mutable-array.ts","../src/arc-28.ts","../src/on-complete-action.ts"],"sourcesContent":["import { NoImplementation } from './internal/errors'\n\n/**\n * An alias for types which can be converted to a uint64\n */\nexport type Uint64Compat = uint64 | bigint | boolean | number\n/**\n * An alias for types which can be converted to a biguint\n */\nexport type BigUintCompat = bigint | bytes | number | boolean\n/**\n * An alias for types which can be converted to a string\n */\nexport type StringCompat = string\n/**\n * An alias for types which can be converted to a bytes sequence\n */\nexport type BytesCompat = bytes | string\n\n/**\n * An unsigned integer of exactly 64 bits\n */\nexport type uint64 = {\n /**\n * @hidden\n */\n __type?: 'uint64'\n} & number\n\n/**\n * Create a uint64 with the default value of 0\n */\nexport function Uint64(): uint64\n/**\n * Create a uint64 from a string literal\n */\nexport function Uint64(v: string): uint64\n/**\n * Create a uint64 from a bigint literal\n */\nexport function Uint64(v: bigint): uint64\n/**\n * Create a uint64 from a number literal\n */\nexport function Uint64(v: number): uint64\n/**\n * Create a uint64 from a boolean value. True is 1, False is 0\n */\nexport function Uint64(v: boolean): uint64\nexport function Uint64(v?: Uint64Compat | string): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * An unsigned integer of up to 512 bits\n *\n * Stored as a big-endian variable byte array\n */\nexport type biguint = {\n /**\n * @hidden\n */\n __type?: 'biguint'\n} & bigint\n\n/**\n * Create a biguint from a bigint literal\n */\nexport function BigUint(v: bigint): biguint\n/**\n * Create a biguint from a boolean value (true = 1, false = 0)\n */\nexport function BigUint(v: boolean): biguint\n/**\n * Create a biguint from a uint64 value\n */\nexport function BigUint(v: uint64): biguint\n/**\n * Create a biguint from a number literal\n */\nexport function BigUint(v: number): biguint\n/**\n * Create a biguint from a byte array interpreted as a big-endian number\n */\nexport function BigUint(v: bytes): biguint\n/**\n * Create a biguint from a string literal containing the decimal digits\n */\nexport function BigUint(v: string): biguint\n/**\n * Create a biguint with the default value of 0\n */\nexport function BigUint(): biguint\nexport function BigUint(v?: BigUintCompat | string): biguint {\n throw new NoImplementation()\n}\n\n/**\n * A sequence of zero or more bytes (ie. byte[])\n */\nexport type bytes = {\n /**\n * Retrieve the length of the byte sequence\n */\n readonly length: uint64\n\n /**\n * Retrieve the byte at the index i\n * @param i The index to read. Can be negative to read from the end\n * @returns The byte found at the index, or an empty bytes value\n */\n at(i: Uint64Compat): bytes\n\n /**\n * Concatenate this bytes value with another bytes value\n * @param other The other bytes value\n * @returns The concatenation result\n */\n concat(other: BytesCompat): bytes\n\n /**\n * Perform a bitwise AND operation with this bytes value and another bytes value.\n *\n * The shorter of the two values will be zero-left extended to the larger length.\n * @param other The other bytes value\n * @returns The bitwise operation result\n */\n bitwiseAnd(other: BytesCompat): bytes\n\n /**\n * Perform a bitwise OR operation with this bytes value and another bytes value\n *\n * The shorter of the two values will be zero-left extended to the larger length.\n * @param other The other bytes value\n * @returns The bitwise operation result\n */\n bitwiseOr(other: BytesCompat): bytes\n\n /**\n * Perform a bitwise XOR operation with this bytes value and another bytes value.\n *\n * The shorter of the two values will be zero-left extended to the larger length.\n * @param other The other bytes value\n * @returns The bitwise operation result\n */\n bitwiseXor(other: BytesCompat): bytes\n\n /**\n * Perform a bitwise INVERT operation with this bytes value\n * @returns The bitwise operation result\n */\n bitwiseInvert(): bytes\n\n /**\n * Compares this bytes value with another.\n * @param other The other bytes value\n * @returns True if both values represent the same byte sequence\n */\n equals(other: BytesCompat): boolean\n\n /**\n * Returns a copy of this bytes sequence\n */\n slice(): bytes\n /**\n * Returns a slice of this bytes sequence from the specified start to the end\n * @param start The index to start slicing from. Can be negative to count from the end.\n */\n slice(start: Uint64Compat): bytes\n /**\n * Returns a slice of this bytes sequence from the specified start to the specified end\n * @param start The index to start slicing from. Can be negative to count from the end.\n * @param end The index to end the slice. Can be negative to count from the end.\n */\n slice(start: Uint64Compat, end: Uint64Compat): bytes\n /**\n * @hidden\n */\n slice(start?: Uint64Compat, end?: Uint64Compat): bytes\n\n /**\n * Interpret this byte sequence as a utf-8 string\n */\n toString(): string\n}\n\n/**\n * Create a byte array from a string interpolation template and compatible replacements\n * @param value\n * @param replacements\n */\nexport function Bytes(value: TemplateStringsArray, ...replacements: BytesCompat[]): bytes\n/**\n * Create a byte array from a utf8 string\n */\nexport function Bytes(value: string): bytes\n/**\n * No op, returns the provided byte array.\n */\nexport function Bytes(value: bytes): bytes\n/**\n * Create a byte array from a biguint value encoded as a variable length big-endian number\n */\nexport function Bytes(value: biguint): bytes\n/**\n * Create a byte array from a uint64 value encoded as a fixed length 64-bit number\n */\nexport function Bytes(value: uint64): bytes\n/**\n * Create a byte array from an Iterable<uint64> where each item is interpreted as a single byte and must be between 0 and 255 inclusively\n */\nexport function Bytes(value: Iterable<uint64>): bytes\n/**\n * Create an empty byte array\n */\nexport function Bytes(): bytes\nexport function Bytes(\n value?: BytesCompat | TemplateStringsArray | biguint | uint64 | Iterable<number>,\n ...replacements: BytesCompat[]\n): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Create a new bytes value from a hexadecimal encoded string\n * @param hex A literal string of hexadecimal characters\n */\nBytes.fromHex = (hex: string): bytes => {\n throw new NoImplementation()\n}\n/**\n * Create a new bytes value from a base 64 encoded string\n * @param b64 A literal string of b64 encoded characters\n */\nBytes.fromBase64 = (b64: string): bytes => {\n throw new NoImplementation()\n}\n\n/**\n * Create a new bytes value from a base 32 encoded string\n * @param b32 A literal string of b32 encoded characters\n */\nBytes.fromBase32 = (b32: string): bytes => {\n throw new NoImplementation()\n}\n\n/**\n * An interface for types which are backed by the AVM bytes type\n */\nexport interface BytesBacked {\n /**\n * Retrieve the underlying bytes representing this value\n */\n get bytes(): bytes\n}\n","import { NoImplementation } from './internal/errors'\nimport { biguint, BigUintCompat, BytesBacked, BytesCompat, StringCompat, uint64, Uint64Compat } from './primitives'\n\n/**\n * Write one or more values to the transaction log.\n *\n * Each value is converted to bytes and concatenated\n * @param args The values to write\n */\nexport function log(...args: Array<Uint64Compat | BytesCompat | BigUintCompat | StringCompat | BytesBacked>): void {\n throw new NoImplementation()\n}\n\n/**\n * Asserts that `condition` is truthy, otherwise error and halt execution.\n * @param condition An expression that can be evaluated as truthy of falsy\n * @param message The message to show if `condition` is falsy and an error is raised.\n */\nexport function assert(condition: unknown, message?: string): asserts condition {\n throw new NoImplementation()\n}\n\n/**\n * Raise an error and halt execution\n * @param message The message to accompany the error\n */\nexport function err(message?: string): never {\n throw new NoImplementation()\n}\n\n/**\n * Defines possible comparison expressions for numeric types\n */\ntype NumericComparison<T> =\n | T\n | {\n /**\n * Is the subject less than the specified value\n */\n lessThan: T\n }\n | {\n /**\n * Is the subject greater than the specified value\n */\n greaterThan: T\n }\n | {\n /**\n * Is the subject greater than or equal to the specified value\n */\n greaterThanEq: T\n }\n | {\n /**\n * Is the subject less than or equal to the specified value\n */\n lessThanEq: T\n }\n | {\n /**\n * Is the subject between the specified values (inclusive)\n */\n between: [T, T]\n }\n\n/**\n * Returns compatible comparison expressions for a type `T`\n * @typeParam T The type requiring comparison\n */\ntype ComparisonFor<T> = T extends uint64 | biguint ? NumericComparison<T> : T\n\n/**\n * A set of tests to apply to the match subject\n * @typeParam T The type of the test subject\n */\ntype MatchTest<T> = {\n [key in keyof T]?: ComparisonFor<T[key]>\n}\n\n/**\n * Applies all tests in `test` against `subject` and returns a boolean indicating if they all pass\n * @param subject An object or tuple to be tested\n * @param test An object containing one or more tests to be applied to the subject\n * @typeParam T The type of the subject\n * @returns True if all tests pass, otherwise false\n */\nexport function match<T>(subject: T, test: MatchTest<T>): boolean {\n throw new NoImplementation()\n}\n\n/**\n *\n * Applies all tests in `test` against `subject` and asserts they all pass\n * @param subject An object or tuple to be tested\n * @param test An object containing one or more tests to be applied to the subject\n * @param message An optional message to show if the assertion fails\n * @typeParam T The type of the subject\n */\nexport function assertMatch<T>(subject: T, test: MatchTest<T>, message?: string): boolean {\n throw new NoImplementation()\n}\n\n/**\n * Defines the source of fees for the OpUp utility\n */\nexport enum OpUpFeeSource {\n /**\n * Only the excess fee (credit) on the outer group should be used (itxn.fee = 0)\n */\n GroupCredit = 0,\n /**\n * The app's account will cover all fees (itxn.fee = Global.minTxFee)\n */\n AppAccount = 1,\n /**\n * First the excess will be used, then remaining fees taken from the app account\n */\n Any = 2,\n}\n\n/**\n * Ensure the available op code budget is greater than or equal to requiredBudget.\n *\n * This is done by adding AppCall itxns to the group to increase the available budget. These itxns must be paid for\n * by the caller or the application.\n * @param requiredBudget The total required budget\n * @param feeSource Which source to withdraw txn fees from.\n */\nexport function ensureBudget(requiredBudget: uint64, feeSource: OpUpFeeSource = OpUpFeeSource.GroupCredit) {\n throw new NoImplementation()\n}\n\n/**\n * Generates an iterable sequence from 0...stop inclusive\n * @param stop The stop number of the sequence\n */\nexport function urange(stop: Uint64Compat): IterableIterator<uint64>\n/**\n * Generates an iterable sequence from start...stop inclusive\n * @param start The start number of the sequence\n * @param stop The stop number of the sequence\n */\nexport function urange(start: Uint64Compat, stop: Uint64Compat): IterableIterator<uint64>\n/**\n * Generates an iterable sequence from start...stop inclusive with increments of size step\n * @param start The start number of the sequence\n * @param stop The stop number of the sequence\n * @param step The step size of the sequence\n */\nexport function urange(start: Uint64Compat, stop: Uint64Compat, step: Uint64Compat): IterableIterator<uint64>\nexport function urange(a: Uint64Compat, b?: Uint64Compat, c?: Uint64Compat): IterableIterator<uint64> {\n throw new NoImplementation()\n}\n\n/**\n * Defines a numeric range including all numbers between from and to\n */\nexport type NumberRange = { from: number; to: number }\n","import { NoImplementation } from './internal/errors'\nimport { bytes, uint64 } from './primitives'\n\n/**\n * Represents an Algorand Account and exposes properties and methods for reading account data\n */\nexport type Account = {\n /**\n * Get the accounts address in bytes\n */\n readonly bytes: bytes\n\n /**\n * Account balance in microalgos\n *\n * Account must be an available resource\n */\n readonly balance: uint64\n\n /**\n * Minimum required balance for account, in microalgos\n *\n * Account must be an available resource\n */\n readonly minBalance: uint64\n\n /**\n * Address the account is rekeyed to\n *\n * Account must be an available resource\n */\n readonly authAddress: Account\n\n /**\n * The total number of uint64 values allocated by this account in Global and Local States.\n *\n * Account must be an available resource\n */\n readonly totalNumUint: uint64\n\n /**\n * The total number of byte array values allocated by this account in Global and Local States.\n *\n * Account must be an available resource\n */\n readonly totalNumByteSlice: uint64\n\n /**\n * The number of extra app code pages used by this account.\n *\n * Account must be an available resource\n */\n readonly totalExtraAppPages: uint64\n\n /**\n * The number of existing apps created by this account.\n *\n * Account must be an available resource\n */\n readonly totalAppsCreated: uint64\n\n /**\n * The number of apps this account is opted into.\n *\n * Account must be an available resource\n */\n readonly totalAppsOptedIn: uint64\n\n /**\n * The number of existing ASAs created by this account.\n *\n * Account must be an available resource\n */\n readonly totalAssetsCreated: uint64\n\n /**\n * The numbers of ASAs held by this account (including ASAs this account created).\n *\n * Account must be an available resource\n */\n readonly totalAssets: uint64\n\n /**\n * The number of existing boxes created by this account's app.\n *\n * Account must be an available resource\n */\n readonly totalBoxes: uint64\n\n /**\n * The total number of bytes used by this account's app's box keys and values.\n *\n * Account must be an available resource\n */\n readonly totalBoxBytes: uint64\n\n /**\n * Returns true if this account is opted in to the specified Asset or Application.\n * Note: Account and Asset/Application must be an available resource\n *\n * @param assetOrApp\n */\n isOptedIn(assetOrApp: Asset | Application): boolean\n}\n\n/**\n * Create a new account object representing the zero address\n */\nexport function Account(): Account\n/**\n * Create a new account object representing the provided public key bytes\n * @param publicKey A 32-byte Algorand account public key\n */\nexport function Account(publicKey: bytes): Account\n/**\n * Create a new account object representing the provided address\n * @param address A 56 character base-32 encoded Algorand address\n * @constructor\n */\nexport function Account(address: string): Account\nexport function Account(publicKeyOrAddress?: bytes | string): Account {\n throw new NoImplementation()\n}\n\n/**\n * Creates a new Asset object represent the asset id 0 (an invalid ID)\n */\nexport function Asset(): Asset\n/**\n * Creates a new Asset object representing the asset with the specified id\n * @param assetId The id of the asset\n */\nexport function Asset(assetId: uint64): Asset\nexport function Asset(assetId?: uint64): Asset {\n throw new NoImplementation()\n}\n/**\n * An Asset on the Algorand network.\n */\nexport type Asset = {\n /**\n * Returns the id of the Asset\n */\n readonly id: uint64\n\n /**\n * Total number of units of this asset\n */\n readonly total: uint64\n\n /**\n * @see AssetParams.decimals\n */\n readonly decimals: uint64\n\n /**\n * Frozen by default or not\n */\n readonly defaultFrozen: boolean\n\n /**\n * Asset unit name\n */\n readonly unitName: bytes\n\n /**\n * Asset name\n */\n readonly name: bytes\n\n /**\n * URL with additional info about the asset\n */\n readonly url: bytes\n\n /**\n * Arbitrary commitment\n */\n readonly metadataHash: bytes\n\n /**\n * Manager address\n */\n readonly manager: Account\n\n /**\n * Reserve address\n */\n readonly reserve: Account\n\n /**\n * Freeze address\n */\n readonly freeze: Account\n\n /**\n * Clawback address\n */\n readonly clawback: Account\n\n /**\n * Creator address\n */\n readonly creator: Account\n\n /**\n * Amount of the asset unit held by this account. Fails if the account has not\n * opted in to the asset.\n * Asset and supplied Account must be an available resource\n * @param account Account\n * @return balance: uint64\n */\n balance(account: Account): uint64\n\n /**\n * Is the asset frozen or not. Fails if the account has not\n * opted in to the asset.\n * Asset and supplied Account must be an available resource\n * @param account Account\n * @return isFrozen: boolean\n */\n frozen(account: Account): boolean\n}\n\n/**\n * Creates a new Application object represent the application id 0 (an invalid ID)\n */\nexport function Application(): Application\n/**\n * Creates a new Application object representing the application with the specified id\n * @param applicationId The id of the application\n */\nexport function Application(applicationId: uint64): Application\nexport function Application(applicationId?: uint64): Application {\n throw new NoImplementation()\n}\n\n/**\n * An Application on the Algorand network.\n */\nexport type Application = {\n /**\n * The id of this application on the current network\n */\n readonly id: uint64\n /**\n * Bytecode of Approval Program\n */\n readonly approvalProgram: bytes\n\n /**\n * Bytecode of Clear State Program\n */\n readonly clearStateProgram: bytes\n\n /**\n * Number of uint64 values allowed in Global State\n */\n readonly globalNumUint: uint64\n\n /**\n * Number of byte array values allowed in Global State\n */\n readonly globalNumBytes: uint64\n\n /**\n * Number of uint64 values allowed in Local State\n */\n readonly localNumUint: uint64\n\n /**\n * Number of byte array values allowed in Local State\n */\n readonly localNumBytes: uint64\n\n /**\n * Number of Extra Program Pages of code space\n */\n readonly extraProgramPages: uint64\n\n /**\n * Creator address\n */\n readonly creator: Account\n\n /**\n * Address for which this application has authority\n */\n readonly address: Account\n}\n","import { NoImplementation } from './internal/errors'\nimport { bytes, uint64 } from './primitives'\n\n/**\n * A Box proxy\n * @typeParam TValue The type of the data stored in the box.\n */\nexport type Box<TValue> = {\n /**\n * Get the key used by this box proxy\n */\n readonly key: bytes\n /**\n * Get or set the value stored in the box\n *\n * Get will error if the box does not exist\n */\n value: TValue\n /**\n * Get a boolean indicating if the box exists or not\n */\n readonly exists: boolean\n /**\n * Get the value stored in the box, or return a specified default value if the box does not exist\n * @param options Options to specify a default value to be returned if no other value exists\n * @returns The value if the box exists, else the default value\n */\n get(options: { default: TValue }): TValue\n /**\n * Delete the box associated with this proxy if it exists.\n * @returns True if the box existed and was deleted, else false\n */\n delete(): boolean\n /**\n * Get the value stored in the box if available, and a boolean indicating if the box exists.\n *\n * If the box does not exist, the value returned at position 0 should not be relied on to have a valid value.\n * @returns A tuple with the first item being the box value, and the second item being a boolean indicating if the box exists.\n */\n maybe(): readonly [TValue, boolean]\n /**\n * Returns the length of the box, or error if the box does not exist\n */\n readonly length: uint64\n}\n/**\n * A BoxMap proxy\n * @typeParam TKey The type of the value used to key each box.\n * @typeParam TValue The type of the data stored in the box.\n */\nexport type BoxMap<TKey, TValue> = {\n /**\n * Get the bytes used to prefix each key\n */\n readonly keyPrefix: bytes\n\n /**\n * Get a Box proxy for a single item in the BoxMap\n * @param key The key of the box to retrieve a proxy for\n */\n (key: TKey): Box<TValue>\n}\n\n/**\n * A BoxRef proxy\n */\nexport type BoxRef = {\n /**\n * Get the key used by this box proxy\n */\n readonly key: bytes\n /**\n * Get a boolean indicating if the box exists or not\n */\n readonly exists: boolean\n /**\n * Get the value of the box.\n *\n * Error if this value is larger than what the `bytes` type supports\n * Error if getting the value and the box does not exist\n */\n value: bytes\n /**\n * Get the value stored in the box, or return a specified default value if the box does not exist\n * @param options Options to specify a default value to be returned if no other value exists\n * @returns The value if the box exists, else the default value\n */\n get(options: { default: bytes }): bytes\n /**\n * Puts the specified bytes into the box replacing any existing value.\n *\n * Creates the box if it does not exist\n * Errors if the box exists, but the length does not match the length of `value`\n * @param value The value to put into the box\n */\n put(value: bytes): void\n /**\n * Splice the specified bytes into the box starting at `start`, removing `length` bytes\n * from the existing value and replacing them with `value` before appending the remainder of the original box value.\n *\n * If the resulting byte value is larger than length, bytes will be trimmed from the end\n * If the resulting byte value is smaller than length, zero bytes will be appended to the end\n * Error if the box does not exist\n * @param start The index to start inserting the value\n * @param length The number of bytes after `start` to be omitted\n * @param value The value to be inserted\n */\n splice(start: uint64, length: uint64, value: bytes): void\n /**\n * Replace bytes in a box starting at `start`.\n *\n * Error if the box does not exist\n * Error if `start` + `value.length` is greater than the box size\n * @param start The index to start replacing\n * @param value The value to be written\n */\n replace(start: uint64, value: bytes): void\n /**\n * Extract a slice of bytes from the box\n *\n * Error if the box does not exist\n * Error if `start` + `length` is greater than the box size\n * @param start The index to start extracting\n * @param length The number of bytes to extract\n * @returns The extracted bytes\n */\n extract(start: uint64, length: uint64): bytes\n /**\n * Delete the box associated with this proxy if it exists.\n * @returns True if the box existed and was deleted, else false\n */\n delete(): boolean\n /**\n * Create the box for this proxy with the specified size if it does not exist\n *\n * No op if the box already exists\n * @param options The size of the box to create\n * @returns True if the box was created, false if it already existed\n */\n create(options: { size: uint64 }): boolean\n /**\n * Resize the box to the specified size.\n *\n * Adds zero bytes to the end if the new size is larger\n * Removes end bytes if the new size is smaller\n * Error if the box does not exist\n * @param newSize The new size for the box\n */\n resize(newSize: uint64): void\n /**\n * Get the value stored in the box if available, and a boolean indicating if the box exists.\n *\n * If the box does not exist, the value returned at position 0 will be an empty byte array.\n * @returns A tuple with the first item being the box value, and the second item being a boolean indicating if the box exists.\n */\n maybe(): readonly [bytes, boolean]\n /**\n * Returns the length of the box, or error if the box does not exist\n */\n readonly length: uint64\n}\n\n/**\n * Options for creating a Box proxy\n */\ninterface CreateBoxOptions {\n /**\n * The bytes which make up the key of the box\n */\n key: bytes | string\n}\n\n/**\n * Creates a Box proxy object offering methods of getting and setting the value stored in a single box.\n * @param options Options for creating the Box proxy\n * @typeParam TValue The type of the data stored in the box. This value will be encoded to bytes when stored and decoded on retrieval.\n */\nexport function Box<TValue>(options: CreateBoxOptions): Box<TValue> {\n throw new NoImplementation()\n}\n\n/**\n * Options for creating a BoxMap proxy\n */\ninterface CreateBoxMapOptions {\n /**\n * The bytes which prefix each key of the box map\n */\n keyPrefix: bytes | string\n}\n\n/**\n * Creates a BoxMap proxy object offering methods of getting and setting a set of values stored in individual boxes indexed by a common key type\n * @param options Options for creating the BoxMap proxy\n * @typeParam TKey The type of the value used to key each box. This key will be encoded to bytes and prefixed with `keyPrefix`\n * @typeParam TValue The type of the data stored in the box. This value will be encoded to bytes when stored and decoded on retrieval.\n */\nexport function BoxMap<TKey, TValue>(options: CreateBoxMapOptions): BoxMap<TKey, TValue> {\n throw new NoImplementation()\n}\n\n/**\n * Options for creating a BoxRef proxy\n */\ninterface CreateBoxRefOptions {\n /**\n * The bytes which make up the key of the box\n */\n key: bytes | string\n}\n\n/**\n * Creates a BoxRef proxy object offering methods for getting and setting binary data in a box under a single key. This proxy is particularly\n * relevant when dealing with binary data that is larger than what the AVM can handle in a single value.\n * @param options The options for creating the BoxRef proxy\n */\nexport function BoxRef(options: CreateBoxRefOptions): BoxRef {\n throw new NoImplementation()\n}\n","import { NoImplementation } from './internal/errors'\nimport { bytes } from './primitives'\nimport { Account } from './reference'\n\n/**\n * A proxy for manipulating a global state field\n * @typeParam ValueType The type of the value being stored - must be a serializable type\n */\nexport type GlobalState<ValueType> = {\n /**\n * Get or set the value of this global state field\n */\n value: ValueType\n /**\n * Delete the stored value of this global state field\n */\n delete(): void\n /**\n * Gets a boolean value indicating if global state field currently has a value\n */\n readonly hasValue: boolean\n}\n/**\n * Options for declaring a global state field\n */\nexport type GlobalStateOptions<ValueType> = {\n /**\n * The key to be used for this global state field.\n *\n * Defaults to the name of the property this proxy is assigned to\n */\n key?: bytes | string\n /**\n * An initial value to assign to this global state field when the application is created\n */\n initialValue?: ValueType\n}\n\n/**\n * Creates a new proxy for manipulating a global state field\n * @param options Options for configuring this field\n * @typeParam ValueType The type of the value being stored - must be a serializable type\n */\nexport function GlobalState<ValueType>(options?: GlobalStateOptions<ValueType>): GlobalState<ValueType> {\n throw new NoImplementation()\n}\n\n/**\n * A proxy for manipulating a local state field for a single account\n */\nexport type LocalStateForAccount<ValueType> = {\n /**\n * Get or set the value of this local state field for a single account\n */\n value: ValueType\n /**\n * Delete the stored value of this local state field for a single account\n */\n delete(): void\n /**\n * Gets a boolean value indicating if local state field for a single account currently has a value\n */\n readonly hasValue: boolean\n}\n\n/**\n * A proxy for manipulating a local state field for any account\n */\nexport type LocalState<ValueType> = {\n /**\n * Gets the LocalState proxy for a specific account\n * @param account The account to read or write state for. This account must be opted into the contract\n */\n (account: Account): LocalStateForAccount<ValueType>\n}\n/**\n * Options for declaring a local state field\n */\nexport type LocalStateOptions = {\n /**\n * The key to be used for this local state field.\n *\n * Defaults to the name of the property this proxy is assigned to\n */\n key?: bytes | string\n}\n\n/**\n * Creates a new proxy for manipulating a local state field\n * @param options Options for configuring this field\n */\nexport function LocalState<ValueType>(options?: LocalStateOptions): LocalState<ValueType> {\n throw new NoImplementation()\n}\n","import { NoImplementation } from './internal/errors'\nimport { OnCompleteAction } from './on-complete-action'\nimport { bytes, uint64 } from './primitives'\nimport type { Account, Application, Asset } from './reference'\nimport type * as txnTypes from './transactions'\n\nconst isItxn = Symbol('isItxn')\n\nexport interface PaymentInnerTxn extends txnTypes.PaymentTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface KeyRegistrationInnerTxn extends txnTypes.KeyRegistrationTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface AssetConfigInnerTxn extends txnTypes.AssetConfigTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface AssetTransferInnerTxn extends txnTypes.AssetTransferTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface AssetFreezeInnerTxn extends txnTypes.AssetFreezeTxn {\n /** @hidden */\n [isItxn]?: true\n}\nexport interface ApplicationInnerTxn extends txnTypes.ApplicationTxn {\n /** @hidden */\n [isItxn]?: true\n}\n\ntype AccountInput = Account | bytes\ntype AssetInput = Asset | uint64\ntype ApplicationInput = Application | uint64\n\nexport interface CommonTransactionFields {\n /**\n * 32 byte address\n */\n sender?: AccountInput\n\n /**\n * microalgos\n */\n fee?: uint64\n\n /**\n * round number\n */\n firstValid?: uint64\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n */\n firstValidTime?: uint64\n\n /**\n * Any data up to 1024 bytes\n */\n note?: bytes | string\n\n /**\n * 32 byte lease value\n */\n lease?: bytes\n\n /**\n * 32 byte Sender's new AuthAddr\n */\n rekeyTo?: AccountInput\n}\n\nexport interface PaymentFields extends CommonTransactionFields {\n /**\n * The amount, in microALGO, to transfer\n *\n */\n amount?: uint64\n /**\n * The address of the receiver\n */\n receiver?: AccountInput\n /**\n * If set, bring the sender balance to 0 and send all remaining balance to this address\n */\n closeRemainderTo?: AccountInput\n}\nexport interface KeyRegistrationFields extends CommonTransactionFields {\n /**\n * 32 byte address\n */\n voteKey?: bytes\n\n /**\n * 32 byte address\n */\n selectionKey?: bytes\n\n /**\n * The first round that the participation key is valid.\n */\n voteFirst?: uint64\n\n /**\n * The last round that the participation key is valid.\n */\n voteLast?: uint64\n\n /**\n * Dilution for the 2-level participation key\n */\n voteKeyDilution?: uint64\n\n /**\n * Marks an account nonparticipating for rewards\n */\n nonparticipation?: boolean\n\n /**\n * 64 byte state proof public key\n */\n stateProofKey?: bytes\n}\nexport interface AssetTransferFields extends CommonTransactionFields {\n /** The asset being transferred */\n xferAsset: AssetInput\n /** The amount of the asset being transferred */\n assetAmount?: uint64\n /** The clawback target */\n assetSender?: AccountInput\n /** The receiver of the asset */\n assetReceiver?: AccountInput\n /** The address to close the asset to */\n assetCloseTo?: AccountInput\n}\nexport interface AssetConfigFields extends CommonTransactionFields {\n configAsset?: AssetInput\n manager?: AccountInput\n reserve?: AccountInput\n freeze?: AccountInput\n clawback?: AccountInput\n assetName?: string | bytes\n unitName?: string | bytes\n total?: uint64\n decimals?: uint64\n defaultFrozen?: boolean\n url?: string | bytes\n metadataHash?: bytes\n}\nexport interface AssetFreezeFields extends CommonTransactionFields {\n freezeAsset: AssetInput\n freezeAccount?: AccountInput\n frozen?: boolean\n}\nexport interface ApplicationCallFields extends CommonTransactionFields {\n appId?: ApplicationInput\n approvalProgram?: bytes | readonly [...bytes[]]\n clearStateProgram?: bytes | readonly [...bytes[]]\n onCompletion?: OnCompleteAction | uint64\n globalNumUint?: uint64\n globalNumBytes?: uint64\n localNumUint?: uint64\n localNumBytes?: uint64\n extraProgramPages?: uint64\n appArgs?: readonly [...unknown[]]\n accounts?: readonly [...AccountInput[]]\n assets?: readonly [...AssetInput[]]\n apps?: readonly [...ApplicationInput[]]\n}\n\nexport type InnerTransaction =\n | PaymentItxnParams\n | KeyRegistrationItxnParams\n | AssetConfigItxnParams\n | AssetTransferItxnParams\n | AssetFreezeItxnParams\n | ApplicationCallItxnParams\n\nexport type InnerTxnList = [...InnerTransaction[]]\n\nexport type TxnFor<TFields extends InnerTxnList> = TFields extends [{ submit(): infer TTxn }, ...infer TRest extends InnerTxnList]\n ? [TTxn, ...TxnFor<TRest>]\n : []\n\nexport interface PaymentItxnParams {\n submit(): PaymentInnerTxn\n set(p: Partial<PaymentFields>): void\n copy(): PaymentItxnParams\n}\nexport interface KeyRegistrationItxnParams {\n submit(): KeyRegistrationInnerTxn\n set(p: Partial<KeyRegistrationFields>): void\n copy(): KeyRegistrationItxnParams\n}\nexport interface AssetConfigItxnParams {\n submit(): AssetConfigInnerTxn\n set(p: Partial<AssetConfigFields>): void\n copy(): AssetConfigItxnParams\n}\nexport interface AssetTransferItxnParams {\n submit(): AssetTransferInnerTxn\n set(p: Partial<AssetTransferFields>): void\n copy(): AssetTransferItxnParams\n}\nexport interface AssetFreezeItxnParams {\n submit(): AssetFreezeInnerTxn\n set(p: Partial<AssetFreezeFields>): void\n copy(): AssetFreezeItxnParams\n}\nexport interface ApplicationCallItxnParams {\n submit(): ApplicationInnerTxn\n set(p: Partial<ApplicationCallFields>): void\n copy(): ApplicationCallItxnParams\n}\n\nexport function submitGroup<TFields extends InnerTxnList>(...transactionFields: TFields): TxnFor<TFields> {\n throw new NoImplementation()\n}\nexport function payment(fields: PaymentFields): PaymentItxnParams {\n throw new NoImplementation()\n}\nexport function keyRegistration(fields: KeyRegistrationFields): KeyRegistrationItxnParams {\n throw new NoImplementation()\n}\nexport function assetConfig(fields: AssetConfigFields): AssetConfigItxnParams {\n throw new NoImplementation()\n}\nexport function assetTransfer(fields: AssetTransferFields): AssetTransferItxnParams {\n throw new NoImplementation()\n}\nexport function assetFreeze(fields: AssetFreezeFields): AssetFreezeItxnParams {\n throw new NoImplementation()\n}\nexport function applicationCall(fields: ApplicationCallFields): ApplicationCallItxnParams {\n throw new NoImplementation()\n}\n","import { NoImplementation } from './internal/errors'\nimport { uint64 } from './primitives'\nimport type * as txnTypes from './transactions'\n\nconst isGtxn = Symbol('isGtxn')\nexport interface PaymentTxn extends txnTypes.PaymentTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface KeyRegistrationTxn extends txnTypes.KeyRegistrationTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface AssetConfigTxn extends txnTypes.AssetConfigTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface AssetTransferTxn extends txnTypes.AssetTransferTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface AssetFreezeTxn extends txnTypes.AssetFreezeTxn {\n /** @hidden */\n [isGtxn]?: true\n}\nexport interface ApplicationTxn extends txnTypes.ApplicationTxn {\n /** @hidden */\n [isGtxn]?: true\n}\n\nexport type Transaction = PaymentTxn | KeyRegistrationTxn | AssetConfigTxn | AssetTransferTxn | AssetFreezeTxn | ApplicationTxn\n\nexport function Transaction(groupIndex: uint64): Transaction {\n throw new NoImplementation()\n}\nexport function PaymentTxn(groupIndex: uint64): PaymentTxn {\n throw new NoImplementation()\n}\nexport function KeyRegistrationTxn(groupIndex: uint64): KeyRegistrationTxn {\n throw new NoImplementation()\n}\nexport function AssetConfigTxn(groupIndex: uint64): AssetConfigTxn {\n throw new NoImplementation()\n}\nexport function AssetTransferTxn(groupIndex: uint64): AssetTransferTxn {\n throw new NoImplementation()\n}\nexport function AssetFreezeTxn(groupIndex: uint64): AssetFreezeTxn {\n throw new NoImplementation()\n}\nexport function ApplicationTxn(groupIndex: uint64): ApplicationTxn {\n throw new NoImplementation()\n}\n","import { OnCompleteAction } from './on-complete-action'\nimport { bytes, uint64 } from './primitives'\nimport { Account, Application, Asset } from './reference'\n\n/**\n * The different transaction types available in a transaction\n */\nexport enum TransactionType {\n /**\n * A Payment transaction\n */\n Payment = 1,\n /**\n * A Key Registration transaction\n */\n KeyRegistration = 2,\n /**\n * An Asset Config transaction\n */\n AssetConfig = 3,\n /**\n * An Asset Transfer transaction\n */\n AssetTransfer = 4,\n /**\n * An Asset Freeze transaction\n */\n AssetFreeze = 5,\n /**\n * An Application Call transaction\n */\n ApplicationCall = 6,\n}\n\ninterface TransactionBase {\n /**\n * 32 byte address\n */\n readonly sender: Account\n\n /**\n * microalgos\n */\n readonly fee: uint64\n\n /**\n * round number\n */\n readonly firstValid: uint64\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n */\n readonly firstValidTime: uint64\n\n /**\n * round number\n */\n readonly lastValid: uint64\n\n /**\n * Any data up to 1024 bytes\n */\n readonly note: bytes\n\n /**\n * 32 byte lease value\n */\n readonly lease: bytes\n\n /**\n * Transaction type as bytes\n */\n readonly typeBytes: bytes\n\n /**\n * Position of this transaction within an atomic group\n * A stand-alone transaction is implicitly element 0 in a group of 1\n */\n readonly groupIndex: uint64\n\n /**\n * The computed ID for this transaction. 32 bytes.\n */\n readonly txnId: bytes\n\n /**\n * 32 byte Sender's new AuthAddr\n */\n readonly rekeyTo: Account\n}\n\n/**\n * A payment transaction\n */\nexport interface PaymentTxn extends TransactionBase {\n /**\n * 32 byte address\n */\n readonly receiver: Account\n\n /**\n * microalgos\n */\n readonly amount: uint64\n\n /**\n * 32 byte address\n */\n readonly closeRemainderTo: Account\n\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.Payment\n}\n\nexport interface KeyRegistrationTxn extends TransactionBase {\n /**\n * 32 byte address\n */\n readonly voteKey: bytes\n\n /**\n * 32 byte address\n */\n readonly selectionKey: bytes\n\n /**\n * The first round that the participation key is valid.\n */\n readonly voteFirst: uint64\n\n /**\n * The last round that the participation key is valid.\n */\n readonly voteLast: uint64\n\n /**\n * Dilution for the 2-level participation key\n */\n readonly voteKeyDilution: uint64\n\n /**\n * Marks an account nonparticipating for rewards\n */\n readonly nonparticipation: boolean\n\n /**\n * 64 byte state proof public key\n */\n readonly stateProofKey: bytes\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.KeyRegistration\n}\n\nexport interface AssetConfigTxn extends TransactionBase {\n /**\n * Asset ID in asset config transaction\n */\n readonly configAsset: Asset\n\n /**\n * Total number of units of this asset created\n */\n readonly total: uint64\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n */\n readonly decimals: uint64\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n */\n readonly defaultFrozen: boolean\n\n /**\n * Unit name of the asset\n */\n readonly unitName: bytes\n\n /**\n * The asset name\n */\n readonly assetName: bytes\n\n /**\n * URL\n */\n readonly url: bytes\n\n /**\n * 32 byte commitment to unspecified asset metadata\n */\n readonly metadataHash: bytes\n\n /**\n * 32 byte address\n */\n readonly manager: Account\n\n /**\n * 32 byte address\n */\n readonly reserve: Account\n\n /**\n * 32 byte address\n */\n readonly freeze: Account\n\n /**\n * 32 byte address\n */\n readonly clawback: Account\n /**\n * Asset ID allocated by the creation of an ASA\n */\n createdAsset: Asset\n\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.AssetConfig\n}\n\nexport interface AssetTransferTxn extends TransactionBase {\n /**\n * Asset ID\n */\n readonly xferAsset: Asset\n\n /**\n * value in Asset's units\n */\n readonly assetAmount: uint64\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n */\n readonly assetSender: Account\n\n /**\n * 32 byte address\n */\n readonly assetReceiver: Account\n\n /**\n * 32 byte address\n */\n readonly assetCloseTo: Account\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.AssetTransfer\n}\n\nexport interface AssetFreezeTxn extends TransactionBase {\n /**\n * Asset ID being frozen or un-frozen\n */\n readonly freezeAsset: Asset\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n */\n readonly freezeAccount: Account\n\n /**\n * The new frozen value\n */\n readonly frozen: boolean\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.AssetFreeze\n}\n\nexport interface ApplicationTxn extends TransactionBase {\n /**\n * ApplicationID from ApplicationCall transaction\n */\n readonly appId: Application\n\n /**\n * ApplicationCall transaction on completion action\n */\n readonly onCompletion: OnCompleteAction\n\n /**\n * Number of ApplicationArgs\n */\n readonly numAppArgs: uint64\n\n /**\n * Number of ApplicationArgs\n */\n readonly numAccounts: uint64\n\n /**\n * Approval program\n */\n readonly approvalProgram: bytes\n\n /**\n * Clear State program\n */\n readonly clearStateProgram: bytes\n\n /**\n * Number of Assets\n */\n readonly numAssets: uint64\n\n /**\n * Number of Applications\n */\n readonly numApps: uint64\n\n /**\n * Number of global state integers in ApplicationCall\n */\n readonly globalNumUint: uint64\n\n /**\n * Number of global state byteslices in ApplicationCall\n */\n readonly globalNumBytes: uint64\n\n /**\n * Number of local state integers in ApplicationCall\n */\n readonly localNumUint: uint64\n\n /**\n * Number of local state byteslices in ApplicationCall\n */\n readonly localNumBytes: uint64\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n */\n readonly extraProgramPages: uint64\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n */\n readonly lastLog: bytes\n\n /**\n * Log messages emitted by an application call\n */\n logs(index: uint64): bytes\n\n /**\n * Number of logs\n */\n readonly numLogs: uint64\n\n /**\n * ApplicationID allocated by the creation of an application\n */\n readonly createdApp: Application\n\n /**\n * Number of Approval Program pages\n */\n readonly numApprovalProgramPages: uint64\n\n /**\n * Number of Clear State Program pages\n */\n readonly numClearStateProgramPages: uint64\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * @param index\n */\n appArgs(index: uint64): bytes\n\n /**\n * Accounts listed in the ApplicationCall transaction\n */\n accounts(index: uint64): Account\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n */\n assets(index: uint64): Asset\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n */\n apps(index: uint64): Application\n\n /**\n * Approval Program as an array of pages\n */\n approvalProgramPages(index: uint64): bytes\n\n /**\n * Clear State Program as an array of pages\n */\n clearStateProgramPages(index: uint64): bytes\n /**\n * Transaction type as integer\n */\n readonly type: TransactionType.ApplicationCall\n}\n\nexport type Transaction = PaymentTxn | KeyRegistrationTxn | AssetConfigTxn | AssetTransferTxn | AssetFreezeTxn | ApplicationTxn\n","import { ConstructorFor } from './internal/typescript-helpers'\nimport { uint64 } from './primitives'\n\n/**\n * Base class for Algorand TypeScript Logic Signatures (also known as Smart Signatures)\n */\nexport abstract class LogicSig {\n /**\n * The logic signature program logic\n */\n abstract program(): boolean | uint64\n}\n\n/**\n * Alias for a numeric range specification.\n */\ntype NumberRange = {\n /**\n * The start point of the range (inclusive)\n */\n from: number\n /**\n * The end point of the range (inclusive)\n */\n to: number\n}\n\n/**\n * Defines optional configuration for a logic signature\n */\ntype LogicSigOptions = {\n /**\n * Determines which AVM version to use, this affects what operations are supported.\n * Defaults to value provided supplied on command line (which defaults to current mainnet version)\n */\n avmVersion?: 10 | 11\n /**\n * Override the name of the logic signature when generating build artifacts.\n * Defaults to the class name\n */\n name?: string\n /**\n * Allows you to mark a slot ID or range of slot IDs as \"off limits\" to Puya.\n * These slot ID(s) will never be written to or otherwise manipulating by the compiler itself.\n * This is particularly useful in combination with `op.gload_bytes` / `op.gload_uint64`\n * which lets a contract in a group transaction read from the scratch slots of another contract\n * that occurs earlier in the transaction group.\n */\n scratchSlots?: Array<number | NumberRange>\n}\n\n/**\n * The logicsig decorator can be used to specify additional configuration options for a logic signature\n * @param options An object containing the configuration options\n */\nexport function logicsig(options: LogicSigOptions) {\n return <T extends ConstructorFor<LogicSig>>(logicSig: T) => logicSig\n}\n","import { NoImplementation } from './internal/errors'\n\n/**\n * Declare a template variable which can be replaced at compile time with an environment specific value.\n *\n * The final variable name will be `prefix + variableName`\n * @param variableName The key used to identify the variable.\n * @param prefix The prefix to apply the variable name (Defaults to 'TMPL_')\n */\nexport function TemplateVar<T>(variableName: string, prefix = 'TMPL_'): T {\n throw new NoImplementation()\n}\n","import { BaseContract } from './base-contract'\nimport { NoImplementation } from './internal/errors'\nimport { ConstructorFor, DeliberateAny } from './internal/typescript-helpers'\nimport { LogicSig } from './logic-sig'\nimport { bytes, uint64 } from './primitives'\nimport { Account } from './reference'\n\n/**\n * Provides compiled programs and state allocation values for a Contract. Created by calling `compile(ExampleContractType)`\n */\nexport type CompiledContract = {\n /**\n * Approval program pages for a contract, after template variables have been replaced and compiled to AVM bytecode\n */\n approvalProgram: [bytes, bytes]\n /**\n * Clear state program pages for a contract, after template variables have been replaced and compiled to AVM bytecode\n */\n clearStateProgram: [bytes, bytes]\n /**\n * By default, provides extra program pages required based on approval and clear state program size, can be overridden when calling `compile(ExampleContractType, { extraProgramPages: ... })`\n */\n extraProgramPages: uint64\n /**\n * By default, provides global num uints based on contract state totals, can be overridden when calling `compile(ExampleContractType, { globalUints: ... })`\n */\n globalUints: uint64\n /**\n * By default, provides global num bytes based on contract state totals, can be overridden when calling `compile(ExampleContractType, { globalBytes: ... })`\n */\n globalBytes: uint64\n /**\n * By default, provides local num uints based on contract state totals, can be overridden when calling `compile(ExampleContractType, { localUints: ... })`\n */\n localUints: uint64\n /**\n * By default, provides local num bytes based on contract state totals, can be overridden when calling `compile(ExampleContractType, { localBytes: ... })`\n */\n localBytes: uint64\n}\n\n/**\n * Provides account for a Logic Signature. Created by calling `compile(LogicSigType)`\n */\nexport type CompiledLogicSig = {\n /**\n * Address of a logic sig program, after template variables have been replaced and compiled to AVM bytecode\n */\n account: Account\n}\n\n/**\n * Options for compiling a contract\n */\nexport type CompileContractOptions = {\n /**\n * Number of extra program pages, defaults to minimum required for contract\n */\n extraProgramPages?: uint64\n /**\n * Number of global uint64s, defaults to value defined for contract\n */\n globalUints?: uint64\n /**\n * Number of global bytes, defaults to value defined for contract\n */\n globalBytes?: uint64\n /**\n * Number of local uint64s, defaults to value defined for contract\n */\n localUints?: uint64\n /**\n * Number of local bytes, defaults to value defined for contract\n */\n localBytes?: uint64\n /**\n * Template variables to substitute into the contract, key should be without the prefix, must evaluate to a compile time constant\n * and match the type of the template var declaration\n */\n templateVars?: Record<string, DeliberateAny>\n /**\n * Prefix to add to provided template vars, defaults to the prefix supplied on command line (which defaults to TMPL_)\n */\n templateVarsPrefix?: string\n}\n\n/**\n * Options for compiling a logic signature\n */\nexport type CompileLogicSigOptions = {\n /**\n * Template variables to substitute into the contract, key should be without the prefix, must evaluate to a compile time constant\n * and match the type of the template var declaration\n */\n templateVars?: Record<string, DeliberateAny>\n /**\n * Prefix to add to provided template vars, defaults to the prefix supplied on command line (which defaults to TMPL_)\n */\n templateVarsPrefix?: string\n}\n\n/**\n * Compile a contract and return the resulting byte code for approval and clear state programs.\n * @param contract The contract class to compile\n * @param options Options for compiling the contract\n */\nexport function compile(contract: ConstructorFor<BaseContract>, options?: CompileContractOptions): CompiledContract\n/**\n * Compile a logic signature and return an account ready for signing transactions.\n * @param logicSig The logic sig class to compile\n * @param options Options for compiling the logic sig\n */\nexport function compile(logicSig: ConstructorFor<LogicSig>, options?: CompileLogicSigOptions): CompiledLogicSig\nexport function compile(artefact: ConstructorFor<BaseContract> | ConstructorFor<LogicSig>): CompiledLogicSig | CompiledContract {\n throw new NoImplementation()\n}\n","import { NoImplementation } from './internal/errors'\nimport { uint64, Uint64Compat } from './primitives'\n\n/**\n * An in memory mutable array which is passed by reference\n */\nexport class MutableArray<TItem> {\n /**\n * Create a new MutableArray with the specified items\n * @param items The initial items for the array\n */\n constructor(...items: TItem[]) {}\n\n /**\n * Returns the current length of this array\n */\n get length(): uint64 {\n throw new NoImplementation()\n }\n\n /**\n * Returns the item at the given index.\n * Negative indexes are taken from the end.\n * @param index The index of the item to retrieve\n */\n at(index: Uint64Compat): TItem {\n throw new NoImplementation()\n }\n\n /**\n * Create a new Dynamic array with all items from this array\n * @internal Not supported yet\n */\n slice(): MutableArray<TItem>\n /**\n * Create a new MutableArray with all items up till `end`.\n * Negative indexes are taken from the end.\n * @param end An index in which to stop copying items.\n * @internal Not supported yet\n */\n slice(end: Uint64Compat): MutableArray<TItem>\n /**\n * Create a new MutableArray with items from `start`, up until `end`\n * Negative indexes are taken from the end.\n * @param start An index in which to start copying items.\n * @param end An index in which to stop copying items\n * @internal Not supported yet\n */\n slice(start: Uint64Compat, end: Uint64Compat): MutableArray<TItem>\n slice(start?: Uint64Compat, end?: Uint64Compat): MutableArray<TItem> {\n throw new NoImplementation()\n }\n\n /**\n * Returns an iterator for the items in this array\n */\n [Symbol.iterator](): IterableIterator<TItem> {\n throw new NoImplementation()\n }\n\n /**\n * Returns an iterator for a tuple of the indexes and items in this array\n */\n entries(): IterableIterator<readonly [uint64, TItem]> {\n throw new NoImplementation()\n }\n\n /**\n * Returns an iterator for the indexes in this array\n */\n keys(): IterableIterator<uint64> {\n throw new NoImplementation()\n }\n\n /**\n * Get or set the item at the specified index.\n * Negative indexes are not supported\n */\n [index: uint64]: TItem\n\n /**\n * Push a number of items into this array\n * @param items The items to be added to this array\n */\n push(...items: TItem[]): void {\n throw new NoImplementation()\n }\n\n /**\n * Pop a single item from this array\n */\n pop(): TItem {\n throw new NoImplementation()\n }\n\n /**\n * Create a copy of this array\n */\n copy(): MutableArray<TItem> {\n throw new NoImplementation()\n }\n}\n","import { NoImplementation } from './internal/errors'\nimport { DeliberateAny } from './internal/typescript-helpers'\n\n/**\n * Emit an arc28 event log using either an ARC4Struct type or a named object type.\n * Object types must have an ARC4 equivalent type.\n *\n * Anonymous types cannot be used as the type name is used to determine the event prefix\n * @param event An ARC4Struct instance, or a plain object with a named type\n *\n * @example\n * class Demo extends Struct<{ a: UintN64 }> {}\n * emit(new Demo({ a: new UintN64(123) }))\n *\n * @example\n * type Demo = { a: uint64 }\n * emit<Demo>({a: 123})\n * // or\n * const d: Demo = { a: 123 }\n * emit(d)\n */\nexport function emit<TEvent extends Record<string, DeliberateAny>>(event: TEvent): void\n/**\n * Emit an arc28 event log using an explicit name and inferred property/field types.\n * Property types must be ARC4 or have an ARC4 equivalent type.\n * @param eventName The name of the event (must be a compile time constant)\n * @param eventProps A set of event properties (order is significant)\n *\n * @example\n * emit(\"Demo\", new UintN64(123))\n *\n * @example\n * const a: uint64 = 123\n * emit(\"Demo\", a)\n */\nexport function emit<TProps extends [...DeliberateAny[]]>(eventName: string, ...eventProps: TProps): void\nexport function emit<T>(event: T | string, ...eventProps: unknown[]): void {\n throw new NoImplementation()\n}\n","/**\n * The possible on complete actions a method can handle, represented as a string\n */\nexport type OnCompleteActionStr = 'NoOp' | 'OptIn' | 'ClearState' | 'CloseOut' | 'UpdateApplication' | 'DeleteApplication'\n\n/**\n * The possible on complete actions a method can handle, represented as an integer\n */\nexport enum OnCompleteAction {\n /**\n * Do nothing after the transaction has completed\n */\n NoOp = 0,\n /**\n * Opt the calling user into the contract\n */\n OptIn = 1,\n /**\n * Close the calling user out of the contract\n */\n CloseOut = 2,\n /**\n * Run the clear state program and forcibly close the user out of the contract\n */\n ClearState = 3,\n /**\n * Replace the application's approval and clear state programs with the bytes from this transaction\n */\n UpdateApplication = 4,\n /**\n * Delete the application\n */\n DeleteApplication = 5,\n}\n"],"names":[],"mappings":";;;;AAiDM,SAAU,MAAM,CAAC,CAAyB,EAAA;IAC9C,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AA0CM,SAAU,OAAO,CAAC,CAA0B,EAAA;IAChD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;SAyHgB,KAAK,CACnB,KAAgF,EAChF,GAAG,YAA2B,EAAA;IAE9B,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAEA;;;AAGG;AACH,KAAK,CAAC,OAAO,GAAG,CAAC,GAAW,KAAW;IACrC,MAAM,IAAI,gBAAgB,EAAE;AAC9B,CAAC;AACD;;;AAGG;AACH,KAAK,CAAC,UAAU,GAAG,CAAC,GAAW,KAAW;IACxC,MAAM,IAAI,gBAAgB,EAAE;AAC9B,CAAC;AAED;;;AAGG;AACH,KAAK,CAAC,UAAU,GAAG,CAAC,GAAW,KAAW;IACxC,MAAM,IAAI,gBAAgB,EAAE;AAC9B,CAAC;;ACjPD;;;;;AAKG;AACa,SAAA,GAAG,CAAC,GAAG,IAAoF,EAAA;IACzG,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAEA;;;;AAIG;AACa,SAAA,MAAM,CAAC,SAAkB,EAAE,OAAgB,EAAA;IACzD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAEA;;;AAGG;AACG,SAAU,GAAG,CAAC,OAAgB,EAAA;IAClC,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAoDA;;;;;;AAMG;AACa,SAAA,KAAK,CAAI,OAAU,EAAE,IAAkB,EAAA;IACrD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAEA;;;;;;;AAOG;SACa,WAAW,CAAI,OAAU,EAAE,IAAkB,EAAE,OAAgB,EAAA;IAC7E,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAEA;;AAEG;IACS;AAAZ,CAAA,UAAY,aAAa,EAAA;AACvB;;AAEG;AACH,IAAA,aAAA,CAAA,aAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf;;AAEG;AACH,IAAA,aAAA,CAAA,aAAA,CAAA,YAAA,CAAA,GAAA,CAAA,CAAA,GAAA,YAAc;AACd;;AAEG;AACH,IAAA,aAAA,CAAA,aAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,GAAA,KAAO;AACT,CAAC,EAbW,aAAa,KAAb,aAAa,GAaxB,EAAA,CAAA,CAAA;AAED;;;;;;;AAOG;AACG,SAAU,YAAY,CAAC,cAAsB,EAAE,SAA2B,GAAA,aAAa,CAAC,WAAW,EAAA;IACvG,MAAM,IAAI,gBAAgB,EAAE;AAC9B;SAoBgB,MAAM,CAAC,CAAe,EAAE,CAAgB,EAAE,CAAgB,EAAA;IACxE,MAAM,IAAI,gBAAgB,EAAE;AAC9B;;ACjCM,SAAU,OAAO,CAAC,kBAAmC,EAAA;IACzD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAWM,SAAU,KAAK,CAAC,OAAgB,EAAA;IACpC,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAkGM,SAAU,WAAW,CAAC,aAAsB,EAAA;IAChD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;;AC/DA;;;;AAIG;AACG,SAAU,GAAG,CAAS,OAAyB,EAAA;IACnD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAYA;;;;;AAKG;AACG,SAAU,MAAM,CAAe,OAA4B,EAAA;IAC/D,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AAYA;;;;AAIG;AACG,SAAU,MAAM,CAAC,OAA4B,EAAA;IACjD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;;ACpLA;;;;AAIG;AACG,SAAU,WAAW,CAAY,OAAuC,EAAA;IAC5E,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AA0CA;;;AAGG;AACG,SAAU,UAAU,CAAY,OAA2B,EAAA;IAC/D,MAAM,IAAI,gBAAgB,EAAE;AAC9B;;AC4HgB,SAAA,WAAW,CAA+B,GAAG,iBAA0B,EAAA;IACrF,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,OAAO,CAAC,MAAqB,EAAA;IAC3C,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,eAAe,CAAC,MAA6B,EAAA;IAC3D,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,WAAW,CAAC,MAAyB,EAAA;IACnD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,aAAa,CAAC,MAA2B,EAAA;IACvD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,WAAW,CAAC,MAAyB,EAAA;IACnD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,eAAe,CAAC,MAA6B,EAAA;IAC3D,MAAM,IAAI,gBAAgB,EAAE;AAC9B;;;;;;;;;;;;;AC7MM,SAAU,WAAW,CAAC,UAAkB,EAAA;IAC5C,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,UAAU,CAAC,UAAkB,EAAA;IAC3C,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,kBAAkB,CAAC,UAAkB,EAAA;IACnD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,cAAc,CAAC,UAAkB,EAAA;IAC/C,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,gBAAgB,CAAC,UAAkB,EAAA;IACjD,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,cAAc,CAAC,UAAkB,EAAA;IAC/C,MAAM,IAAI,gBAAgB,EAAE;AAC9B;AACM,SAAU,cAAc,CAAC,UAAkB,EAAA;IAC/C,MAAM,IAAI,gBAAgB,EAAE;AAC9B;;;;;;;;;;;;;AChDA;;AAEG;IACS;AAAZ,CAAA,UAAY,eAAe,EAAA;AACzB;;AAEG;AACH,IAAA,eAAA,CAAA,eAAA,CAAA,SAAA,CAAA,GAAA,CAAA,CAAA,GAAA,SAAW;AACX;;AAEG;AACH,IAAA,eAAA,CAAA,eAAA,CAAA,iBAAA,CAAA,GAAA,CAAA,CAAA,GAAA,iBAAmB;AACnB;;AAEG;AACH,IAAA,eAAA,CAAA,eAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf;;AAEG;AACH,IAAA,eAAA,CAAA,eAAA,CAAA,eAAA,CAAA,GAAA,CAAA,CAAA,GAAA,eAAiB;AACjB;;AAEG;AACH,IAAA,eAAA,CAAA,eAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf;;AAEG;AACH,IAAA,eAAA,CAAA,eAAA,CAAA,iBAAA,CAAA,GAAA,CAAA,CAAA,GAAA,iBAAmB;AACrB,CAAC,EAzBW,eAAe,KAAf,eAAe,GAyB1B,EAAA,CAAA,CAAA;;AC7BD;;AAEG;MACmB,QAAQ,CAAA;AAK7B;AAwCD;;;AAGG;AACG,SAAU,QAAQ,CAAC,OAAwB,EAAA;AAC/C,IAAA,OAAO,CAAqC,QAAW,KAAK,QAAQ;AACtE;;ACvDA;;;;;;AAMG;SACa,WAAW,CAAI,YAAoB,EAAE,MAAM,GAAG,OAAO,EAAA;IACnE,MAAM,IAAI,gBAAgB,EAAE;AAC9B;;ACsGM,SAAU,OAAO,CAAC,QAAiE,EAAA;IACvF,MAAM,IAAI,gBAAgB,EAAE;AAC9B;;AChHA;;AAEG;MACU,YAAY,CAAA;AACvB;;;AAGG;IACH,WAAY,CAAA,GAAG,KAAc,EAAA;AAE7B;;AAEG;AACH,IAAA,IAAI,MAAM,GAAA;QACR,MAAM,IAAI,gBAAgB,EAAE;;AAG9B;;;;AAIG;AACH,IAAA,EAAE,CAAC,KAAmB,EAAA;QACpB,MAAM,IAAI,gBAAgB,EAAE;;IAuB9B,KAAK,CAAC,KAAoB,EAAE,GAAkB,EAAA;QAC5C,MAAM,IAAI,gBAAgB,EAAE;;AAG9B;;AAEG;IACH,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAA;QACf,MAAM,IAAI,gBAAgB,EAAE;;AAG9B;;AAEG;IACH,OAAO,GAAA;QACL,MAAM,IAAI,gBAAgB,EAAE;;AAG9B;;AAEG;IACH,IAAI,GAAA;QACF,MAAM,IAAI,gBAAgB,EAAE;;AAS9B;;;AAGG;IACH,IAAI,CAAC,GAAG,KAAc,EAAA;QACpB,MAAM,IAAI,gBAAgB,EAAE;;AAG9B;;AAEG;IACH,GAAG,GAAA;QACD,MAAM,IAAI,gBAAgB,EAAE;;AAG9B;;AAEG;IACH,IAAI,GAAA;QACF,MAAM,IAAI,gBAAgB,EAAE;;AAE/B;;SCjEe,IAAI,CAAI,KAAiB,EAAE,GAAG,UAAqB,EAAA;IACjE,MAAM,IAAI,gBAAgB,EAAE;AAC9B;;ACjCA;;AAEG;IACS;AAAZ,CAAA,UAAY,gBAAgB,EAAA;AAC1B;;AAEG;AACH,IAAA,gBAAA,CAAA,gBAAA,CAAA,MAAA,CAAA,GAAA,CAAA,CAAA,GAAA,MAAQ;AACR;;AAEG;AACH,IAAA,gBAAA,CAAA,gBAAA,CAAA,OAAA,CAAA,GAAA,CAAA,CAAA,GAAA,OAAS;AACT;;AAEG;AACH,IAAA,gBAAA,CAAA,gBAAA,CAAA,UAAA,CAAA,GAAA,CAAA,CAAA,GAAA,UAAY;AACZ;;AAEG;AACH,IAAA,gBAAA,CAAA,gBAAA,CAAA,YAAA,CAAA,GAAA,CAAA,CAAA,GAAA,YAAc;AACd;;AAEG;AACH,IAAA,gBAAA,CAAA,gBAAA,CAAA,mBAAA,CAAA,GAAA,CAAA,CAAA,GAAA,mBAAqB;AACrB;;AAEG;AACH,IAAA,gBAAA,CAAA,gBAAA,CAAA,mBAAA,CAAA,GAAA,CAAA,CAAA,GAAA,mBAAqB;AACvB,CAAC,EAzBW,gBAAgB,KAAhB,gBAAgB,GAyB3B,EAAA,CAAA,CAAA;;;;"}
@@ -1 +1 @@
1
- {"version":3,"file":"op-Dh5PXhZo.js","sources":["../src/op.ts"],"sourcesContent":["/* THIS FILE IS GENERATED BY ~/scripts/generate-op-funcs.ts - DO NOT MODIFY DIRECTLY */\nimport { NoImplementation } from './internal/errors'\nimport { bytes, uint64, biguint } from './primitives'\nimport { Account, Application, Asset } from './reference'\n\nexport enum Base64 {\n URLEncoding = 'URLEncoding',\n StdEncoding = 'StdEncoding',\n}\nexport enum Ec {\n /**\n * G1 of the BN254 curve. Points encoded as 32 byte X following by 32 byte Y\n */\n BN254g1 = 'BN254g1',\n /**\n * G2 of the BN254 curve. Points encoded as 64 byte X following by 64 byte Y\n */\n BN254g2 = 'BN254g2',\n /**\n * G1 of the BLS 12-381 curve. Points encoded as 48 byte X following by 48 byte Y\n */\n BLS12_381g1 = 'BLS12_381g1',\n /**\n * G2 of the BLS 12-381 curve. Points encoded as 96 byte X following by 96 byte Y\n */\n BLS12_381g2 = 'BLS12_381g2',\n}\nexport enum Ecdsa {\n /**\n * secp256k1 curve, used in Bitcoin\n */\n Secp256k1 = 'Secp256k1',\n /**\n * secp256r1 curve, NIST standard\n */\n Secp256r1 = 'Secp256r1',\n}\nexport enum MimcConfigurations {\n /**\n * MiMC configuration for the BN254 curve with Miyaguchi-Preneel mode, 110 rounds, exponent 5, seed \"seed\"\n */\n BN254Mp110 = 'BN254Mp110',\n /**\n * MiMC configuration for the BLS12-381 curve with Miyaguchi-Preneel mode, 111 rounds, exponent 5, seed \"seed\"\n */\n BLS12_381Mp111 = 'BLS12_381Mp111',\n}\nexport enum VrfVerify {\n VrfAlgorand = 'VrfAlgorand',\n}\nexport const AcctParams = {\n /**\n * Account balance in microalgos\n * Min AVM version: 6\n */\n acctBalance(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Minimum required balance for account, in microalgos\n * Min AVM version: 6\n */\n acctMinBalance(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Address the account is rekeyed to.\n * Min AVM version: 6\n */\n acctAuthAddr(a: Account | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The total number of uint64 values allocated by this account in Global and Local States.\n * Min AVM version: 8\n */\n acctTotalNumUint(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The total number of byte array values allocated by this account in Global and Local States.\n * Min AVM version: 8\n */\n acctTotalNumByteSlice(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of extra app code pages used by this account.\n * Min AVM version: 8\n */\n acctTotalExtraAppPages(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of existing apps created by this account.\n * Min AVM version: 8\n */\n acctTotalAppsCreated(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of apps this account is opted into.\n * Min AVM version: 8\n */\n acctTotalAppsOptedIn(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of existing ASAs created by this account.\n * Min AVM version: 8\n */\n acctTotalAssetsCreated(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The numbers of ASAs held by this account (including ASAs this account created).\n * Min AVM version: 8\n */\n acctTotalAssets(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of existing boxes created by this account's app.\n * Min AVM version: 8\n */\n acctTotalBoxes(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The total number of bytes used by this account's app's box keys and values.\n * Min AVM version: 8\n */\n acctTotalBoxBytes(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Has this account opted into block payouts\n * Min AVM version: 11\n */\n acctIncentiveEligible(a: Account | uint64): readonly [boolean, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The round number of the last block this account proposed.\n * Min AVM version: 11\n */\n acctLastProposed(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The round number of the last block this account sent a heartbeat.\n * Min AVM version: 11\n */\n acctLastHeartbeat(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n}\n\n/**\n * A plus B as a 128-bit result. X is the carry-bit, Y is the low-order 64 bits.\n * @see Native TEAL opcode: [`addw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#addw)\n * Min AVM version: 2\n */\nexport function addw(a: uint64, b: uint64): readonly [uint64, uint64] {\n throw new NoImplementation()\n}\n\n/**\n * Get or modify Global app state\n */\nexport const AppGlobal = {\n /**\n * delete key A from the global state of the current application\n * @param state key.\n * Deleting a key which is already absent has no effect on the application global state. (In particular, it does _not_ cause the program to fail.)\n * @see Native TEAL opcode: [`app_global_del`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_del)\n * Min AVM version: 2\n */\n delete(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * global state of the key A in the current application\n * @param state key.\n * * @return value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_global_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_get)\n * Min AVM version: 2\n */\n getBytes(a: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * global state of the key A in the current application\n * @param state key.\n * * @return value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_global_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_get)\n * Min AVM version: 2\n */\n getUint64(a: bytes): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * X is the global state of application A, key B. Y is 1 if key existed, else 0\n * @param Txn.ForeignApps offset (or, since v4, an _available_ application id), state key.\n * * @return did_exist flag (top of the stack, 1 if the application and key existed and 0 otherwise), value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_global_get_ex`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_get_ex)\n * Min AVM version: 2\n */\n getExBytes(a: Application | uint64, b: bytes): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * X is the global state of application A, key B. Y is 1 if key existed, else 0\n * @param Txn.ForeignApps offset (or, since v4, an _available_ application id), state key.\n * * @return did_exist flag (top of the stack, 1 if the application and key existed and 0 otherwise), value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_global_get_ex`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_get_ex)\n * Min AVM version: 2\n */\n getExUint64(a: Application | uint64, b: bytes): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * write B to key A in the global state of the current application\n * @see Native TEAL opcode: [`app_global_put`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_put)\n * Min AVM version: 2\n */\n put(a: bytes, b: uint64 | bytes): void {\n throw new NoImplementation()\n },\n}\n\n/**\n * Get or modify Local app state\n */\nexport const AppLocal = {\n /**\n * delete key B from account A's local state of the current application\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), state key.\n * Deleting a key which is already absent has no effect on the application local state. (In particular, it does _not_ cause the program to fail.)\n * @see Native TEAL opcode: [`app_local_del`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_del)\n * Min AVM version: 2\n */\n delete(a: Account | uint64, b: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * local state of the key B in the current application in account A\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), state key.\n * * @return value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_local_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_get)\n * Min AVM version: 2\n */\n getBytes(a: Account | uint64, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * local state of the key B in the current application in account A\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), state key.\n * * @return value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_local_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_get)\n * Min AVM version: 2\n */\n getUint64(a: Account | uint64, b: bytes): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * X is the local state of application B, key C in account A. Y is 1 if key existed, else 0\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset), state key.\n * * @return did_exist flag (top of the stack, 1 if the application and key existed and 0 otherwise), value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_local_get_ex`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_get_ex)\n * Min AVM version: 2\n */\n getExBytes(a: Account | uint64, b: Application | uint64, c: bytes): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * X is the local state of application B, key C in account A. Y is 1 if key existed, else 0\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset), state key.\n * * @return did_exist flag (top of the stack, 1 if the application and key existed and 0 otherwise), value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_local_get_ex`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_get_ex)\n * Min AVM version: 2\n */\n getExUint64(a: Account | uint64, b: Application | uint64, c: bytes): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * write C to key B in account A's local state of the current application\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), state key, value.\n * @see Native TEAL opcode: [`app_local_put`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_put)\n * Min AVM version: 2\n */\n put(a: Account | uint64, b: bytes, c: uint64 | bytes): void {\n throw new NoImplementation()\n },\n}\n\n/**\n * 1 if account A is opted in to application B, else 0\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset).\n * * @return 1 if opted in and 0 otherwise.\n * @see Native TEAL opcode: [`app_opted_in`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_opted_in)\n * Min AVM version: 2\n */\nexport function appOptedIn(a: Account | uint64, b: Application | uint64): boolean {\n throw new NoImplementation()\n}\nexport const AppParams = {\n /**\n * Bytecode of Approval Program\n * Min AVM version: 5\n */\n appApprovalProgram(a: Application | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Bytecode of Clear State Program\n * Min AVM version: 5\n */\n appClearStateProgram(a: Application | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of uint64 values allowed in Global State\n * Min AVM version: 5\n */\n appGlobalNumUint(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of byte array values allowed in Global State\n * Min AVM version: 5\n */\n appGlobalNumByteSlice(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of uint64 values allowed in Local State\n * Min AVM version: 5\n */\n appLocalNumUint(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of byte array values allowed in Local State\n * Min AVM version: 5\n */\n appLocalNumByteSlice(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of Extra Program Pages of code space\n * Min AVM version: 5\n */\n appExtraProgramPages(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Creator address\n * Min AVM version: 5\n */\n appCreator(a: Application | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Address for which this application has authority\n * Min AVM version: 5\n */\n appAddress(a: Application | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n}\n\n/**\n * Ath LogicSig argument\n * @see Native TEAL opcode: [`args`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#args)\n * Min AVM version: 5\n */\nexport function arg(a: uint64): bytes {\n throw new NoImplementation()\n}\nexport const AssetHolding = {\n /**\n * Amount of the asset unit held by this account\n * Min AVM version: 2\n */\n assetBalance(a: Account | uint64, b: Asset | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Is the asset frozen or not\n * Min AVM version: 2\n */\n assetFrozen(a: Account | uint64, b: Asset | uint64): readonly [boolean, boolean] {\n throw new NoImplementation()\n },\n}\n\nexport const AssetParams = {\n /**\n * Total number of units of this asset\n * Min AVM version: 2\n */\n assetTotal(a: Asset | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * See AssetParams.Decimals\n * Min AVM version: 2\n */\n assetDecimals(a: Asset | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Frozen by default or not\n * Min AVM version: 2\n */\n assetDefaultFrozen(a: Asset | uint64): readonly [boolean, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Asset unit name\n * Min AVM version: 2\n */\n assetUnitName(a: Asset | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Asset name\n * Min AVM version: 2\n */\n assetName(a: Asset | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * URL with additional info about the asset\n * Min AVM version: 2\n */\n assetUrl(a: Asset | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Arbitrary commitment\n * Min AVM version: 2\n */\n assetMetadataHash(a: Asset | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Manager address\n * Min AVM version: 2\n */\n assetManager(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Reserve address\n * Min AVM version: 2\n */\n assetReserve(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Freeze address\n * Min AVM version: 2\n */\n assetFreeze(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Clawback address\n * Min AVM version: 2\n */\n assetClawback(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Creator address\n * Min AVM version: 5\n */\n assetCreator(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n}\n\n/**\n * balance for account A, in microalgos. The balance is observed after the effects of previous transactions in the group, and after the fee for the current transaction is deducted. Changes caused by inner transactions are observable immediately following `itxn_submit`\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset).\n * * @return value.\n * @see Native TEAL opcode: [`balance`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#balance)\n * Min AVM version: 2\n */\nexport function balance(a: Account | uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * decode A which was base64-encoded using _encoding_ E. Fail if A is not base64 encoded with encoding E\n * *Warning*: Usage should be restricted to very rare use cases. In almost all cases, smart contracts should directly handle non-encoded byte-strings.\tThis opcode should only be used in cases where base64 is the only available option, e.g. interoperability with a third-party that only signs base64 strings.\n * Decodes A using the base64 encoding E. Specify the encoding with an immediate arg either as URL and Filename Safe (`URLEncoding`) or Standard (`StdEncoding`). See [RFC 4648 sections 4 and 5](https://rfc-editor.org/rfc/rfc4648.html#section-4). It is assumed that the encoding ends with the exact number of `=` padding characters as required by the RFC. When padding occurs, any unused pad bits in the encoding must be set to zero or the decoding will fail. The special cases of `\\n` and `\\r` are allowed but completely ignored. An error will result when attempting to decode a string with a character that is not in the encoding alphabet or not one of `=`, `\\r`, or `\\n`.\n * @see Native TEAL opcode: [`base64_decode`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#base64_decode)\n * Min AVM version: 7\n */\nexport function base64Decode(e: Base64, a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * The highest set bit in A. If A is a byte-array, it is interpreted as a big-endian unsigned integer. bitlen of 0 is 0, bitlen of 8 is 4\n * bitlen interprets arrays as big-endian integers, unlike setbit/getbit\n * @see Native TEAL opcode: [`bitlen`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#bitlen)\n * Min AVM version: 4\n */\nexport function bitLength(a: uint64 | bytes): uint64 {\n throw new NoImplementation()\n}\nexport const Block = {\n blkSeed(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n blkTimestamp(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n blkProposer(a: uint64): Account {\n throw new NoImplementation()\n },\n\n blkFeesCollected(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n blkBonus(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n blkBranch(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n blkFeeSink(a: uint64): Account {\n throw new NoImplementation()\n },\n\n blkProtocol(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n blkTxnCounter(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n blkProposerPayout(a: uint64): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * Get or modify box state\n */\nexport const Box = {\n /**\n * create a box named A, of length B. Fail if the name A is empty or B exceeds 32,768. Returns 0 if A already existed, else 1\n * Newly created boxes are filled with 0 bytes. `box_create` will fail if the referenced box already exists with a different size. Otherwise, existing boxes are unchanged by `box_create`.\n * @see Native TEAL opcode: [`box_create`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_create)\n * Min AVM version: 8\n */\n create(a: bytes, b: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * delete box named A if it exists. Return 1 if A existed, 0 otherwise\n * @see Native TEAL opcode: [`box_del`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_del)\n * Min AVM version: 8\n */\n delete(a: bytes): boolean {\n throw new NoImplementation()\n },\n\n /**\n * read C bytes from box A, starting at offset B. Fail if A does not exist, or the byte range is outside A's size.\n * @see Native TEAL opcode: [`box_extract`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_extract)\n * Min AVM version: 8\n */\n extract(a: bytes, b: uint64, c: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * X is the contents of box A if A exists, else ''. Y is 1 if A exists, else 0.\n * For boxes that exceed 4,096 bytes, consider `box_create`, `box_extract`, and `box_replace`\n * @see Native TEAL opcode: [`box_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_get)\n * Min AVM version: 8\n */\n get(a: bytes): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * X is the length of box A if A exists, else 0. Y is 1 if A exists, else 0.\n * @see Native TEAL opcode: [`box_len`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_len)\n * Min AVM version: 8\n */\n length(a: bytes): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * replaces the contents of box A with byte-array B. Fails if A exists and len(B) != len(box A). Creates A if it does not exist\n * For boxes that exceed 4,096 bytes, consider `box_create`, `box_extract`, and `box_replace`\n * @see Native TEAL opcode: [`box_put`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_put)\n * Min AVM version: 8\n */\n put(a: bytes, b: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * write byte-array C into box A, starting at offset B. Fail if A does not exist, or the byte range is outside A's size.\n * @see Native TEAL opcode: [`box_replace`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_replace)\n * Min AVM version: 8\n */\n replace(a: bytes, b: uint64, c: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * change the size of box named A to be of length B, adding zero bytes to end or removing bytes from the end, as needed. Fail if the name A is empty, A is not an existing box, or B exceeds 32,768.\n * @see Native TEAL opcode: [`box_resize`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_resize)\n * Min AVM version: 10\n */\n resize(a: bytes, b: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * set box A to contain its previous bytes up to index B, followed by D, followed by the original bytes of A that began at index B+C.\n * Boxes are of constant length. If C < len(D), then len(D)-C bytes will be removed from the end. If C > len(D), zero bytes will be appended to the end to reach the box length.\n * @see Native TEAL opcode: [`box_splice`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_splice)\n * Min AVM version: 10\n */\n splice(a: bytes, b: uint64, c: uint64, d: bytes): void {\n throw new NoImplementation()\n },\n}\n\n/**\n * The largest integer I such that I^2 <= A. A and I are interpreted as big-endian unsigned integers\n * @see Native TEAL opcode: [`bsqrt`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#bsqrt)\n * Min AVM version: 6\n */\nexport function bsqrt(a: biguint): biguint {\n throw new NoImplementation()\n}\n\n/**\n * converts big-endian byte array A to uint64. Fails if len(A) > 8. Padded by leading 0s if len(A) < 8.\n * `btoi` fails if the input is longer than 8 bytes.\n * @see Native TEAL opcode: [`btoi`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#btoi)\n * Min AVM version: 1\n */\nexport function btoi(a: bytes): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * zero filled byte-array of length A\n * @see Native TEAL opcode: [`bzero`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#bzero)\n * Min AVM version: 4\n */\nexport function bzero(a: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * join A and B\n * `concat` fails if the result would be greater than 4096 bytes.\n * @see Native TEAL opcode: [`concat`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#concat)\n * Min AVM version: 2\n */\nexport function concat(a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * W,X = (A,B / C,D); Y,Z = (A,B modulo C,D)\n * The notation J,K indicates that two uint64 values J and K are interpreted as a uint128 value, with J as the high uint64 and K the low.\n * @see Native TEAL opcode: [`divmodw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#divmodw)\n * Min AVM version: 4\n */\nexport function divmodw(a: uint64, b: uint64, c: uint64, d: uint64): readonly [uint64, uint64, uint64, uint64] {\n throw new NoImplementation()\n}\n\n/**\n * A,B / C. Fail if C == 0 or if result overflows.\n * The notation A,B indicates that A and B are interpreted as a uint128 value, with A as the high uint64 and B the low.\n * @see Native TEAL opcode: [`divw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#divw)\n * Min AVM version: 6\n */\nexport function divw(a: uint64, b: uint64, c: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Elliptic Curve functions\n */\nexport const EllipticCurve = {\n /**\n * for curve points A and B, return the curve point A + B\n * A and B are curve points in affine representation: field element X concatenated with field element Y. Field element `Z` is encoded as follows.\n * For the base field elements (Fp), `Z` is encoded as a big-endian number and must be lower than the field modulus.\n * For the quadratic field extension (Fp2), `Z` is encoded as the concatenation of the individual encoding of the coefficients. For an Fp2 element of the form `Z = Z0 + Z1 i`, where `i` is a formal quadratic non-residue, the encoding of Z is the concatenation of the encoding of `Z0` and `Z1` in this order. (`Z0` and `Z1` must be less than the field modulus).\n * The point at infinity is encoded as `(X,Y) = (0,0)`.\n * Groups G1 and G2 are denoted additively.\n * Fails if A or B is not in G.\n * A and/or B are allowed to be the point at infinity.\n * Does _not_ check if A and B are in the main prime-order subgroup.\n * @see Native TEAL opcode: [`ec_add`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_add)\n * Min AVM version: 10\n */\n add(g: Ec, a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * maps field element A to group G\n * BN254 points are mapped by the SVDW map. BLS12-381 points are mapped by the SSWU map.\n * G1 element inputs are base field elements and G2 element inputs are quadratic field elements, with nearly the same encoding rules (for field elements) as defined in `ec_add`. There is one difference of encoding rule: G1 element inputs do not need to be 0-padded if they fit in less than 32 bytes for BN254 and less than 48 bytes for BLS12-381. (As usual, the empty byte array represents 0.) G2 elements inputs need to be always have the required size.\n * @see Native TEAL opcode: [`ec_map_to`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_map_to)\n * Min AVM version: 10\n */\n mapTo(g: Ec, a: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * for curve points A and scalars B, return curve point B0A0 + B1A1 + B2A2 + ... + BnAn\n * A is a list of concatenated points, encoded and checked as described in `ec_add`. B is a list of concatenated scalars which, unlike ec_scalar_mul, must all be exactly 32 bytes long.\n * The name `ec_multi_scalar_mul` was chosen to reflect common usage, but a more consistent name would be `ec_multi_scalar_mul`. AVM values are limited to 4096 bytes, so `ec_multi_scalar_mul` is limited by the size of the points in the group being operated upon.\n * @see Native TEAL opcode: [`ec_multi_scalar_mul`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_multi_scalar_mul)\n * Min AVM version: 10\n */\n scalarMulMulti(g: Ec, a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 1 if the product of the pairing of each point in A with its respective point in B is equal to the identity element of the target group Gt, else 0\n * A and B are concatenated points, encoded and checked as described in `ec_add`. A contains points of the group G, B contains points of the associated group (G2 if G is G1, and vice versa). Fails if A and B have a different number of points, or if any point is not in its described group or outside the main prime-order subgroup - a stronger condition than other opcodes. AVM values are limited to 4096 bytes, so `ec_pairing_check` is limited by the size of the points in the groups being operated upon.\n * @see Native TEAL opcode: [`ec_pairing_check`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_pairing_check)\n * Min AVM version: 10\n */\n pairingCheck(g: Ec, a: bytes, b: bytes): boolean {\n throw new NoImplementation()\n },\n\n /**\n * for curve point A and scalar B, return the curve point BA, the point A multiplied by the scalar B.\n * A is a curve point encoded and checked as described in `ec_add`. Scalar B is interpreted as a big-endian unsigned integer. Fails if B exceeds 32 bytes.\n * @see Native TEAL opcode: [`ec_scalar_mul`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_scalar_mul)\n * Min AVM version: 10\n */\n scalarMul(g: Ec, a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 1 if A is in the main prime-order subgroup of G (including the point at infinity) else 0. Program fails if A is not in G at all.\n * @see Native TEAL opcode: [`ec_subgroup_check`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_subgroup_check)\n * Min AVM version: 10\n */\n subgroupCheck(g: Ec, a: bytes): boolean {\n throw new NoImplementation()\n },\n}\n\n/**\n * decompress pubkey A into components X, Y\n * The 33 byte public key in a compressed form to be decompressed into X and Y (top) components. All values are big-endian encoded.\n * @see Native TEAL opcode: [`ecdsa_pk_decompress`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ecdsa_pk_decompress)\n * Min AVM version: 5\n */\nexport function ecdsaPkDecompress(v: Ecdsa, a: bytes): readonly [bytes, bytes] {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, recovery id B, signature C, D) recover a public key\n * S (top) and R elements of a signature, recovery id and data (bottom) are expected on the stack and used to deriver a public key. All values are big-endian encoded. The signed data must be 32 bytes long.\n * @see Native TEAL opcode: [`ecdsa_pk_recover`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ecdsa_pk_recover)\n * Min AVM version: 5\n */\nexport function ecdsaPkRecover(v: Ecdsa, a: bytes, b: uint64, c: bytes, d: bytes): readonly [bytes, bytes] {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, signature B, C and pubkey D, E) verify the signature of the data against the pubkey => {0 or 1}\n * The 32 byte Y-component of a public key is the last element on the stack, preceded by X-component of a pubkey, preceded by S and R components of a signature, preceded by the data that is fifth element on the stack. All values are big-endian encoded. The signed data must be 32 bytes long, and signatures in lower-S form are only accepted.\n * @see Native TEAL opcode: [`ecdsa_verify`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ecdsa_verify)\n * Min AVM version: 5\n */\nexport function ecdsaVerify(v: Ecdsa, a: bytes, b: bytes, c: bytes, d: bytes, e: bytes): boolean {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, signature B, pubkey C) verify the signature of (\"ProgData\" || program_hash || data) against the pubkey => {0 or 1}\n * The 32 byte public key is the last element on the stack, preceded by the 64 byte signature at the second-to-last element on the stack, preceded by the data which was signed at the third-to-last element on the stack.\n * @see Native TEAL opcode: [`ed25519verify`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ed25519verify)\n * Min AVM version: 1\n */\nexport function ed25519verify(a: bytes, b: bytes, c: bytes): boolean {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, signature B, pubkey C) verify the signature of the data against the pubkey => {0 or 1}\n * @see Native TEAL opcode: [`ed25519verify_bare`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ed25519verify_bare)\n * Min AVM version: 7\n */\nexport function ed25519verifyBare(a: bytes, b: bytes, c: bytes): boolean {\n throw new NoImplementation()\n}\n\n/**\n * A raised to the Bth power. Fail if A == B == 0 and on overflow\n * @see Native TEAL opcode: [`exp`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#exp)\n * Min AVM version: 4\n */\nexport function exp(a: uint64, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A raised to the Bth power as a 128-bit result in two uint64s. X is the high 64 bits, Y is the low. Fail if A == B == 0 or if the results exceeds 2^128-1\n * @see Native TEAL opcode: [`expw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#expw)\n * Min AVM version: 4\n */\nexport function expw(a: uint64, b: uint64): readonly [uint64, uint64] {\n throw new NoImplementation()\n}\n\n/**\n * A uint16 formed from a range of big-endian bytes from A starting at B up to but not including B+2. If B+2 is larger than the array length, the program fails\n * @see Native TEAL opcode: [`extract_uint16`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#extract_uint16)\n * Min AVM version: 5\n */\nexport function extractUint16(a: bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A uint32 formed from a range of big-endian bytes from A starting at B up to but not including B+4. If B+4 is larger than the array length, the program fails\n * @see Native TEAL opcode: [`extract_uint32`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#extract_uint32)\n * Min AVM version: 5\n */\nexport function extractUint32(a: bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A uint64 formed from a range of big-endian bytes from A starting at B up to but not including B+8. If B+8 is larger than the array length, the program fails\n * @see Native TEAL opcode: [`extract_uint64`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#extract_uint64)\n * Min AVM version: 5\n */\nexport function extractUint64(a: bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, compressed-format signature B, pubkey C) verify the signature of data against the pubkey\n * @see Native TEAL opcode: [`falcon_verify`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#falcon_verify)\n * Min AVM version: 12\n */\nexport function falconVerify(a: bytes, b: bytes, c: bytes): boolean {\n throw new NoImplementation()\n}\n\n/**\n * ID of the asset or application created in the Ath transaction of the current group\n * `gaids` fails unless the requested transaction created an asset or application and A < GroupIndex.\n * @see Native TEAL opcode: [`gaids`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#gaids)\n * Min AVM version: 4\n */\nexport function gaid(a: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Bth bit of (byte-array or integer) A. If B is greater than or equal to the bit length of the value (8*byte length), the program fails\n * see explanation of bit ordering in setbit\n * @see Native TEAL opcode: [`getbit`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#getbit)\n * Min AVM version: 3\n */\nexport function getBit(a: uint64 | bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Bth byte of A, as an integer. If B is greater than or equal to the array length, the program fails\n * @see Native TEAL opcode: [`getbyte`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#getbyte)\n * Min AVM version: 3\n */\nexport function getByte(a: bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Get values for inner transaction in the last group submitted\n */\nexport const GITxn = {\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n sender(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 6\n */\n fee(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 6\n */\n firstValid(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n * Min AVM version: 7\n */\n firstValidTime(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 6\n */\n lastValid(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 6\n */\n note(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte lease value\n * Min AVM version: 6\n */\n lease(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n receiver(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 6\n */\n amount(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n closeRemainderTo(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n votePk(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n selectionPk(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 6\n */\n voteFirst(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 6\n */\n voteLast(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 6\n */\n voteKeyDilution(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 6\n */\n type(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 6\n */\n typeEnum(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 6\n */\n xferAsset(t: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 6\n */\n assetAmount(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 6\n */\n assetSender(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n assetReceiver(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n assetCloseTo(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Position of this transaction within an atomic transaction group. A stand-alone transaction is implicitly element 0 in a group of 1\n * Min AVM version: 6\n */\n groupIndex(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The computed ID for this transaction. 32 bytes.\n * Min AVM version: 6\n */\n txId(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationId(t: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n onCompletion(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationArgs(t: uint64, a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ApplicationArgs\n * Min AVM version: 2\n */\n numAppArgs(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n accounts(t: uint64, a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of Accounts\n * Min AVM version: 2\n */\n numAccounts(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n approvalProgram(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n clearStateProgram(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n rekeyTo(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n configAsset(t: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n configAssetTotal(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n configAssetDecimals(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n configAssetDefaultFrozen(t: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n configAssetUnitName(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n configAssetName(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n configAssetUrl(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n configAssetMetadataHash(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetManager(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetReserve(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetFreeze(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetClawback(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n freezeAsset(t: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n freezeAssetAccount(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n freezeAssetFrozen(t: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n assets(t: uint64, a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Number of Assets\n * Min AVM version: 3\n */\n numAssets(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n applications(t: uint64, a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * Number of Applications\n * Min AVM version: 3\n */\n numApplications(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n globalNumUint(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n globalNumByteSlice(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n localNumUint(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n localNumByteSlice(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n extraProgramPages(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n nonparticipation(t: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Log messages emitted by an application call (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n logs(t: uint64, a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Logs (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n numLogs(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID allocated by the creation of an ASA (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n createdAssetId(t: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID allocated by the creation of an application (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n createdApplicationId(t: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n * Min AVM version: 6\n */\n lastLog(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n stateProofPk(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n approvalProgramPages(t: uint64, a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Approval Program pages\n * Min AVM version: 7\n */\n numApprovalProgramPages(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n clearStateProgramPages(t: uint64, a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ClearState Program pages\n * Min AVM version: 7\n */\n numClearStateProgramPages(t: uint64): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * Bth scratch space value of the Ath transaction in the current group\n * @see Native TEAL opcode: [`gloadss`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#gloadss)\n * Min AVM version: 6\n */\nexport function gloadBytes(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Bth scratch space value of the Ath transaction in the current group\n * @see Native TEAL opcode: [`gloadss`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#gloadss)\n * Min AVM version: 6\n */\nexport function gloadUint64(a: uint64, b: uint64): uint64 {\n throw new NoImplementation()\n}\nexport const Global = {\n /**\n * microalgos\n * Min AVM version: 1\n */\n get minTxnFee(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 1\n */\n get minBalance(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * rounds\n * Min AVM version: 1\n */\n get maxTxnLife(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of all zero bytes\n * Min AVM version: 1\n */\n get zeroAddress(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of transactions in this atomic transaction group. At least 1\n * Min AVM version: 1\n */\n get groupSize(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Maximum supported version\n * Min AVM version: 2\n */\n get logicSigVersion(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Current round number. Application mode only.\n * Min AVM version: 2\n */\n get round(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Last confirmed block UNIX timestamp. Fails if negative. Application mode only.\n * Min AVM version: 2\n */\n get latestTimestamp(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ID of current application executing. Application mode only.\n * Min AVM version: 2\n */\n get currentApplicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * Address of the creator of the current application. Application mode only.\n * Min AVM version: 3\n */\n get creatorAddress(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Address that the current application controls. Application mode only.\n * Min AVM version: 5\n */\n get currentApplicationAddress(): Account {\n throw new NoImplementation()\n },\n\n /**\n * ID of the transaction group. 32 zero bytes if the transaction is not part of a group.\n * Min AVM version: 5\n */\n get groupId(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The remaining cost that can be spent by opcodes in this program.\n * Min AVM version: 6\n */\n get opcodeBudget(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The application ID of the application that called this application. 0 if this application is at the top-level. Application mode only.\n * Min AVM version: 6\n */\n get callerApplicationId(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The application address of the application that called this application. ZeroAddress if this application is at the top-level. Application mode only.\n * Min AVM version: 6\n */\n get callerApplicationAddress(): Account {\n throw new NoImplementation()\n },\n\n /**\n * The additional minimum balance required to create (and opt-in to) an asset.\n * Min AVM version: 10\n */\n get assetCreateMinBalance(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The additional minimum balance required to opt-in to an asset.\n * Min AVM version: 10\n */\n get assetOptInMinBalance(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The Genesis Hash for the network.\n * Min AVM version: 10\n */\n get genesisHash(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Whether block proposal payouts are enabled.\n * Min AVM version: 11\n */\n get payoutsEnabled(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * The fee required in a keyreg transaction to make an account incentive eligible.\n * Min AVM version: 11\n */\n get payoutsGoOnlineFee(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The percentage of transaction fees in a block that can be paid to the block proposer.\n * Min AVM version: 11\n */\n get payoutsPercent(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The minimum balance an account must have in the agreement round to receive block payouts in the proposal round.\n * Min AVM version: 11\n */\n get payoutsMinBalance(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The maximum balance an account can have in the agreement round to receive block payouts in the proposal round.\n * Min AVM version: 11\n */\n get payoutsMaxBalance(): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * Get values for transactions in the current group\n */\nexport const GTxn = {\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n sender(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 3\n */\n fee(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 3\n */\n firstValid(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n * Min AVM version: 7\n */\n firstValidTime(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 3\n */\n lastValid(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 3\n */\n note(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte lease value\n * Min AVM version: 3\n */\n lease(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n receiver(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 3\n */\n amount(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n closeRemainderTo(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n votePk(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n selectionPk(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 3\n */\n voteFirst(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 3\n */\n voteLast(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 3\n */\n voteKeyDilution(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 3\n */\n type(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 3\n */\n typeEnum(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 3\n */\n xferAsset(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 3\n */\n assetAmount(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 3\n */\n assetSender(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n assetReceiver(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n assetCloseTo(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Position of this transaction within an atomic transaction group. A stand-alone transaction is implicitly element 0 in a group of 1\n * Min AVM version: 3\n */\n groupIndex(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The computed ID for this transaction. 32 bytes.\n * Min AVM version: 3\n */\n txId(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationId(a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n onCompletion(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationArgs(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ApplicationArgs\n * Min AVM version: 2\n */\n numAppArgs(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n accounts(a: uint64, b: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of Accounts\n * Min AVM version: 2\n */\n numAccounts(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n approvalProgram(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n clearStateProgram(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n rekeyTo(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n configAsset(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n configAssetTotal(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n configAssetDecimals(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n configAssetDefaultFrozen(a: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n configAssetUnitName(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n configAssetName(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n configAssetUrl(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n configAssetMetadataHash(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetManager(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetReserve(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetFreeze(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetClawback(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n freezeAsset(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n freezeAssetAccount(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n freezeAssetFrozen(a: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n assets(a: uint64, b: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Number of Assets\n * Min AVM version: 3\n */\n numAssets(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n applications(a: uint64, b: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * Number of Applications\n * Min AVM version: 3\n */\n numApplications(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n globalNumUint(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n globalNumByteSlice(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n localNumUint(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n localNumByteSlice(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n extraProgramPages(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n nonparticipation(a: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Log messages emitted by an application call (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n logs(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Logs (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n numLogs(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID allocated by the creation of an ASA (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n createdAssetId(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID allocated by the creation of an application (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n createdApplicationId(a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n * Min AVM version: 6\n */\n lastLog(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n stateProofPk(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n approvalProgramPages(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Approval Program pages\n * Min AVM version: 7\n */\n numApprovalProgramPages(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n clearStateProgramPages(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ClearState Program pages\n * Min AVM version: 7\n */\n numClearStateProgramPages(a: uint64): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * converts uint64 A to big-endian byte array, always of length 8\n * @see Native TEAL opcode: [`itob`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#itob)\n * Min AVM version: 1\n */\nexport function itob(a: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Get values for the last inner transaction\n */\nexport const ITxn = {\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get sender(): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 5\n */\n get fee(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 5\n */\n get firstValid(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n * Min AVM version: 7\n */\n get firstValidTime(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 5\n */\n get lastValid(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 5\n */\n get note(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte lease value\n * Min AVM version: 5\n */\n get lease(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get receiver(): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 5\n */\n get amount(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get closeRemainderTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get votePk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get selectionPk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 5\n */\n get voteFirst(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 5\n */\n get voteLast(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 5\n */\n get voteKeyDilution(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 5\n */\n get type(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 5\n */\n get typeEnum(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 5\n */\n get xferAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 5\n */\n get assetAmount(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 5\n */\n get assetSender(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get assetReceiver(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get assetCloseTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Position of this transaction within an atomic transaction group. A stand-alone transaction is implicitly element 0 in a group of 1\n * Min AVM version: 5\n */\n get groupIndex(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The computed ID for this transaction. 32 bytes.\n * Min AVM version: 5\n */\n get txId(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n get applicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n get onCompletion(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationArgs(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ApplicationArgs\n * Min AVM version: 2\n */\n get numAppArgs(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n accounts(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of Accounts\n * Min AVM version: 2\n */\n get numAccounts(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n get approvalProgram(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n get clearStateProgram(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n get rekeyTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n get configAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n get configAssetTotal(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n get configAssetDecimals(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n get configAssetDefaultFrozen(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n get configAssetUnitName(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n get configAssetName(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n get configAssetUrl(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n get configAssetMetadataHash(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetManager(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetReserve(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetFreeze(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetClawback(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n get freezeAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n get freezeAssetAccount(): Account {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n get freezeAssetFrozen(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n assets(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Number of Assets\n * Min AVM version: 3\n */\n get numAssets(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n applications(a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * Number of Applications\n * Min AVM version: 3\n */\n get numApplications(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n get globalNumUint(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n get globalNumByteSlice(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n get localNumUint(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n get localNumByteSlice(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n get extraProgramPages(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n get nonparticipation(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Log messages emitted by an application call (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n logs(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Logs (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get numLogs(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID allocated by the creation of an ASA (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get createdAssetId(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID allocated by the creation of an application (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get createdApplicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n * Min AVM version: 6\n */\n get lastLog(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n get stateProofPk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n approvalProgramPages(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Approval Program pages\n * Min AVM version: 7\n */\n get numApprovalProgramPages(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n clearStateProgramPages(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ClearState Program pages\n * Min AVM version: 7\n */\n get numClearStateProgramPages(): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * Create inner transactions\n */\nexport const ITxnCreate = {\n /**\n * begin preparation of a new inner transaction in a new transaction group\n * `itxn_begin` initializes Sender to the application address; Fee to the minimum allowable, taking into account MinTxnFee and credit from overpaying in earlier transactions; FirstValid/LastValid to the values in the invoking transaction, and all other fields to zero or empty values.\n * @see Native TEAL opcode: [`itxn_begin`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#itxn_begin)\n * Min AVM version: 5\n */\n begin(): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setSender(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 5\n */\n setFee(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 5\n */\n setNote(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setReceiver(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 5\n */\n setAmount(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setCloseRemainderTo(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setVotePk(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setSelectionPk(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 5\n */\n setVoteFirst(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 5\n */\n setVoteLast(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 5\n */\n setVoteKeyDilution(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 5\n */\n setType(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 5\n */\n setTypeEnum(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 5\n */\n setXferAsset(a: Asset | uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 5\n */\n setAssetAmount(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 5\n */\n setAssetSender(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setAssetReceiver(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setAssetCloseTo(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n setApplicationId(a: Application | uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n setOnCompletion(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n setApplicationArgs(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n setAccounts(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n setApprovalProgram(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n setClearStateProgram(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n setRekeyTo(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n setConfigAsset(a: Asset | uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n setConfigAssetTotal(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n setConfigAssetDecimals(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n setConfigAssetDefaultFrozen(a: boolean): void {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n setConfigAssetUnitName(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n setConfigAssetName(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n setConfigAssetUrl(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n setConfigAssetMetadataHash(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n setConfigAssetManager(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n setConfigAssetReserve(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n setConfigAssetFreeze(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n setConfigAssetClawback(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n setFreezeAsset(a: Asset | uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n setFreezeAssetAccount(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n setFreezeAssetFrozen(a: boolean): void {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n setAssets(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n setApplications(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n setGlobalNumUint(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n setGlobalNumByteSlice(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n setLocalNumUint(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n setLocalNumByteSlice(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n setExtraProgramPages(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n setNonparticipation(a: boolean): void {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n setStateProofPk(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n setApprovalProgramPages(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n setClearStateProgramPages(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * begin preparation of a new inner transaction in the same transaction group\n * `itxn_next` initializes the transaction exactly as `itxn_begin` does\n * @see Native TEAL opcode: [`itxn_next`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#itxn_next)\n * Min AVM version: 6\n */\n next(): void {\n throw new NoImplementation()\n },\n\n /**\n * execute the current inner transaction group. Fail if executing this group would exceed the inner transaction limit, or if any transaction in the group fails.\n * `itxn_submit` resets the current transaction so that it can not be resubmitted. A new `itxn_begin` is required to prepare another inner transaction.\n * @see Native TEAL opcode: [`itxn_submit`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#itxn_submit)\n * Min AVM version: 5\n */\n submit(): void {\n throw new NoImplementation()\n },\n}\n\nexport const JsonRef = {\n jsonString(a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n jsonUint64(a: bytes, b: bytes): uint64 {\n throw new NoImplementation()\n },\n\n jsonObject(a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n}\n\n/**\n * Keccak256 hash of value A, yields [32]byte\n * @see Native TEAL opcode: [`keccak256`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#keccak256)\n * Min AVM version: 1\n */\nexport function keccak256(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * yields length of byte value A\n * @see Native TEAL opcode: [`len`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#len)\n * Min AVM version: 1\n */\nexport function len(a: bytes): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Load or store scratch values\n */\nexport const Scratch = {\n /**\n * Ath scratch space value. All scratch spaces are 0 at program start.\n * @see Native TEAL opcode: [`loads`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#loads)\n * Min AVM version: 5\n */\n loadBytes(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Ath scratch space value. All scratch spaces are 0 at program start.\n * @see Native TEAL opcode: [`loads`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#loads)\n * Min AVM version: 5\n */\n loadUint64(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * store B to the Ath scratch space\n * @see Native TEAL opcode: [`stores`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#stores)\n * Min AVM version: 5\n */\n store(a: uint64, b: uint64 | bytes): void {\n throw new NoImplementation()\n },\n}\n\n/**\n * MiMC hash of scalars A, using curve and parameters specified by configuration C\n * A is a list of concatenated 32 byte big-endian unsigned integer scalars. Fail if A's length is not a multiple of 32 or any element exceeds the curve modulus.\n * The MiMC hash function has known collisions since any input which is a multiple of the elliptic curve modulus will hash to the same value. MiMC is thus not a general purpose hash function, but meant to be used in zero knowledge applications to match a zk-circuit implementation.\n * @see Native TEAL opcode: [`mimc`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#mimc)\n * Min AVM version: 11\n */\nexport function mimc(c: MimcConfigurations, a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * minimum required balance for account A, in microalgos. Required balance is affected by ASA, App, and Box usage. When creating or opting into an app, the minimum balance grows before the app code runs, therefore the increase is visible there. When deleting or closing out, the minimum balance decreases after the app executes. Changes caused by inner transactions or box usage are observable immediately following the opcode effecting the change.\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset).\n * * @return value.\n * @see Native TEAL opcode: [`min_balance`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#min_balance)\n * Min AVM version: 3\n */\nexport function minBalance(a: Account | uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A times B as a 128-bit result in two uint64s. X is the high 64 bits, Y is the low\n * @see Native TEAL opcode: [`mulw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#mulw)\n * Min AVM version: 1\n */\nexport function mulw(a: uint64, b: uint64): readonly [uint64, uint64] {\n throw new NoImplementation()\n}\n\n/**\n * the total online stake in the agreement round\n * @see Native TEAL opcode: [`online_stake`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#online_stake)\n * Min AVM version: 11\n */\nexport function onlineStake(): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Copy of A with the bytes starting at B replaced by the bytes of C. Fails if B+len(C) exceeds len(A)\n * `replace3` can be called using `replace` with no immediates.\n * @see Native TEAL opcode: [`replace3`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#replace3)\n * Min AVM version: 7\n */\nexport function replace(a: bytes, b: uint64, c: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Copy of A with the Bth byte set to small integer (between 0..255) C. If B is greater than or equal to the array length, the program fails\n * @see Native TEAL opcode: [`setbyte`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#setbyte)\n * Min AVM version: 3\n */\nexport function setByte(a: bytes, b: uint64, c: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * SHA256 hash of value A, yields [32]byte\n * @see Native TEAL opcode: [`sha256`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sha256)\n * Min AVM version: 1\n */\nexport function sha256(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * SHA3_256 hash of value A, yields [32]byte\n * @see Native TEAL opcode: [`sha3_256`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sha3_256)\n * Min AVM version: 7\n */\nexport function sha3_256(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * SHA512_256 hash of value A, yields [32]byte\n * @see Native TEAL opcode: [`sha512_256`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sha512_256)\n * Min AVM version: 1\n */\nexport function sha512_256(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * A times 2^B, modulo 2^64\n * @see Native TEAL opcode: [`shl`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#shl)\n * Min AVM version: 4\n */\nexport function shl(a: uint64, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A divided by 2^B\n * @see Native TEAL opcode: [`shr`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#shr)\n * Min AVM version: 4\n */\nexport function shr(a: uint64, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * The largest integer I such that I^2 <= A\n * @see Native TEAL opcode: [`sqrt`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sqrt)\n * Min AVM version: 4\n */\nexport function sqrt(a: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A range of bytes from A starting at B up to but not including C. If C < B, or either is larger than the array length, the program fails\n * @see Native TEAL opcode: [`substring3`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#substring3)\n * Min AVM version: 2\n */\nexport function substring(a: bytes, b: uint64, c: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * sumhash512 of value A, yields [64]byte\n * @see Native TEAL opcode: [`sumhash512`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sumhash512)\n * Min AVM version: 12\n */\nexport function sumhash512(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Get values for the current executing transaction\n */\nexport const Txn = {\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get sender(): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 1\n */\n get fee(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 1\n */\n get firstValid(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n * Min AVM version: 7\n */\n get firstValidTime(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 1\n */\n get lastValid(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 1\n */\n get note(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte lease value\n * Min AVM version: 1\n */\n get lease(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get receiver(): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 1\n */\n get amount(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get closeRemainderTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get votePk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get selectionPk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 1\n */\n get voteFirst(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 1\n */\n get voteLast(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 1\n */\n get voteKeyDilution(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 1\n */\n get type(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 1\n */\n get typeEnum(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 1\n */\n get xferAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 1\n */\n get assetAmount(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 1\n */\n get assetSender(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get assetReceiver(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get assetCloseTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Position of this transaction within an atomic transaction group. A stand-alone transaction is implicitly element 0 in a group of 1\n * Min AVM version: 1\n */\n get groupIndex(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The computed ID for this transaction. 32 bytes.\n * Min AVM version: 1\n */\n get txId(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n get applicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n get onCompletion(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationArgs(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ApplicationArgs\n * Min AVM version: 2\n */\n get numAppArgs(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n accounts(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of Accounts\n * Min AVM version: 2\n */\n get numAccounts(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n get approvalProgram(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n get clearStateProgram(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n get rekeyTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n get configAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n get configAssetTotal(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n get configAssetDecimals(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n get configAssetDefaultFrozen(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n get configAssetUnitName(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n get configAssetName(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n get configAssetUrl(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n get configAssetMetadataHash(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetManager(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetReserve(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetFreeze(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetClawback(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n get freezeAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n get freezeAssetAccount(): Account {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n get freezeAssetFrozen(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n assets(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Number of Assets\n * Min AVM version: 3\n */\n get numAssets(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n applications(a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * Number of Applications\n * Min AVM version: 3\n */\n get numApplications(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n get globalNumUint(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n get globalNumByteSlice(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n get localNumUint(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n get localNumByteSlice(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n get extraProgramPages(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n get nonparticipation(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Log messages emitted by an application call (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n logs(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Logs (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get numLogs(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID allocated by the creation of an ASA (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get createdAssetId(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID allocated by the creation of an application (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get createdApplicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n * Min AVM version: 6\n */\n get lastLog(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n get stateProofPk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n approvalProgramPages(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Approval Program pages\n * Min AVM version: 7\n */\n get numApprovalProgramPages(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n clearStateProgramPages(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ClearState Program pages\n * Min AVM version: 7\n */\n get numClearStateProgramPages(): uint64 {\n throw new NoImplementation()\n },\n}\n\nexport const VoterParams = {\n /**\n * Online stake in microalgos\n * Min AVM version: 11\n */\n voterBalance(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Had this account opted into block payouts\n * Min AVM version: 11\n */\n voterIncentiveEligible(a: Account | uint64): readonly [boolean, boolean] {\n throw new NoImplementation()\n },\n}\n\n/**\n * Verify the proof B of message A against pubkey C. Returns vrf output and verification flag.\n * `VrfAlgorand` is the VRF used in Algorand. It is ECVRF-ED25519-SHA512-Elligator2, specified in the IETF internet draft [draft-irtf-cfrg-vrf-03](https://datatracker.ietf.org/doc/draft-irtf-cfrg-vrf/03/).\n * @see Native TEAL opcode: [`vrf_verify`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#vrf_verify)\n * Min AVM version: 7\n */\nexport function vrfVerify(s: VrfVerify, a: bytes, b: bytes, c: bytes): readonly [bytes, boolean] {\n throw new NoImplementation()\n}\n\n/**\n * A range of bytes from A starting at B up to the end of the sequence\n */\nexport function extract(a: bytes, b: uint64): bytes\n\n/**\n * A range of bytes from A starting at B up to but not including B+C. If B+C is larger than the array length, the program fails\n */\nexport function extract(a: bytes, b: uint64, c: uint64): bytes\nexport function extract(a: bytes, b: uint64, c?: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * selects one of two values based on top-of-stack: B if C != 0, else A\n */\nexport function select(a: bytes, b: bytes, c: uint64): bytes\n\n/**\n * selects one of two values based on top-of-stack: B if C != 0, else A\n */\nexport function select(a: uint64, b: uint64, c: uint64): uint64\nexport function select(a: uint64 | bytes, b: uint64 | bytes, c: uint64): bytes | uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Set the nth bit of target to the value of c (1 or 0)\n */\nexport function setBit(target: bytes, n: uint64, c: uint64): bytes\n\n/**\n * Set the nth bit of target to the value of c (1 or 0)\n */\nexport function setBit(target: uint64, n: uint64, c: uint64): uint64\nexport function setBit(target: uint64 | bytes, n: uint64, c: uint64): bytes | uint64 {\n throw new NoImplementation()\n}\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"op-Dh5PXhZo.js","sources":["../src/op.ts"],"sourcesContent":["/* THIS FILE IS GENERATED BY ~/scripts/generate-op-funcs.ts - DO NOT MODIFY DIRECTLY */\nimport { NoImplementation } from './internal/errors'\nimport { bytes, uint64, biguint } from './primitives'\nimport { Account, Application, Asset } from './reference'\nimport { OnCompleteAction } from './on-complete-action'\nimport { TransactionType } from './transactions'\nexport enum Base64 {\n URLEncoding = 'URLEncoding',\n StdEncoding = 'StdEncoding',\n}\nexport enum Ec {\n /**\n * G1 of the BN254 curve. Points encoded as 32 byte X following by 32 byte Y\n */\n BN254g1 = 'BN254g1',\n /**\n * G2 of the BN254 curve. Points encoded as 64 byte X following by 64 byte Y\n */\n BN254g2 = 'BN254g2',\n /**\n * G1 of the BLS 12-381 curve. Points encoded as 48 byte X following by 48 byte Y\n */\n BLS12_381g1 = 'BLS12_381g1',\n /**\n * G2 of the BLS 12-381 curve. Points encoded as 96 byte X following by 96 byte Y\n */\n BLS12_381g2 = 'BLS12_381g2',\n}\nexport enum Ecdsa {\n /**\n * secp256k1 curve, used in Bitcoin\n */\n Secp256k1 = 'Secp256k1',\n /**\n * secp256r1 curve, NIST standard\n */\n Secp256r1 = 'Secp256r1',\n}\nexport enum MimcConfigurations {\n /**\n * MiMC configuration for the BN254 curve with Miyaguchi-Preneel mode, 110 rounds, exponent 5, seed \"seed\"\n */\n BN254Mp110 = 'BN254Mp110',\n /**\n * MiMC configuration for the BLS12-381 curve with Miyaguchi-Preneel mode, 111 rounds, exponent 5, seed \"seed\"\n */\n BLS12_381Mp111 = 'BLS12_381Mp111',\n}\nexport enum VrfVerify {\n VrfAlgorand = 'VrfAlgorand',\n}\nexport const AcctParams = {\n /**\n * Account balance in microalgos\n * Min AVM version: 6\n */\n acctBalance(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Minimum required balance for account, in microalgos\n * Min AVM version: 6\n */\n acctMinBalance(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Address the account is rekeyed to.\n * Min AVM version: 6\n */\n acctAuthAddr(a: Account | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The total number of uint64 values allocated by this account in Global and Local States.\n * Min AVM version: 8\n */\n acctTotalNumUint(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The total number of byte array values allocated by this account in Global and Local States.\n * Min AVM version: 8\n */\n acctTotalNumByteSlice(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of extra app code pages used by this account.\n * Min AVM version: 8\n */\n acctTotalExtraAppPages(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of existing apps created by this account.\n * Min AVM version: 8\n */\n acctTotalAppsCreated(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of apps this account is opted into.\n * Min AVM version: 8\n */\n acctTotalAppsOptedIn(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of existing ASAs created by this account.\n * Min AVM version: 8\n */\n acctTotalAssetsCreated(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The numbers of ASAs held by this account (including ASAs this account created).\n * Min AVM version: 8\n */\n acctTotalAssets(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The number of existing boxes created by this account's app.\n * Min AVM version: 8\n */\n acctTotalBoxes(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The total number of bytes used by this account's app's box keys and values.\n * Min AVM version: 8\n */\n acctTotalBoxBytes(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Has this account opted into block payouts\n * Min AVM version: 11\n */\n acctIncentiveEligible(a: Account | uint64): readonly [boolean, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The round number of the last block this account proposed.\n * Min AVM version: 11\n */\n acctLastProposed(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * The round number of the last block this account sent a heartbeat.\n * Min AVM version: 11\n */\n acctLastHeartbeat(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n}\n\n/**\n * A plus B as a 128-bit result. X is the carry-bit, Y is the low-order 64 bits.\n * @see Native TEAL opcode: [`addw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#addw)\n * Min AVM version: 2\n */\nexport function addw(a: uint64, b: uint64): readonly [uint64, uint64] {\n throw new NoImplementation()\n}\n\n/**\n * Get or modify Global app state\n */\nexport const AppGlobal = {\n /**\n * delete key A from the global state of the current application\n * @param state key.\n * Deleting a key which is already absent has no effect on the application global state. (In particular, it does _not_ cause the program to fail.)\n * @see Native TEAL opcode: [`app_global_del`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_del)\n * Min AVM version: 2\n */\n delete(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * global state of the key A in the current application\n * @param state key.\n * * @return value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_global_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_get)\n * Min AVM version: 2\n */\n getBytes(a: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * global state of the key A in the current application\n * @param state key.\n * * @return value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_global_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_get)\n * Min AVM version: 2\n */\n getUint64(a: bytes): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * X is the global state of application A, key B. Y is 1 if key existed, else 0\n * @param Txn.ForeignApps offset (or, since v4, an _available_ application id), state key.\n * * @return did_exist flag (top of the stack, 1 if the application and key existed and 0 otherwise), value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_global_get_ex`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_get_ex)\n * Min AVM version: 2\n */\n getExBytes(a: Application | uint64, b: bytes): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * X is the global state of application A, key B. Y is 1 if key existed, else 0\n * @param Txn.ForeignApps offset (or, since v4, an _available_ application id), state key.\n * * @return did_exist flag (top of the stack, 1 if the application and key existed and 0 otherwise), value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_global_get_ex`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_get_ex)\n * Min AVM version: 2\n */\n getExUint64(a: Application | uint64, b: bytes): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * write B to key A in the global state of the current application\n * @see Native TEAL opcode: [`app_global_put`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_global_put)\n * Min AVM version: 2\n */\n put(a: bytes, b: uint64 | bytes): void {\n throw new NoImplementation()\n },\n}\n\n/**\n * Get or modify Local app state\n */\nexport const AppLocal = {\n /**\n * delete key B from account A's local state of the current application\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), state key.\n * Deleting a key which is already absent has no effect on the application local state. (In particular, it does _not_ cause the program to fail.)\n * @see Native TEAL opcode: [`app_local_del`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_del)\n * Min AVM version: 2\n */\n delete(a: Account | uint64, b: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * local state of the key B in the current application in account A\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), state key.\n * * @return value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_local_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_get)\n * Min AVM version: 2\n */\n getBytes(a: Account | uint64, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * local state of the key B in the current application in account A\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), state key.\n * * @return value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_local_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_get)\n * Min AVM version: 2\n */\n getUint64(a: Account | uint64, b: bytes): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * X is the local state of application B, key C in account A. Y is 1 if key existed, else 0\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset), state key.\n * * @return did_exist flag (top of the stack, 1 if the application and key existed and 0 otherwise), value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_local_get_ex`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_get_ex)\n * Min AVM version: 2\n */\n getExBytes(a: Account | uint64, b: Application | uint64, c: bytes): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * X is the local state of application B, key C in account A. Y is 1 if key existed, else 0\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset), state key.\n * * @return did_exist flag (top of the stack, 1 if the application and key existed and 0 otherwise), value. The value is zero (of type uint64) if the key does not exist.\n * @see Native TEAL opcode: [`app_local_get_ex`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_get_ex)\n * Min AVM version: 2\n */\n getExUint64(a: Account | uint64, b: Application | uint64, c: bytes): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * write C to key B in account A's local state of the current application\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), state key, value.\n * @see Native TEAL opcode: [`app_local_put`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_local_put)\n * Min AVM version: 2\n */\n put(a: Account | uint64, b: bytes, c: uint64 | bytes): void {\n throw new NoImplementation()\n },\n}\n\n/**\n * 1 if account A is opted in to application B, else 0\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset).\n * * @return 1 if opted in and 0 otherwise.\n * @see Native TEAL opcode: [`app_opted_in`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#app_opted_in)\n * Min AVM version: 2\n */\nexport function appOptedIn(a: Account | uint64, b: Application | uint64): boolean {\n throw new NoImplementation()\n}\nexport const AppParams = {\n /**\n * Bytecode of Approval Program\n * Min AVM version: 5\n */\n appApprovalProgram(a: Application | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Bytecode of Clear State Program\n * Min AVM version: 5\n */\n appClearStateProgram(a: Application | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of uint64 values allowed in Global State\n * Min AVM version: 5\n */\n appGlobalNumUint(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of byte array values allowed in Global State\n * Min AVM version: 5\n */\n appGlobalNumByteSlice(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of uint64 values allowed in Local State\n * Min AVM version: 5\n */\n appLocalNumUint(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of byte array values allowed in Local State\n * Min AVM version: 5\n */\n appLocalNumByteSlice(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Number of Extra Program Pages of code space\n * Min AVM version: 5\n */\n appExtraProgramPages(a: Application | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Creator address\n * Min AVM version: 5\n */\n appCreator(a: Application | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Address for which this application has authority\n * Min AVM version: 5\n */\n appAddress(a: Application | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n}\n\n/**\n * Ath LogicSig argument\n * @see Native TEAL opcode: [`args`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#args)\n * Min AVM version: 5\n */\nexport function arg(a: uint64): bytes {\n throw new NoImplementation()\n}\nexport const AssetHolding = {\n /**\n * Amount of the asset unit held by this account\n * Min AVM version: 2\n */\n assetBalance(a: Account | uint64, b: Asset | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Is the asset frozen or not\n * Min AVM version: 2\n */\n assetFrozen(a: Account | uint64, b: Asset | uint64): readonly [boolean, boolean] {\n throw new NoImplementation()\n },\n}\n\nexport const AssetParams = {\n /**\n * Total number of units of this asset\n * Min AVM version: 2\n */\n assetTotal(a: Asset | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * See AssetParams.Decimals\n * Min AVM version: 2\n */\n assetDecimals(a: Asset | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Frozen by default or not\n * Min AVM version: 2\n */\n assetDefaultFrozen(a: Asset | uint64): readonly [boolean, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Asset unit name\n * Min AVM version: 2\n */\n assetUnitName(a: Asset | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Asset name\n * Min AVM version: 2\n */\n assetName(a: Asset | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * URL with additional info about the asset\n * Min AVM version: 2\n */\n assetUrl(a: Asset | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Arbitrary commitment\n * Min AVM version: 2\n */\n assetMetadataHash(a: Asset | uint64): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Manager address\n * Min AVM version: 2\n */\n assetManager(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Reserve address\n * Min AVM version: 2\n */\n assetReserve(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Freeze address\n * Min AVM version: 2\n */\n assetFreeze(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Clawback address\n * Min AVM version: 2\n */\n assetClawback(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Creator address\n * Min AVM version: 5\n */\n assetCreator(a: Asset | uint64): readonly [Account, boolean] {\n throw new NoImplementation()\n },\n}\n\n/**\n * balance for account A, in microalgos. The balance is observed after the effects of previous transactions in the group, and after the fee for the current transaction is deducted. Changes caused by inner transactions are observable immediately following `itxn_submit`\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset).\n * * @return value.\n * @see Native TEAL opcode: [`balance`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#balance)\n * Min AVM version: 2\n */\nexport function balance(a: Account | uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * decode A which was base64-encoded using _encoding_ E. Fail if A is not base64 encoded with encoding E\n * *Warning*: Usage should be restricted to very rare use cases. In almost all cases, smart contracts should directly handle non-encoded byte-strings.\tThis opcode should only be used in cases where base64 is the only available option, e.g. interoperability with a third-party that only signs base64 strings.\n * Decodes A using the base64 encoding E. Specify the encoding with an immediate arg either as URL and Filename Safe (`URLEncoding`) or Standard (`StdEncoding`). See [RFC 4648 sections 4 and 5](https://rfc-editor.org/rfc/rfc4648.html#section-4). It is assumed that the encoding ends with the exact number of `=` padding characters as required by the RFC. When padding occurs, any unused pad bits in the encoding must be set to zero or the decoding will fail. The special cases of `\\n` and `\\r` are allowed but completely ignored. An error will result when attempting to decode a string with a character that is not in the encoding alphabet or not one of `=`, `\\r`, or `\\n`.\n * @see Native TEAL opcode: [`base64_decode`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#base64_decode)\n * Min AVM version: 7\n */\nexport function base64Decode(e: Base64, a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * The highest set bit in A. If A is a byte-array, it is interpreted as a big-endian unsigned integer. bitlen of 0 is 0, bitlen of 8 is 4\n * bitlen interprets arrays as big-endian integers, unlike setbit/getbit\n * @see Native TEAL opcode: [`bitlen`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#bitlen)\n * Min AVM version: 4\n */\nexport function bitLength(a: uint64 | bytes): uint64 {\n throw new NoImplementation()\n}\nexport const Block = {\n blkSeed(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n blkTimestamp(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n blkProposer(a: uint64): Account {\n throw new NoImplementation()\n },\n\n blkFeesCollected(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n blkBonus(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n blkBranch(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n blkFeeSink(a: uint64): Account {\n throw new NoImplementation()\n },\n\n blkProtocol(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n blkTxnCounter(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n blkProposerPayout(a: uint64): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * Get or modify box state\n */\nexport const Box = {\n /**\n * create a box named A, of length B. Fail if the name A is empty or B exceeds 32,768. Returns 0 if A already existed, else 1\n * Newly created boxes are filled with 0 bytes. `box_create` will fail if the referenced box already exists with a different size. Otherwise, existing boxes are unchanged by `box_create`.\n * @see Native TEAL opcode: [`box_create`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_create)\n * Min AVM version: 8\n */\n create(a: bytes, b: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * delete box named A if it exists. Return 1 if A existed, 0 otherwise\n * @see Native TEAL opcode: [`box_del`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_del)\n * Min AVM version: 8\n */\n delete(a: bytes): boolean {\n throw new NoImplementation()\n },\n\n /**\n * read C bytes from box A, starting at offset B. Fail if A does not exist, or the byte range is outside A's size.\n * @see Native TEAL opcode: [`box_extract`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_extract)\n * Min AVM version: 8\n */\n extract(a: bytes, b: uint64, c: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * X is the contents of box A if A exists, else ''. Y is 1 if A exists, else 0.\n * For boxes that exceed 4,096 bytes, consider `box_create`, `box_extract`, and `box_replace`\n * @see Native TEAL opcode: [`box_get`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_get)\n * Min AVM version: 8\n */\n get(a: bytes): readonly [bytes, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * X is the length of box A if A exists, else 0. Y is 1 if A exists, else 0.\n * @see Native TEAL opcode: [`box_len`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_len)\n * Min AVM version: 8\n */\n length(a: bytes): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * replaces the contents of box A with byte-array B. Fails if A exists and len(B) != len(box A). Creates A if it does not exist\n * For boxes that exceed 4,096 bytes, consider `box_create`, `box_extract`, and `box_replace`\n * @see Native TEAL opcode: [`box_put`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_put)\n * Min AVM version: 8\n */\n put(a: bytes, b: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * write byte-array C into box A, starting at offset B. Fail if A does not exist, or the byte range is outside A's size.\n * @see Native TEAL opcode: [`box_replace`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_replace)\n * Min AVM version: 8\n */\n replace(a: bytes, b: uint64, c: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * change the size of box named A to be of length B, adding zero bytes to end or removing bytes from the end, as needed. Fail if the name A is empty, A is not an existing box, or B exceeds 32,768.\n * @see Native TEAL opcode: [`box_resize`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_resize)\n * Min AVM version: 10\n */\n resize(a: bytes, b: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * set box A to contain its previous bytes up to index B, followed by D, followed by the original bytes of A that began at index B+C.\n * Boxes are of constant length. If C < len(D), then len(D)-C bytes will be removed from the end. If C > len(D), zero bytes will be appended to the end to reach the box length.\n * @see Native TEAL opcode: [`box_splice`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#box_splice)\n * Min AVM version: 10\n */\n splice(a: bytes, b: uint64, c: uint64, d: bytes): void {\n throw new NoImplementation()\n },\n}\n\n/**\n * The largest integer I such that I^2 <= A. A and I are interpreted as big-endian unsigned integers\n * @see Native TEAL opcode: [`bsqrt`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#bsqrt)\n * Min AVM version: 6\n */\nexport function bsqrt(a: biguint): biguint {\n throw new NoImplementation()\n}\n\n/**\n * converts big-endian byte array A to uint64. Fails if len(A) > 8. Padded by leading 0s if len(A) < 8.\n * `btoi` fails if the input is longer than 8 bytes.\n * @see Native TEAL opcode: [`btoi`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#btoi)\n * Min AVM version: 1\n */\nexport function btoi(a: bytes): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * zero filled byte-array of length A\n * @see Native TEAL opcode: [`bzero`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#bzero)\n * Min AVM version: 4\n */\nexport function bzero(a: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * join A and B\n * `concat` fails if the result would be greater than 4096 bytes.\n * @see Native TEAL opcode: [`concat`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#concat)\n * Min AVM version: 2\n */\nexport function concat(a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * W,X = (A,B / C,D); Y,Z = (A,B modulo C,D)\n * The notation J,K indicates that two uint64 values J and K are interpreted as a uint128 value, with J as the high uint64 and K the low.\n * @see Native TEAL opcode: [`divmodw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#divmodw)\n * Min AVM version: 4\n */\nexport function divmodw(a: uint64, b: uint64, c: uint64, d: uint64): readonly [uint64, uint64, uint64, uint64] {\n throw new NoImplementation()\n}\n\n/**\n * A,B / C. Fail if C == 0 or if result overflows.\n * The notation A,B indicates that A and B are interpreted as a uint128 value, with A as the high uint64 and B the low.\n * @see Native TEAL opcode: [`divw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#divw)\n * Min AVM version: 6\n */\nexport function divw(a: uint64, b: uint64, c: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Elliptic Curve functions\n */\nexport const EllipticCurve = {\n /**\n * for curve points A and B, return the curve point A + B\n * A and B are curve points in affine representation: field element X concatenated with field element Y. Field element `Z` is encoded as follows.\n * For the base field elements (Fp), `Z` is encoded as a big-endian number and must be lower than the field modulus.\n * For the quadratic field extension (Fp2), `Z` is encoded as the concatenation of the individual encoding of the coefficients. For an Fp2 element of the form `Z = Z0 + Z1 i`, where `i` is a formal quadratic non-residue, the encoding of Z is the concatenation of the encoding of `Z0` and `Z1` in this order. (`Z0` and `Z1` must be less than the field modulus).\n * The point at infinity is encoded as `(X,Y) = (0,0)`.\n * Groups G1 and G2 are denoted additively.\n * Fails if A or B is not in G.\n * A and/or B are allowed to be the point at infinity.\n * Does _not_ check if A and B are in the main prime-order subgroup.\n * @see Native TEAL opcode: [`ec_add`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_add)\n * Min AVM version: 10\n */\n add(g: Ec, a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * maps field element A to group G\n * BN254 points are mapped by the SVDW map. BLS12-381 points are mapped by the SSWU map.\n * G1 element inputs are base field elements and G2 element inputs are quadratic field elements, with nearly the same encoding rules (for field elements) as defined in `ec_add`. There is one difference of encoding rule: G1 element inputs do not need to be 0-padded if they fit in less than 32 bytes for BN254 and less than 48 bytes for BLS12-381. (As usual, the empty byte array represents 0.) G2 elements inputs need to be always have the required size.\n * @see Native TEAL opcode: [`ec_map_to`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_map_to)\n * Min AVM version: 10\n */\n mapTo(g: Ec, a: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * for curve points A and scalars B, return curve point B0A0 + B1A1 + B2A2 + ... + BnAn\n * A is a list of concatenated points, encoded and checked as described in `ec_add`. B is a list of concatenated scalars which, unlike ec_scalar_mul, must all be exactly 32 bytes long.\n * The name `ec_multi_scalar_mul` was chosen to reflect common usage, but a more consistent name would be `ec_multi_scalar_mul`. AVM values are limited to 4096 bytes, so `ec_multi_scalar_mul` is limited by the size of the points in the group being operated upon.\n * @see Native TEAL opcode: [`ec_multi_scalar_mul`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_multi_scalar_mul)\n * Min AVM version: 10\n */\n scalarMulMulti(g: Ec, a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 1 if the product of the pairing of each point in A with its respective point in B is equal to the identity element of the target group Gt, else 0\n * A and B are concatenated points, encoded and checked as described in `ec_add`. A contains points of the group G, B contains points of the associated group (G2 if G is G1, and vice versa). Fails if A and B have a different number of points, or if any point is not in its described group or outside the main prime-order subgroup - a stronger condition than other opcodes. AVM values are limited to 4096 bytes, so `ec_pairing_check` is limited by the size of the points in the groups being operated upon.\n * @see Native TEAL opcode: [`ec_pairing_check`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_pairing_check)\n * Min AVM version: 10\n */\n pairingCheck(g: Ec, a: bytes, b: bytes): boolean {\n throw new NoImplementation()\n },\n\n /**\n * for curve point A and scalar B, return the curve point BA, the point A multiplied by the scalar B.\n * A is a curve point encoded and checked as described in `ec_add`. Scalar B is interpreted as a big-endian unsigned integer. Fails if B exceeds 32 bytes.\n * @see Native TEAL opcode: [`ec_scalar_mul`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_scalar_mul)\n * Min AVM version: 10\n */\n scalarMul(g: Ec, a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 1 if A is in the main prime-order subgroup of G (including the point at infinity) else 0. Program fails if A is not in G at all.\n * @see Native TEAL opcode: [`ec_subgroup_check`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ec_subgroup_check)\n * Min AVM version: 10\n */\n subgroupCheck(g: Ec, a: bytes): boolean {\n throw new NoImplementation()\n },\n}\n\n/**\n * decompress pubkey A into components X, Y\n * The 33 byte public key in a compressed form to be decompressed into X and Y (top) components. All values are big-endian encoded.\n * @see Native TEAL opcode: [`ecdsa_pk_decompress`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ecdsa_pk_decompress)\n * Min AVM version: 5\n */\nexport function ecdsaPkDecompress(v: Ecdsa, a: bytes): readonly [bytes, bytes] {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, recovery id B, signature C, D) recover a public key\n * S (top) and R elements of a signature, recovery id and data (bottom) are expected on the stack and used to deriver a public key. All values are big-endian encoded. The signed data must be 32 bytes long.\n * @see Native TEAL opcode: [`ecdsa_pk_recover`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ecdsa_pk_recover)\n * Min AVM version: 5\n */\nexport function ecdsaPkRecover(v: Ecdsa, a: bytes, b: uint64, c: bytes, d: bytes): readonly [bytes, bytes] {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, signature B, C and pubkey D, E) verify the signature of the data against the pubkey => {0 or 1}\n * The 32 byte Y-component of a public key is the last element on the stack, preceded by X-component of a pubkey, preceded by S and R components of a signature, preceded by the data that is fifth element on the stack. All values are big-endian encoded. The signed data must be 32 bytes long, and signatures in lower-S form are only accepted.\n * @see Native TEAL opcode: [`ecdsa_verify`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ecdsa_verify)\n * Min AVM version: 5\n */\nexport function ecdsaVerify(v: Ecdsa, a: bytes, b: bytes, c: bytes, d: bytes, e: bytes): boolean {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, signature B, pubkey C) verify the signature of (\"ProgData\" || program_hash || data) against the pubkey => {0 or 1}\n * The 32 byte public key is the last element on the stack, preceded by the 64 byte signature at the second-to-last element on the stack, preceded by the data which was signed at the third-to-last element on the stack.\n * @see Native TEAL opcode: [`ed25519verify`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ed25519verify)\n * Min AVM version: 1\n */\nexport function ed25519verify(a: bytes, b: bytes, c: bytes): boolean {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, signature B, pubkey C) verify the signature of the data against the pubkey => {0 or 1}\n * @see Native TEAL opcode: [`ed25519verify_bare`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#ed25519verify_bare)\n * Min AVM version: 7\n */\nexport function ed25519verifyBare(a: bytes, b: bytes, c: bytes): boolean {\n throw new NoImplementation()\n}\n\n/**\n * A raised to the Bth power. Fail if A == B == 0 and on overflow\n * @see Native TEAL opcode: [`exp`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#exp)\n * Min AVM version: 4\n */\nexport function exp(a: uint64, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A raised to the Bth power as a 128-bit result in two uint64s. X is the high 64 bits, Y is the low. Fail if A == B == 0 or if the results exceeds 2^128-1\n * @see Native TEAL opcode: [`expw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#expw)\n * Min AVM version: 4\n */\nexport function expw(a: uint64, b: uint64): readonly [uint64, uint64] {\n throw new NoImplementation()\n}\n\n/**\n * A uint16 formed from a range of big-endian bytes from A starting at B up to but not including B+2. If B+2 is larger than the array length, the program fails\n * @see Native TEAL opcode: [`extract_uint16`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#extract_uint16)\n * Min AVM version: 5\n */\nexport function extractUint16(a: bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A uint32 formed from a range of big-endian bytes from A starting at B up to but not including B+4. If B+4 is larger than the array length, the program fails\n * @see Native TEAL opcode: [`extract_uint32`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#extract_uint32)\n * Min AVM version: 5\n */\nexport function extractUint32(a: bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A uint64 formed from a range of big-endian bytes from A starting at B up to but not including B+8. If B+8 is larger than the array length, the program fails\n * @see Native TEAL opcode: [`extract_uint64`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#extract_uint64)\n * Min AVM version: 5\n */\nexport function extractUint64(a: bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * for (data A, compressed-format signature B, pubkey C) verify the signature of data against the pubkey\n * @see Native TEAL opcode: [`falcon_verify`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#falcon_verify)\n * Min AVM version: 12\n */\nexport function falconVerify(a: bytes, b: bytes, c: bytes): boolean {\n throw new NoImplementation()\n}\n\n/**\n * ID of the asset or application created in the Ath transaction of the current group\n * `gaids` fails unless the requested transaction created an asset or application and A < GroupIndex.\n * @see Native TEAL opcode: [`gaids`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#gaids)\n * Min AVM version: 4\n */\nexport function gaid(a: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Bth bit of (byte-array or integer) A. If B is greater than or equal to the bit length of the value (8*byte length), the program fails\n * see explanation of bit ordering in setbit\n * @see Native TEAL opcode: [`getbit`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#getbit)\n * Min AVM version: 3\n */\nexport function getBit(a: uint64 | bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Bth byte of A, as an integer. If B is greater than or equal to the array length, the program fails\n * @see Native TEAL opcode: [`getbyte`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#getbyte)\n * Min AVM version: 3\n */\nexport function getByte(a: bytes, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Get values for inner transaction in the last group submitted\n */\nexport const GITxn = {\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n sender(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 6\n */\n fee(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 6\n */\n firstValid(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n * Min AVM version: 7\n */\n firstValidTime(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 6\n */\n lastValid(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 6\n */\n note(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte lease value\n * Min AVM version: 6\n */\n lease(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n receiver(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 6\n */\n amount(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n closeRemainderTo(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n votePk(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n selectionPk(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 6\n */\n voteFirst(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 6\n */\n voteLast(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 6\n */\n voteKeyDilution(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 6\n */\n type(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 6\n */\n typeEnum(t: uint64): TransactionType {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 6\n */\n xferAsset(t: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 6\n */\n assetAmount(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 6\n */\n assetSender(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n assetReceiver(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 6\n */\n assetCloseTo(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Position of this transaction within an atomic transaction group. A stand-alone transaction is implicitly element 0 in a group of 1\n * Min AVM version: 6\n */\n groupIndex(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The computed ID for this transaction. 32 bytes.\n * Min AVM version: 6\n */\n txId(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationId(t: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n onCompletion(t: uint64): OnCompleteAction {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationArgs(t: uint64, a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ApplicationArgs\n * Min AVM version: 2\n */\n numAppArgs(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n accounts(t: uint64, a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of Accounts\n * Min AVM version: 2\n */\n numAccounts(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n approvalProgram(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n clearStateProgram(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n rekeyTo(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n configAsset(t: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n configAssetTotal(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n configAssetDecimals(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n configAssetDefaultFrozen(t: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n configAssetUnitName(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n configAssetName(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n configAssetUrl(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n configAssetMetadataHash(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetManager(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetReserve(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetFreeze(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetClawback(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n freezeAsset(t: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n freezeAssetAccount(t: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n freezeAssetFrozen(t: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n assets(t: uint64, a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Number of Assets\n * Min AVM version: 3\n */\n numAssets(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n applications(t: uint64, a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * Number of Applications\n * Min AVM version: 3\n */\n numApplications(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n globalNumUint(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n globalNumByteSlice(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n localNumUint(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n localNumByteSlice(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n extraProgramPages(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n nonparticipation(t: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Log messages emitted by an application call (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n logs(t: uint64, a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Logs (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n numLogs(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID allocated by the creation of an ASA (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n createdAssetId(t: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID allocated by the creation of an application (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n createdApplicationId(t: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n * Min AVM version: 6\n */\n lastLog(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n stateProofPk(t: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n approvalProgramPages(t: uint64, a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Approval Program pages\n * Min AVM version: 7\n */\n numApprovalProgramPages(t: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n clearStateProgramPages(t: uint64, a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ClearState Program pages\n * Min AVM version: 7\n */\n numClearStateProgramPages(t: uint64): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * Bth scratch space value of the Ath transaction in the current group\n * @see Native TEAL opcode: [`gloadss`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#gloadss)\n * Min AVM version: 6\n */\nexport function gloadBytes(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Bth scratch space value of the Ath transaction in the current group\n * @see Native TEAL opcode: [`gloadss`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#gloadss)\n * Min AVM version: 6\n */\nexport function gloadUint64(a: uint64, b: uint64): uint64 {\n throw new NoImplementation()\n}\nexport const Global = {\n /**\n * microalgos\n * Min AVM version: 1\n */\n get minTxnFee(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 1\n */\n get minBalance(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * rounds\n * Min AVM version: 1\n */\n get maxTxnLife(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of all zero bytes\n * Min AVM version: 1\n */\n get zeroAddress(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of transactions in this atomic transaction group. At least 1\n * Min AVM version: 1\n */\n get groupSize(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Maximum supported version\n * Min AVM version: 2\n */\n get logicSigVersion(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Current round number. Application mode only.\n * Min AVM version: 2\n */\n get round(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Last confirmed block UNIX timestamp. Fails if negative. Application mode only.\n * Min AVM version: 2\n */\n get latestTimestamp(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ID of current application executing. Application mode only.\n * Min AVM version: 2\n */\n get currentApplicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * Address of the creator of the current application. Application mode only.\n * Min AVM version: 3\n */\n get creatorAddress(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Address that the current application controls. Application mode only.\n * Min AVM version: 5\n */\n get currentApplicationAddress(): Account {\n throw new NoImplementation()\n },\n\n /**\n * ID of the transaction group. 32 zero bytes if the transaction is not part of a group.\n * Min AVM version: 5\n */\n get groupId(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The remaining cost that can be spent by opcodes in this program.\n * Min AVM version: 6\n */\n get opcodeBudget(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The application ID of the application that called this application. 0 if this application is at the top-level. Application mode only.\n * Min AVM version: 6\n */\n get callerApplicationId(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The application address of the application that called this application. ZeroAddress if this application is at the top-level. Application mode only.\n * Min AVM version: 6\n */\n get callerApplicationAddress(): Account {\n throw new NoImplementation()\n },\n\n /**\n * The additional minimum balance required to create (and opt-in to) an asset.\n * Min AVM version: 10\n */\n get assetCreateMinBalance(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The additional minimum balance required to opt-in to an asset.\n * Min AVM version: 10\n */\n get assetOptInMinBalance(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The Genesis Hash for the network.\n * Min AVM version: 10\n */\n get genesisHash(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Whether block proposal payouts are enabled.\n * Min AVM version: 11\n */\n get payoutsEnabled(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * The fee required in a keyreg transaction to make an account incentive eligible.\n * Min AVM version: 11\n */\n get payoutsGoOnlineFee(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The percentage of transaction fees in a block that can be paid to the block proposer.\n * Min AVM version: 11\n */\n get payoutsPercent(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The minimum balance an account must have in the agreement round to receive block payouts in the proposal round.\n * Min AVM version: 11\n */\n get payoutsMinBalance(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The maximum balance an account can have in the agreement round to receive block payouts in the proposal round.\n * Min AVM version: 11\n */\n get payoutsMaxBalance(): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * Get values for transactions in the current group\n */\nexport const GTxn = {\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n sender(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 3\n */\n fee(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 3\n */\n firstValid(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n * Min AVM version: 7\n */\n firstValidTime(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 3\n */\n lastValid(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 3\n */\n note(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte lease value\n * Min AVM version: 3\n */\n lease(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n receiver(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 3\n */\n amount(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n closeRemainderTo(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n votePk(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n selectionPk(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 3\n */\n voteFirst(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 3\n */\n voteLast(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 3\n */\n voteKeyDilution(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 3\n */\n type(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 3\n */\n typeEnum(a: uint64): TransactionType {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 3\n */\n xferAsset(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 3\n */\n assetAmount(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 3\n */\n assetSender(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n assetReceiver(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 3\n */\n assetCloseTo(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Position of this transaction within an atomic transaction group. A stand-alone transaction is implicitly element 0 in a group of 1\n * Min AVM version: 3\n */\n groupIndex(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The computed ID for this transaction. 32 bytes.\n * Min AVM version: 3\n */\n txId(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationId(a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n onCompletion(a: uint64): OnCompleteAction {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationArgs(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ApplicationArgs\n * Min AVM version: 2\n */\n numAppArgs(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n accounts(a: uint64, b: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of Accounts\n * Min AVM version: 2\n */\n numAccounts(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n approvalProgram(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n clearStateProgram(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n rekeyTo(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n configAsset(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n configAssetTotal(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n configAssetDecimals(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n configAssetDefaultFrozen(a: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n configAssetUnitName(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n configAssetName(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n configAssetUrl(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n configAssetMetadataHash(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetManager(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetReserve(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetFreeze(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n configAssetClawback(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n freezeAsset(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n freezeAssetAccount(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n freezeAssetFrozen(a: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n assets(a: uint64, b: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Number of Assets\n * Min AVM version: 3\n */\n numAssets(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n applications(a: uint64, b: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * Number of Applications\n * Min AVM version: 3\n */\n numApplications(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n globalNumUint(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n globalNumByteSlice(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n localNumUint(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n localNumByteSlice(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n extraProgramPages(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n nonparticipation(a: uint64): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Log messages emitted by an application call (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n logs(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Logs (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n numLogs(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID allocated by the creation of an ASA (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n createdAssetId(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID allocated by the creation of an application (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n createdApplicationId(a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n * Min AVM version: 6\n */\n lastLog(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n stateProofPk(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n approvalProgramPages(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Approval Program pages\n * Min AVM version: 7\n */\n numApprovalProgramPages(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n clearStateProgramPages(a: uint64, b: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ClearState Program pages\n * Min AVM version: 7\n */\n numClearStateProgramPages(a: uint64): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * converts uint64 A to big-endian byte array, always of length 8\n * @see Native TEAL opcode: [`itob`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#itob)\n * Min AVM version: 1\n */\nexport function itob(a: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Get values for the last inner transaction\n */\nexport const ITxn = {\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get sender(): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 5\n */\n get fee(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 5\n */\n get firstValid(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n * Min AVM version: 7\n */\n get firstValidTime(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 5\n */\n get lastValid(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 5\n */\n get note(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte lease value\n * Min AVM version: 5\n */\n get lease(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get receiver(): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 5\n */\n get amount(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get closeRemainderTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get votePk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get selectionPk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 5\n */\n get voteFirst(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 5\n */\n get voteLast(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 5\n */\n get voteKeyDilution(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 5\n */\n get type(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 5\n */\n get typeEnum(): TransactionType {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 5\n */\n get xferAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 5\n */\n get assetAmount(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 5\n */\n get assetSender(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get assetReceiver(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n get assetCloseTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Position of this transaction within an atomic transaction group. A stand-alone transaction is implicitly element 0 in a group of 1\n * Min AVM version: 5\n */\n get groupIndex(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The computed ID for this transaction. 32 bytes.\n * Min AVM version: 5\n */\n get txId(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n get applicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n get onCompletion(): OnCompleteAction {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationArgs(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ApplicationArgs\n * Min AVM version: 2\n */\n get numAppArgs(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n accounts(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of Accounts\n * Min AVM version: 2\n */\n get numAccounts(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n get approvalProgram(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n get clearStateProgram(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n get rekeyTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n get configAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n get configAssetTotal(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n get configAssetDecimals(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n get configAssetDefaultFrozen(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n get configAssetUnitName(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n get configAssetName(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n get configAssetUrl(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n get configAssetMetadataHash(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetManager(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetReserve(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetFreeze(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetClawback(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n get freezeAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n get freezeAssetAccount(): Account {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n get freezeAssetFrozen(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n assets(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Number of Assets\n * Min AVM version: 3\n */\n get numAssets(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n applications(a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * Number of Applications\n * Min AVM version: 3\n */\n get numApplications(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n get globalNumUint(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n get globalNumByteSlice(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n get localNumUint(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n get localNumByteSlice(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n get extraProgramPages(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n get nonparticipation(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Log messages emitted by an application call (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n logs(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Logs (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get numLogs(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID allocated by the creation of an ASA (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get createdAssetId(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID allocated by the creation of an application (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get createdApplicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n * Min AVM version: 6\n */\n get lastLog(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n get stateProofPk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n approvalProgramPages(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Approval Program pages\n * Min AVM version: 7\n */\n get numApprovalProgramPages(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n clearStateProgramPages(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ClearState Program pages\n * Min AVM version: 7\n */\n get numClearStateProgramPages(): uint64 {\n throw new NoImplementation()\n },\n}\n\n/**\n * Create inner transactions\n */\nexport const ITxnCreate = {\n /**\n * begin preparation of a new inner transaction in a new transaction group\n * `itxn_begin` initializes Sender to the application address; Fee to the minimum allowable, taking into account MinTxnFee and credit from overpaying in earlier transactions; FirstValid/LastValid to the values in the invoking transaction, and all other fields to zero or empty values.\n * @see Native TEAL opcode: [`itxn_begin`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#itxn_begin)\n * Min AVM version: 5\n */\n begin(): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setSender(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 5\n */\n setFee(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 5\n */\n setNote(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setReceiver(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 5\n */\n setAmount(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setCloseRemainderTo(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setVotePk(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setSelectionPk(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 5\n */\n setVoteFirst(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 5\n */\n setVoteLast(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 5\n */\n setVoteKeyDilution(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 5\n */\n setType(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 5\n */\n setTypeEnum(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 5\n */\n setXferAsset(a: Asset | uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 5\n */\n setAssetAmount(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 5\n */\n setAssetSender(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setAssetReceiver(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 5\n */\n setAssetCloseTo(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n setApplicationId(a: Application | uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n setOnCompletion(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n setApplicationArgs(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n setAccounts(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n setApprovalProgram(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n setClearStateProgram(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n setRekeyTo(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n setConfigAsset(a: Asset | uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n setConfigAssetTotal(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n setConfigAssetDecimals(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n setConfigAssetDefaultFrozen(a: boolean): void {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n setConfigAssetUnitName(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n setConfigAssetName(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n setConfigAssetUrl(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n setConfigAssetMetadataHash(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n setConfigAssetManager(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n setConfigAssetReserve(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n setConfigAssetFreeze(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n setConfigAssetClawback(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n setFreezeAsset(a: Asset | uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n setFreezeAssetAccount(a: Account): void {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n setFreezeAssetFrozen(a: boolean): void {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n setAssets(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n setApplications(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n setGlobalNumUint(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n setGlobalNumByteSlice(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n setLocalNumUint(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n setLocalNumByteSlice(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n setExtraProgramPages(a: uint64): void {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n setNonparticipation(a: boolean): void {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n setStateProofPk(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n setApprovalProgramPages(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n setClearStateProgramPages(a: bytes): void {\n throw new NoImplementation()\n },\n\n /**\n * begin preparation of a new inner transaction in the same transaction group\n * `itxn_next` initializes the transaction exactly as `itxn_begin` does\n * @see Native TEAL opcode: [`itxn_next`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#itxn_next)\n * Min AVM version: 6\n */\n next(): void {\n throw new NoImplementation()\n },\n\n /**\n * execute the current inner transaction group. Fail if executing this group would exceed the inner transaction limit, or if any transaction in the group fails.\n * `itxn_submit` resets the current transaction so that it can not be resubmitted. A new `itxn_begin` is required to prepare another inner transaction.\n * @see Native TEAL opcode: [`itxn_submit`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#itxn_submit)\n * Min AVM version: 5\n */\n submit(): void {\n throw new NoImplementation()\n },\n}\n\nexport const JsonRef = {\n jsonString(a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n\n jsonUint64(a: bytes, b: bytes): uint64 {\n throw new NoImplementation()\n },\n\n jsonObject(a: bytes, b: bytes): bytes {\n throw new NoImplementation()\n },\n}\n\n/**\n * Keccak256 hash of value A, yields [32]byte\n * @see Native TEAL opcode: [`keccak256`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#keccak256)\n * Min AVM version: 1\n */\nexport function keccak256(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * yields length of byte value A\n * @see Native TEAL opcode: [`len`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#len)\n * Min AVM version: 1\n */\nexport function len(a: bytes): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Load or store scratch values\n */\nexport const Scratch = {\n /**\n * Ath scratch space value. All scratch spaces are 0 at program start.\n * @see Native TEAL opcode: [`loads`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#loads)\n * Min AVM version: 5\n */\n loadBytes(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Ath scratch space value. All scratch spaces are 0 at program start.\n * @see Native TEAL opcode: [`loads`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#loads)\n * Min AVM version: 5\n */\n loadUint64(a: uint64): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * store B to the Ath scratch space\n * @see Native TEAL opcode: [`stores`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#stores)\n * Min AVM version: 5\n */\n store(a: uint64, b: uint64 | bytes): void {\n throw new NoImplementation()\n },\n}\n\n/**\n * MiMC hash of scalars A, using curve and parameters specified by configuration C\n * A is a list of concatenated 32 byte big-endian unsigned integer scalars. Fail if A's length is not a multiple of 32 or any element exceeds the curve modulus.\n * The MiMC hash function has known collisions since any input which is a multiple of the elliptic curve modulus will hash to the same value. MiMC is thus not a general purpose hash function, but meant to be used in zero knowledge applications to match a zk-circuit implementation.\n * @see Native TEAL opcode: [`mimc`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#mimc)\n * Min AVM version: 11\n */\nexport function mimc(c: MimcConfigurations, a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * minimum required balance for account A, in microalgos. Required balance is affected by ASA, App, and Box usage. When creating or opting into an app, the minimum balance grows before the app code runs, therefore the increase is visible there. When deleting or closing out, the minimum balance decreases after the app executes. Changes caused by inner transactions or box usage are observable immediately following the opcode effecting the change.\n * @param Txn.Accounts offset (or, since v4, an _available_ account address), _available_ application id (or, since v4, a Txn.ForeignApps offset).\n * * @return value.\n * @see Native TEAL opcode: [`min_balance`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#min_balance)\n * Min AVM version: 3\n */\nexport function minBalance(a: Account | uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A times B as a 128-bit result in two uint64s. X is the high 64 bits, Y is the low\n * @see Native TEAL opcode: [`mulw`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#mulw)\n * Min AVM version: 1\n */\nexport function mulw(a: uint64, b: uint64): readonly [uint64, uint64] {\n throw new NoImplementation()\n}\n\n/**\n * the total online stake in the agreement round\n * @see Native TEAL opcode: [`online_stake`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#online_stake)\n * Min AVM version: 11\n */\nexport function onlineStake(): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Copy of A with the bytes starting at B replaced by the bytes of C. Fails if B+len(C) exceeds len(A)\n * `replace3` can be called using `replace` with no immediates.\n * @see Native TEAL opcode: [`replace3`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#replace3)\n * Min AVM version: 7\n */\nexport function replace(a: bytes, b: uint64, c: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Copy of A with the Bth byte set to small integer (between 0..255) C. If B is greater than or equal to the array length, the program fails\n * @see Native TEAL opcode: [`setbyte`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#setbyte)\n * Min AVM version: 3\n */\nexport function setByte(a: bytes, b: uint64, c: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * SHA256 hash of value A, yields [32]byte\n * @see Native TEAL opcode: [`sha256`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sha256)\n * Min AVM version: 1\n */\nexport function sha256(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * SHA3_256 hash of value A, yields [32]byte\n * @see Native TEAL opcode: [`sha3_256`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sha3_256)\n * Min AVM version: 7\n */\nexport function sha3_256(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * SHA512_256 hash of value A, yields [32]byte\n * @see Native TEAL opcode: [`sha512_256`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sha512_256)\n * Min AVM version: 1\n */\nexport function sha512_256(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * A times 2^B, modulo 2^64\n * @see Native TEAL opcode: [`shl`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#shl)\n * Min AVM version: 4\n */\nexport function shl(a: uint64, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A divided by 2^B\n * @see Native TEAL opcode: [`shr`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#shr)\n * Min AVM version: 4\n */\nexport function shr(a: uint64, b: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * The largest integer I such that I^2 <= A\n * @see Native TEAL opcode: [`sqrt`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sqrt)\n * Min AVM version: 4\n */\nexport function sqrt(a: uint64): uint64 {\n throw new NoImplementation()\n}\n\n/**\n * A range of bytes from A starting at B up to but not including C. If C < B, or either is larger than the array length, the program fails\n * @see Native TEAL opcode: [`substring3`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#substring3)\n * Min AVM version: 2\n */\nexport function substring(a: bytes, b: uint64, c: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * sumhash512 of value A, yields [64]byte\n * @see Native TEAL opcode: [`sumhash512`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#sumhash512)\n * Min AVM version: 12\n */\nexport function sumhash512(a: bytes): bytes {\n throw new NoImplementation()\n}\n\n/**\n * Get values for the current executing transaction\n */\nexport const Txn = {\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get sender(): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 1\n */\n get fee(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 1\n */\n get firstValid(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * UNIX timestamp of block before txn.FirstValid. Fails if negative\n * Min AVM version: 7\n */\n get firstValidTime(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * round number\n * Min AVM version: 1\n */\n get lastValid(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Any data up to 1024 bytes\n * Min AVM version: 1\n */\n get note(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte lease value\n * Min AVM version: 1\n */\n get lease(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get receiver(): Account {\n throw new NoImplementation()\n },\n\n /**\n * microalgos\n * Min AVM version: 1\n */\n get amount(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get closeRemainderTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get votePk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get selectionPk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The first round that the participation key is valid.\n * Min AVM version: 1\n */\n get voteFirst(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The last round that the participation key is valid.\n * Min AVM version: 1\n */\n get voteLast(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Dilution for the 2-level participation key\n * Min AVM version: 1\n */\n get voteKeyDilution(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as bytes\n * Min AVM version: 1\n */\n get type(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Transaction type as integer\n * Min AVM version: 1\n */\n get typeEnum(): TransactionType {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID\n * Min AVM version: 1\n */\n get xferAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * value in Asset's units\n * Min AVM version: 1\n */\n get assetAmount(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address. Source of assets if Sender is the Asset's Clawback address.\n * Min AVM version: 1\n */\n get assetSender(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get assetReceiver(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 1\n */\n get assetCloseTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Position of this transaction within an atomic transaction group. A stand-alone transaction is implicitly element 0 in a group of 1\n * Min AVM version: 1\n */\n get groupIndex(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * The computed ID for this transaction. 32 bytes.\n * Min AVM version: 1\n */\n get txId(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID from ApplicationCall transaction\n * Min AVM version: 2\n */\n get applicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationCall transaction on completion action\n * Min AVM version: 2\n */\n get onCompletion(): OnCompleteAction {\n throw new NoImplementation()\n },\n\n /**\n * Arguments passed to the application in the ApplicationCall transaction\n * Min AVM version: 2\n */\n applicationArgs(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ApplicationArgs\n * Min AVM version: 2\n */\n get numAppArgs(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Accounts listed in the ApplicationCall transaction\n * Min AVM version: 2\n */\n accounts(a: uint64): Account {\n throw new NoImplementation()\n },\n\n /**\n * Number of Accounts\n * Min AVM version: 2\n */\n get numAccounts(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Approval program\n * Min AVM version: 2\n */\n get approvalProgram(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Clear state program\n * Min AVM version: 2\n */\n get clearStateProgram(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte Sender's new AuthAddr\n * Min AVM version: 2\n */\n get rekeyTo(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID in asset config transaction\n * Min AVM version: 2\n */\n get configAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Total number of units of this asset created\n * Min AVM version: 2\n */\n get configAssetTotal(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of digits to display after the decimal place when displaying the asset\n * Min AVM version: 2\n */\n get configAssetDecimals(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Whether the asset's slots are frozen by default or not, 0 or 1\n * Min AVM version: 2\n */\n get configAssetDefaultFrozen(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Unit name of the asset\n * Min AVM version: 2\n */\n get configAssetUnitName(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * The asset name\n * Min AVM version: 2\n */\n get configAssetName(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * URL\n * Min AVM version: 2\n */\n get configAssetUrl(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte commitment to unspecified asset metadata\n * Min AVM version: 2\n */\n get configAssetMetadataHash(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetManager(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetReserve(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetFreeze(): Account {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address\n * Min AVM version: 2\n */\n get configAssetClawback(): Account {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID being frozen or un-frozen\n * Min AVM version: 2\n */\n get freezeAsset(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * 32 byte address of the account whose asset slot is being frozen or un-frozen\n * Min AVM version: 2\n */\n get freezeAssetAccount(): Account {\n throw new NoImplementation()\n },\n\n /**\n * The new frozen value, 0 or 1\n * Min AVM version: 2\n */\n get freezeAssetFrozen(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Assets listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n assets(a: uint64): Asset {\n throw new NoImplementation()\n },\n\n /**\n * Number of Assets\n * Min AVM version: 3\n */\n get numAssets(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Foreign Apps listed in the ApplicationCall transaction\n * Min AVM version: 3\n */\n applications(a: uint64): Application {\n throw new NoImplementation()\n },\n\n /**\n * Number of Applications\n * Min AVM version: 3\n */\n get numApplications(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state integers in ApplicationCall\n * Min AVM version: 3\n */\n get globalNumUint(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of global state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n get globalNumByteSlice(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state integers in ApplicationCall\n * Min AVM version: 3\n */\n get localNumUint(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of local state byteslices in ApplicationCall\n * Min AVM version: 3\n */\n get localNumByteSlice(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Number of additional pages for each of the application's approval and clear state programs. An ExtraProgramPages of 1 means 2048 more total bytes, or 1024 for each program.\n * Min AVM version: 4\n */\n get extraProgramPages(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Marks an account nonparticipating for rewards\n * Min AVM version: 5\n */\n get nonparticipation(): boolean {\n throw new NoImplementation()\n },\n\n /**\n * Log messages emitted by an application call (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n logs(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Logs (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get numLogs(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * Asset ID allocated by the creation of an ASA (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get createdAssetId(): Asset {\n throw new NoImplementation()\n },\n\n /**\n * ApplicationID allocated by the creation of an application (only with `itxn` in v5). Application mode only\n * Min AVM version: 5\n */\n get createdApplicationId(): Application {\n throw new NoImplementation()\n },\n\n /**\n * The last message emitted. Empty bytes if none were emitted. Application mode only\n * Min AVM version: 6\n */\n get lastLog(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * 64 byte state proof public key\n * Min AVM version: 6\n */\n get stateProofPk(): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Approval Program as an array of pages\n * Min AVM version: 7\n */\n approvalProgramPages(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of Approval Program pages\n * Min AVM version: 7\n */\n get numApprovalProgramPages(): uint64 {\n throw new NoImplementation()\n },\n\n /**\n * ClearState Program as an array of pages\n * Min AVM version: 7\n */\n clearStateProgramPages(a: uint64): bytes {\n throw new NoImplementation()\n },\n\n /**\n * Number of ClearState Program pages\n * Min AVM version: 7\n */\n get numClearStateProgramPages(): uint64 {\n throw new NoImplementation()\n },\n}\n\nexport const VoterParams = {\n /**\n * Online stake in microalgos\n * Min AVM version: 11\n */\n voterBalance(a: Account | uint64): readonly [uint64, boolean] {\n throw new NoImplementation()\n },\n\n /**\n * Had this account opted into block payouts\n * Min AVM version: 11\n */\n voterIncentiveEligible(a: Account | uint64): readonly [boolean, boolean] {\n throw new NoImplementation()\n },\n}\n\n/**\n * Verify the proof B of message A against pubkey C. Returns vrf output and verification flag.\n * `VrfAlgorand` is the VRF used in Algorand. It is ECVRF-ED25519-SHA512-Elligator2, specified in the IETF internet draft [draft-irtf-cfrg-vrf-03](https://datatracker.ietf.org/doc/draft-irtf-cfrg-vrf/03/).\n * @see Native TEAL opcode: [`vrf_verify`](https://developer.algorand.org/docs/get-details/dapps/avm/teal/opcodes/v10/#vrf_verify)\n * Min AVM version: 7\n */\nexport function vrfVerify(s: VrfVerify, a: bytes, b: bytes, c: bytes): readonly [bytes, boolean] {\n throw new NoImplementation()\n}\n\n/**\n * A range of bytes from A starting at B up to the end of the sequence\n */\nexport function extract(a: bytes, b: uint64): bytes\n\n/**\n * A range of bytes from A starting at B up to but not including B+C. If B+C is larger than the array length, the program fails\n */\nexport function extract(a: bytes, b: uint64, c: uint64): bytes\nexport function extract(a: bytes, b: uint64, c?: uint64): bytes {\n throw new NoImplementation()\n}\n\n/**\n * selects one of two values based on top-of-stack: B if C != 0, else A\n */\nexport function select(a: bytes, b: bytes, c: uint64): bytes\n\n/**\n * selects one of two values based on top-of-stack: B if C != 0, else A\n */\nexport function select(a: uint64, b: uint64, c: uint64): uint64\nexport function select(a: uint64 | bytes, b: uint64 | bytes, c: uint64): bytes | uint64 {\n throw new NoImplementation()\n}\n\n/**\n * Set the nth bit of target to the value of c (1 or 0)\n */\nexport function setBit(target: bytes, n: uint64, c: uint64): bytes\n\n/**\n * Set the nth bit of target to the value of c (1 or 0)\n */\nexport function setBit(target: uint64, n: uint64, c: uint64): uint64\nexport function setBit(target: uint64 | bytes, n: uint64, c: uint64): bytes | uint64 {\n throw new NoImplementation()\n}\n"],"names":[],"mappings":"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"}
package/op.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  import { bytes, uint64, biguint } from './primitives';
2
2
  import { Account, Application, Asset } from './reference';
3
+ import { OnCompleteAction } from './on-complete-action';
4
+ import { TransactionType } from './transactions';
3
5
  export declare enum Base64 {
4
6
  URLEncoding = "URLEncoding",
5
7
  StdEncoding = "StdEncoding"
@@ -737,7 +739,7 @@ export declare const GITxn: {
737
739
  * Transaction type as integer
738
740
  * Min AVM version: 6
739
741
  */
740
- typeEnum(t: uint64): uint64;
742
+ typeEnum(t: uint64): TransactionType;
741
743
  /**
742
744
  * Asset ID
743
745
  * Min AVM version: 6
@@ -782,7 +784,7 @@ export declare const GITxn: {
782
784
  * ApplicationCall transaction on completion action
783
785
  * Min AVM version: 2
784
786
  */
785
- onCompletion(t: uint64): uint64;
787
+ onCompletion(t: uint64): OnCompleteAction;
786
788
  /**
787
789
  * Arguments passed to the application in the ApplicationCall transaction
788
790
  * Min AVM version: 2
@@ -1211,7 +1213,7 @@ export declare const GTxn: {
1211
1213
  * Transaction type as integer
1212
1214
  * Min AVM version: 3
1213
1215
  */
1214
- typeEnum(a: uint64): uint64;
1216
+ typeEnum(a: uint64): TransactionType;
1215
1217
  /**
1216
1218
  * Asset ID
1217
1219
  * Min AVM version: 3
@@ -1256,7 +1258,7 @@ export declare const GTxn: {
1256
1258
  * ApplicationCall transaction on completion action
1257
1259
  * Min AVM version: 2
1258
1260
  */
1259
- onCompletion(a: uint64): uint64;
1261
+ onCompletion(a: uint64): OnCompleteAction;
1260
1262
  /**
1261
1263
  * Arguments passed to the application in the ApplicationCall transaction
1262
1264
  * Min AVM version: 2
@@ -1562,7 +1564,7 @@ export declare const ITxn: {
1562
1564
  * Transaction type as integer
1563
1565
  * Min AVM version: 5
1564
1566
  */
1565
- readonly typeEnum: uint64;
1567
+ readonly typeEnum: TransactionType;
1566
1568
  /**
1567
1569
  * Asset ID
1568
1570
  * Min AVM version: 5
@@ -1607,7 +1609,7 @@ export declare const ITxn: {
1607
1609
  * ApplicationCall transaction on completion action
1608
1610
  * Min AVM version: 2
1609
1611
  */
1610
- readonly onCompletion: uint64;
1612
+ readonly onCompletion: OnCompleteAction;
1611
1613
  /**
1612
1614
  * Arguments passed to the application in the ApplicationCall transaction
1613
1615
  * Min AVM version: 2
@@ -2317,7 +2319,7 @@ export declare const Txn: {
2317
2319
  * Transaction type as integer
2318
2320
  * Min AVM version: 1
2319
2321
  */
2320
- readonly typeEnum: uint64;
2322
+ readonly typeEnum: TransactionType;
2321
2323
  /**
2322
2324
  * Asset ID
2323
2325
  * Min AVM version: 1
@@ -2362,7 +2364,7 @@ export declare const Txn: {
2362
2364
  * ApplicationCall transaction on completion action
2363
2365
  * Min AVM version: 2
2364
2366
  */
2365
- readonly onCompletion: uint64;
2367
+ readonly onCompletion: OnCompleteAction;
2366
2368
  /**
2367
2369
  * Arguments passed to the application in the ApplicationCall transaction
2368
2370
  * Min AVM version: 2
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "**"
5
5
  ],
6
6
  "name": "@algorandfoundation/algorand-typescript",
7
- "version": "1.0.0-beta.26",
7
+ "version": "1.0.0-beta.27",
8
8
  "description": "This package contains definitions for the types which comprise Algorand TypeScript which can be compiled to run on the Algorand Virtual Machine using the Puya compiler.",
9
9
  "private": false,
10
10
  "overrides": {
package/transactions.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { OnCompleteActionStr } from './on-complete-action';
1
+ import { OnCompleteAction } from './on-complete-action';
2
2
  import { bytes, uint64 } from './primitives';
3
3
  import { Account, Application, Asset } from './reference';
4
4
  /**
@@ -242,7 +242,7 @@ export interface ApplicationTxn extends TransactionBase {
242
242
  /**
243
243
  * ApplicationCall transaction on completion action
244
244
  */
245
- readonly onCompletion: OnCompleteActionStr;
245
+ readonly onCompletion: OnCompleteAction;
246
246
  /**
247
247
  * Number of ApplicationArgs
248
248
  */