@sentio/sdk 2.46.0-rc.1 → 2.46.0

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.
@@ -387,7 +387,7 @@ export class staking_pool extends SuiBaseProcessor {
387
387
  });
388
388
  }
389
389
  builder.joinStakedSui = joinStakedSui;
390
- function new_(tx, args) {
390
+ function new$(tx, args) {
391
391
  const _args = [];
392
392
  // @ts-ignore
393
393
  return tx.moveCall({
@@ -395,7 +395,7 @@ export class staking_pool extends SuiBaseProcessor {
395
395
  arguments: _args,
396
396
  });
397
397
  }
398
- builder.new_ = new_;
398
+ builder.new$ = new$;
399
399
  function pendingStakeAmount(tx, args) {
400
400
  const _args = [];
401
401
  _args.push(transactionArgumentOrObject(args[0], tx));
@@ -708,16 +708,16 @@ export class staking_pool extends SuiBaseProcessor {
708
708
  return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
709
709
  }
710
710
  view.joinStakedSui = joinStakedSui;
711
- async function new_(client, args) {
711
+ async function new$(client, args) {
712
712
  const tx = new Transaction();
713
- builder.new_(tx, args);
713
+ builder.new$(tx, args);
714
714
  const inspectRes = await client.devInspectTransactionBlock({
715
715
  transactionBlock: tx,
716
716
  sender: ZERO_ADDRESS,
717
717
  });
718
718
  return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
719
719
  }
720
- view.new_ = new_;
720
+ view.new$ = new$;
721
721
  async function pendingStakeAmount(client, args) {
722
722
  const tx = new Transaction();
723
723
  builder.pendingStakeAmount(tx, args);
@@ -928,7 +928,7 @@ export var storage_fund;
928
928
  });
929
929
  }
930
930
  builder.advanceEpoch = advanceEpoch;
931
- function new_(tx, args) {
931
+ function new$(tx, args) {
932
932
  const _args = [];
933
933
  _args.push(transactionArgumentOrPure(args[0], tx));
934
934
  // @ts-ignore
@@ -937,7 +937,7 @@ export var storage_fund;
937
937
  arguments: _args,
938
938
  });
939
939
  }
940
- builder.new_ = new_;
940
+ builder.new$ = new$;
941
941
  function totalBalance(tx, args) {
942
942
  const _args = [];
943
943
  _args.push(transactionArgumentOrObject(args[0], tx));
@@ -971,16 +971,16 @@ export var storage_fund;
971
971
  return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
972
972
  }
973
973
  view.advanceEpoch = advanceEpoch;
974
- async function new_(client, args) {
974
+ async function new$(client, args) {
975
975
  const tx = new Transaction();
976
- builder.new_(tx, args);
976
+ builder.new$(tx, args);
977
977
  const inspectRes = await client.devInspectTransactionBlock({
978
978
  transactionBlock: tx,
979
979
  sender: ZERO_ADDRESS,
980
980
  });
981
981
  return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
982
982
  }
983
- view.new_ = new_;
983
+ view.new$ = new$;
984
984
  async function totalBalance(client, args) {
985
985
  const tx = new Transaction();
986
986
  builder.totalBalance(tx, args);
@@ -3587,7 +3587,7 @@ export class validator extends SuiBaseProcessor {
3587
3587
  });
3588
3588
  }
3589
3589
  builder.networkPubkeyBytes = networkPubkeyBytes;
3590
- function new_(tx, args) {
3590
+ function new$(tx, args) {
3591
3591
  const _args = [];
3592
3592
  _args.push(transactionArgumentOrPureAddress(args[0], tx));
3593
3593
  _args.push(transactionArgumentOrVec(args[1], tx));
@@ -3610,7 +3610,7 @@ export class validator extends SuiBaseProcessor {
3610
3610
  arguments: _args,
3611
3611
  });
3612
3612
  }
3613
- builder.new_ = new_;
3613
+ builder.new$ = new$;
3614
3614
  function newMetadata(tx, args) {
3615
3615
  const _args = [];
3616
3616
  _args.push(transactionArgumentOrPureAddress(args[0], tx));
@@ -4411,16 +4411,16 @@ export class validator extends SuiBaseProcessor {
4411
4411
  return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
4412
4412
  }
4413
4413
  view.networkPubkeyBytes = networkPubkeyBytes;
4414
- async function new_(client, args) {
4414
+ async function new$(client, args) {
4415
4415
  const tx = new Transaction();
4416
- builder.new_(tx, args);
4416
+ builder.new$(tx, args);
4417
4417
  const inspectRes = await client.devInspectTransactionBlock({
4418
4418
  transactionBlock: tx,
4419
4419
  sender: ZERO_ADDRESS,
4420
4420
  });
4421
4421
  return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
4422
4422
  }
4423
- view.new_ = new_;
4423
+ view.new$ = new$;
4424
4424
  async function newMetadata(client, args) {
4425
4425
  const tx = new Transaction();
4426
4426
  builder.newMetadata(tx, args);
@@ -5376,7 +5376,7 @@ export class validator_set extends SuiBaseProcessor {
5376
5376
  });
5377
5377
  }
5378
5378
  builder.isValidatorCandidate = isValidatorCandidate;
5379
- function new_(tx, args) {
5379
+ function new$(tx, args) {
5380
5380
  const _args = [];
5381
5381
  _args.push(transactionArgumentOrVec(args[0], tx));
5382
5382
  // @ts-ignore
@@ -5385,7 +5385,7 @@ export class validator_set extends SuiBaseProcessor {
5385
5385
  arguments: _args,
5386
5386
  });
5387
5387
  }
5388
- builder.new_ = new_;
5388
+ builder.new$ = new$;
5389
5389
  function nextEpochValidatorCount(tx, args) {
5390
5390
  const _args = [];
5391
5391
  _args.push(transactionArgumentOrObject(args[0], tx));
@@ -5765,16 +5765,16 @@ export class validator_set extends SuiBaseProcessor {
5765
5765
  return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
5766
5766
  }
5767
5767
  view.isValidatorCandidate = isValidatorCandidate;
5768
- async function new_(client, args) {
5768
+ async function new$(client, args) {
5769
5769
  const tx = new Transaction();
5770
- builder.new_(tx, args);
5770
+ builder.new$(tx, args);
5771
5771
  const inspectRes = await client.devInspectTransactionBlock({
5772
5772
  transactionBlock: tx,
5773
5773
  sender: ZERO_ADDRESS,
5774
5774
  });
5775
5775
  return (await getMoveCoder(client)).decodeDevInspectResult(inspectRes);
5776
5776
  }
5777
- view.new_ = new_;
5777
+ view.new$ = new$;
5778
5778
  async function nextEpochValidatorCount(client, args) {
5779
5779
  const tx = new Transaction();
5780
5780
  builder.nextEpochValidatorCount(tx, args);