pixelb has joined #stellar-dev
pixelbeat_ has joined #stellar-dev
pixelb has quit [Ping timeout: 256 seconds]
<stellar-slack> <sacarlson> @powderfan: after looking at this document it seems you can add memo inside the body of an operation. not sure why I don't see this on my other document of the structure
de_henne_ has joined #stellar-dev
de_henne has quit [Ping timeout: 260 seconds]
pixelbeat_ has quit [Ping timeout: 256 seconds]
TheSeven has quit [Ping timeout: 246 seconds]
TheSeven has joined #stellar-dev
de_henne_ has quit [Remote host closed the connection]
de_henne has joined #stellar-dev
<stellar-slack> <powderfan> thx a lot sacarlson! If this is really possible, then I could solve my problem of tagging operations with 'Centaurus'. However there remains the general problem of having multiple payments which require different destination tags. At least as long as the integration guide for exchanges and gateways suggest to interpret tx.memo as destination tag. For my purpose I have to figure out, whether this works via
<stellar-slack> js-stellar-base.
<stellar-slack> <bartek> https://stellar-public.slack.com/archives/dev/p1445780094001710 why? are you using js sdk? why can't you add a memo to your transaction?
<stellar-slack> <sacarlson> the main effect is I get no return from the function. ya I guess I could publish or post the full code
<stellar-slack> <sacarlson> that's just the js script is that all you need?
<stellar-slack> <sacarlson> opps sorry didn't know you were comenting on that one
<stellar-slack> <powderfan> bartek: currently memo on txn level is reserved for destination tag, and gateways will interpret it like that. So I cannot use it to write my own stuff inside
<stellar-slack> <bartek> ok, I understand
<stellar-slack> <sacarlson> and skip my error I found my problem was in this line transaction.sign({key}); should be transaction.sign(key);
pixelbeat_ has joined #stellar-dev
de_henne_ has joined #stellar-dev
de_henne has quit [Ping timeout: 260 seconds]
<stellar-slack> <eno> powderfan are you making a new version of Centaurus?
<stellar-slack> <sacarlson> yes he is
<stellar-slack> <sacarlson> he has what he's presently working on in github if you wish to see it
<stellar-slack> <eno> OK
pixelbeat_ has quit [Ping timeout: 265 seconds]
de_henne_ has quit [Remote host closed the connection]
de_henne has joined #stellar-dev
<stellar-slack> <jed> You can't add a memo to operations.
<stellar-slack> <jed> Adding the name of your wallet to every tx seems a bit spamy though. I think you should just set the home domain
<stellar-slack> <jed> If you want to do something like that
pixelbeat_ has joined #stellar-dev
dne has left #stellar-dev ["WeeChat 1.3"]
pixelbeat_ has quit [Ping timeout: 240 seconds]
<stellar-slack> <raymens> Is anyone able to run js-stellar-base or ruby-stellar-base on Windows?
stellar-slack has quit [Remote host closed the connection]
stellar-slack has joined #stellar-dev
<stellar-slack> <scott> alright, testnet is back up and running.
pixelbeat_ has joined #stellar-dev
pixelbeat_ has quit [Ping timeout: 268 seconds]
<stellar-slack> <powderfan> bartek: sorry, I tried to simplify the snippet, but simplified too much. Actually I'm iterating over the records and call insertTransactions per record. Displaying the effects in my view works fine, it is really the link to the operation that fails.
<stellar-slack> <powderfan> jed: ok then I will use home domain. Of course I didn't meant to bloat ledgers
<stellar-slack> <powderfan> eno: do you hold STR in Centaurus?
<stellar-slack> <powderfan> Next question: I'm tracking account sequence number locally. When exactly does it change? a) When a tx causes an effect for the account b) When a tx causes an effect for the account AND account is origin of the tx c) Something else
<stellar-slack> <jed> only changes when the account is the "source" of a tx
<stellar-slack> <powderfan> Ok, I missed that, thx
<stellar-slack> <sacarlson> @raymens you mean will it work in a browser of windows? IEx ? I test my web presents on windows on firefox and chrome it works. not sure I tried it on IE
<stellar-slack> <raymens> @sacarlson: nope, cloning it and running installation related tasks :)
<stellar-slack> <sacarlson> I have to assume that git will run on windows but I have to say I have never used it there
<stellar-slack> <sacarlson> I'm sure it will run on virtualbox inside of windows so I guess that would be yes
<stellar-slack> <sacarlson> the other option is dual boot linux and windows
<stellar-slack> <raymens> oh yeah, git isn't the problem. It's the native compilation required for several packages for nodeJS and Ruby
<stellar-slack> <sacarlson> I found for simple javascript I don't need any bundles or anything
<stellar-slack> <irisli> oh yea it's the ed25519 package thats causing issues i think
<stellar-slack> <raymens> Yeah and libsodium
<stellar-slack> <irisli> but supposedly it should work on some versions of node on windows
<stellar-slack> <irisli> what version of node are you using?
<stellar-slack> <raymens> 0.12.2
<stellar-slack> <irisli> maybe you can try using node 0.10 to see if that helps?
<stellar-slack> <bartek> @raymens: what error are you getting?
<stellar-slack> <sacarlson> as far as web development all you need is the prepackaged https://github.com/stellar/bower-js-stellar-sdk javascripts to add to your scripts in a simple editor, no compiler or packager needed
<stellar-slack> <sacarlson> as seen in these examples https://github.com/sacarlson/stellar_utility/tree/master/multi-sign-server/www
<stellar-slack> <sacarlson> in ruby the bundler should work in that that should compile the native code for you
<stellar-slack> <bartek> @powderfan: I've just fixed a bug causing this error. upgrade to stellar-sdk 0.2.13 and it should work.
<stellar-slack> <raymens> @bartek: currently: LINK : fatal error LNK1104: cannot open file 'LIBCMT.lib' [C:\Users\Raymen\node _modules\ed25519\build\ed25519.vcxproj]
<stellar-slack> <raymens> @irisli: I'll check later on
<stellar-slack> <bartek> @raymens: have you tried googling it? does it help: https://social.msdn.microsoft.com/Forums/en-US/bfab4727-5de4-4e01-a312-9d5a19b5a441/fatal-error-lnk1104-cannot-open-file-libcmtlib?forum=vclanguage ? sorry, I don't know windows well.
<stellar-slack> <bartek> but the error you're getting doesn't look like stellar-sdk/node error
<stellar-slack> <raymens> Yeah I'm in the process of trying several things :)
<stellar-slack> <raymens> that was the first link I also found, none of the solutions seem to help though
<stellar-slack> <powderfan> @bartek: wow, great! This was fast. I'll try it with the update, thx
<stellar-slack> <powderfan> @bartek: yes this works, thanks! however navigating further to the trx does not work. the operation prototype does not even contain a function "transaction". I suppose, it's just not implemented yet? Anyway navigating to the operation was more important for me at the moment
<stellar-slack> <bartek> you mean like effect -> operation -> transaction?
<stellar-slack> <powderfan> yes exactly
pixelbeat_ has joined #stellar-dev
pixelbeat_ has quit [Ping timeout: 265 seconds]
pixelbeat_ has joined #stellar-dev
pixelbeat_ has quit [Ping timeout: 240 seconds]