@fileverse-dev/formulajs 4.4.41-example-3 → 4.4.41-example-4

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.
@@ -1029,29 +1029,22 @@ var Neynar_metadata = {
1029
1029
  var SMARTCONTRACT_metadata = {
1030
1030
  n: "SMARTCONTRACT",
1031
1031
  t: 20,
1032
- d: "Query smart contracts in cells.",
1033
- r: "Call a read-only function on a given smart contract",
1032
+ d: "Query smart contract in cells. Returning a list of available functions and arguments that you can use to get data.",
1033
+ r: "Query smart contract in cells. Returning a list of available functions and arguments that you can use to get data.",
1034
1034
  p: [
1035
1035
  {
1036
- name: "contractName",
1037
- detail: "Name of the contract you want to pull data from",
1038
- example: '"USDC"',
1036
+ name: "contract_address",
1037
+ detail: "Address of the contract you want to query",
1038
+ example: '"0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb"',
1039
1039
  require: "m",
1040
1040
  type: "string"
1041
1041
  },
1042
1042
  {
1043
- name: "functionName",
1044
- detail: "Name of the function you want to call from the give contract",
1045
- example: '"balanceOf"',
1043
+ name: "chain",
1044
+ detail: 'Blockchain network(s) to query. Supported values: "ethereum", "gnosis", "base". Accepts comma-separated values.',
1045
+ example: '"GNOSIS"',
1046
1046
  require: "m",
1047
1047
  type: "string"
1048
- },
1049
- {
1050
- name: "...functionArgs",
1051
- detail: "Optional arguments to pass to the contract function.",
1052
- example: '"0x50Aa3435E310d5a2d15a989Bc353ce7f5682E1d4"',
1053
- require: "o",
1054
- type: "any"
1055
1048
  }
1056
1049
  ],
1057
1050
  examples: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/formulajs",
3
- "version": "4.4.41-example-3",
3
+ "version": "4.4.41-example-4",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {