• 0 Posts
  • 8 Comments
Joined 11 months ago
cake
Cake day: October 23rd, 2023

help-circle
  • If a Solana smart contract creator wants to they can publish an IDL for the contract, which will tell things about the various functions in a smart contract. If you then viewed that contract in an explorer you could view the IDL.

    AFAIK functions are only called by name in Solana (at least using Anchor), and I have never seen a method ID beyond a function name (could be wrong though).

    I have never seen anything than what appears to be utter randomness from Solana transaction signatures. Given that the signatures are generated from from the ED25519 curve, it doesn’t really seem likely that they would ever fit a pattern.

    What you WILL find are vanity addresses for addresses users can generate. These will have the first several characters be human readable and can be used to categorize addresses. But I’ve never seen a vanity transaction signature.







  • You’re thinking about account to account Sol transactions, for which such a low price is deminimis and even 10x price increase is meaningless. But there is a whole other aspect of the blockchain that involves smart contracts and the price per transaction is the same there too. So to call any function in a particular smart contract will cost at a minimum .000005 Sol, and depending on what other functions that function calls, those calls will also be .000005 Sol. And sometimes you need to make many changes over time and you keep incurring these fees. At current levels, it is mostly painless. But it will start adding up if this goes 10X. In short, the impact I am talking about from increased transaction costs doesn’t affect the “money” side, only the smart contract side. The reason I know this is because I build on chain applications and deal with this on the daily.