@algorandfoundation/algorand-typescript-testing 1.0.0-beta.23 → 1.0.0-beta.24

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.
@@ -1,7 +1,7 @@
1
1
  export * from '@algorandfoundation/algorand-typescript';
2
2
  export { BaseContract, contract } from '../impl/base-contract';
3
3
  export { compileImpl as compile } from '../impl/compiled';
4
- export { abimethod, Contract } from '../impl/contract';
4
+ export { abimethod, baremethod, Contract } from '../impl/contract';
5
5
  export { ensureBudgetImpl as ensureBudget } from '../impl/ensure-budget';
6
6
  export { Global } from '../impl/global';
7
7
  export { log } from '../impl/log';
@@ -2,7 +2,7 @@ import { OpUpFeeSource } from '@algorandfoundation/algorand-typescript';
2
2
  export * from '@algorandfoundation/algorand-typescript';
3
3
  import { l as lazyContext, a as BytesCls, x as asBytes, a5 as BytesBackedCls, a6 as Uint64BackedCls, a7 as assert, a8 as asMaybeBigUintCls, a2 as AvmError, D as asNumber, C as CodeError, a1 as DEFAULT_TEMPLATE_VAR_PREFIX, w as asBigInt, o as asUint64 } from '../crypto-B3eDMAtp.js';
4
4
  export { N as Account, p as Application, n as Asset, d as BaseContract, K as BigUint, h as Bytes, G as Uint64, a9 as contract, aa as err } from '../crypto-B3eDMAtp.js';
5
- export { C as Contract, a as abimethod } from '../contract-CfMCD1BK.js';
5
+ export { C as Contract, a as abimethod, b as baremethod } from '../contract-CfMCD1BK.js';
6
6
  export { a as Global } from '../asset-params-C3dXxyBx.js';
7
7
  export { l as log } from '../runtime-helpers-LrUolgJg.js';
8
8
  import { ARC4Encoded } from '@algorandfoundation/algorand-typescript/arc4';
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":["../../src/impl/compiled.ts","../../src/impl/ensure-budget.ts","../../src/impl/match.ts","../../src/impl/mutable-array.ts","../../src/impl/template-var.ts","../../src/impl/urange.ts","../../src/internal/index.ts"],"sourcesContent":["import type {\n Account,\n BaseContract,\n CompileContractOptions,\n CompiledContract,\n CompiledLogicSig,\n CompileLogicSigOptions,\n LogicSig,\n} from '@algorandfoundation/algorand-typescript'\nimport { lazyContext } from '../context-helpers/internal-context'\nimport type { ConstructorFor } from '../typescript-helpers'\nimport type { ApplicationData } from './reference'\n\nexport function compileImpl(\n artefact: ConstructorFor<BaseContract> | ConstructorFor<LogicSig>,\n options?: CompileContractOptions | CompileLogicSigOptions,\n): CompiledLogicSig | CompiledContract {\n let app: ApplicationData | undefined\n let account: Account | undefined\n const compiledApp = lazyContext.value.getCompiledApp(artefact as ConstructorFor<BaseContract>)\n const compiledLogicSig = lazyContext.value.getCompiledLogicSig(artefact as ConstructorFor<LogicSig>)\n if (compiledApp !== undefined) {\n app = lazyContext.ledger.applicationDataMap.get(compiledApp[1])\n }\n if (compiledLogicSig !== undefined) {\n account = compiledLogicSig[1]\n }\n if (options?.templateVars) {\n Object.entries(options.templateVars).forEach(([key, value]) => {\n lazyContext.value.setTemplateVar(key, value, options.templateVarsPrefix)\n })\n }\n return new Proxy({} as CompiledLogicSig | CompiledContract, {\n get: (_target, prop) => {\n switch (prop) {\n case 'approvalProgram':\n return app?.application.approvalProgram ?? [lazyContext.any.bytes(10), lazyContext.any.bytes(10)]\n case 'clearStateProgram':\n return app?.application.clearStateProgram ?? [lazyContext.any.bytes(10), lazyContext.any.bytes(10)]\n case 'extraProgramPages':\n return (options as CompileContractOptions)?.extraProgramPages ?? app?.application.extraProgramPages ?? lazyContext.any.uint64()\n case 'globalUints':\n return (options as CompileContractOptions)?.globalUints ?? app?.application.globalNumUint ?? lazyContext.any.uint64()\n case 'globalBytes':\n return (options as CompileContractOptions)?.globalBytes ?? app?.application.globalNumBytes ?? lazyContext.any.uint64()\n case 'localUints':\n return (options as CompileContractOptions)?.localUints ?? app?.application.localNumUint ?? lazyContext.any.uint64()\n case 'localBytes':\n return (options as CompileContractOptions)?.localBytes ?? app?.application.localNumBytes ?? lazyContext.any.uint64()\n case 'account':\n return account ?? lazyContext.any.account()\n }\n },\n })\n}\n","import type { uint64 } from '@algorandfoundation/algorand-typescript'\nimport { OpUpFeeSource } from '@algorandfoundation/algorand-typescript'\n\nexport function ensureBudgetImpl(_budget: uint64, _feeSource: OpUpFeeSource = OpUpFeeSource.GroupCredit) {\n // ensureBudget function is emulated to be a no-op\n}\n","import type { assertMatch, match } from '@algorandfoundation/algorand-typescript'\nimport { ARC4Encoded } from '@algorandfoundation/algorand-typescript/arc4'\nimport type { DeliberateAny } from '../typescript-helpers'\nimport { asBytes, asMaybeBigUintCls, assert } from '../util'\nimport { BytesBackedCls, Uint64BackedCls } from './base'\nimport type { StubBytesCompat, Uint64Cls } from './primitives'\nimport { BytesCls } from './primitives'\n\nexport const matchImpl: typeof match = (subject, test): boolean => {\n const bigIntSubjectValue = getBigIntValue(subject)\n if (bigIntSubjectValue !== undefined) {\n const bigIntTestValue = getBigIntValue(test)\n if (bigIntTestValue !== undefined) {\n return bigIntSubjectValue === bigIntTestValue\n } else if (Object.hasOwn(test, 'lessThan')) {\n return bigIntSubjectValue < getBigIntValue((test as DeliberateAny).lessThan)!\n } else if (Object.hasOwn(test, 'greaterThan')) {\n return bigIntSubjectValue > getBigIntValue((test as DeliberateAny).greaterThan)!\n } else if (Object.hasOwn(test, 'lessThanEq')) {\n return bigIntSubjectValue <= getBigIntValue((test as DeliberateAny).lessThanEq)!\n } else if (Object.hasOwn(test, 'greaterThanEq')) {\n return bigIntSubjectValue >= getBigIntValue((test as DeliberateAny).greaterThanEq)!\n } else if (Object.hasOwn(test, 'between')) {\n const [start, end] = (test as DeliberateAny).between\n return bigIntSubjectValue >= getBigIntValue(start)! && bigIntSubjectValue <= getBigIntValue(end)!\n }\n } else if (subject instanceof BytesCls) {\n return subject.equals(asBytes(test as unknown as StubBytesCompat))\n } else if (typeof subject === 'string') {\n return subject === test\n } else if (subject instanceof BytesBackedCls) {\n return subject.bytes.equals((test as unknown as BytesBackedCls).bytes)\n } else if (subject instanceof Uint64BackedCls) {\n return (\n getBigIntValue(subject.uint64 as unknown as Uint64Cls) ===\n getBigIntValue((test as unknown as Uint64BackedCls).uint64 as unknown as Uint64Cls)\n )\n } else if (test instanceof ARC4Encoded) {\n return (subject as unknown as ARC4Encoded).bytes.equals(test.bytes)\n } else if (Array.isArray(test)) {\n return test.map((x, i) => matchImpl((subject as DeliberateAny)[i], x as DeliberateAny)).every((x) => x)\n } else if (typeof test === 'object') {\n return Object.entries(test!)\n .map(([k, v]) => matchImpl((subject as DeliberateAny)[k], v as DeliberateAny))\n .every((x) => x)\n }\n return false\n}\n\nexport const assertMatchImpl: typeof assertMatch = (subject, test, message): boolean => {\n const isMatching = matchImpl(subject, test)\n assert(isMatching, message)\n return isMatching\n}\n\nconst getBigIntValue = (x: unknown) => {\n return asMaybeBigUintCls(x)?.asBigInt()\n}\n","import type { uint64, Uint64Compat } from '@algorandfoundation/algorand-typescript'\nimport { AvmError } from '../errors'\nimport { asNumber } from '../util'\n\nexport class MutableArray<TItem> {\n private _values: TItem[]\n\n constructor(...items: TItem[]) {\n this._values = items\n\n return new Proxy(this, {\n get(target, prop: PropertyKey) {\n const idx = prop ? parseInt(prop.toString(), 10) : NaN\n if (!isNaN(idx)) {\n if (idx >= 0 && idx < target._values.length) return target._values[idx]\n throw new AvmError('Index out of bounds')\n }\n return Reflect.get(target, prop)\n },\n set(target, prop: PropertyKey, value: TItem) {\n const idx = prop ? parseInt(prop.toString(), 10) : NaN\n if (!isNaN(idx)) {\n if (idx >= 0 && idx < target._values.length) {\n target._values[idx] = value\n return true\n }\n throw new AvmError('Index out of bounds')\n }\n\n return Reflect.set(target, prop, value)\n },\n })\n }\n\n /**\n * Returns the current length of this array\n */\n get length(): uint64 {\n return this._values.length\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 return this._values[asNumber(index)]\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 const startIndex = end === undefined ? 0 : asNumber(start ?? 0)\n const endIndex = end === undefined ? asNumber(start ?? this._values.length) : asNumber(end)\n return new MutableArray<TItem>(...this._values.slice(startIndex, endIndex))\n }\n\n /**\n * Returns an iterator for the items in this array\n */\n [Symbol.iterator](): IterableIterator<TItem> {\n return this._values[Symbol.iterator]()\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 return this._values.entries()\n }\n\n /**\n * Returns an iterator for the indexes in this array\n */\n keys(): IterableIterator<uint64> {\n return this._values.keys()\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 this._values.push(...items)\n }\n\n /**\n * Pop a single item from this array\n */\n pop(): TItem {\n return this._values.pop()!\n }\n\n copy(): MutableArray<TItem> {\n return new MutableArray(...this._values)\n }\n}\n","import { DEFAULT_TEMPLATE_VAR_PREFIX } from '../constants'\nimport { lazyContext } from '../context-helpers/internal-context'\nimport { CodeError } from '../errors'\n\nexport function TemplateVarImpl<T>(variableName: string, prefix = DEFAULT_TEMPLATE_VAR_PREFIX): T {\n const key = prefix + variableName\n if (!Object.hasOwn(lazyContext.value.templateVars, key)) {\n throw new CodeError(`Template variable ${key} not found in test context!`)\n }\n return lazyContext.value.templateVars[prefix + variableName] as T\n}\n","import { asBigInt, asUint64 } from '../util'\nimport type { StubUint64Compat } from './primitives'\n\nexport function* urangeImpl(a: StubUint64Compat, b?: StubUint64Compat, c?: StubUint64Compat) {\n const start = b ? asBigInt(a) : BigInt(0)\n const end = b ? asBigInt(b) : asBigInt(a)\n const step = c ? asBigInt(c) : BigInt(1)\n let iterationCount = 0\n for (let i = start; i < end; i += step) {\n iterationCount++\n yield asUint64(i)\n }\n return iterationCount\n}\n","export * from '@algorandfoundation/algorand-typescript'\nexport { BaseContract, contract } from '../impl/base-contract'\nexport { compileImpl as compile } from '../impl/compiled'\nexport { abimethod, Contract } from '../impl/contract'\nexport { ensureBudgetImpl as ensureBudget } from '../impl/ensure-budget'\nexport { Global } from '../impl/global'\nexport { log } from '../impl/log'\nexport { assertMatchImpl as assertMatch, matchImpl as match } from '../impl/match'\nexport { MutableArray } from '../impl/mutable-array'\nexport { BigUint, Bytes, Uint64 } from '../impl/primitives'\nexport { Account, Application, Asset } from '../impl/reference'\nexport { Box, BoxMap, BoxRef, GlobalState, LocalState } from '../impl/state'\nexport { TemplateVarImpl as TemplateVar } from '../impl/template-var'\nexport { Txn } from '../impl/txn'\nexport { urangeImpl as urange } from '../impl/urange'\nexport { assert, err } from '../util'\nexport * as arc4 from './arc4'\nexport * as op from './op'\nimport { ApplicationTxn, AssetConfigTxn, AssetFreezeTxn, AssetTransferTxn, KeyRegistrationTxn, PaymentTxn, Transaction } from '../impl/gtxn'\nexport const gtxn = {\n Transaction,\n PaymentTxn,\n KeyRegistrationTxn,\n AssetConfigTxn,\n AssetTransferTxn,\n AssetFreezeTxn,\n ApplicationTxn,\n}\n\nimport { applicationCall, assetConfig, assetFreeze, assetTransfer, keyRegistration, payment, submitGroup } from '../impl/inner-transactions'\nexport const itxn = {\n submitGroup,\n payment,\n keyRegistration,\n assetConfig,\n assetTransfer,\n assetFreeze,\n applicationCall,\n}\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.mjs","sources":["../../src/impl/compiled.ts","../../src/impl/ensure-budget.ts","../../src/impl/match.ts","../../src/impl/mutable-array.ts","../../src/impl/template-var.ts","../../src/impl/urange.ts","../../src/internal/index.ts"],"sourcesContent":["import type {\n Account,\n BaseContract,\n CompileContractOptions,\n CompiledContract,\n CompiledLogicSig,\n CompileLogicSigOptions,\n LogicSig,\n} from '@algorandfoundation/algorand-typescript'\nimport { lazyContext } from '../context-helpers/internal-context'\nimport type { ConstructorFor } from '../typescript-helpers'\nimport type { ApplicationData } from './reference'\n\nexport function compileImpl(\n artefact: ConstructorFor<BaseContract> | ConstructorFor<LogicSig>,\n options?: CompileContractOptions | CompileLogicSigOptions,\n): CompiledLogicSig | CompiledContract {\n let app: ApplicationData | undefined\n let account: Account | undefined\n const compiledApp = lazyContext.value.getCompiledApp(artefact as ConstructorFor<BaseContract>)\n const compiledLogicSig = lazyContext.value.getCompiledLogicSig(artefact as ConstructorFor<LogicSig>)\n if (compiledApp !== undefined) {\n app = lazyContext.ledger.applicationDataMap.get(compiledApp[1])\n }\n if (compiledLogicSig !== undefined) {\n account = compiledLogicSig[1]\n }\n if (options?.templateVars) {\n Object.entries(options.templateVars).forEach(([key, value]) => {\n lazyContext.value.setTemplateVar(key, value, options.templateVarsPrefix)\n })\n }\n return new Proxy({} as CompiledLogicSig | CompiledContract, {\n get: (_target, prop) => {\n switch (prop) {\n case 'approvalProgram':\n return app?.application.approvalProgram ?? [lazyContext.any.bytes(10), lazyContext.any.bytes(10)]\n case 'clearStateProgram':\n return app?.application.clearStateProgram ?? [lazyContext.any.bytes(10), lazyContext.any.bytes(10)]\n case 'extraProgramPages':\n return (options as CompileContractOptions)?.extraProgramPages ?? app?.application.extraProgramPages ?? lazyContext.any.uint64()\n case 'globalUints':\n return (options as CompileContractOptions)?.globalUints ?? app?.application.globalNumUint ?? lazyContext.any.uint64()\n case 'globalBytes':\n return (options as CompileContractOptions)?.globalBytes ?? app?.application.globalNumBytes ?? lazyContext.any.uint64()\n case 'localUints':\n return (options as CompileContractOptions)?.localUints ?? app?.application.localNumUint ?? lazyContext.any.uint64()\n case 'localBytes':\n return (options as CompileContractOptions)?.localBytes ?? app?.application.localNumBytes ?? lazyContext.any.uint64()\n case 'account':\n return account ?? lazyContext.any.account()\n }\n },\n })\n}\n","import type { uint64 } from '@algorandfoundation/algorand-typescript'\nimport { OpUpFeeSource } from '@algorandfoundation/algorand-typescript'\n\nexport function ensureBudgetImpl(_budget: uint64, _feeSource: OpUpFeeSource = OpUpFeeSource.GroupCredit) {\n // ensureBudget function is emulated to be a no-op\n}\n","import type { assertMatch, match } from '@algorandfoundation/algorand-typescript'\nimport { ARC4Encoded } from '@algorandfoundation/algorand-typescript/arc4'\nimport type { DeliberateAny } from '../typescript-helpers'\nimport { asBytes, asMaybeBigUintCls, assert } from '../util'\nimport { BytesBackedCls, Uint64BackedCls } from './base'\nimport type { StubBytesCompat, Uint64Cls } from './primitives'\nimport { BytesCls } from './primitives'\n\nexport const matchImpl: typeof match = (subject, test): boolean => {\n const bigIntSubjectValue = getBigIntValue(subject)\n if (bigIntSubjectValue !== undefined) {\n const bigIntTestValue = getBigIntValue(test)\n if (bigIntTestValue !== undefined) {\n return bigIntSubjectValue === bigIntTestValue\n } else if (Object.hasOwn(test, 'lessThan')) {\n return bigIntSubjectValue < getBigIntValue((test as DeliberateAny).lessThan)!\n } else if (Object.hasOwn(test, 'greaterThan')) {\n return bigIntSubjectValue > getBigIntValue((test as DeliberateAny).greaterThan)!\n } else if (Object.hasOwn(test, 'lessThanEq')) {\n return bigIntSubjectValue <= getBigIntValue((test as DeliberateAny).lessThanEq)!\n } else if (Object.hasOwn(test, 'greaterThanEq')) {\n return bigIntSubjectValue >= getBigIntValue((test as DeliberateAny).greaterThanEq)!\n } else if (Object.hasOwn(test, 'between')) {\n const [start, end] = (test as DeliberateAny).between\n return bigIntSubjectValue >= getBigIntValue(start)! && bigIntSubjectValue <= getBigIntValue(end)!\n }\n } else if (subject instanceof BytesCls) {\n return subject.equals(asBytes(test as unknown as StubBytesCompat))\n } else if (typeof subject === 'string') {\n return subject === test\n } else if (subject instanceof BytesBackedCls) {\n return subject.bytes.equals((test as unknown as BytesBackedCls).bytes)\n } else if (subject instanceof Uint64BackedCls) {\n return (\n getBigIntValue(subject.uint64 as unknown as Uint64Cls) ===\n getBigIntValue((test as unknown as Uint64BackedCls).uint64 as unknown as Uint64Cls)\n )\n } else if (test instanceof ARC4Encoded) {\n return (subject as unknown as ARC4Encoded).bytes.equals(test.bytes)\n } else if (Array.isArray(test)) {\n return test.map((x, i) => matchImpl((subject as DeliberateAny)[i], x as DeliberateAny)).every((x) => x)\n } else if (typeof test === 'object') {\n return Object.entries(test!)\n .map(([k, v]) => matchImpl((subject as DeliberateAny)[k], v as DeliberateAny))\n .every((x) => x)\n }\n return false\n}\n\nexport const assertMatchImpl: typeof assertMatch = (subject, test, message): boolean => {\n const isMatching = matchImpl(subject, test)\n assert(isMatching, message)\n return isMatching\n}\n\nconst getBigIntValue = (x: unknown) => {\n return asMaybeBigUintCls(x)?.asBigInt()\n}\n","import type { uint64, Uint64Compat } from '@algorandfoundation/algorand-typescript'\nimport { AvmError } from '../errors'\nimport { asNumber } from '../util'\n\nexport class MutableArray<TItem> {\n private _values: TItem[]\n\n constructor(...items: TItem[]) {\n this._values = items\n\n return new Proxy(this, {\n get(target, prop: PropertyKey) {\n const idx = prop ? parseInt(prop.toString(), 10) : NaN\n if (!isNaN(idx)) {\n if (idx >= 0 && idx < target._values.length) return target._values[idx]\n throw new AvmError('Index out of bounds')\n }\n return Reflect.get(target, prop)\n },\n set(target, prop: PropertyKey, value: TItem) {\n const idx = prop ? parseInt(prop.toString(), 10) : NaN\n if (!isNaN(idx)) {\n if (idx >= 0 && idx < target._values.length) {\n target._values[idx] = value\n return true\n }\n throw new AvmError('Index out of bounds')\n }\n\n return Reflect.set(target, prop, value)\n },\n })\n }\n\n /**\n * Returns the current length of this array\n */\n get length(): uint64 {\n return this._values.length\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 return this._values[asNumber(index)]\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 const startIndex = end === undefined ? 0 : asNumber(start ?? 0)\n const endIndex = end === undefined ? asNumber(start ?? this._values.length) : asNumber(end)\n return new MutableArray<TItem>(...this._values.slice(startIndex, endIndex))\n }\n\n /**\n * Returns an iterator for the items in this array\n */\n [Symbol.iterator](): IterableIterator<TItem> {\n return this._values[Symbol.iterator]()\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 return this._values.entries()\n }\n\n /**\n * Returns an iterator for the indexes in this array\n */\n keys(): IterableIterator<uint64> {\n return this._values.keys()\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 this._values.push(...items)\n }\n\n /**\n * Pop a single item from this array\n */\n pop(): TItem {\n return this._values.pop()!\n }\n\n copy(): MutableArray<TItem> {\n return new MutableArray(...this._values)\n }\n}\n","import { DEFAULT_TEMPLATE_VAR_PREFIX } from '../constants'\nimport { lazyContext } from '../context-helpers/internal-context'\nimport { CodeError } from '../errors'\n\nexport function TemplateVarImpl<T>(variableName: string, prefix = DEFAULT_TEMPLATE_VAR_PREFIX): T {\n const key = prefix + variableName\n if (!Object.hasOwn(lazyContext.value.templateVars, key)) {\n throw new CodeError(`Template variable ${key} not found in test context!`)\n }\n return lazyContext.value.templateVars[prefix + variableName] as T\n}\n","import { asBigInt, asUint64 } from '../util'\nimport type { StubUint64Compat } from './primitives'\n\nexport function* urangeImpl(a: StubUint64Compat, b?: StubUint64Compat, c?: StubUint64Compat) {\n const start = b ? asBigInt(a) : BigInt(0)\n const end = b ? asBigInt(b) : asBigInt(a)\n const step = c ? asBigInt(c) : BigInt(1)\n let iterationCount = 0\n for (let i = start; i < end; i += step) {\n iterationCount++\n yield asUint64(i)\n }\n return iterationCount\n}\n","export * from '@algorandfoundation/algorand-typescript'\nexport { BaseContract, contract } from '../impl/base-contract'\nexport { compileImpl as compile } from '../impl/compiled'\nexport { abimethod, baremethod, Contract } from '../impl/contract'\nexport { ensureBudgetImpl as ensureBudget } from '../impl/ensure-budget'\nexport { Global } from '../impl/global'\nexport { log } from '../impl/log'\nexport { assertMatchImpl as assertMatch, matchImpl as match } from '../impl/match'\nexport { MutableArray } from '../impl/mutable-array'\nexport { BigUint, Bytes, Uint64 } from '../impl/primitives'\nexport { Account, Application, Asset } from '../impl/reference'\nexport { Box, BoxMap, BoxRef, GlobalState, LocalState } from '../impl/state'\nexport { TemplateVarImpl as TemplateVar } from '../impl/template-var'\nexport { Txn } from '../impl/txn'\nexport { urangeImpl as urange } from '../impl/urange'\nexport { assert, err } from '../util'\nexport * as arc4 from './arc4'\nexport * as op from './op'\nimport { ApplicationTxn, AssetConfigTxn, AssetFreezeTxn, AssetTransferTxn, KeyRegistrationTxn, PaymentTxn, Transaction } from '../impl/gtxn'\nexport const gtxn = {\n Transaction,\n PaymentTxn,\n KeyRegistrationTxn,\n AssetConfigTxn,\n AssetTransferTxn,\n AssetFreezeTxn,\n ApplicationTxn,\n}\n\nimport { applicationCall, assetConfig, assetFreeze, assetTransfer, keyRegistration, payment, submitGroup } from '../impl/inner-transactions'\nexport const itxn = {\n submitGroup,\n payment,\n keyRegistration,\n assetConfig,\n assetTransfer,\n assetFreeze,\n applicationCall,\n}\n"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "**"
5
5
  ],
6
6
  "name": "@algorandfoundation/algorand-typescript-testing",
7
- "version": "1.0.0-beta.23",
7
+ "version": "1.0.0-beta.24",
8
8
  "description": "A library which allows you to execute Algorand TypeScript code locally under a test context either emulating or mocking AVM behaviour.",
9
9
  "private": false,
10
10
  "peerDependencies": {