@fileverse-dev/fortune-core 1.0.2-mod-1 → 1.0.2-mod-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.
package/dist/index.esm.js CHANGED
@@ -601,6 +601,31 @@ var en = {
601
601
  repeat: "y",
602
602
  type: "rangeall"
603
603
  }]
604
+ }, {
605
+ n: "GETTXLIST",
606
+ t: 0,
607
+ d: "Returns the list of transactions performed by an address, with optional pagination.",
608
+ a: "Returns the list of transactions performed by an address, with optional pagination.",
609
+ p: [{
610
+ name: "value1",
611
+ detail: "The address string representing the addresses to check for balance",
612
+ example: "\"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC\"",
613
+ require: "m"
614
+ }, {
615
+ name: "value2",
616
+ detail: "Page number.",
617
+ example: "1",
618
+ require: "o",
619
+ repeat: "n",
620
+ type: "rangenumber"
621
+ }, {
622
+ name: "value3",
623
+ detail: "Page size(offset).",
624
+ example: "100",
625
+ require: "o",
626
+ repeat: "n",
627
+ type: "rangenumber"
628
+ }]
604
629
  }, {
605
630
  n: "SUBTOTAL",
606
631
  t: 0,
package/dist/index.js CHANGED
@@ -611,6 +611,31 @@ var en = {
611
611
  repeat: "y",
612
612
  type: "rangeall"
613
613
  }]
614
+ }, {
615
+ n: "GETTXLIST",
616
+ t: 0,
617
+ d: "Returns the list of transactions performed by an address, with optional pagination.",
618
+ a: "Returns the list of transactions performed by an address, with optional pagination.",
619
+ p: [{
620
+ name: "value1",
621
+ detail: "The address string representing the addresses to check for balance",
622
+ example: "\"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC\"",
623
+ require: "m"
624
+ }, {
625
+ name: "value2",
626
+ detail: "Page number.",
627
+ example: "1",
628
+ require: "o",
629
+ repeat: "n",
630
+ type: "rangenumber"
631
+ }, {
632
+ name: "value3",
633
+ detail: "Page size(offset).",
634
+ example: "100",
635
+ require: "o",
636
+ repeat: "n",
637
+ type: "rangenumber"
638
+ }]
614
639
  }, {
615
640
  n: "SUBTOTAL",
616
641
  t: 0,
@@ -25,14 +25,21 @@ declare const _default: {
25
25
  t: number;
26
26
  d: string;
27
27
  a: string;
28
- p: {
28
+ p: ({
29
+ name: string;
30
+ detail: string;
31
+ example: string;
32
+ require: string;
33
+ repeat?: undefined;
34
+ type?: undefined;
35
+ } | {
29
36
  name: string;
30
37
  detail: string;
31
38
  example: string;
32
39
  require: string;
33
40
  repeat: string;
34
41
  type: string;
35
- }[];
42
+ })[];
36
43
  m?: undefined;
37
44
  } | {
38
45
  n: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/fortune-core",
3
- "version": "1.0.2-mod-1",
3
+ "version": "1.0.2-mod-3",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "typings": "dist/index.d.ts",