def open_dexscreener(self, contract_address):
if contract_address == 'N/A':
self.show_message("Invalid contract address for Dexscreener.", "Error")
return
url = f"https://dexscreener.com/solana/{contract_address}"
self.open_browser(url)
Swap via Jupiter
Just after click on "Swap via Jupiter" button, you will be directed to the DEX aggregator. The patern of Jupiter's preset is always the same: SOL / selected token.
def open_jupiter(self, contract_address):
if contract_address == 'N/A':
self.show_message("Invalid contract address for swapping.", "Error")
return
url = f"https://jup.ag/swap/SOL-{contract_address}"
self.open_browser(url)
Audit via GoPlus
In our opinion GoPlus offers the best audit tools on the market, this is the reason why we have decide to integrate their service with our Terminal. Here, the program opens already preset Chrome window as well.
def open_goplus_audit(self, contract_address):
if contract_address == 'N/A':
self.show_message("Invalid contract address for auditing.", "Error")
return
url = f"https://gopluslabs.io/token-security/solana/{contract_address}"
self.open_browser(url)