nem-ruby 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6cda64b6f121acde42a6bfa87e5b511e5b1724745501c6f870fb7e117633c3a0
4
- data.tar.gz: 8adbe26b6f262f6c6aad3481d94d5eb1c83732c3a011ac811ebc7816cd7a66e1
3
+ metadata.gz: 0c889bc0039c2bdcd4fbbb850eb858cc31e25832e8a9b97209694c920be4e765
4
+ data.tar.gz: 717eba0d9db81aacf501b6c6039d21e5ab7ef376c39fbcfd5af761cac6307451
5
5
  SHA512:
6
- metadata.gz: d3b070d76441e1b7ce75fcf33c0a1b25b8aa73bf81c065ba62bab645d36f41344eac4a9395b3bdf6e0820da79b2c5e663dd46324bf376fe707bd2c03b8ef9cb6
7
- data.tar.gz: 8379caf982918d94d683070ee350d85eb1e8fe3ec1ec18da39e5bb33c3320d2db65bb1e4426acd7225264db43a9fde32a1ab299881b087379ddd9103742fa608
6
+ metadata.gz: 713c72f13c16b5d126b43134edab7dffc2f2c1619c1123e5e7f17219cb44d26ea610f7acaed190df0f3615906ff723605fdd31deda41a9a253e990715c44f05e
7
+ data.tar.gz: 49b82f440b5701bd09e4f2c9652c08c3a8a9e09fc35e3760103da20c97eb5a7ccd118fcd132424f4ebd0decabfc5fdb706f06a9832bf75683e7103001fb09692
@@ -9,3 +9,15 @@ class MyMosaic
9
9
  initial_supply 1_234_567_890
10
10
  end
11
11
  ```
12
+
13
+ ## Build-in Mosaic definitions
14
+
15
+ ```
16
+ Nem::Mosaic::ComsaCms
17
+ Nem::Mosaic::DimCoin
18
+ Nem::Mosaic::DimToken
19
+ Nem::Mosaic::EcobitEco
20
+ Nem::Mosaic::PondixPxs
21
+ Nem::Mosaic::QchainXqc
22
+ Nem::Mosaic::Xem
23
+ ```
data/lib/nem.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require 'forwardable'
1
2
  require 'nem/version'
2
3
  require 'nem/error'
3
4
  require 'nem/configuration'
@@ -0,0 +1,11 @@
1
+ module Nem
2
+ module Mosaic
3
+ class PondixPxs
4
+ include Nem::Mixin::MosaicAttachable
5
+ namespace_id 'pondix'
6
+ name 'pxs'
7
+ divisibility 6
8
+ initial_supply 5000000
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module Nem
2
+ module Mosaic
3
+ class QchainXqc
4
+ include Nem::Mixin::MosaicAttachable
5
+ namespace_id 'qchain'
6
+ name 'xqc'
7
+ divisibility 6
8
+ initial_supply 375000000
9
+ end
10
+ end
11
+ end
@@ -1,3 +1,3 @@
1
1
  module Nem
2
- VERSION = '0.0.7'
2
+ VERSION = '0.0.8'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nem-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshiyuki Ieyama
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-11 00:00:00.000000000 Z
11
+ date: 2018-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -326,6 +326,8 @@ files:
326
326
  - lib/nem/mosaic/dim_coin.rb
327
327
  - lib/nem/mosaic/dim_token.rb
328
328
  - lib/nem/mosaic/ecobit_eco.rb
329
+ - lib/nem/mosaic/pondix_pxs.rb
330
+ - lib/nem/mosaic/qchain_xqc.rb
329
331
  - lib/nem/mosaic/xem.rb
330
332
  - lib/nem/node.rb
331
333
  - lib/nem/node_pool.rb