# frozen_string_literal: true module FlowClient module Utils # Left pads a byte array with 0 to length def self.left_pad_bytes(byte_array, length) required_pad_count = length - byte_array.count padding = [] (1..required_pad_count).each do |_i| padding << 0 end padding + byte_array end # Right pads a byte array with 0 to length def self.right_pad_bytes(byte_array, length) required_pad_count = length - byte_array.count padding = [] (1..required_pad_count).each do |_i| padding << 0 end byte_array + padding end # Substitutes Candence import statements using aliases with addresses # e.g. import FungibleToken from 0xFUNGIBLE_TOKEN_ADDRESS. # # aliases is a hash with aliases as string keys and addresses as values, # e.g. { "0xFUNGIBLE_TOKEN_ADDRESS": "0x0" } def self.substitute_address_aliases(script_or_transaction, aliases = {}) new_string = script_or_transaction aliases.each do |key, value| new_string = new_string.gsub("#{key}", "#{value}") end new_string end end end