Get coinbase wallet data
$coinbase get wallets is a function that retrieves a list of all your Coinbase wallets.
Before calling this function, you need to set up your API and security credentials for Coinbase with the config coinbase command.
Return Value
This function will return a string that contains a list of all your Coinbase wallets. Each wallet listed will include relevant information such as the wallet's name, balance, and currency.
Example
config coinbase("your api key", "your api secret", "your passphrase") log($coinbase get wallets)
Be sure to replace "your api key", "your api secret", and "your passphrase" with your actual Coinbase API key, API secret, and passphrase.
After calling this function, you should receive a list of all your Coinbase wallets. Each entry in the list will appear as follows:
Wallet Name: USD Wallet Currency: USD Balance: 500
Please remember that your API key, API secret, and passphrase are sensitive information. If you need to show someone your script, remove these details first.