@algorandfoundation/puya-ts 1.2.0-beta.1 → 1.2.0-beta.3

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.
@@ -84,7 +84,7 @@ const Constants = {
84
84
  zeroAddressB32: 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY5HFKQ',
85
85
  },
86
86
  supportedAvmVersions: [10n, 11n, 12n, 13n],
87
- targetedPuyaVersion: '5.3.2',
87
+ targetedPuyaVersion: '5.7.1',
88
88
  puyaGithubRepo: 'algorandfoundation/puya',
89
89
  minNodeVersion: '20.11.1',
90
90
  languageServerSource: 'puyats',
@@ -1115,7 +1115,7 @@ var wtypes;
1115
1115
  constructor({ elementType, sourceLocation, arraySize, arc4Alias, immutable, }) {
1116
1116
  super({
1117
1117
  elementType,
1118
- name: `arc4.static_array<${elementType.name}>`,
1118
+ name: `arc4.static_array<${elementType.name},${arraySize}>`,
1119
1119
  arc4Alias: arc4Alias ?? null,
1120
1120
  immutable,
1121
1121
  });
@@ -3233,10 +3233,12 @@ class AssertExpression extends Expression {
3233
3233
  this.condition = props.condition;
3234
3234
  this.errorMessage = props.errorMessage;
3235
3235
  this.wtype = props.wtype;
3236
+ this.explicit = props.explicit;
3236
3237
  }
3237
3238
  condition;
3238
3239
  errorMessage;
3239
3240
  wtype;
3241
+ explicit;
3240
3242
  accept(visitor) {
3241
3243
  return visitor.visitAssertExpression(this);
3242
3244
  }
@@ -3335,6 +3337,26 @@ class TemplateVar extends Expression {
3335
3337
  return visitor.visitTemplateVar(this);
3336
3338
  }
3337
3339
  }
3340
+ class MethodSignatureString extends Node {
3341
+ constructor(props) {
3342
+ super(props);
3343
+ this.value = props.value;
3344
+ }
3345
+ value;
3346
+ }
3347
+ class MethodSignature extends Node {
3348
+ constructor(props) {
3349
+ super(props);
3350
+ this.name = props.name;
3351
+ this.argTypes = props.argTypes;
3352
+ this.returnType = props.returnType;
3353
+ this.resourceEncoding = props.resourceEncoding;
3354
+ }
3355
+ name;
3356
+ argTypes;
3357
+ returnType;
3358
+ resourceEncoding;
3359
+ }
3338
3360
  class MethodConstant extends Expression {
3339
3361
  constructor(props) {
3340
3362
  super(props);
@@ -3531,6 +3553,20 @@ class UpdateInnerTransaction extends Expression {
3531
3553
  return visitor.visitUpdateInnerTransaction(this);
3532
3554
  }
3533
3555
  }
3556
+ class StageInnerTransactions extends Expression {
3557
+ constructor(props) {
3558
+ super(props);
3559
+ this.itxns = props.itxns;
3560
+ this.startNewGroup = props.startNewGroup;
3561
+ this.wtype = props.wtype;
3562
+ }
3563
+ itxns;
3564
+ startNewGroup;
3565
+ wtype;
3566
+ accept(visitor) {
3567
+ return visitor.visitStageInnerTransactions(this);
3568
+ }
3569
+ }
3534
3570
  class GroupTransactionReference extends Expression {
3535
3571
  constructor(props) {
3536
3572
  super(props);
@@ -4579,18 +4615,18 @@ class ARC4ABIMethodConfig {
4579
4615
  this.create = props.create;
4580
4616
  this.name = props.name;
4581
4617
  this.resourceEncoding = props.resourceEncoding;
4582
- this.validateEncoding = props.validateEncoding;
4583
4618
  this.readonly = props.readonly;
4584
4619
  this.defaultArgs = props.defaultArgs;
4620
+ this.validateEncoding = props.validateEncoding;
4585
4621
  }
4586
4622
  sourceLocation;
4587
4623
  allowedCompletionTypes;
4588
4624
  create;
4589
4625
  name;
4590
4626
  resourceEncoding;
4591
- validateEncoding;
4592
4627
  readonly;
4593
4628
  defaultArgs;
4629
+ validateEncoding;
4594
4630
  }
4595
4631
  const concreteNodes = {
4596
4632
  expressionStatement: ExpressionStatement,
@@ -4610,6 +4646,8 @@ const concreteNodes = {
4610
4646
  stringConstant: StringConstant,
4611
4647
  voidConstant: VoidConstant,
4612
4648
  templateVar: TemplateVar,
4649
+ methodSignatureString: MethodSignatureString,
4650
+ methodSignature: MethodSignature,
4613
4651
  methodConstant: MethodConstant,
4614
4652
  addressConstant: AddressConstant,
4615
4653
  aRC4Encode: ARC4Encode,
@@ -4625,6 +4663,7 @@ const concreteNodes = {
4625
4663
  intrinsicCall: IntrinsicCall,
4626
4664
  createInnerTransaction: CreateInnerTransaction,
4627
4665
  updateInnerTransaction: UpdateInnerTransaction,
4666
+ stageInnerTransactions: StageInnerTransactions,
4628
4667
  groupTransactionReference: GroupTransactionReference,
4629
4668
  checkedMaybe: CheckedMaybe,
4630
4669
  tupleExpression: TupleExpression,
@@ -4761,6 +4800,13 @@ const constantEvaluation = {
4761
4800
  var WInnerTransactionFields = wtypes.WInnerTransactionFields;
4762
4801
  var WTuple = wtypes.WTuple;
4763
4802
  const explicitNodeFactory = {
4803
+ assertExpression(props) {
4804
+ return new AssertExpression({
4805
+ ...props,
4806
+ wtype: wtypes.voidWType,
4807
+ explicit: true,
4808
+ });
4809
+ },
4764
4810
  voidConstant(props) {
4765
4811
  return new VoidConstant({
4766
4812
  ...props,
@@ -5148,6 +5194,7 @@ class LoggingContext {
5148
5194
  #logEvents = [];
5149
5195
  #sourcesByPath = {};
5150
5196
  #logEventsByPath = {};
5197
+ treatWarningsAsErrors = false;
5151
5198
  get logEvents() {
5152
5199
  return this.#logEvents;
5153
5200
  }
@@ -5167,6 +5214,9 @@ class LoggingContext {
5167
5214
  }
5168
5215
  }
5169
5216
  addLog(log) {
5217
+ if (this.treatWarningsAsErrors && log.level === LogLevel.Warning) {
5218
+ log.level = LogLevel.Error;
5219
+ }
5170
5220
  this.#logEvents.push(log);
5171
5221
  const filePath = log.sourceLocation?.file?.toString();
5172
5222
  if (filePath) {
@@ -8507,26 +8557,19 @@ function arc4ConfigFromType(functionType, sourceLocation) {
8507
8557
  * @param sourceLocation The source location of the code generating the constant,
8508
8558
  */
8509
8559
  function buildArc4MethodConstant(functionType, arc4Config, sourceLocation) {
8510
- const params = functionType.parameters
8511
- .map(([_, ptype]) => getABITypeName(ptype, 'in', arc4Config.resourceEncoding, sourceLocation))
8512
- .join(',');
8513
- const returnType = getABITypeName(functionType.returnType, 'out', arc4Config.resourceEncoding, sourceLocation);
8560
+ const methodSignature = nodeFactory.methodSignature({
8561
+ name: arc4Config.name,
8562
+ argTypes: functionType.parameters.map(([_, ptype]) => ptype.wtypeOrThrow),
8563
+ returnType: functionType.returnType.wtypeOrThrow,
8564
+ resourceEncoding: arc4Config.resourceEncoding,
8565
+ sourceLocation,
8566
+ });
8514
8567
  return nodeFactory.methodConstant({
8515
- value: `${arc4Config.name}(${params})${returnType}`,
8568
+ value: methodSignature,
8516
8569
  wtype: new wtypes.BytesWType({ length: 4n }),
8517
8570
  sourceLocation,
8518
8571
  });
8519
8572
  }
8520
- /**
8521
- * Get the ARC4 type name for a ptype, or throw if the ptype is not usable in an ABI method.
8522
- * @param ptype The ptype of the parameter
8523
- * @param direction The direction of the parameter (in for method args, out for method returns)
8524
- * @param resourceEncoding The encoding strategy for the foreign resource types (App, Asset, Account)
8525
- * @param sourceLocation The location of the method or parameter, for use in error metadata
8526
- */
8527
- function getABITypeName(ptype, direction, resourceEncoding, sourceLocation) {
8528
- return ptypeToAbiPType(ptype, direction, resourceEncoding, sourceLocation).abiTypeSignature;
8529
- }
8530
8573
  /**
8531
8574
  * Is the given type an ARC4 encoded type, or can it be encoded to one
8532
8575
  * @param ptype The type to check
@@ -11917,7 +11960,7 @@ class MethodSelectorFunctionBuilder extends FunctionBuilder {
11917
11960
  throw new CodeError(`${this.typeDescription} expects exactly 1 argument that is either a string literal, or a contract function reference`, { sourceLocation });
11918
11961
  }
11919
11962
  return instanceEb(nodeFactory.methodConstant({
11920
- value: requireStringConstant(methodSignature).value,
11963
+ value: nodeFactory.methodSignatureString({ value: requireStringConstant(methodSignature).value, sourceLocation }),
11921
11964
  wtype: methodConstantType.wtype,
11922
11965
  sourceLocation,
11923
11966
  }), methodConstantType);
@@ -12222,7 +12265,26 @@ function parseAppArgs({ fields, methodSelector, functionType, sourceLocation, })
12222
12265
  foreignAssets: new Array(),
12223
12266
  };
12224
12267
  const appArgsBuilder = fields && fields.hasProperty('args') && fields.memberAccess('args', sourceLocation);
12225
- const parsedSignature = parseArc4Method(methodSelector.value);
12268
+ let parsedSignature = null;
12269
+ if (methodSelector.value instanceof MethodSignature) {
12270
+ parsedSignature = {
12271
+ name: methodSelector.value.name,
12272
+ parameters: methodSelector.value.argTypes,
12273
+ returnType: methodSelector.value.returnType,
12274
+ resourceEncoding: methodSelector.value.resourceEncoding,
12275
+ };
12276
+ }
12277
+ else if (methodSelector.value instanceof MethodSignatureString) {
12278
+ const parsedArc4Method = parseArc4Method(methodSelector.value.value);
12279
+ parsedSignature = {
12280
+ name: parsedArc4Method.name,
12281
+ parameters: parsedArc4Method.parameters.map((ptype) => ptype.wtypeOrThrow),
12282
+ returnType: parsedArc4Method.returnType.wtypeOrThrow,
12283
+ };
12284
+ }
12285
+ if (!parsedSignature) {
12286
+ throw new InternalError('Unable to parse method signature from method selector');
12287
+ }
12226
12288
  const appArgs = [methodSelector];
12227
12289
  if (appArgsBuilder) {
12228
12290
  codeInvariant(isStaticallyIterable(appArgsBuilder), 'Unsupported expression for args', appArgsBuilder.sourceLocation);
@@ -12238,14 +12300,16 @@ function parseAppArgs({ fields, methodSelector, functionType, sourceLocation, })
12238
12300
  results.itxns.push(arg.resolve());
12239
12301
  return [];
12240
12302
  }
12241
- if (publicParamType.equals(assetPType)) {
12242
- return handleForeignRef(results.foreignAssets, 0n, paramType, arg);
12243
- }
12244
- else if (publicParamType.equals(applicationPType)) {
12245
- return handleForeignRef(results.foreignApps, 1n, paramType, arg);
12246
- }
12247
- else if (publicParamType.equals(accountPType)) {
12248
- return handleForeignRef(results.foreignAccounts, 1n, paramType, arg);
12303
+ if (parsedSignature.resourceEncoding === 'index') {
12304
+ if (publicParamType.equals(wtypes.assetWType)) {
12305
+ return handleForeignRef(results.foreignAssets, 0n, paramType, arg);
12306
+ }
12307
+ else if (publicParamType.equals(wtypes.applicationWType)) {
12308
+ return handleForeignRef(results.foreignApps, 1n, paramType, arg);
12309
+ }
12310
+ else if (publicParamType.equals(wtypes.accountWType)) {
12311
+ return handleForeignRef(results.foreignAccounts, 1n, paramType, arg);
12312
+ }
12249
12313
  }
12250
12314
  let encodedType;
12251
12315
  if (paramType.equals(assetPType) || paramType.equals(applicationPType)) {
@@ -21918,6 +21982,12 @@ class FunctionTraverser {
21918
21982
  v.accept(this);
21919
21983
  }
21920
21984
  }
21985
+ visitStageInnerTransactions(expression) {
21986
+ expression.startNewGroup.accept(this);
21987
+ for (const expr of expression.itxns) {
21988
+ expr.accept(this);
21989
+ }
21990
+ }
21921
21991
  visitGroupTransactionReference(expression) {
21922
21992
  expression.index.accept(this);
21923
21993
  }
@@ -22493,7 +22563,14 @@ class ToCodeVisitor {
22493
22563
  return `TemplateVar[${expression.wtype}](${expression.name})`;
22494
22564
  }
22495
22565
  visitMethodConstant(expression) {
22496
- return `Method("${expression.value}")`;
22566
+ if (expression.value instanceof MethodSignatureString) {
22567
+ return `Method("${expression.value.value}")`;
22568
+ }
22569
+ const name = expression.value.name;
22570
+ const args = (expression.value.argTypes || []).map((t) => t.toString()).join(',');
22571
+ const return_ = expression.value.returnType.toString();
22572
+ const signature = `${name}(${args})${return_}`;
22573
+ return `Method(signature="${signature}", resource_encoding="${expression.value.resourceEncoding}")`;
22497
22574
  }
22498
22575
  visitAddressConstant(expression) {
22499
22576
  return `Address("${expression.value}")`;
@@ -22549,6 +22626,11 @@ class ToCodeVisitor {
22549
22626
  .join(', ');
22550
22627
  return `update_inner_transaction(${expression.itxn.accept(this)}, ${fields})`;
22551
22628
  }
22629
+ visitStageInnerTransactions(expression) {
22630
+ const startNewGroup = expression.startNewGroup.accept(this);
22631
+ const itxns = expression.itxns.map((itxn) => itxn.accept(this)).join(', ');
22632
+ return `stage_itxns=([${itxns}], start_new_group=${startNewGroup})`;
22633
+ }
22552
22634
  visitCheckedMaybe(expression) {
22553
22635
  return `checked_maybe(${expression.expr.accept(this)}, comment=${expression.comment})`;
22554
22636
  }
@@ -29027,6 +29109,7 @@ class CompileOptions {
29027
29109
  outputSourceMap;
29028
29110
  debugLevel;
29029
29111
  optimizationLevel;
29112
+ treatWarningsAsErrors;
29030
29113
  targetAvmVersion;
29031
29114
  cliTemplateDefinitions;
29032
29115
  templateVarsPrefix;
@@ -29053,6 +29136,7 @@ class CompileOptions {
29053
29136
  this.outputSourceMap = options.outputSourceMap ?? false;
29054
29137
  this.debugLevel = options.debugLevel ?? defaultPuyaOptions.debugLevel;
29055
29138
  this.optimizationLevel = options.optimizationLevel ?? defaultPuyaOptions.optimizationLevel;
29139
+ this.treatWarningsAsErrors = options.treatWarningsAsErrors ?? defaultPuyaOptions.treatWarningsAsErrors;
29056
29140
  this.targetAvmVersion = options.targetAvmVersion ?? defaultPuyaOptions.targetAvmVersion;
29057
29141
  this.cliTemplateDefinitions = options.cliTemplateDefinitions ?? defaultPuyaOptions.cliTemplateDefinitions;
29058
29142
  this.templateVarsPrefix = options.templateVarsPrefix ?? defaultPuyaOptions.templateVarsPrefix;
@@ -29088,6 +29172,7 @@ const defaultPuyaOptions = {
29088
29172
  outputBytecode: false,
29089
29173
  debugLevel: 1,
29090
29174
  optimizationLevel: 1,
29175
+ treatWarningsAsErrors: false,
29091
29176
  targetAvmVersion: 11,
29092
29177
  cliTemplateDefinitions: {},
29093
29178
  templateVarsPrefix: 'TMPL_',
@@ -29107,6 +29192,7 @@ class PuyaOptions {
29107
29192
  outputSourceMap;
29108
29193
  debugLevel;
29109
29194
  optimizationLevel;
29195
+ treatWarningsAsErrors;
29110
29196
  targetAvmVersion;
29111
29197
  cliTemplateDefinitions;
29112
29198
  templateVarsPrefix;
@@ -29126,6 +29212,7 @@ class PuyaOptions {
29126
29212
  this.outputBytecode = options.outputBytecode;
29127
29213
  this.debugLevel = options.debugLevel;
29128
29214
  this.optimizationLevel = options.optimizationLevel;
29215
+ this.treatWarningsAsErrors = options.treatWarningsAsErrors;
29129
29216
  this.targetAvmVersion = options.targetAvmVersion;
29130
29217
  this.cliTemplateDefinitions = options.cliTemplateDefinitions;
29131
29218
  this.templateVarsPrefix = options.templateVarsPrefix;
@@ -29137,4 +29224,4 @@ class PuyaOptions {
29137
29224
  }
29138
29225
 
29139
29226
  export { GeneratorType as $, ABICompatibleInstanceType as A, BaseContractClassType as B, Constants as C, BooleanFunction as D, BoxGeneric as E, BoxMapGeneric as F, BoxMapPType as G, BoxPType as H, ByteClass as I, BytesFunction as J, BytesGeneric as K, BytesPType as L, ClassMethodDecoratorContext as M, ClearStateProgram as N, ClusteredContractClassType as O, ClusteredPrototype as P, ContractClassPType as Q, ContractProxyGeneric as R, ContractProxyType as S, DynamicArrayGeneric as T, DynamicArrayType as U, DynamicBytesConstructor as V, DynamicBytesType as W, FixedArrayGeneric as X, FixedArrayPType as Y, FunctionPType as Z, GeneratorGeneric as _, ALL_OP_ENUMS as a, UintN16Class as a$, GenericPType as a0, GlobalStateGeneric as a1, GlobalStateType as a2, GroupTransactionPType as a3, ImmutableObjectPType as a4, InnerTransactionPType as a5, InstanceType as a6, InternalType as a7, IntersectionPType as a8, IntrinsicEnumType as a9, ReadonlyArrayGeneric as aA, ReadonlyArrayPType as aB, ReadonlyGeneric as aC, ReadonlyTuplePType as aD, ReferenceArrayGeneric as aE, ReferenceArrayType as aF, StaticArrayGeneric as aG, StaticArrayType as aH, StaticBytesGeneric as aI, StaticBytesType as aJ, StringFunction as aK, SuperPrototypeSelector as aL, SuperPrototypeSelectorGeneric as aM, TemplateVarFunction as aN, TransactionFunction as aO, TransactionFunctionType as aP, TransientType as aQ, TypeParameterType as aR, TypedApplicationCallResponseGeneric as aS, TypedApplicationCallResponseType as aT, UFixedNxMGeneric as aU, UFixedNxMType as aV, Uint64EnumMemberLiteralType as aW, Uint64EnumMemberType as aX, Uint64EnumType as aY, Uint64Function as aZ, UintN128Class as a_, IntrinsicFunctionGroupType as aa, IntrinsicFunctionGroupTypeType as ab, IntrinsicFunctionType as ac, IntrinsicFunctionTypeType as ad, IterableIteratorGeneric as ae, IterableIteratorType as af, ItxnParamsPType as ag, KeyRegistrationTxnFunction as ah, LibClassType as ai, LibFunctionType as aj, LibObjType as ak, LocalStateGeneric as al, LocalStateType as am, LogicSigPType as an, MutableObjectPType as ao, MutableTuplePType as ap, NamespacePType as aq, NumberPType as ar, NumericLiteralPType as as, ObjectLiteralPType as at, ObjectWithOptionalFieldsType as au, PType as av, PaymentTxnFunction as aw, PolytypeClassMethodHelper as ax, PromiseGeneric as ay, PromiseType as az, ARC4ArrayType as b, errFunction as b$, UintN256Class as b0, UintN32Class as b1, UintN64Class as b2, UintN8Class as b3, UintNGeneric as b4, UintNType as b5, UnionPType as b6, UnsupportedType as b7, abiCallFunction as b8, accountPType as b9, assetFreezeItxnFn as bA, assetFreezeItxnParamsType as bB, assetFreezeItxnType as bC, assetPType as bD, assetTransferGtxnType as bE, assetTransferItxnFn as bF, assetTransferItxnParamsType as bG, assetTransferItxnType as bH, base64PType as bI, baseContractType as bJ, bigIntPType as bK, biguintPType as bL, boolPType as bM, bytesPType as bN, bzeroFunction as bO, cloneFunctionPType as bP, compileArc4Function as bQ, compileFunctionType as bR, compiledContractType as bS, compiledLogicSigType as bT, contractOptionsDecorator as bU, convertBytesFunction as bV, decodeArc4Function as bW, ecPType as bX, ecdsaPType as bY, encodeArc4Function as bZ, ensureBudgetFunction as b_, anyGtxnType as ba, anyItxnParamsType as bb, anyItxnType as bc, anyPType as bd, applicationCallGtxnType as be, applicationCallItxnFn as bf, applicationCallItxnParamsType as bg, applicationItxnType as bh, applicationPType as bi, arc28EmitFunction as bj, arc4AbiMethodDecorator as bk, arc4AddressAlias as bl, arc4BareMethodDecorator as bm, arc4BaseContractType as bn, arc4BooleanType as bo, arc4ByteAlias as bp, arc4StringType as bq, arc4StructBaseType as br, arc4Uint64 as bs, assertFunction as bt, assertMatchFunction as bu, assetConfigGtxnType as bv, assetConfigItxnFn as bw, assetConfigItxnParamsType as bx, assetConfigItxnType as by, assetFreezeGtxnType as bz, ARC4BoolClass as c, buildAwst as c$, esSymbol as c0, inputOnlyObjects as c1, isArrayType as c2, isObjectType$1 as c3, isTupleLike as c4, itoaMethod as c5, itxnComposePType as c6, keyRegistrationGtxnType as c7, keyRegistrationItxnFn as c8, keyRegistrationItxnParamsType as c9, validateEncodingFunctionPType as cA, voidPType as cB, vrfVerifyPType as cC, uint8ArrayToBigInt as cD, uint8ArrayToBase64 as cE, uint8ArrayToBase32 as cF, uint8ArrayToHex as cG, uint8ArrayToUtf8 as cH, base64ToUint8Array as cI, base32ToUint8Array as cJ, hexToUint8Array as cK, bigIntToUint8Array as cL, utf8ToUint8Array as cM, SourceLocation as cN, registerPTypes as cO, typeRegistry as cP, TypeResolver as cQ, processInputPaths as cR, LoggingContext as cS, CompileOptions as cT, AbsolutePath as cU, mkDirIfNotExists as cV, PuyaService as cW, deserializeAndLog as cX, LogLevel as cY, logger as cZ, createTsProgram as c_, keyRegistrationItxnType as ca, logFunction as cb, logicSigBaseType as cc, logicSigOptionsDecorator as cd, matchFunction as ce, methodSelectorFunction as cf, mimcConfigurationsPType as cg, neverPType as ch, nullPType as ci, numberPType as cj, onCompleteActionType as ck, opUpFeeSourceType as cl, paymentGtxnType as cm, paymentItxnFn as cn, paymentItxnParamsType as co, paymentItxnType as cp, ptypeToArc4EncodedType as cq, readonlyDecorator as cr, sizeOfFunction as cs, stringPType as ct, submitGroupItxnFunction as cu, transactionTypeType as cv, uint64PType as cw, undefinedPType as cx, unknownPType as cy, urangeFunction as cz, ARC4EncodedType as d, validateAwst as d0, isMinLevel as d1, enumFromValue as d2, defaultPuyaOptions as d3, parseCliTemplateVar as d4, LocalsCoalescingStrategy as d5, sleep as d6, InternalError as d7, distinct as d8, DefaultMap as d9, zipStrict as da, relinquishThread as db, isIn as dc, LogSource as dd, ARC4InstanceType as e, ARC4StrClass as f, ARC4StructClass as g, ARC4StructType as h, ARC4TupleType as i, AccountFunction as j, AddressClass as k, AnyPType as l, ApplicationFunctionType as m, ApplicationTxnFunction as n, ApprovalProgram as o, Arc4TupleGeneric as p, ArrayGeneric as q, ArrayLiteralPType as r, ArrayPType as s, AssetConfigTxnFunction as t, AssetFreezeTxnFunction as u, AssetFunction as v, AssetTransferTxnFunction as w, BigIntLiteralPType as x, BigIntPType as y, BigUintFunction as z };
29140
- //# sourceMappingURL=options-5IubucAG.js.map
29227
+ //# sourceMappingURL=options-COFRHTFQ.js.map