Sha256: 7121e282787e9e5a18ba8c5f6dc3ccaaef4a4829244fa82aa5ab29e4fd3b31c4
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true Dir[File.join(File.dirname(__dir__), 'lib/solana_ruby/*.rb')].each { |file| require file } Dir[File.join(File.dirname(__dir__), 'lib/solana_ruby/**/*.rb')].each { |file| require file } # SOL Transfer Testing Script # Initialize the Solana client client = SolanaRuby::HttpClient.new('http://127.0.0.1:8899') # Fetch the recent blockhash recent_blockhash = client.get_latest_blockhash["blockhash"] token_account = "C2wY5TKnj52S4s9yRUTNqitRe5gmFokSCoppJS6t63aa" mint_address = "5FQhi6Kq3CKDaB3bus21ZqcL7wyeZNR18otFGoDfrZXU" mint_authority = SolanaRuby::Keypair.load_keypair('/Users/chinaputtaiahbellamkonda/.config/solana/id.json') owner = mint_authority[:public_key] amount = 500_000 # Number of tokens to burn transaction = SolanaRuby::TransactionHelper.burn_spl_tokens( token_account, mint_address, owner, amount, recent_blockhash ) # Sign and send the transaction resp = transaction.sign([mint_authority]) puts "signature: #{resp}" # Send the transaction puts "Sending transaction..." response = client.send_transaction(transaction.to_base64, { encoding: 'base64' }) # Output transaction results puts "Transaction Signature: #{response}"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
solana-ruby-web3js-2.1.0 | transaction_testing/burn_spl_tokens.rb |
solana-ruby-web3js-2.0.2 | transaction_testing/burn_spl_tokens.rb |