method

base58

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: SecureRandom
base58(n = 16) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/core_ext/securerandom.rb, line 20
    def self.base58(n = 16)
      SecureRandom.alphanumeric(n, chars: BASE58_ALPHABET)
    end
Register or log in to add new notes.