Get contract functions

From UBot Studio
(Difference between revisions)
Jump to: navigation, search
 
Line 9: Line 9:
 
== Return Value ==
 
== Return Value ==
  
This function returns a list of functions of the specified smart contract on the given blockchain chain.
+
This function returns a yaml object with a list of functions and their parameters in the following format:
 +
<pre>
 +
first_function_name:
 +
    - first_parameter_name
 +
    - second_parameter_name
 +
second_function_name:
 +
    - first_parameter_name
 +
    - second_parameter_name
 +
</pre>
  
 
== Usage Example ==
 
== Usage Example ==
  
 
<pre>
 
<pre>
config defi wallet("your private key")
+
ui console view
log("Smart Contract functions: {$get contract functions("BinanceSmartChain", "0x1234abcd5678efgh9012ijkl34mn56op7890qrstu")}")
+
log object($get contract functions("BinanceSmartChain", "0x8965349fb649A33a30cbFDa057D8eC2C48AbE2A2"))
 
</pre>
 
</pre>
  
Please replace "your private key" with your actual DeFi wallet's private key.
+
This script retrieves and logs all functions available on the specified smart contract. The contract address in the example is USDC token.
 
+
Be mindful when you are handling your private key. It's a sensitive piece of data that allows full control over your funds in your DeFi wallet. Therefore, never share this key publicly or with anyone.
+
 
+
This script retrieves and logs all functions available on the specified smart contract. The output may look something like this:
+
 
+
<blockquote>
+
<p>approve, balanceOf, allowance, transfer, transferFrom, totalSupply</p>
+
</blockquote>
+
 
+
It's important to familiarize yourself with the functions of the contract you are working with, and the potential gas cost of each function, before using this data in your scripts.
+

Latest revision as of 00:07, 5 July 2023

$get contract functions is a function in UBot Studio that returns a list of functions accessible on a specific smart contract on a specified blockchain chain.

[edit] Parameters

Chain: The blockchain on which the smart contract resides.

Contract Address: The address of the smart contract for which you want to get the list of functions.

[edit] Return Value

This function returns a yaml object with a list of functions and their parameters in the following format:

first_function_name:
    - first_parameter_name
    - second_parameter_name
second_function_name:
    - first_parameter_name
    - second_parameter_name

[edit] Usage Example

ui console view
log object($get contract functions("BinanceSmartChain", "0x8965349fb649A33a30cbFDa057D8eC2C48AbE2A2"))

This script retrieves and logs all functions available on the specified smart contract. The contract address in the example is USDC token.

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox