class CardanoWallet::Misc::Proxy

@see input-output-hk.github.io/cardano-wallet/api/edge/#tag/Proxy

Public Instance Methods

submit_external_transaction(binary_blob) click to toggle source

Submit a transaction that was created and signed outside of cardano-wallet. @see input-output-hk.github.io/cardano-wallet/api/edge/#operation/postExternalTransaction @param binary_blob [String] Signed transaction message binary blob.

# File lib/cardano_wallet/misc.rb, line 122
def submit_external_transaction(binary_blob)
  self.class.post('/proxy/transactions',
                  body: binary_blob,
                  headers: { 'Content-Type' => 'application/octet-stream' })
end