Class: Faker::Blockchain::Aeternity
- Inherits:
-
Faker::Base
- Object
- Faker::Base
- Faker::Blockchain::Aeternity
- Defined in:
- lib/faker/blockchain/aeternity.rb
Constant Summary
Constants inherited from Faker::Base
Faker::Base::LLetters, Faker::Base::Letters, Faker::Base::NOT_GIVEN, Faker::Base::Numbers, Faker::Base::ULetters
Class Method Summary collapse
-
.address ⇒ String
Produces a random Aeternity wallet address.
-
.contract ⇒ String
Produces a random Aeternity contract.
-
.oracle ⇒ String
Produces a random Aeternity oracle.
-
.transaction ⇒ String
Produces a random Aeternity transaction.
Methods inherited from Faker::Base
bothify, disable_enforce_available_locales, fetch, fetch_all, flexible, generate, letterify, method_missing, numerify, parse, rand, rand_in_range, regexify, resolve, respond_to_missing?, sample, shuffle, shuffle!, translate, unique, with_locale
Class Method Details
.address ⇒ String
Produces a random Aeternity wallet address
16 17 18 |
# File 'lib/faker/blockchain/aeternity.rb', line 16 def address "ak_#{rand_strings}" end |
.contract ⇒ String
Produces a random Aeternity contract
42 43 44 |
# File 'lib/faker/blockchain/aeternity.rb', line 42 def contract "ct_#{rand_strings}" end |
.oracle ⇒ String
Produces a random Aeternity oracle
55 56 57 |
# File 'lib/faker/blockchain/aeternity.rb', line 55 def oracle "ok_#{rand_strings(51)}" end |
.transaction ⇒ String
Produces a random Aeternity transaction
29 30 31 |
# File 'lib/faker/blockchain/aeternity.rb', line 29 def transaction "th_#{rand_strings(51)}" end |