Questions tagged [ride]

RIDE is a functional programming language, used in blockchain programming. (it is not related with the "Robot Framework IDE (RIDE) [robotframework-ide])

RIDE is a functional programming language, used in blockchain programming.

(not related to Robot Framework IDE (RIDE) , nor to Dyalog Remote IDE )

See about RIDE

47 questions
4
votes
1 answer

How can I create that waves smart contracts and assets with JS?

I,m trying to write smart contracts for Waves Platform, as far as I understood, there are no smart contracts like in Ethereum, there are smart accounts and smart assets, which can validate transactions, but how can I create that smart contracts and…
3
votes
1 answer

How can I decode an encoded attachment using RIDE functions?

The attachment is Base58 encoded, but the only Base58 decode method in ride requires the input to be string. How to convert bytevector to string? When an account script is processing a transaction does it see the attachment sent as Base58 encoded of…
Grozz
  • 8,317
  • 4
  • 38
  • 53
2
votes
1 answer

How I can run a private Waves blockchain?

How to run private Waves blockchain for development, are there any tools like Ganache/Truffle for Waves?
darnista
  • 71
  • 5
2
votes
0 answers

How I can create a smart asset which can be traded only by the asset's issuer? I'm using RIDE language

I am trying to write a smart asset for waves blockchain using RIDE and trying to understand how can I create an asset which can be traded only with issuer. At the same time I’d like to validate sell and buy orders separated in some cases. Now I…
Nazim Faour
  • 804
  • 4
  • 6
2
votes
1 answer

How does the validation process works on RIDE? What happens after attaching the script to account?

So I make an account scripted by using SetScript transaction to attach a script to it, but once the account is scripted, how does it check external transaction? How those external transactions trigger it? Do I pass a reference to the script in those…
Alexey Kiselev
  • 916
  • 7
  • 8
2
votes
1 answer

Which type of transactions does waves platform have for smart accounts and smart assets?

How many transactions does waves have? will Waves Smart contracts add another transaction type to the waves platform? And where to find examples of those transactions?
1
vote
0 answers

Zoom Meeting URL using the fire fox profile creation is not launched correctly in version of windows 7 PC

Zoom Meeting URL using the fire fox profile creation is not launched correctly in version of windows PC is 6.1 NT ,mozilla firefox version : 85.0.2 if any solution using the ride ide or python code suggest some help for it
1
vote
1 answer

WebDriverException: Message: Service chromedriver unexpectedly exited. Status code was: 3221225477

I'm new to Robot Framewerk and I am using it with RIDE and I followed some tutorials and that went well till today. Yesterday everything worked fine and I changed nothing after yesterday. Now I am getting this error when I execute my tests in…
1
vote
2 answers

TypeError: descriptor 'encode' for 'str' objects doesn't apply to a 'tuple' object

Can some please help in fixing the TypeError. It works in python 2 but not in python 3. Python2: def ExchangeColumns(RECXX_Output,Modified_Recxx_Output,column1,column2,column3,column4,column5,column6): with open(RECXX_Output) as infile…
Enstein Sugumar
  • 11
  • 1
  • 1
  • 3
1
vote
2 answers

Compiling RIDE contracts with Python or JS

Is it possible to compile RIDE contracts locally with Python or JS? I've only found a Java-based compiler, which is less than ideal for a browser app.
1
vote
1 answer

Unable to get response from the library

I try to execute this code and receive current blockchain block number nodeInteraction.currentHeight('https://nodes.wavesplatform.com/').then((res) => { console.log(res); }); I did not forget to import the library import { invokeScript,…
Nik
  • 29
  • 5
1
vote
1 answer

How do smart contracts work in waves vs. ethereum?

I am developing contracts in ethereum. That is quiet easy for me. However, a customer would like to have a contract on waves. He already has a token created on the Waves blockchain. Is it possible to add a smart contract to an already existing…
Jelly
  • 25
  • 6
1
vote
1 answer

Base64 code for my smart asset works on testnet but script gives a syntax error while creating the real asset. Any ideas?

I have created a smart asset script on ide. I can create the smart asset on testnet with the code Base64 from ide. That works fine on testnet. But when I try to create the real asset, smart asset script form gives "syntax error" for the base64…
spiritaufe
  • 11
  • 1
1
vote
1 answer

Can deployed RIDE scripts on Waves Platform be deleted, modified or overwritten?

If we find a bug on a deployed RIDE script or if we want to make enhancements, is it still possible to modify the script or replace with a new script?
1
vote
2 answers

sha256 returns strange 44 symbols hash (not 64 as usual)

I'm trying to use built-in function "sha256" in my Waves dApp. https://docs.wavesplatform.com/en/ride/built-in-functions.html 'DataEntry("sha256_kotobytesto64", toBase64String(sha256(toBytes("Message to hash"))))' But it seems like the result of…
1
2 3 4