cardano_wallet 0.2.0 → 0.2.1
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 +4 -4
- data/README.md +2 -4
- data/dev +8 -1
- data/lib/cardano_wallet/misc.rb +27 -0
- data/lib/cardano_wallet/version.rb +1 -1
- metadata +3 -4
- data/docker-compose.yml +0 -38
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 9645ad1a0ae2d27ca495ab48f75ef2988f91172b1282dca5e1787337c6f25e62
         | 
| 4 | 
            +
              data.tar.gz: 1b4d7ed162072bd9b76aaad62430b60eba0d47d1a091f9c6589ae1db715676f2
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 959d13d2fe332a88704f8151b2fccb627ee4096c698838563351acb3b02fe48bf4ea23361771744991389115314ea2e26ade929f955c3c593a46662a5d1c690f
         | 
| 7 | 
            +
              data.tar.gz: d6ee9ae3c2591ba9a7341ee74ab76141b31bc4471c90cb0a62335208c518c3157c971066f694c8198744f49713365e26f27c3268ef8312fc6c463dcdb1764b8b
         | 
    
        data/README.md
    CHANGED
    
    | @@ -65,7 +65,6 @@ CW = CardanoWallet.new | |
| 65 65 | 
             
            BYRON = CW.byron
         | 
| 66 66 | 
             
            SHELLEY = CW.shelley
         | 
| 67 67 | 
             
            MISC = CW.misc
         | 
| 68 | 
            -
            PROXY = CW.proxy
         | 
| 69 68 |  | 
| 70 69 | 
             
            #Byron
         | 
| 71 70 | 
             
            BYRON.wallets.list.each_with_index do |wal, i|
         | 
| @@ -82,9 +81,8 @@ SHELLEY.wallets.get(w['id']) | |
| 82 81 | 
             
            #Misc
         | 
| 83 82 | 
             
            MISC.network.information
         | 
| 84 83 | 
             
            MISC.network.clock
         | 
| 85 | 
            -
             | 
| 86 | 
            -
             | 
| 87 | 
            -
            PROXY.submit_external_transaction(File.new("/tmp/blob.bin").read)
         | 
| 84 | 
            +
            MISC.proxy.submit_external_transaction(File.new("/tmp/blob.bin").read)
         | 
| 85 | 
            +
            MISC.utils.addresses("addr_test1vqrlltfahghjxl5sy5h5mvfrrlt6me5fqphhwjqvj5jd88cccqcek")
         | 
| 88 86 | 
             
            ```
         | 
| 89 87 |  | 
| 90 88 | 
             
            Refer to [documentation](https://rubydoc.info/gems/cardano_wallet) for more details.
         | 
    
        data/dev
    CHANGED
    
    | @@ -1 +1,8 @@ | |
| 1 | 
            -
             | 
| 1 | 
            +
            #!/bin/sh
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            NETWORK=testnet \
         | 
| 4 | 
            +
            WALLET=dev-master-shelley \
         | 
| 5 | 
            +
            NODE=1.20.0 \
         | 
| 6 | 
            +
            NODE_CONFIG_PATH=`pwd`/spec/testnet \
         | 
| 7 | 
            +
            docker-compose -f docker-compose-shelley.yml \
         | 
| 8 | 
            +
            $1 $2 $3 $4
         | 
    
        data/lib/cardano_wallet/misc.rb
    CHANGED
    
    | @@ -25,6 +25,33 @@ module CardanoWallet | |
| 25 25 | 
             
                  def proxy
         | 
| 26 26 | 
             
                    Proxy.new @opt
         | 
| 27 27 | 
             
                  end
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                  # @see https://input-output-hk.github.io/cardano-wallet/api/edge/#tag/Settings
         | 
| 30 | 
            +
                  def settings
         | 
| 31 | 
            +
                    Settings.new @opt
         | 
| 32 | 
            +
                  end
         | 
| 33 | 
            +
                end
         | 
| 34 | 
            +
             | 
| 35 | 
            +
                # API for Network
         | 
| 36 | 
            +
                # @see https://input-output-hk.github.io/cardano-wallet/api/edge/#tag/Settings
         | 
| 37 | 
            +
                class Settings < Base
         | 
| 38 | 
            +
                  def initialize opt
         | 
| 39 | 
            +
                    super
         | 
| 40 | 
            +
                  end
         | 
| 41 | 
            +
             | 
| 42 | 
            +
                  # @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/getSettings
         | 
| 43 | 
            +
                  def get
         | 
| 44 | 
            +
                    self.class.get("/settings")
         | 
| 45 | 
            +
                  end
         | 
| 46 | 
            +
             | 
| 47 | 
            +
                  # @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/putSettings
         | 
| 48 | 
            +
                  def update(params)
         | 
| 49 | 
            +
                    CardanoWallet::Utils.verify_param_is_hash!(params)
         | 
| 50 | 
            +
                    self.class.put("/settings",
         | 
| 51 | 
            +
                                   :body => {"settings" => params}.to_json,
         | 
| 52 | 
            +
                                   :headers => { 'Content-Type' => 'application/json' }
         | 
| 53 | 
            +
                                  )
         | 
| 54 | 
            +
                  end
         | 
| 28 55 | 
             
                end
         | 
| 29 56 |  | 
| 30 57 | 
             
                # API for Network
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: cardano_wallet
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.2. | 
| 4 | 
            +
              version: 0.2.1
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Piotr Stachyra
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: exe
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2020- | 
| 11 | 
            +
            date: 2020-10-08 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: httparty
         | 
| @@ -117,7 +117,6 @@ files: | |
| 117 117 | 
             
            - cardano_wallet.gemspec
         | 
| 118 118 | 
             
            - dev
         | 
| 119 119 | 
             
            - docker-compose-shelley.yml
         | 
| 120 | 
            -
            - docker-compose.yml
         | 
| 121 120 | 
             
            - lib/cardano_wallet.rb
         | 
| 122 121 | 
             
            - lib/cardano_wallet/base.rb
         | 
| 123 122 | 
             
            - lib/cardano_wallet/byron.rb
         | 
| @@ -148,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 148 147 | 
             
                - !ruby/object:Gem::Version
         | 
| 149 148 | 
             
                  version: '0'
         | 
| 150 149 | 
             
            requirements: []
         | 
| 151 | 
            -
            rubygems_version: 3. | 
| 150 | 
            +
            rubygems_version: 3.1.2
         | 
| 152 151 | 
             
            signing_key: 
         | 
| 153 152 | 
             
            specification_version: 4
         | 
| 154 153 | 
             
            summary: Ruby wrapper over cardano-wallet.
         | 
    
        data/docker-compose.yml
    DELETED
    
    | @@ -1,38 +0,0 @@ | |
| 1 | 
            -
            version: "3.5"
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            services:
         | 
| 4 | 
            -
              cardano-node:
         | 
| 5 | 
            -
                image: inputoutput/cardano-node:${NODE}
         | 
| 6 | 
            -
                environment:
         | 
| 7 | 
            -
                  NETWORK:
         | 
| 8 | 
            -
                volumes:
         | 
| 9 | 
            -
                  - node-${NETWORK}-db:/data
         | 
| 10 | 
            -
                  - node-ipc:/ipc
         | 
| 11 | 
            -
                  - node-config:/nix/store
         | 
| 12 | 
            -
                restart: on-failure
         | 
| 13 | 
            -
             | 
| 14 | 
            -
              cardano-wallet:
         | 
| 15 | 
            -
                image: inputoutput/cardano-wallet:${WALLET}
         | 
| 16 | 
            -
                volumes:
         | 
| 17 | 
            -
                  - wallet-${NETWORK}-db:/wallet-db
         | 
| 18 | 
            -
                  - node-ipc:/ipc
         | 
| 19 | 
            -
                  - node-config:/config
         | 
| 20 | 
            -
                ports:
         | 
| 21 | 
            -
                  - 8090:8090
         | 
| 22 | 
            -
                entrypoint: []
         | 
| 23 | 
            -
                command: bash -c "
         | 
| 24 | 
            -
                    ([[ $$NETWORK == \"mainnet\" ]] && $$CMD --mainnet) ||
         | 
| 25 | 
            -
                    ([[ $$NETWORK == \"testnet\" ]] && $$CMD --testnet /config/*testnet-genesis.json)
         | 
| 26 | 
            -
                  "
         | 
| 27 | 
            -
                environment:
         | 
| 28 | 
            -
                  CMD: "cardano-wallet-byron serve --node-socket /ipc/node.socket --database /wallet-db --listen-address 0.0.0.0"
         | 
| 29 | 
            -
                  NETWORK:
         | 
| 30 | 
            -
                restart: on-failure
         | 
| 31 | 
            -
             | 
| 32 | 
            -
            volumes:
         | 
| 33 | 
            -
              node-mainnet-db:
         | 
| 34 | 
            -
              node-testnet-db:
         | 
| 35 | 
            -
              wallet-mainnet-db:
         | 
| 36 | 
            -
              wallet-testnet-db:
         | 
| 37 | 
            -
              node-ipc:
         | 
| 38 | 
            -
              node-config:
         |