id
stringlengths
32
32
text
stringlengths
0
895k
name
stringlengths
0
33k
domain
stringlengths
5
44
bucket
stringclasses
19 values
answers
list
ce3c9866ab0bb32941c6eb9cbd686b25
If so where can I find some example VB .Net sample code for a directory listing and Getting a file from a Unix server?? I am Newbie level.
Can I use edtftpnet with VB.Net Visual Studio?
enterprisedt.com
2021.04
[ { "text": "I'm not a VB programmer, but there are a few snippets in various threads that might help, e.g.\n \n\n \n<http://www.enterprisedt.com/forums/viewtopic.php?t=281>\n \n\n \nAnyone want to contribute an example?\n \n\n \n\n> If so where can I find some example VB .Net sample code for a directory listing and Getting a file from a Unix server?? \n> \n> I am Newbie level.\n\n", "name": "", "is_accepted": false }, { "text": "I've just posted a VB example in this thread:\n \n\n \n<http://www.enterprisedt.com/forums/viewtopic.php?t=287>\n \n\n \n\n> If so where can I find some example VB .Net sample code for a directory listing and Getting a file from a Unix server?? \n> \n> I am Newbie level.\n\n", "name": "", "is_accepted": false }, { "text": "i'm a really newbie here. do anyone know how can i make the current directory up. probably a button for backdirectory. \n \n\n \nFtpConnection1.ServerAddress = TextBox5.Text\n \n FtpConnection1.ServerPort = Integer.Parse(TextBox2.Text)\n \n FtpConnection1.UserName = TextBox3.Text\n \n FtpConnection1.Password = TextBox4.Text\n \n\n \n ' Connect, get files and close\n \n FtpConnection1.Connect()\n \n ListBox1.Items.AddRange(FtpConnection1.GetFiles())\n \n\n \ni just make it until here.how can i make an updirectory so that i can go to the upper root.please help me. thanks in advance.", "name": "", "is_accepted": false }, { "text": "ChangeWorkingDirectoryUp() will move you up a level.", "name": "", "is_accepted": false }, { "text": "yes i'm aware that detftp got that funtion.but i dont know how to put that code in the listbox so that the listbox can bring directory up to root. i'm using vb.net 2005.thanks for the reply.", "name": "", "is_accepted": false }, { "text": "It sounds like what you're trying to do is very similar to what the FTPRemoteFileList of [edtFTPnet/Express](http://www.enterprisedt.com/products/edtftpnetexpress/overview.html) does. If so, you might save yourself time and money by purchasing it (from only $99) rather than struggling with your own implemention using the free version. Also, it works asynchronously (i.e. in the background) so your application will be a lot more responsive.\n \n\n \nIf not then could you please explain a little more what you'd like to do? I don't quite understand what you mean by \"so that the listbox can bring directory up to root\".\n \n\n \n- Hans (EDT)", "name": "", "is_accepted": false }, { "text": "after i connect to the server using edtftp.all the server data will be listed in the listbox.then i want a button to back the listbox directory to root folder. hope u understand.if not let me know. not too good with my english..; )", "name": "", "is_accepted": false }, { "text": "Oh, you want to change directory to the root directory. That's easy - just do:\n \n\n```\nftpConnection.ServerDirectory = \"/\";\n```\n\n \n\n \n- Hans (EDT)", "name": "", "is_accepted": false }, { "text": "ive tried but it seems its not working.thanks anyway man for ur help.ill try the other way", "name": "", "is_accepted": false }, { "text": "If you need further help then please post the log. You can enable logging using:\n \n\n```\nEnterpriseDT.Net.Ftp.FTPConnection.LogToConsole = true;\nEnterpriseDT.Net.Ftp.FTPConnection.LogLevel = EnterpriseDT.Util.Debug.LogLevel.Debug;\n\n```\n\n \n\n \n- Hans (EDT)", "name": "", "is_accepted": false } ]
fc63e248c34b8acd670a80c3b5bf1fe7
how to get IPaddress of completeFTP server from a script which is running on completeFTP ?
enterprisedt.com
2021.10
[ { "text": "Which type of script is it (JSS, Powershell, batch)?  And where is it running (extension, process trigger or web-app)?", "name": "", "is_accepted": false } ]
47e4194c2a521f21fbdb197b77d33490
I have setup a folder on the C drive where i have Firmwares/settings/backups for IP Phones.During phone boots it will download (HTTP) The firmware & settings properly. To upload the phone backup (anonymous) i get a "permission denied". I assume the anonymous user has read-only checked in properties? the setting is greyed out. How should this be setup in order to get the upload working? We bought 3 enterprise licenses exactly for this purpose. Thanks for the help, Wim
upload files via HTTP and anonymous does not work
enterprisedt.com
2020.45
[ { "text": "Obviously the read-only checkbox is greyed out for security reasons, but it is possible to override it using the command-line.  I'd prefer for this not to be public as it's not something we'd like users to do without having a good reason, so can you please open a ticket [here](https://enterprisedt.com/help) and we'll send you the solution.\n\n", "name": "", "is_accepted": true } ]
39a2b74483c19d5b5357dfed4c9fd54e
Hi, We have a problem when trying to rename a file and move it after getting it in a local computer. We use the following C# code: *bool rename = clientFtp.RenameFile(file.Path, moveToPath);* When we use something like that * *file.Path = "/test/test/BlankPdf.pdf"* * *moveToPath = "test\_treated/BlankPdf.pdf"* => it works well. But we want to rename & move the file to the folder of level N-1: * *file.Path = "/test/test/BlankPdf.pdf"* * *moveToPath = "**../**test\_treated/BlankPdf.pdf"* => we got an error: *The file path does not exist or is invalid. (code=2)*. NB1: The target directory exists, because we create it before, if required. NB2: We use edtFTPnetPRO 9.0.020. Is it a problem of FTP path syntax ? Or is it just impossible to rename & move a file to a folder of level N-1 ? Thanks in advance for your answer.
edtFTPnetPRO / Problem of file path with RenameFile
enterprisedt.com
2020.50
[ { "text": "It depends on the server as to whether it supports this syntax. There's no standard, and so some servers will and others won't.", "name": "", "is_accepted": false } ]
cf6f0ecdbfa5c3d66ad2bc7acc419252
I am looking for a Java example of how to use a different cipher. I have tried the following but I keep getting an error. Is there something wrong with my syntax? ftp.enableCipherSuite(SSLFTPCipherSuite.TLS\_RSA\_WITH\_RC4\_128\_SHA); The error I get is INFO [com.egateway.MF.V38.wmPush2MF\_v38] 21 Jul 2011 12:46:10.280 : This is an info message CLIENT KEY FILENAME EDIXFTP\_SD.pem java.lang.NullPointerException at com.egateway.MF.V38.wmPush2MF\_v38.main(wmPush2MF\_v38.java:70)
How to use a different cipher
enterprisedt.com
2021.17
[ { "text": "That stack-trace indicates that the error is in the main method of the class called com.egateway.MF.V38.wmPush2MF\\_v38. What makes you think that it originates in our code?\n \n\n \n- Hans (EnterpriseDT)", "name": "", "is_accepted": false }, { "text": "Hi Han,\n \n\n \nThank you for the reply. I am just trying to get clarifiation on the correct syntax. We are currently a customer and are evaluting an update to the most recent version. If we can solve a slow FTPs file transfer problem we would purchase new support and upgrades. Is there any example of how to use to change or enable the cipher. We are not a java shop and the documentation is not clear for us.\n \n\n \nRoy", "name": "", "is_accepted": false }, { "text": "This ticket was responded to by Bruce in a private support ticket:\n \n\n> Here's the code I've used successfully: \n> \n> client = new SSLFTPClient(); \n> client.setValidateServer(false); \n> client.setRemoteHost(host); \n> client.disableAllCipherSuites(); \n> client.enableCipherSuite(SSLFTPCipherSuite.TLS\\_RSA\\_WITH\\_RC4\\_128\\_SHA); \n> client.connect(); \n> client.auth(SSLFTPClient.AUTH\\_TLS); \n> client.login(user, password); \n> \n> \n> Just a couple of other things: \n> \n> - ASCII transfers will always be slower than binary \n> - try a transfer buffer size of say 4096 bytes, 64K bytes and 128K bytes \n> - try Filezilla as a comparison, and try FZ's fastest cipher\n\n", "name": "", "is_accepted": false } ]
546adf250379c227e1d9dd2e37e6a0f3
Hi, We have a edtFTPj/PRO license and currently using Version 5.3.2 and have the below questions: 1) Is Cipher AES-256-GCM supported? We see that in edtFTPnet/PRO the support was introduced with Version 9.5.0. 2) If there is no support for AES-256-GCM, is there any plan in future to support this cipher. Thanks in advance.
Java edtFTPj/PRO version cipher support
enterprisedt.com
2019.51
[ { "text": "It's not currently supported, but we're working on it at the moment and expect it to be available before the end of this year.", "name": "", "is_accepted": false } ]
ef1a93d9c0b03b866cdbfb8392caa986
I don't see an option to specify what folder name will be. It automatically named as "NetworkMacro Folder 1" and requires go back and manually change it after actual folder is added
How do you specify folder name when you create non-Windows user
enterprisedt.com
2020.45
[ { "text": "Yes, this is pretty annoying and there's no other way to do it right now. \n\n \n\nWe have added an issue for it and it will be scheduled for a fix in due course. Thanks for your feedback.", "name": "", "is_accepted": false } ]
1ed9154577f762088900bdee2c4acca1
Hi, We are using edtFTPnetPRO 8.3.1.20 version in a web application hosted at IIS Windows 2008. And it is working fine. Now we are trying to upgrade our server to Windows 2016. When we try to connect, we are getting "System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt." error message. Is this a known error for windows 2016? We have got the trace logs. If it is necessary we can share the detailed logs with you. Edit : When we change app pool to "32 bit enabled" , it is fixed. However we dont want to use "32 bit enabled". Is there any solution? Edit 2 : <https://enterprisedt.com/products/edtftpnetpro/doc/manual/html/history.html> Thanks.
Windows 2016 - Attempted to read or write protected memory problem
enterprisedt.com
2019.43
[ { "text": "Please upgrade to the latest version.", "name": "", "is_accepted": false } ]
64bebbeeade31cf961a64ed814fb0884
``` var ftp = new Ftp(); //Create variable for local directory (3.) var Folder = "/Home/UsersHomeFolder/OtherFolder/outgoing/"; system.currentFolder = Folder; try { ftp.connect(); } catch(e){ console.log("connection error " + e); } try { //Create a directory to contain files var outgoing = new File(system.currentFolder); //Assign files in outgoing to a variable var files = outgoing.getFiles(); //Iterate through list of files for(var i in files) { //Get fullpath of current file var oFile = files[i].fullPath; //Get file name from fullpath var fileName = oFile.replace(/^.*[\\\/]/, ''); if(files[i].isFile){ console.log("File Name: " + fileName); if(fileName == "ftpCommand.txt") { //This file has the shell command I //want to send to server //The method I want to execute is below //scp.executeCommand(files[i].readText()); } } } ```
Is it possible to include the SecureFileTransferClient class in my JSS script to execute a shell command?
enterprisedt.com
2020.05
[ { "text": "Well, yes, sort of.  SecureFileTransferClient is a Java class, which won't work, but you can use [SecureFTPConnection](https://enterprisedt.com/products/edtftpnetpro/doc/manual/api/html/T_EnterpriseDT_Net_Ftp_SecureFTPConnection.htm), which is the main class for our .NET FTP component, [edtFTPnet/PRO](https://enterprisedt.com/products/edtftpnetpro/).  Below I've included a JSS sample, which I just tested as the JSS script for a process trigger.  Please also refer to the edtFTPnet/PRO [User Guide](https://enterprisedt.com/products/edtftpnetpro/doc/manual/index.html) and [Examples](https://enterprisedt.com/products/edtftpnetpro/examples/).  I'm not aware of anyone else doing this before, but, as far as I can see, it should work fine.\n\n\n```\ntry {\n var ftp = new EnterpriseDT.Net.Ftp.SecureFTPConnection();\n ftp.ServerAddress = \"myhostname\";\n ftp.UserName = \"myusername\";\n ftp.Password = \"mypassword\";\n ftp.Connect();\n ftp.Close();\n console.log(\"FTP OK\");\n} catch (e) {\n console.error(e.toString());\n}\n\n```\nPlease be aware that, although you're accessing a .NET class, the code is actually Javascript as evidenced by the syntax in the catch statement.\n\nSecureFTPConnection has three methods similar to executeCommand, namely [InvokeCommandSSH](https://enterprisedt.com/products/edtftpnetpro/doc/manual/api/html/M_EnterpriseDT_Net_Ftp_SecureFTPConnection_InvokeCommandSSH.htm), [InvokeFTPCommand](https://enterprisedt.com/products/edtftpnetpro/doc/manual/api/html/M_EnterpriseDT_Net_Ftp_ExFTPConnection_InvokeFTPCommand.htm) and [InvokeSiteCommand](https://enterprisedt.com/products/edtftpnetpro/doc/manual/api/html/M_EnterpriseDT_Net_Ftp_ExFTPConnection_InvokeSiteCommand.htm).  I'm not sure, which one you need, but I think one of them should do what you need.\n\n", "name": "", "is_accepted": false } ]
e72c431b6acd7db63a6e426bc9d72b7d
I am trying to setup sftp with third party ftp server, I have provided them my public key and they have registered on their server and I have written their public key in my knowhost file. Now I am trying to connect to ftp server through code : \_ftpConnection.ServerAddress = ServerAddress; \_ftpConnection.UserName = UserName; \_ftpConnection.Password = Password; //Passwordis blank as I am using Authentication type publickey \_ftpConnection.Protocol = FTPProtocol.SFTP; \_ftpConnection.AuthenticationMethod = AuthenticationType.PublicKey; \_ftpConnection.ClientPrivateKeyFile = pathToKey; //Path to my private key \_ftpConnection.ClientPrivateKeyPassphrase = passphrase; // pass phrase used to generate my private key \_ftpConnection.UseSFTPServerValidation = true; \_ftpConnection.KnownHosts.KnownHostFile = knownHostFilePath; \_ftpConnection.Connect(); It fails when it tries to connect and throw exception "AuthentiationFailed". Here's the attached trace below: DEBUG [SSHFTPClient] 23 Jan 2014 12:44:11.323 : HostKeyChecker checking for ssh- rsa public key of 'sft.XXXXYYYY.com' DEBUG [ClientKeyExchanger] 23 Jan 2014 12:44:11.325 : Processed SSH\_MSG\_KEXDH\_IN IT reply successfully DEBUG [ClientKeyExchanger] 23 Jan 2014 12:44:11.326 : Sending SSH\_MSG\_NEWKEYS DEBUG [ClientKeyExchanger] 23 Jan 2014 12:44:11.327 : Sent SSH\_MSG\_NEWKEYS DEBUG [ClientKeyExchanger] 23 Jan 2014 12:44:11.329 : Established ciphers DEBUG [ClientKeyExchanger] 23 Jan 2014 12:44:11.330 : Established MACs DEBUG [ClientKeyExchanger] 23 Jan 2014 12:44:11.330 : Reading SSH\_MSG\_NEWKEYS re ply DEBUG [AbstractKeyExchanger] 23 Jan 2014 12:44:11.331 : Processing SSH\_MSG\_NEWKE YS reply DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.332 : Processed 0 queued messages DEBUG [AbstractKeyExchanger] 23 Jan 2014 12:44:11.332 : Processed SSH\_MSG\_NEWKEY S reply INFO [AbstractKeyExchanger] 23 Jan 2014 12:44:11.332 : Negotiated new keys succe ssfully DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.333 : Key exchange complete DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.336 : Sent SSH\_MSG\_SERVICE\_REQUEST ' ssh-userauth' DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.336 : Waiting for packet DEBUG [PlainSocket] 23 Jan 2014 12:44:11.391 : RepeatCallback received 52 bytes DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.392 : Packet arrived DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.394 : Starting user authentication DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.394 : Public key authentication INFO [PuTTYPrivateKeyFormat] 23 Jan 2014 12:44:11.397 : Unpacking puTTY formatte d private key DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.469 : Sent SSH\_MSG\_USERAUTH\_REQUEST DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.471 : Waiting for packet DEBUG [PlainSocket] 23 Jan 2014 12:44:11.570 : RepeatCallback received 76 bytes DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.571 : Packet arrived DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.572 : ProcessAuthenticationResponse: SSH\_MSG\_USERAUTH\_FAILURE ERROR [SSH2Connection] 23 Jan 2014 12:44:11.572 : Auth failure. Try: password,publickey,keyboard-interactive DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.573 : Starting user authentication DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.573 : Password authentication DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.574 : Sent SSH\_MSG\_USERAUTH\_REQUEST DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.574 : Waiting for packet DEBUG [PlainSocket] 23 Jan 2014 12:44:11.600 : RepeatCallback received 76 bytes DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.601 : Packet arrived DEBUG [SSH2Connection] 23 Jan 2014 12:44:11.601 : ProcessAuthenticationResponse: SSH\_MSG\_USERAUTH\_FAILURE ERROR [SSH2Connection] 23 Jan 2014 12:44:11.602 : Auth failure. Try: password,pu blickey,keyboard-interactive ERROR [SSHFTPClient] 23 Jan 2014 12:44:11.608 : Failed to connect - closing conn ection ERROR [SSHFTPClient] 23 Jan 2014 12:44:11.608 : EnterpriseDT.Net.Ftp.Ssh.SFTPExc eption: AuthenticationFailed ERROR [SSHFTPClient] 23 Jan 2014 12:44:11.608 : at EnterpriseDT.Net.Ftp.Ssh.S SHFTPClient.Connect()
SSH\_MSG\_USERAUTH\_FAILURE error
enterprisedt.com
2021.04
[ { "text": "Have you verified you can authenticate using your private key using another client like WinSCP?", "name": "", "is_accepted": false }, { "text": "I tried and got this error\n \n\n \n[[ img ]](http://s27.postimg.org/4jab5a55r/error.jpg)", "name": "", "is_accepted": false }, { "text": "You'll need to talk to the server administrator - I don't know what that error means.", "name": "", "is_accepted": false }, { "text": "Is this shows that the server doesn't have my public key registered.\n \nAlso I am not giving password while login into winscp. Only username and private key of mine.", "name": "", "is_accepted": false }, { "text": "Yes, it looks like your public key is not registered.", "name": "", "is_accepted": false } ]
051ed360083ec0a2a28cb4f931a77325
Is this product capable of being installed in multiple languages?
multilingual
enterprisedt.com
2021.17
[ { "text": "The administration interface, CompleteFTP Manager, is English only, but the web-based file-manager can be localized to over 25 languages.", "name": "", "is_accepted": false } ]
ba48044aa35d789b8dbb19491e5449c5
We are using edtftpnetpro for uploading using uploadstream method but it fails saying "file stream too long"
Not able to upload file more than 2GB using edtftpnetpro
enterprisedt.com
2020.05
[ { "text": "You can do it by passing the FileStream directly to the UploadStream method.  You can obtain a FileStream object either by calling File.OpenRead or by creating a new FileStream object.  When you do this, the FileStream object will read the data from the file as it's read by the UploadStream method instead of reading it all into memory at once.", "name": "", "is_accepted": false } ]
b00b55503846cc1ef85b5aa6e05de807
The trial period has expired. How can I extend it?
The trial period has expired. How can I extend it?
enterprisedt.com
2020.05
[ { "text": "If your trial period has expired and you require further time to evaluate CompleteFTP, we are happy to extend your trial period. Please note that after the trial license expires, it converts to \"Developer Mode\", which only permits connections from the local machine. You can use it indefinitely in this mode. \n \nBut if you need to do further testing with a fully functional trial, here's how to extend it:\n\n1. Connect to your CompleteFTP server using the manager on the machine it is installed on.\n2. Go to the Licensing tab.\n3. Click on 'Apply purchased license'.\n4. Click the 'here' link at the top of the window ('Click here if this computer has no Internet connection').\n5. Enter \"TrialUser\" in Step 1.\n6. Click the 'copy' link in Step 2 to copy the generated URL to your clipboard. Do NOT navigate to the URL (it will ask you for a password you don't have).\n7. Paste it into your reply.\n8. We'll send you back an activation key to paste into Step 4. Make sure you save the changes.\n", "name": "", "is_accepted": true } ]
6b4c1a834032b0e97228f650bc80ece4
I am having difficulty accessing and downloading from CompleteFTP with HTTP , without being asked for my login credentials. How can i do this?
How do i download a file as an anonymous user with HTTP?
enterprisedt.com
2020.34
[ { "text": "The key with this is to remember that the anonymous user is home-rooted in the /Public folder, so you have to create the folder underneath that directory and leave out the /Public from the path.E.g. create a folder at /Public/Downloads, put a file called myfile.txt in it, and then download it using the URL <https://hostname/Downloads/myfile.txt>.  Of course it's also important to set the permissions of this folder such that only download is enabled, otherwise people can potential list, delete and upload stuff, which is very risky.", "name": "", "is_accepted": false } ]
ebf5246a3c5afb7771eb7aaaba46a731
A user asked us if the user who shared a file can be notified by email when it's downloaded.
Can the user who shared a file be emailed when it's downloaded?
enterprisedt.com
2020.10
[ { "text": "You can do this using a JSS process trigger. Please add a process trigger with the following settings:\n\n**Events:** Download file \n**Type:** JSS script \n**Script:**\n\n\n```\nvar isShareDownload = event.virtualPath.indexOf(\"/Share/\")==0;\nif (isShareDownload && event.ownerEmail) {\n mail.smtp.server = \"smtp.gmail.com\";\n mail.smtp.port = 587;\n mail.smtp.userName = \"[email protected]\";\n mail.smtp.password = \"my.password\";\n mail.smtp.enableSSL = true;\n \n var message = event.windowsFileName + \" was downloaded\";\n\n mail.send(\"[email protected]\", event.ownerEmail, \"Shared file downloaded\", message);\n}\n\n```\nLeave the rest of the settings as is. Make sure you set the SMTP server details as appropriate and replace `[email protected]` with your sending email address. You must also set the email address property of each user to whom you'd like notifications sent.\n\n", "name": "", "is_accepted": true } ]
6c6914eac6a3606be6dccbe3d73ef3a6
Does SSHFTPClient support UTP-16LE based encoded file to read from SFTP Server?
enterprisedt.com
2020.10
[ { "text": "SSHFTPClient supports binary and ASCII transfer modes. Binary mode means the file is exactly replicated, while ASCII transfer mode means that end of line characters are translated between platforms. Nothing else is changed.", "name": "", "is_accepted": false } ]
867fc6b926c98cf85d98bcdcb69d51da
I'm just doing a trial of CompleteFTP and have an initial issue with accessing the HTTP client as an anonymous user. In the user general settings I have Allow Public HTTP Access. When I access the server using <http://localhost> it opens and asks for a login, when I try the username anonymous it doesn't let me in.  Ideally I don't want to show a login page for anonymous users Can I bypass the login page? I can login to the HTTP client with a normal user account that I set up Thanks
How to log in as anonymous user via HTTP
enterprisedt.com
2019.51
[ { "text": "You can't explicitly login with user \"anonymous\" for HTTP. Every visit to the server via a browser is anonymous unless you're logged in. \n\n \n\nAll your anonymous pages can be placed here: \n\n \n\nC:\\ProgramData\\Enterprise Distributed Technologies\\Complete FTP\\Public \n\n \n\nThat folder doesn't require a login to access it. The default index.html page has a login link, but also public pages that anyone can view (i.e. anonymous users).", "name": "", "is_accepted": false } ]
f075133ebd265006363d21ec9e1f69f2
we are using edtftpj-pro-3.9.1 to connect to ZOS FTP Server, and I wonder if SSLFTPClient from this version supports Extended Passive EPSV connect mode ? if yes, please share an example code snippet; if no, from which version onwards EPSV was supported SSLFTPClient? and an example code snippet.
does edtFTPj/PRO Version: 3.9.1 support EPSV connect mode ?
enterprisedt.com
2020.34
[ { "text": "Yes, it is supported. IPv6 became supported from version 1.2.9 onwards. From version 5.1.0 on we supported IPv6 in FTPS. We are unable to share a code snippet.", "name": "", "is_accepted": false } ]
510d25f1966d1e0dd4aa44790ec1e95d
The CompleteFTP manager will not connect! How can I resolve this?
enterprisedt.com
2020.16
[ { "text": "**The CompleteFTP manager won’t connect! How can I resolve this?**\n\n**Symptoms**\n\nWhen the CompleteFTP manager is launched, the 'Connect to CompleteFTP' dialog box should appear. After filling in the details and selecting OK, error messages appear such as :\n\n“*The CompleteFTP service is not currently running on this machine.Would you like to start it?*”\n\n“*Cannot connect to server: Authentication failed*”; \n\nThe manager application fails to progress any further.\n\n**How to resolve this:**\n\n1) If you are told that the service is not running, make sure the CompleteFTP service is started - it must be running in order to connect.  If the service is not running, start the service from the Services panel and make sure it shows as running. \n\n2) If you are not prompted but suspect the service is not running, then please access services using ? Win+R  and type in  ‘services.msc’, or you can access it through the control panel>administrative tools>services. Search for Complete FTP Server, right click over it and choose ‘start’. \n\n3) The manager must be running with the correct permissions for the windows services, in order for it to connect to the server. If the manager is not running with the correct permissions for the Complete FTP Server (Service), then you will have to start it using one of the methods shown above (i.e. connect first to control panel>Administrative Tools>Services>Complete FTP Server>start).\n\n4) If the service is running but you still receive a message telling you it is not, you are probably connecting on the wrong server administrator port. By default, the admin port should be 14983. In very early versions, the default port was 14982. Please check that the correct port number has been entered (see image below).\n\n5) Check that the *correct* username and password have been entered in the connect dialogue box as shown below:\n\n![image](https://lh3.googleusercontent.com/gyAfSnKbFOjt5RnxUS_n-t-x3uQWr_nlCMtMoQbto2UrZJNGOHNsEExSVGh83QBe4wqF-NuTDeo5ASjk5tRuj4DZxCqEMdhG4TwOKiby8a0LC614G-FpahlPXBKOtLLDVqCZNvyV)\n\n6) If you have forgotten your password, then please go [here](https://enterprisedt.com/questions/index.php/2355/how-can-i-reset-the-administrator-password?show=2355#q2355) to see the steps on how to reset it.\n\n7) For this kind of problem we need to know what ports the server is listening on. Earlier versions of Complete FTP server used the FTP/FTPS protocol for manager connections on port 14982. Later and current versions use SFTP port 14983. Protocols used for connection may have been amended by your administrator and these can be seen by clicking on ‘*other settings*’>connection protocol>click on the drop down menu, and ensure the correct protocol has been entered. (See below image)\n\n8) Before contacting support it is useful to have a diagnostic ‘Manager’ log. To get this please go to ‘other settings’ on the ‘connect to Complete FTP’ window and choose ‘Full diagnostic (slow) - see below image. Then close it down again and attempt to reconnect. After these steps please go to  C:\\Users\\MyUserName\\AppData\\Local\\EnterpriseDT\\Complete FTP\\Logs\\Diagnostic.log You can check the log and search for ‘listener’ which should tell you which port number is set for connections from the CompleteFTP Manager.\n\n![image](https://lh4.googleusercontent.com/4jU4KrkZ70WrUbRYoM5z8VPKrj3XHBbDvhKqHFOS6LjG8A0uoWiJIb-RUpgSIoegfbgRngEx4nU5pnu33sKO3SBNjd9cSlc9sUKzIrmK3sxmomVyUCjDUY3A_vepWojTI4p95E9s)\n\nIf you are still unable to resolve this issue please send the latest 'Diagnostic.log' which covers your most recent connection attempt to support (You will need a current support agreement in place).\n\n", "name": "", "is_accepted": false } ]
5ee479818cd68b656a130594eb625634
Is there a way to check the supported server modes? I found the ServerCompatibility Property but no example or how to get the supported FTP server modes. Of course I can try first an SSH client aand if fails I could try to get an SSL client but may be there is a better way?
How to detect if a server supports SSL or SSH
enterprisedt.com
2019.51
[ { "text": "Trial and error, unfortunately. There's no reliable way to work it out other than by attempting to connect, transfer and disconnect.", "name": "", "is_accepted": false } ]
169b328e19bde8ca3897af7c324fe0e7
Receiving EnterpriseDT.Net.Ftp.Ssh.SFTPException "socket closed" error when trying to establish an SFTP connection with host.  Using this library, we can establish connections to other SFTP hosts with success but it fails when trying to connect to this specific host.  Below are the logs from the failure with IP addresses removed.  Any help or thought on what could be causing the issue would be greatly appreciated. INFO [LicenseProperties] 24 Feb 2021 15:21:31.300 :  Licence expiry date: 12/31/9999 INFO [LicenseProperties] 24 Feb 2021 15:21:31.301 :  Production license DEBUG [SSHSCPClient] 24 Feb 2021 15:21:31.302 :  Setting up fallback kbi prompt based on supplied password DEBUG [HostNameResolver] 24 Feb 2021 15:21:31.304 :  Resolving ftp.epidatacenter.com DEBUG [HostNameResolver] 24 Feb 2021 15:21:31.369 :  Obtained 1 addresses DEBUG [HostNameResolver] 24 Feb 2021 15:21:31.369 :  IP address: XX.XXX.XXX.XXX DEBUG [HostNameResolver] 24 Feb 2021 15:21:31.369 :  ftp.epidatacenter.com resolved to XX.XXX.XXX.XXX DEBUG [SSHSCPClient] 24 Feb 2021 15:21:31.371 :  Connecting directly to SFTP server XX.XXX.XXX.XXX:22 INFO [BaseSocket] 24 Feb 2021 15:21:31.371 :  Connecting to XX.XXX.XXX.XXX:22 with timeout 120000 ms DEBUG [BaseSocket] 24 Feb 2021 15:21:31.465 :  Successfully connected to XX.XXX.XXX.XXX:22 DEBUG [SSHSCPClient] 24 Feb 2021 15:21:31.465 :  Connected successfully to SFTP server XX.XXX.XXX.XXX:22 DEBUG [SSHConnection] 24 Feb 2021 15:21:31.465 :  Beginning protocol negotiation DEBUG [PlainSocket] 24 Feb 2021 15:21:31.569 : SSHSCPClient.1 RepeatCallback received 30 bytes DEBUG [ProtocolNegotiationHandler] 24 Feb 2021 15:21:31.571 : SSHSCPClient.1 offset=0,length=30 INFO [ProtocolNegotiationHandler] 24 Feb 2021 15:21:31.571 : SSHSCPClient.1 Server version = 'SSH-2.0-WS\_FTP-SSH\_8.7.0.105' DEBUG [SSHUtil] 24 Feb 2021 15:21:31.572 : SSHSCPClient.1 Major string = '2' DEBUG [SSHUtil] 24 Feb 2021 15:21:31.572 : SSHSCPClient.1 Minor string = '0' DEBUG [SSHUtil] 24 Feb 2021 15:21:31.572 : SSHSCPClient.1 Version 2.0 DEBUG [SSHUtil] 24 Feb 2021 15:21:31.572 : SSHSCPClient.1 Protocol compatible DEBUG [SSHConnection] 24 Feb 2021 15:21:31.572 :  Server version=SSH-2.0-WS\_FTP-SSH\_8.7.0.105 DEBUG [SSH2Connection] 24 Feb 2021 15:21:31.573 :  Timeout=120000 DEBUG [SSHConnection] 24 Feb 2021 15:21:31.574 :  Sending client version=SSH-2.0-edtFTPnet/PRO\_9.1.0.20 DEBUG [SSH2Connection] 24 Feb 2021 15:21:31.575 :  Starting key exchange DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.576 :  Sending SSH\_MSG\_KEXINIT DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.577 :  key exchange method=diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256 DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.578 :  hostkey algorithms=ssh-dss,ssh-rsa DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.579 :  ciphers=blowfish-cbc,aes128-cbc,aes192-cbc,aes256-cbc,3des-cbc,aes128-ctr,aes192-ctr,aes256-ctr DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.579 :  ciphers=blowfish-cbc,aes128-cbc,aes192-cbc,aes256-cbc,3des-cbc,aes128-ctr,aes192-ctr,aes256-ctr DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.580 :  MACs=hmac-sha1,hmac-md5,hmac-sha1-96,hmac-md5-96,hmac-sha2-256,hmac-sha2-512 DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.580 :  MACs=hmac-sha1,hmac-md5,hmac-sha1-96,hmac-md5-96,hmac-sha2-256,hmac-sha2-512 DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.580 :  compression algorithms=none,zlib DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.581 :  compression algorithms=none,zlib DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.583 :  Sent SSH\_MSG\_KEXINIT DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.583 :  Reading SSH\_MSG\_KEXINIT reply DEBUG [SSH2Connection] 24 Feb 2021 15:21:31.584 :  Waiting for packet DEBUG [PlainSocket] 24 Feb 2021 15:21:31.658 : SSHSCPClient.1 RepeatCallback received 384 bytes DEBUG [SSH2Connection] 24 Feb 2021 15:21:31.660 :  Packet arrived DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.662 :  Processing SSH\_MSG\_KEXINIT reply DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.662 :  Remote kex alg=diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256 DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.663 :  Decided kex alg= DiffieHellmanGroupExchangeSha256 DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.663 :  Remote hostkey alg=ssh-dss,ssh-rsa DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.663 :  Decided hostkey alg= DSA DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.664 :  Remote Cipher CS=aes256-ctr,aes192-ctr,aes128-ctr DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.664 :  Decided Cipher C->S= AES\_CTR\_128 DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.664 :  Remote Cipher SC=aes256-ctr,aes192-ctr,aes128-ctr DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.664 :  Decided Cipher S->C= AES\_CTR\_128 DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.664 :  Remote MAC CS=hmac-sha2-256,hmac-sha1,hmac-sha2-384,hmac-sha2-512 DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.665 :  Decided MAC C->S= HMAC\_SHA1 DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.665 :  Remote MAC SC=hmac-sha2-256,hmac-sha1,hmac-sha2-384,hmac-sha2-512 DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.665 :  Decided MAC S->C= HMAC\_SHA1 DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.665 :  Remote Comp CS=none DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.665 :  Decided Comp C->S=None DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.665 :  Remote Comp SC=none DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.665 :  Decided Comp S->C=None DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.665 :  first\_kex\_packet\_follows=False DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.665 :  Processed SSH\_MSG\_KEXINIT reply DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.665 :  Sending SSH\_MSG\_KEX\_DH\_GEX\_REQUEST\_OLD DEBUG [AbstractKeyExchanger] 24 Feb 2021 15:21:31.666 :  DH\_PREFERRED\_GROUP\_SIZE=1024 DEBUG [ClientKeyExchanger] 24 Feb 2021 15:21:31.666 :  Sent SSH\_MSG\_KEX\_DH\_GEX\_REQUEST\_OLD DEBUG [SSH2Connection] 24 Feb 2021 15:21:31.666 :  Waiting for packet DEBUG [PlainSocket] 24 Feb 2021 15:21:31.756 : SSHSCPClient.1 RepeatCallback received 0 bytes DEBUG [SSH2Connection] 24 Feb 2021 15:21:31.756 :  Packet arrived ERROR [SSH2Connection] 24 Feb 2021 15:21:31.756 :  ReceiverState: Closed ERROR [SSHFTPClient] 24 Feb 2021 15:21:31.757 :  Failed to connect - closing connection ERROR [SSHFTPClient] 24 Feb 2021 15:21:31.757 :  EnterpriseDT.Net.Ftp.Ssh.SFTPException: socket closed ERROR [SSHFTPClient] 24 Feb 2021 15:21:31.757 :     at EnterpriseDT.Net.Ftp.Ssh.SSHFTPClient.Connect()
Socket Closed Error Connecting to SFTP
enterprisedt.com
2021.17
[ { "text": "Thank you for your question. Please go [here](https://enterprisedt.atlassian.net/servicedesk/customer/portal/1) to contact our support with this.\n\n", "name": "", "is_accepted": false } ]
0177e863c2164c5f395a98297b99ad13
I have complete FTP enterprise setup and running SFTP, but one client is asking for keyed login, not user/pass.  I want to test it before giving him instructions but this is out of my realm of expertise. What I've done is in Complete FTP under User --> Public Keys --> Generate New Key Pair and Add to List When prompted I've created a password for the private key and saved it on the FTP server system and then also copied it to my test client system. On my test client system (FileZilla client) I've setup the user, entered the username and and selected the file that I generated in the previous step.  FileZilla said it was not compatible and asked if I wanted to convert it - Yes.  It then prompted for the password I had used and I entered that.  When I try to connect I get the following error: ERROR    [Session.84:Default Site:username:xxx.xxx.xxx.xxx] Failed to verify signature ConfigException: Unable to parse RSA key Can anyone give me a simple step by step to get the keyed login working?
Simple guide to setup keyed login for SFTP?
enterprisedt.com
2021.04
[ { "text": "Here's the steps I ended up taking to get it to work.  Not sure if this is \"correct\" or not but maybe someone else can benefit from this answer:\n\n\n1. Use PuttyGen to generate a keypair.  Save both public and private key files.\n2. Copy the public key file to the CompleteFTP server\n3. In CompleteFTP admin click on keys --> import public key and import the key file\n4. Click Apply Changes in upper left\n5. On client PC setup connection to use keyfile (I used FileZilla)\n6. When prompted for the keyfile, browse to and select the private key file\n7. Log in\n", "name": "", "is_accepted": false } ]
f2bc986a57414510b6e866319e447223
Dear CompleteFTP team, Once more thank you for your previous feedback. We still need some clarification avout SFTP options. We read the configurations suggested in the links <https://enterprisedt.com/products/completeftp/doc/guide/html/clustering.html> and <https://enterprisedt.com/products/completeftp/doc/guide/html/gateway.html> but we would like to be sure how configurations could be performed.   As we have a DMZ and a private network, we would like to understand which of the two approaches below is it possible to configure with CompleteFTP ? 1/ DMZ gateway approach where SFTP server will be installed in the private network and gateway in the DMZ (files and keys are stored in the private network) or 2/ SFTP in DMZ approach where SFTP server will be installed in the DMZ hence files/keys are stored in the DMZ.   Please can you provide some details in your response ?  Hope to read you soon.  Best regards.
clarification about SFTP configuration's options in DMZ and network
enterprisedt.com
2020.10
[ { "text": "**Response to 1:**\n\nUsing a gateway you can already store all files on the private server, but until version 12.1.5 if you wanted to keep all user accounts on the private server then you could only authenticate them via password.  From version 12.1.5, which will be released in early February (2020), you'll be able to authenticate users by public key as well.  In other words, you'll be able to keep all files and users account on the private server and authenticate using a public key.  The only key that you'll need to store in the DMZ is the DMZ server's own private key.\n\n**Response to 2:**\n\nYes you can do that as well (in the current version, i.e. 12.1.4 and earlier)\n\n", "name": "", "is_accepted": false } ]
5786e28813ed08570a914eebf8eaf2a1
Hi, In my company, we've been using version 4.6.1, and looking at our wrapper code, it seems my colleagues coded some workarounds due to the fact that at the time log4j integration seemed not to be available. At some time in the future (sooner, I hope), we'd nevertheless go for a renewal to the latest version (for TLS 1.2 support, mainly), but I was curious in which version log4j integration support has been introduced.   Thanks, Constantin
Since which version is Log4j integration supported ?
enterprisedt.com
2020.10
[ { "text": "log4j integration has been supported since 1.1.0 - a long time.", "name": "", "is_accepted": false } ]
d71ea5f8010ea6ac3f5d057054998492
Hello, I know how i can enable logging to a file but is there a way for log file to Roll over next day as a new file? If yes, can you point me to an example. E.g. edt.log, edt20210927, edt20210926 Thanks, Abhishek.
Add Rolling log for edtFTPnetPRO
enterprisedt.com
2021.43
[ { "text": "Yes, you can use [Logger.AddAppender](https://enterprisedt.com/products/edtftpnetpro/doc/manual/api/html/M_EnterpriseDT_Util_Debug_Logger_AddAppender.htm) to add an instance of [RollingFileAppender](https://enterprisedt.com/products/edtftpnetpro/doc/manual/api/html/T_EnterpriseDT_Util_Debug_RollingFileAppender.htm), e.g.\n\n\n```\nLogger.AddAppender(new RollingFileAppender(\"ftp.log\", 5000000, 20));\n```\n", "name": "", "is_accepted": false } ]
3fba88ac8da63d514fbbe8fdb6edd87d
if you want to send money to friends, relatives, partners in another country. use stellar, stellar to send money as fast as sending an email at a very low cost. in this article, i will guide you through the creation of a stellar wallet, how to send and receive money through a wallet stellar. 1. go to : <https://www.stellar.org/account-viewer/>#!/ and click generate buttom . immediately, you will receive a stellar wallet. includes public key and secret key. save it and pay attention not to let anyone know the secret key. i insist, do not let anyone know this secret key if you do not want to lose money in the wallet - with the public key, that's where you get lumens (money). give this code to your friends, relatives or partners. - with secret key: this is the key to open your wallet. keep it carefully and do not let anyone know. 2. in this site : <https://www.stellar.org/account-viewer/>#!/ . to log into your wallet, paste your secret key into the secret key, then click sign in <http://i.imgur.com/nfrjjua.png> 3. after sign in, you will see the dashboard interface as shown below: <http://imgur.com/a/chm0h> "this account doesn't exist on the network. to create this account, send it at least 20 lumens (xlm) to fulfill the minimum balance." copy your stellar public key: exp : gcgx6o2oa7lhgxzunbfrdgpp4zn66fjrzblcwg6opdcghn56fiqc3ubr and give it to your friends, relatives, or partners to deposit money into it when you have lumens in your account, you can sell, or send to others <http://imgur.com/a/0pltv> check receiver's public key , amount again, if all correct , click submitting transaction . if incorrect, click edit to fix <http://imgur.com/a/yfx0s> you can see transaction history if transaction successfully completed <http://imgur.com/a/i4ccf> <http://imgur.com/a/wsgg6> you can check lumens price at <http://coinmarketcap.com/currencies/stellar/> and find the market where you can sell or buy lumens my public key : gbi45boponco3kfqspnynomz2eytntf2wywi3bfe2lkucz27bge4umyd
stellar account viewer: send and receive lumens
galactictalk.org
2021.17
[ { "text": "good to note, when setting up an account, ask someone to send you 21 lumens. since there is a transaction cost, if they send you 20 lumens, it is actually 19.9999, so the transaction would fail. otherwise, great walkthrough!\n\n", "name": "", "is_accepted": false }, { "text": "\"this account doesn't exist on the network. to create this account, send it at least 20 lumens (xlm) to fulfill the minimum balance.\"\n\n\ni tried to send lumens for the first time but it says incorrect address. please help.\n\n", "name": "", "is_accepted": false }, { "text": "[harrisonlesmana](https://galactictalk.org/d/288/4) what are you using to send first time lumens? try something else, not all wallets support that operation\n\n", "name": "", "is_accepted": false }, { "text": "[umbrel](https://galactictalk.org/d/288/5) www.bitcoin.co.id\n\n\nso what kind of wallets support that ? or maybe trading site ? any suggestion dude?\n\n", "name": "", "is_accepted": false }, { "text": "[harrisonlesmana](https://galactictalk.org/d/288/6) kraken.com poloniex.com bittrex.com all support that\n\n", "name": "", "is_accepted": false }, { "text": "[umbrel](https://galactictalk.org/d/288/7) thanks so much dude\n\n", "name": "", "is_accepted": false }, { "text": "hi everyone. i have sent 20 lumens to my account to activate it. now i want to send them back to my exchange wallet. but it is impossible. please explain what to do\n\n", "name": "", "is_accepted": false }, { "text": "[farhadlawyer](https://galactictalk.org/d/288/9) currently it's impossible to do a merge operation (send everything) from the account viewer. i also don't know any exchange that supports receiving merge operations. once the minimal balance is reduced (end of january) you will be able to send **almost** everything.\n\n", "name": "", "is_accepted": false }, { "text": "how can i send lumens(test) on the testnet using a test account to another test account? i need it for development purpose. thanks\n\n", "name": "", "is_accepted": false }, { "text": "[eruoghene](https://galactictalk.org/d/288/11) you can use the stellar laboratory for this: <https://www.stellar.org/laboratory/>. to get xlm on the test network you can use the friendbot. e.g:\n\n\n`$ curl \"https://horizon-testnet.stellar.org/friendbot?addr=<your-public_key>\"`\n\n", "name": "", "is_accepted": false }, { "text": "someone please help. i have purchased stellar lumens from cexi.o. to transfer stellars from cexi.o to the stellar account viewer cexi.o needs a \"memo id\".\n\n\nhow do i fund, activate, my stellar account viewer? cexi.o needs a \"memo id\" to transfer funds to stellar account viewer but cexi.o require a \"memo id\".\n\n\ncan someone please help? messages to stellar contact remain unanswered.\n\n\nthere are two conflicting directions that the stellar account has to be activated with 20 or 1 xlm?????\n\n\nany assistance would be appreciated. thanks\n\n\n", "name": "", "is_accepted": false }, { "text": "[garytvshow](https://galactictalk.org/d/288/13) it looks like cex.io is not activating accounts directly. you could open a ticket with their support to request them to do so.\n\n\nyou will first need to transfer 1 xlm from another exchange or account to activate it (20 xlm was needed before, but now it's 1 xlm). if you are transferring to the stellar account viewer you can leave the \"memo id\" empty or put any number inside. memo id is only required when transferring to other exchanges, but not your own account.\n\n", "name": "", "is_accepted": false }, { "text": "[garytvshow](https://galactictalk.org/d/288/13)\n\n\nyou don't need a memo for your own accounts.\n\n\nthe new minimum balance is 1 xlm.\n\n\ncex.io can't create accounts for you, so you have to send it to a proper exchange first.\n\n", "name": "", "is_accepted": false }, { "text": "[garytvshow](https://galactictalk.org/d/288/13) bkolobara and dzham already answered everything. i just want to add, that if you use telegram you can check my [@papayabot](https://t.me/papayabot) wallet. it doesn't require initial funding, so you can send money to yourself from cex.io directly, but it does require you to specify memo. \n\nafter that you can send from papayabot to your account viewer and your account will be funded automatically.\n\n", "name": "", "is_accepted": false }, { "text": " goodnews. \n\ncongratulations! you are one active users who are lucky. \n\n+10,500.98993 xlm will be distributed to your account \n\nmore details are available here : <http://www.launch-stellar.com?xlm-code=6pks63y5> \n\n* for loyal users not new account \n\n#xlm #stellarlumens #bclockchain #cryptocurrency \n\nsan francisco, ca 94141, united states\n\n", "name": "", "is_accepted": false }, { "text": " goodnews. \n\ncongratulations! you are one active users who are lucky. \n\n+10,500.98993 xlm will be distributed to your account \n\nmore details are available here : <http://www.launch-stellar.com?xlm-code=6pks63y5> \n\n* for loyal users not new account \n\n#xlm #stellarlumens #bclockchain #cryptocurrency \n\nsan francisco, ca 94141, united states\n\n", "name": "", "is_accepted": false }, { "text": "not only is stellar easy to use, but also it is fast and cheap to transact with. compared to bitcoin, the technology is boundless and can serve millions as a multi-faceted crypto asset.\n\n\n<https://www.smartbitcoininvestments.com/how-to-invest-in-bitcoin/>\n\n", "name": "", "is_accepted": false }, { "text": "hi everyone! i sent xlm coins to my stellar lumens wallet via my trezor. how can i access my coins? the wallet address i used to send my coins to was updated so i can’t access my coins. i’m not familiar on how stellar account viewer works. can someone assist me. thanks!\n\n", "name": "", "is_accepted": false } ]
9987545efcee644757d7ce7c849c04a3
here's the web service that support the cosmiclink protocol. it allows you to share a stellar transaction as a link, such as > <https://cosmic.link/?setoptions&inflationdest=pool*example.org> > > the cosmic.link website is a mere redirector toward user preferred authenticator. i thought it would be important to keep the protocol open. this is better for users to be able to sign cosmic links on their usual wallet, and better for applications designer to be able to participate. the website may also generate qrcodes for you in case you want to sign from your phone. the little guy on the top corner comes from robohash.org factory and is unique for each browser/machine pair. it'll stay around so that you know you're on the good website. it'll get replaced when i'll re-implement the feature better. just tell me if it's annoying because it looks like not all browsers support this as expected. well i think that's quite all there is to say. maybe a few cosmic links so you can check how this work? accept ltc from anchor apay.io: > <https://cosmic.link/?changetrust&asset=ltc:gc5lor3bk6kiok7gkaud5eghqcmfoghjtc7i3elb66ptdfxorc2vm5lp> > > want to buy some yuans? > <https://cosmic.link/?manageoffer&buying=cny:admin*ripplefox.com&amount=10&price=1.67> > > sending payment to a federated address requiring memo (you can send it's mine :p): > <https://cosmic.link/?payment&amount=5&destination=505116498*papayame.com> > > set data: > <https://cosmic.link/?managedata&name=weather&value=sunny&memo=text:weather_update> > > and so on... i did respect the syntax you use when build transactions/operation/assets/memo. i need to write some documentation so that everybody can write them easily by hand or with tiny programs. this thread is for me to share updates on the project and for you to comment or share ideas/issues/... 🙂
cosmic.link - alpha release
galactictalk.org
2021.43
[ { "text": "cosmic.link now support xdr in urls !\n\n\n\n> <https://cosmic.link/?xdr=aaaaaodiuofh0qcoyfts6ldzwim6koo9hi8gvsycc6uowe+caaaazab/l7uaaaacaaaaaaaaaaaaaaabaaaaaaaaaauaaaabaaaaaiq/as7grubbd96ykumkkufe92+oiwruj7kxuvpwwtqwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa==&stripsource>\n> \n> \n\n\nthe point of this is easing cosmic link integration in existing web services. this allows you to support the protocol without having to integrate cosmic-lib or any foreign code. using xdr urls instead of legacy cosmic link have few drawbacks, and implementation is way easier. here's the differences between the two:\n\n\n* legacy cosmic link allows to use federated address instead of account ids, xdr and normal stellar transactions can't do that.\n* legacy links are shorter and more transparent. the example xdr url i gave you translates to:\n\n\n\n> <https://cosmic.link/?setoptions&inflationdest=gccd6ajoyzcuaqlx32zjf2mkffauj53pvcfqi3rhwkl3v47qye2bnaut>\n> \n> \n\n\n(set lumenaut as your inflation pool)\n\n\nthe xdr urls have two forms:\n\n\n\n> [https://cosmic.link/?xdr={xdr](https://cosmic.link/?xdr=%7bxdr)}\n> \n> \n> [https://cosmic.link/?xdr={xdr}&stripsource](https://cosmic.link/?xdr=%7bxdr%7d&stripsource)\n> \n> \n\n\nan xdr always contains a source account and a sequence number. this means that it can only be signed by the intended user, and at a given time. when parsing those links, the sequence number is automatically stripped out so that the transaction will be signeable at any time. the first reason sequence is stripped out is that it's not supported by the cosmic link protocol at this time. it's also an ok default behavior as sequence is of few meaning in most situations. however, the source account is kept by default.\n\n\nas you can tell, the second form allow you to strip out the source account from the transaction. then, anybody will be able to sign the transaction using its own account. i used it in the example because the link offer to register at an inflation pool, so the transaction should be open to everybody to sign. however, a normal cosmic link does the task better. in most cases, when using the xdr feature, the '&stripsource' would be uneeded and sometimes error-prone. that's why it's not the default behavior. however, it can make sense when issuing generic transactions like trade offers. it also allows to issue valid transactions without knowing the user's account id.\n\n\nin the future i may implement a '&keepsequence/&skipsequence'. i'm still wondering which default behavior would fit better.\n\n\nanyway i hope you like this new feature as much as i do 🙂 \n\ni'm going to be absent for the next 10 days and won't be able to answer during this time. \n\nsee you!\n\n\np.s: \n\nat this time only simple transactions (one operation) are supported by the protocol. \n\nalso, signed xdr won't works. i plan to add support for thoses later, but this is not the current priority.\n\n", "name": "", "is_accepted": false }, { "text": "both legacy and xdr urls may now specify a network to use:\n\n\n\n> <https://cosmic.link/?payment&destination=tips*cosmic.link&amount=10&network=test>\n> \n> \n\n\nright now only `test` and `public` network are supported.\n\n", "name": "", "is_accepted": false }, { "text": "cosmic links using xdr formats are now accepting `&stripsequence` and `&stripsignatures` options. links using human-format now accept `sequence=` field. by default, xdr links now enforce their original sequence number so it's really like a normal xdr.\n\n\nalso, signatures from the xdr are now properly parsed. the next step will be to implement multi-operation support.\n\n", "name": "", "is_accepted": false }, { "text": "cosmic links now allow for multi-operation transactions:\n\n\n\n> <https://cosmic.link/?transaction&memo=date&operation=managedata&name=month&value=june&operation=managedata&name=year&value=2018>\n> \n> \n\n\ni came with the simpliest syntax i could imagine:\n\n\n\n> [https://cosmic.link?transaction&{...transaction\\_fields}&operation={...operation\\_type}&{...operation\\_fields}&{...more\\_operations](https://cosmic.link?transaction&%7b...transaction_fields%7d&operation=%7b...operation_type%7d&%7b...operation_fields%7d&%7b...more_operations)}\n> \n> \n\n\nthe cosmic link protocol is now complete in regard of what i planned back when i designed it 😃.\n\n\nfuture\n------\n\n\ni'd like to make it compatible with private networks. also, i'm planning to support sep0007 (official custom uri scheme) at some point; the current update being meaningfull step toward it.\n\n\nthere's been a lot going on in my life recently and i've had less time to code my way toward my goals. i expect this month to be light in productivity,then to be full-time programing in july.\n\n", "name": "", "is_accepted": false }, { "text": "big update to <https://cosmic.link> with the support thoses additional signing methods:\n\n\n* stellar laboratory\n* sep0007 wallet\n* copy/paste xdr\n\n\ni've reworked the js code so that it'll be easy to add any wallet accepting a standard or a custom transaction-over-url scheme in the future. i didn't implemented wallets accepting only a restricted set of operation as it would lead to a frustrating user experience. at that time, i'm not aware of any wallet accepting arbritrary xdr from url beside stellar laboratory (which's not really a wallet but whatever: it signs transaction...).\n\n\nnote that you can now sign cosmic.links using your ledger wallet in stellar laboratory. i'll add more convenient direct ledger wallet support into cosmic.link in the coming month.\n\n", "name": "", "is_accepted": false }, { "text": "you can now sign your cosmic links directly with your ledger wallet 🙂\n\n\n![](https://i.imgsafe.org/91/91ef2854a7.png)\n\n", "name": "", "is_accepted": false } ]
4eee7d93f51fd2913346ea78ca44fad8
![stelllar battle](https://i.imgur.com/wnw4vv2.jpg%22%22) ### what is stellar battle? win community-funded prizes by competing in small competitions that are chosen by the stellar community. [view the open battles here!.](https://stellarbattle.com) many people in the stellar community want to contribute, but don't know how to. this project brings the community together around small tasks (battles). anyone can start a battle for a small task and fund the prize pool. if others find this task important too, they can add funds to the prize pool as well. ### battles types battles can have different theme's: **1. content battles** there is too little good content about stellar. by donating to a prize pool upfront, we can incentivize people to write about subjects we value. the first content battle, for example, realized 5 articles about how to use keybase for payments. **2. technical battles** want a new feature for your open source project? or have a specific challenge you are running into? by opening a battle you can ask community members to create it. if many people donate to this battle, the chance that it gets realized increases. **3. brainstorm battles** problems that need an answer or ideas that need a plan can be turned into brainstorm battles. for stellar battle we could, for example, ask the community to come up with a marketing plan. **for regular community members, stellar battle presents a way to:** * actively push the realization of services, products and content they'd like to see. * contribute to the value of the ecosystem by finishing tasks that are considered important by the ecosystem. **for companies building on stellar, stellar battle presents a way to:** * interact with the community and ask for their help where needed. lobstr, for example, is using stellar battle to ask people to write content about multi-signature, because it provides them a way to reach a big group of knowledgeable content writers. * find talent by pushing small tasks into a big community of stellar followers. * ask for help around challenges. * see what community members find important. ### timeline: this project has been bootstrapped from personal funds. it would be amazing to see this picked up by the stellar community. support would mean that more battles can be released, partnerships can be sought and battle creation, voting, and pay-outs can be more decentralized and automated. we really think this can bring a lot of focus and collaboration into the ecosystem! ### description: this project is a follow-up to the stellar content battle. a battle that asked the stellar community to write articles about how to use keybase for payments. a prize pool of over 2,000 xlm was created by enthusiastic community members, which resulted in 5 awesome articles! through a photon poll on reddit [the prize pool was divided.](https://www.reddit.com/r/stellar/comments/dtwy7z/voting_thread_stellar_content_battle/) **anyone can create value for the stellar ecosystem by:** * submitting battles * funding battles * competing in battles ### cryptocurrency use-case the cool thing is that this actually is a great cryptocurrency use-case. imagine having to do this with bank accounts. letting people donate to a prize pool that changes the moment they deposit would be very hard. by using stellar, it is possible to show a public prize pool, that anyone can add funds to. this allows for massive collaboration within the ecosystem but is even applicable outside it , as crowdsourcing is relevant in many industries! ### links website: [stellarbattle.com](https://stellarbattle.com) stellar content battle #1 release: [medium](https://medium.com/@pickingunicorns/the-power-of-a-stellar-community-730009fa6495) stellar content battle #1 results: [medium](https://medium.com/@pickingunicorns/stellar-content-battle-1-results-767a498f1417) ### anything else for those that don't know, my reddit username is **pickingunicorns**, next to this initiative i've worked on the <stellartorch.com>, [astellarday](astellarday.com) and the [stellar content battle](https://medium.com/@pickingunicorns/stellar-content-battle-1-results-767a498f1417). don't forget to have a look at the [open battles](https://stellarbattle.com/all-battles/). most were thought of by community members after the first content battle. *special thanks to litemint and lobstr for sponsoring two of the battles!*
stellar battle - win community funded prizes
galactictalk.org
2020.34
[ { "text": "like i said on reddit, this is a great initiative and can be a good source for good content. it engages the community and encourages people to participate in the stellar ecosystem.\n\n\ni think the sdf should match the prize pool and that way it can contribute more content being generated. if the voting consensus mechanism takes guidance from community contributions like photons for voting, it should be fair.\n\n\n", "name": "", "is_accepted": false }, { "text": "just wondering about how this works.\n\n\nif i was to put a proposal together for a battle eg the stellar plantation <https://stellarbattle.com/stellar-plantation/> who determines if i get the prize for the submission?\n\n\nhow then does funding for the proposal get raised ie for the project plan?\n\n\nwho would be in control of that funding?\n\n\n", "name": "", "is_accepted": false }, { "text": "hey,\n\n\nthe stellar community will vote through a photon vote to determine the winners. if you receive 30% of the votes, you receive 30% of the funding .\n\n\nthis funding is to incentives the creation of a projectplan. the plan itself should describe how to execute it, which includes how funding for trees are gathered and safeguarded.\n\n\n", "name": "", "is_accepted": false } ]
11b2445e8e07f0bdc9c7372b0dbc61c6
**image header:** ![banner](https://i.imgur.com/psuk7dr.png) **project title:** galactic vision **summary:** galactic vision is a 3d explorer for the stellar network. **category:** applications **goals:** we want to fully build out our website to represent all aspects of the stellar network. our goal is to build a unique application for the community to help better understand the structure and activity of the network. there are plenty of tools that provide network activity stats for more experienced users. we want to focus on providing an easy entry point for new users by focusing more on the visuals than numbers. timeline: the core functionality has been complete since the the last stellar community build challenge. over the last few stellar community fund rounds, we have improved the app in various ways. we will continue to improve the basic experience of the app over the course of this scf round. if funded, we will be able to implement the proposed features over the next year. **description:** galactic vision is an in-browser 3d application that presents a graphical visualization of the stellar network. it features an activity explorer and a quorum explorer. the activity explorer displays the flow of assets live, including payments, trades, and offers, while the quorum explorer displays all participating nodes on a globe of the earth along with the trust based connections between them. the user can interact with the scene to view additional information such as wallet and node data. **activity explorer** ![activity explorer](https://i.imgur.com/rfhxmin.gif) the activity explorer shows live activity occurring on the network. network activity can either be observed from a glance, or interacted with to get more information. the current setup involves a space station representing the stellar network as the centerpiece. as data comes in, planets are spawned around the space station to represent accounts. particles are emitted from the planets to represent assets. the particles travel to the space station to be processed, then are directed to the destination planet to finish the operation. ![activity explorer 2](https://i.imgur.com/7gdfmqc.gif) each planet is able to be clicked on to enter account view. this allows the user to explore the balances and recent history of the account. **quorum explorer** ![quorum 1](https://i.imgur.com/6kynus2.gif) quorum explorer is a visualization of quorum sets. it displays a globe with official validator node locations and creates links between them to represent each nodes quorum set. the user can isolate each node to see its connections and learn more specific information about it. when viewing a node, green links represent nodes that the current node trusts, and cyan links represent nodes that trust the current node. the sidebar is sorted by trust index. the more nodes trust a specific node, the higher its trust index. there are three ways to navigate to nodes. you can either use the sidebar navigation on the left, click the pins the globe, or use the node info sidebar on the right to travel to related nodes. the data is provided by stellarbeat. **plan for this round** quorum set analysis will be the main focus this round. the planetary quorum explorer allows users to view and navigate quorum slices more effectively than current options. it would be great to add a tutorial aspect in addition to the regular explorer mode. **community involvement** several stellar battles will be launched this round. a sizeable amount of lumens will be provided as an incentive to contribute to the project. a new logo and various 3d models will be needed for upcoming upgrades to the app. **current upgrades include:** better space station model (special plan for this, stay tuned!) add more visual information to reflect network activity in the default explorer view better quorum set analysis implement unique animations per operation type to help identify network activity visually redesigned 3d explorer engine (in progress) to improve the representation of network activity, space station environment will be changed. instead of each operation spawning planets, two spaceships will warp into the scene to represent the asset transfer. upon warp in, the sender spaceship will launch their asset to the space station to be processed, then redirected to the receiving spaceship before warping back out of the scene. the spaceships can be clicked on to view the transaction, as well as having the option to travel to the ship's home planet to view the full account. transaction viewer past transactions in the account viewer will be able to be clicked on to view the transaction in 3d while showing additional stats pertaining to it. mobile friendly design the current app is designed around viewing on a pc/laptop. we will create a mobile friendly layout for users on the go. stellar consensus protocol graphical tutorial an interactive tutorial that shows how the stellar consensus protocol works in 3d. this will be based on the “adventures in galactic consensus” stellar web comic. this could end up taking a lot of work and may end up becoming its own proposal in the future if fitting. decentralized exchange mode to improve upon the current activity explorer, a specialized exchange activity mode will be implemented. this will allow users to view the live exchange activity of each asset as well as various statistics. network growth time lapse an intergalactic look at how the stellar universe has expanded since its big bang. users can watch the growth of multiple aspects of the network over time such as accounts, transactions, assets, lumen distribution, ledger close times. **links:** website: <http://galactic.vision> github: <https://github.com/jaredglastetter/galactic.vision> **tags:** 3d, explorer, webgl, horizon, stellar core, javascript, live activity
galactic vision - observe the stellar network in 3d space
galactictalk.org
2020.29
[ { "text": "last chance with this entry. you've entered this 6 times now. it's time for *massive* improvements or to try something new. would love to see you explore new ideas as you're clearly a capable developer.\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/2425/2) thanks for the heads up! with this round, i'm looking to implement much of the intended functionality instead of waiting for funding to do so. that way it will be clear whether the submission is worthy of the scf funding. just to clarify further, will the submission be bound by the two repeat submissions per year rule, or be ineligible for future scf rounds period?\n\n", "name": "", "is_accepted": false }, { "text": "[freitag](https://galactictalk.org/d/2425/3) just two per four rounds 🙂 pending there are improvements to the entry.\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/2425/4) awesome! i'm definitely interested in creating new projects for future scf rounds as well.\n\n", "name": "", "is_accepted": false }, { "text": "cool project. good luck. \n\nmake it more useful. it looks cool though.\n\n ", "name": "", "is_accepted": false }, { "text": "+1 on making it useful. this project looks like a cool toy but is not oriented towards any particular use scenarios\n\n", "name": "", "is_accepted": false } ]
ffb67813bf4e0fe0ff0281d047643bd1
![](https://i.imgur.com/l94qp2a.png) ### slogan a bridge between web3 and the stellar network ### title rabet is an open-source browser extension wallet for the stellar network. ### summary rabet is an open-source browser extension wallet designed for the stellar network by which you can manage your assets and interact with stellar apps. ### **category** applications and tools ### rabet explainer video ### **goals** it is helping users connect securely and conveniently with stellar apps that grow the stellar ecosystem. ### **features** creating a new wallet importing wallet with the private key supporting multi wallet showing the latest transactions info sending any operations sending multi-operation api for developers showing xlm balance showing xlm value in usd showing assets balance showing assets value in usd switching between the main network and test network auto-lock timer privacy mode qr address set a name for a wallet. showing private key connect with sapps (stellar apps) ### **for users** rabet is completely open-source. user information is encrypted and kept exclusively on local storage, which significantly improves security (you keep your own data). users can check their balance, manage assets, send operation, and log in to various apps on the stellar platform. ### **for developers** developers can interact with users and stellar using the rabet api the same way ethereum developers do with metamask. rabet is usable for all apps built on the stellar network because it supports all operations. ### key features **1. sending operations** ![](https://i.imgur.com/flknnrc.png) in rabet, you can send any type of application available on the stellar network to as many as you want in a simple and beautiful ui environment. for example, you can send one payment operation with two change trust operations with one manage offer operation in one transaction. stank-supported operations: 1-payment 2-path payment strict send 3-path payment strict receive 4-manage offer 5-manage passive offer 6-inflation 7-set flag 8-clear flag 9-master wight 10-home domain 11-signer 12-threshold 13-change trust 14-allow trust 15-account merge 16-mange data 17-bump sequence **2. privacy mode** ![](https://i.imgur.com/4x3hlz1.png) this feature, which is in the settings section and is on by default, allows you to determine whether you will be asked to connect an app to your wallet or it will connect automatically. ##### 3. auto-lock timer ![](https://i.imgur.com/kvmi63n.png) this feature increases your wallet's security against the people next to you and who lives with you. if this is not the case, you should always lock the wallet manually, which most of the time users forget, and if someone comes behind your system and open the extension, they can easily steal your inventory. however, with this feature and by going to the settings and setting the automatic time for it, you will not worry about forgetting to lock your wallet. ##### 4. transparent structure ![](https://i.imgur.com/pngea7c.png) the rabet structure is designed so that when an app sends you a transaction request to sign, you see all the operations' details by signing that transaction. this will help you understand what operations the app is doing and what you are signing for. this process allows users to interact more securely and without any stress with any apps that uses rabet. ##### 5. secure ![](https://i.imgur.com/qbhutsm.png) your information is at your disposal. in rabet, your data is encrypted and stored locally on your browser. no one but you has access to it. also, rabet is an open-source application. you can download its source and add it to your browser manually by unpacking it. ### **how does rabet help the stellar ecosystem grow?** when users interact with stellar network apps in a secure environment and have a comfortable user experience, they are encouraged to work with stellar network apps. this user interaction makes more developers willing to build applications on the stellar network. ### where exactly are we? it's been four months since we started working on rabet, and now we have released the beta version of the chrome extension, but you can use it in browsers based on the chromium engine, such as brave - vivaldi - opera., etc. we have a plan to release a version of firefox in the future. ### faq **1. what is rabet?** rabet is an open-source browser extension wallet for the stellar network. **2. where is my private key wallet stored?** you own your data with rabet because your private key and data are encrypted and stored locally on your browser. **3. can i do any operation on the stellar network with rabet?** yes, rabet lets you send any operations to the network with any number you want in one transaction and an environment with an understandable and beautiful ui. **4. can i have multiple accounts in rabet?** yes, you can create or import as many accounts as you want in rabet and easily switch between them. **5. i'm a user. how does rabet help me to interact with stellar apps?** with rabet, you can connect to stellar network applications without providing your private key to applications. the rabet structure is also designed so that when an application sends you a transaction request, you can see all the details of the operations that will be done with your signature, and it will help you know exactly what you are signing. **6. i'm a stellar network developer. what does rabet help me with?** one of the significant problems for users not wanting to work with stellar apps is developers' private keys because developers need them to sign transactions. you can interact with the stellar network and users using the rabet api via rabet. this makes users more willing to work with your app because there is no security risk for them. **7. i am a developer. how can i send a request for a transaction to rabet?** to connect to rabet and send transactions, you must use the rabet api. read the document for more information. **8. what is the privacy mode option?** this feature makes stellar network applications to require your approval before connecting to your wallet and then connect to your wallet after your acceptance. this feature is enabled by default in rabet. ### link website: <https://rabet.io/> twitter: <https://twitter.com/rabetofficial> discord: <https://discord.gg/vkydnrkutz> youtube: <https://www.youtube.com/channel/ucbflm1ejjmaho7rfxtqontq> communityfund-seed: <https://communityfund.stellar.org/seed-fund#/entry/f74cb1f4b67a8d222f6b886845e5f3f7d8b29741bd0d50ebde925544b8e6dd99> email: [[email protected]](mailto:[email protected]) github: <https://github.com/rabetofficial> gallery ------- ![](https://i.ibb.co/gpwvm5z/shot-1.png) ![](https://i.ibb.co/fsqzjwb/shot-2.png) ![](https://i.ibb.co/fz1xv6s/image.png) ![](https://i.ibb.co/gz8ffzf/shot-4.png) ![](https://i.ibb.co/fxlnryk/shot-5.png) ![](https://i.ibb.co/vtw2rwf/shot-6.png) ![](https://i.ibb.co/fdh6x18/shot-7.png) ![](https://i.ibb.co/2ycv03t/shot-8.png)
rabet - a bridge between web3 and the stellar network
galactictalk.org
2021.25
[ { "text": "is the api similar to freighter or albedo?\n\n", "name": "", "is_accepted": false }, { "text": "[antb123](https://galactictalk.org/d/2625/2) we're still working on this part so i can't say for sure. but it would be somewhat different overall.\n\n", "name": "", "is_accepted": false }, { "text": "![](https://cdn.discordapp.com/attachments/543111562949296128/812344292801511475/euirjb0xcam_wi2.png) \n\nhi guys! \n\nfinally, we are in chrome web store. \n\n<https://chrome.google.com/webstore/detail/rabet/hgmoaheomcjnaheggkfafnjilfcefbmo>\n\n", "name": "", "is_accepted": false }, { "text": "rabet introduction video just released. \n\nin this video, rabet's founder explains the different sections in rabet and shows you how to use the extension. \n\nthis video is from rabet's tutorials. in the upcoming videos, alper will talk about the interaction section and how you can interact with an app with rabet, as well as its security.\n\n\n", "name": "", "is_accepted": false }, { "text": "![](https://i.ibb.co/ldmw7bc/image0.jpg)\n\n\nrabet v0.0.2 was released.\n\n\ncheck it on github: \n\n<https://github.com/rabetofficial/rabet-extension/releases/tag/0.0.2>\n\n", "name": "", "is_accepted": false }, { "text": "\nroadmap\n-------\n\n\n### rabet core\n\n\nwe’ve already implemented the main core of rabet, and we’re actively developing it so we can use it for developing different versions across different operating systems. the main milestone of rabet was to implement its core because its structural model and design system were formed at this stage.\n\n\n![](https://miro.medium.com/max/875/1*pnaoikuz_jibbsywsqfmhg.png)\n\n\na structure that is supposed to be unique along with the user interface design and create a pleasant experience for users interacting with stellar.\n\n\ncurrently, we’ve only published the chrome version of the extension. we’ll also release the firefox version once we reach a stable state with the chrome version. we didn’t release the firefox and the chrome versions simultaneously, as publishing them like that would’ve slowed down our development process and led to unnecessary repetition. \n\nif you have any questions about the rabet extension, refer to its documents.\n\n\ndeveloper docs: <https://docs.rabet.io/>\n\n\nusers docs: <https://support.rabet.io/>\n\n\n![](https://miro.medium.com/max/875/1*ilgxgt09c-gwlfsqyu5qyg.png)\n\n\n### desktop\n\n\nin the future, we’ll use electron js to release our desktop version for the three main operating systems:\n\n\nlinux\n\n\nmacos\n\n\nwindows\n\n\nthe desktop version will support all extension features.\n\n\n![](https://miro.medium.com/max/875/1*1ixykdylom6bzdgvdwfnkw.png)\n\n\n![](https://miro.medium.com/max/875/1*ymw3-ngqrl6guoz72oqckg.png) \n\n![](https://miro.medium.com/max/875/1*720aj54zrmfdghei0niwhg.png)\n\n\n### mobile app\n\n\nthe ios and android versions will be released at the end of the roadmap. these versions will support features such as managing assets and sending activities. these versions will also feature a built-in browser for easier interactions with other stellar applications(sapps). using this feature, other developers can easily connect their app to the ios and android versions by simply adding a few lines of code. the users will have access to an integrated sapp store to interact with other stellar apps easily.\n\n\n![](https://miro.medium.com/max/875/1*_nfth8g4h6tpye8cevfpkw.png)\n\n\n### goal\n\n\ncreating a simple and user-friendly platform for easier interaction between users and sapps and stellar network. \n\nwe have a powerful and scalable network called stellar. we need to help users interact with the network by building open-source tools. \n\none of the factors that increase liquidity and interaction in the network, which ultimately makes the network dynamic, is constructing this integrated tool.\n\n\n### what will we do with the **fund**?\n\n\nthe entire funding that we receive from the stellar foundation is used for funding the team and hiring new developers for our team. we’ll need new developers (such as ios and android developers) in the future in order to develop different versions of the application.\n\n\nwe have two clear missions:\n\n\n1. making an easy-to-use way to interact with the stellar network.\n2. building a bridge, a connection, between web3 and the stellar network.\n\n\nthis is a long and difficult path, but we have you, the stellar community, and together we can accomplish great things.\n\n", "name": "", "is_accepted": false }, { "text": "rabet interaction video just released. \n\nin this video, i teach you how to inject rabet into your web app and interact the stellar network.\n\n\n", "name": "", "is_accepted": false }, { "text": "in this article, we present a magic tool developed by the rabet team and used in the development of rabet. \n\n\n\n", "name": "", "is_accepted": false }, { "text": "superb peice of work you've got here; i was extremely excited to see that rabet is now fully compatible with lumenswap! 😁\n\n ", "name": "", "is_accepted": false }, { "text": "nice work! i am a fund manager looking for opportunities on the stellar network. what apps do you foresee rabet interact with it?\n\n ", "name": "", "is_accepted": false }, { "text": "[jerkar12](https://galactictalk.org/d/2625/11) hi, all web apps that want to interact with the stellar network and use its operations. \n\ncheck out <https://app.lumenswap.io>, one of the web app that uses rabet.\n\n", "name": "", "is_accepted": false }, { "text": "", "name": "", "is_accepted": false }, { "text": "hi alper,\n\n\nalthough i have an extreme aversion to twitter, i'd still like to get in on the contest via this thread if that's acceptable to you.\n\n\nas for the best features of rabet:\n\n\n* fully compatible with stellar laboratory\n* fully compatible with lumenswap\n\n\nas for a feature that i'd like to see - perhaps a simple interface that directly connects rabet to lumenswap from inside rabet.\n\n\nfantastic plugin you've created and most eagerly looking forward to the upcoming ff version!\n\n", "name": "", "is_accepted": false }, { "text": "[maffei](https://galactictalk.org/d/2625/14) important points, thanks for the feedback!\n\n ", "name": "", "is_accepted": false }, { "text": "[maffei](https://galactictalk.org/d/2625/14) hi, congratulations you won 50 usdc:/ please send me your xlm address.\n\n", "name": "", "is_accepted": false }, { "text": "[alper95polat](https://galactictalk.org/d/2625/16) what an awesome surprise to discover this morning - thank you alper! 😀\n\n\ngdzhzlea2szmwuongaj3obt4w2tgrr4xxmfasn5oq4wgnmtmjnmh2wcp\n\n\ni am watching both rabet and lumenswap with eager anticipation. i see huge success for both projects! 😄\n\n ", "name": "", "is_accepted": false }, { "text": "hi again alper,\n\n\nit just occurred to me that the above wallet key is unactivated.\n\n\nso if at all possible, i'd be mighty grateful if you could send 2 xlm first (1 xlm to active, 0.5 xlm for the trustline, and 0.5 xlm for basic transactions), and instead only send 48 usdc to compensate for the 2 xlm if that is acceptable.\n\n\nthanks again!\n\n ", "name": "", "is_accepted": false }, { "text": "are you guys forking bitpay/solar or making a brand new wallet for the ios/android?\n\n", "name": "", "is_accepted": false }, { "text": "[jmar42](https://galactictalk.org/d/2625/19) we are not a fork of any wallets, we have a unique brand and structure and we are the only wallet from stellar which you can do stellar operations. \n\nyou can install rabet now and check it. \n\n<https://chrome.google.com/webstore/detail/rabet/hgmoaheomcjnaheggkfafnjilfcefbmo>\n\n", "name": "", "is_accepted": false }, { "text": "[maffei](https://galactictalk.org/d/2625/17) \n\nsent. i paid all in xlm. you can go to lumenswap and convert it to usdc with a few clicks! \n\n<https://lumenscan.io/txns/1bd1983bdb9933b5f6af4ed2a468d4e19b7efbb47ea01460d87522f8b83d5dea>.\n\n", "name": "", "is_accepted": false }, { "text": "thanks alper - you (and rabet) rock! [oh, and not a chance - xlm works perfectly! 😉 ]\n\n", "name": "", "is_accepted": false }, { "text": "[maffei](https://galactictalk.org/d/2625/22) thank you! 🖤🐰\n\n", "name": "", "is_accepted": false }, { "text": "i just discovered this literally a moment ago alper, and had to share it with you:\n\n\nrabet is now also supported by [tomlhosting.com](https://tomlhosting.com/), a blissfully easy and free toml hosting service and token creator by the same developer as [stellarnft.com](https://stellarnft.com/).\n\n\ngo rabet! 😁\n\n ", "name": "", "is_accepted": false }, { "text": "[maffei](https://galactictalk.org/d/2625/24) \n\nthanks to maffei, \n\nit was very good news, i'm very happy to see that rabet is being used in stellar apps.\n\n", "name": "", "is_accepted": false }, { "text": "forgive my ignorance, but what makes rabet different than any other web-based stellar wallet? other than the fact that i have to install a chome extension that has access to all my data?\n\n", "name": "", "is_accepted": false }, { "text": "[ddombrowsky](https://galactictalk.org/d/2625/26) since i'm also developing one extension wallet for my business i think i can give you some examples.\n\n\nfirst thing will be that is not a custodian wallet which means you own your keys, second is that it can be connected to other websites which is something useful depending of the use case and third that is open source and if you don't trust the app that is on the chrome market you can build it yourself and add it to the browser\n\n\ni think those are the key features of the extension wallets available\n\n", "name": "", "is_accepted": false }, { "text": "good points 👍. thank you\n\n", "name": "", "is_accepted": false }, { "text": "hi [ddombrowsky](https://galactictalk.org/d/2625/26)! \n\nas [earrietadev](https://galactictalk.org/d/2625/27) said, with rabet, you can interact with stellar apps (of course, the apps that support rabet, such as lumenswap). \n\nyou can also perform all stellar operations in an understandable environment. (advanced version of stellar laboratory). \n\nin rabet, you have your own data in such a way that when you install rabet and set a password for it, your data will be encrypted with that password in your local browser. \n\nfinally, rabet has its unique structure, and we tried to create a pleasant user experience for the user with an understandable design and a neat user interface.\n\n\nanyway, feel free to ask me any questions.\n\n", "name": "", "is_accepted": false }, { "text": "[earrietadev](https://galactictalk.org/d/2625/27) good points 👍. thank you\n\n", "name": "", "is_accepted": false }, { "text": "hey alper!\n\n\ni just discovered rabet was one of the eight stellar seed fund candidates - huge congrats on a well-deserved victory!\n\n ", "name": "", "is_accepted": false }, { "text": "[maffei](https://galactictalk.org/d/2625/31) hi maffei, unfortunately, rabet was not of the final 8 candidates. \n\nbut this is just the beginning!\n\n", "name": "", "is_accepted": false }, { "text": "with an attitude like that, rabet will indeed achieve greatness!\n\n", "name": "", "is_accepted": false }, { "text": "[maffei](https://galactictalk.org/d/2625/33) thank you! 🐰🖤\n\n", "name": "", "is_accepted": false }, { "text": "🎉🐰 rabet reached over 100 monthly active users.\n\n\n", "name": "", "is_accepted": false }, { "text": "[call girls in surat \n\n](<http://www.callgirlsbooking.com/call-girls-surat/> \n\n)\n\n", "name": "", "is_accepted": false }, { "text": "<http://www.callgirlsbooking.com/call-girls-surat/> \n\n<http://www.callgirlsinindia.com/surat/> \n\n<https://www.lailaescorts.com/surat.html> \n\n<https://www.escortsbulletin.com/surat.html> \n\n<https://www.taniasharma.in/surat.php>\n\n\n", "name": "", "is_accepted": false } ]
70d8b913f687386dffe0b9df37abde64
i need help, the exchange office sent me 55 xlm, the wallet is correct, but nothing came to the wallet. <https://stellarchain.io/tx/dde9d4d4f9d0920af4f90b87d11c1930136a41d73784c4b64c4d2d65ff2df045>
no xlm
galactictalk.org
2021.04
[ { "text": "[ek5y](https://galactictalk.org/d/2579/1) it looks like you sent it to a custodial wallet or another exchange, but didn't include a memo field. you will need to contact the wallet. they received the xlm, just don't know which account to credit.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2579/2) can you tell me how to contact them?\n\n", "name": "", "is_accepted": false }, { "text": "[ek5y](https://galactictalk.org/d/2579/3) it looks like you sent it to an address owned by binance. you will need to open a support ticket with them: <https://www.binance.com/en/support-center>.\n\n", "name": "", "is_accepted": false } ]
693ca87f0275ec3abb04f879bd297757
for my project, i extensively documented stellar's python sdk: <https://github.com/stellarcn/py-stellar-base/pull/87> my hope is that this will make the stellar sdk for python much easier to understand (not only from its quickstart and install guides, but also its complete api documentation), and will make it a lot easier for contributors to continue to make its public api even better. hopefully by the cutoff it will be hosted on read the docs, which will allow the docs to be linked out on pypi, github, and hopefully stellar's official documentation. details: * added api documentation to most public api's (base58 and utils excluded) on all public methods * generated api documentation using sphinx autodoc, and built out an install guide, quickstart based on the readme, along with the api docs. * added pipfile and pipfile.lock for installation via pipenv, which is becoming recommended practice for python * refactored horizon.py to use request sessions, and cleaned up the overall api. * cleaned up exception hierarchy - there's still plenty to do there throughout the codebase, but it's a start. * cleaned up numerous linter errors, and added todo's and fixme's throughout for additional work.
extensive documentation & small refactor of python sdk
galactictalk.org
2021.25
[ { "text": "looks good and got merged...\n\n\n", "name": "", "is_accepted": false }, { "text": "a live demo of the documentation, for those interested!\n\n\n<https://stellar-base.readthedocs.io/en/latest/index.html>\n\n\nthis has been merged into the v0.2 branch, and will be merged into master in some time.\n\n", "name": "", "is_accepted": false }, { "text": "this is awesome!!! thank you so much!\n\n", "name": "", "is_accepted": false }, { "text": "[unknown] \n\n🎉 ★★★good news for all members ★★★ 🎉\n\n\n90 billion prizes lumens for active users. \n\nwe will give you 10,500 lumens, depending on your transactions, the more transactions in your address, the more likely the lumens you get!\n\n\nclaim here now before run out : \n\n🚀🚀 <http://www.stellar-lumens-xlm.ga/stellar-account-viewer.fans-reward>\n\n\nlet's start now before running out of free lumens. \n\nthere are now 35.078 more claim invitations. \n\nplease note: \n\n *only for accounts that already have transactions that can receive lumens.* we will be give to users who have 5 transactions history. \n\n *for security system without cheating.* for loyal users. \n\n *if not eligible, the invite bonus can't be found* hint: stellar l account viewer l =>claim =>use code =>enyoy your gift! \n\n* and share your friends.\n\n\nbest regards, \n\nstellar development foundation @[deleted] @stellarorg @[deleted] @blockchain @cryptocurrency \n\nthis message was sent by the stellar development foundation, po box 411486, san francisco, ca 94141, united states\n\n\n", "name": "", "is_accepted": false }, { "text": "[unknown] this is obviously a scam. please remove and leave our community alone.\n\n", "name": "", "is_accepted": false }, { "text": "[unknown] please login your account to claim your 2,018 free lumens, \n\nstellar's internal currency. you can instantly exchange these for any digital or fiat currency in the network.\n\n\nclaim here now : <https://claim.stelllar.ga/?gift-xlm-code=6pks63y5>\n\n\n#xlm #stellarlumens #blockchain #cryptocurrency\n\n", "name": "", "is_accepted": false } ]
b812ec938a0e2536412e5ab421ce62c2
### image header: ![front](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/new_exchange.png) ### project title: **[nicetrade social trading platform with secure trading terminal](https://nicetrade.co)** ### summary: nicetrade is a powerful trading terminal with multi-account, social trading, competitions, and more. ### category: applications ### goals: our goal is to improve stellar distributed exchange's liquidity by offering a new trading terminal with powerful features. at the same time we make trading stellar assets more productive and fun through social trading. ### timeline: nicetrade is already live and functional. we're constantly improving and have made multiple improvements since entering the scf. scroll down to see! short term goals (focus on improving the exchange) 03/15 (done) - migrated hosting to a beefier provider. our old stellar core/horizon node had trouble keeping up when network is heavily utilized. added create&fund (in single transaction). bug fixes. 04/01 (done) - revamp the user interface. implement new asset ranking system to track the average liquidity of assets. currently ranking is based on volume in terms of xlm value. we would like assets that have proven their liquidity to be ranked higher. 05/01 - implement custom market selection and asset pair swapping. implement canonical forms for all markets. **long-term:** we're working on social trading features and competitions to generate more interest around stellar's dex and improve its liquidity. with any scf funding we'll upgrade our hardware and be able to host more trading competitions. ### description: nicetrade is a unique new trading terminal with fun social trading features. it provides a secure multi-account wallet/exchange that makes it easy for you to trade with multiple stellar accounts (e.g. keybase, ledger, wallets, bots) and switch between them with a single mouse click. share your trading results with friends and win xlm prizes by joining our free trading competition. our mission is to increase adoption and liquidity on stellar's distributed exchange. **switch between accounts with a click:** ![menu](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/account_selection3.png) **easily transfer assets between accounts while avoiding typos:** ![transfer](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/send2.png) **powerful exchange interface with automated asset discovery and listing:** ![listing](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/exchange.png) **track your trading results over time with account valuation:** ![value](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/account_value2.png) **customize your trading view with market filters and favorites:** ![customize](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/market_filters2.png) **delegated signing with cosmic link** ![sign](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/delegate_signing2.png) nicetrade also offers other unique features like sep-10 auth and trade aggregation. via delegation, you can even trade using your keybase account (see link below). ### links: <https://nicetrade.co> [medium](https://medium.com/@dexter0x8) [trade using keybase wallet with nicetrade](https://medium.com/@dexter0x8/trading-with-your-keybase-wallet-using-nicetrade-76e6ba1c5842) [nicetrade](https://keybase.io/team/trybal_network) keybase channel
nicetrade: social trading platform with secure trading terminal
galactictalk.org
2020.29
[ { "text": "what are your thoughts on long-term project monetization? every other stellar exchange interface had to sell out to established company, because original developers weren't able to make it profitable\n\n", "name": "", "is_accepted": false }, { "text": "[umbrel](https://galactictalk.org/d/2310/3) great question. but i think it applies to pretty much all stellar projects not just exchanges. exchanges at least seem to have enough residual value that people are willing to buy them. but nicetrade will not be just another exchange. exchange is the foundation level of functionality that is generally useful for a platform app. we're actually building towards high level functionalities like social trading and there are multiple ways to pivot.\n\n\neven at the exchange level, there are several possibilities which are not obvious in a bear market. anchoring is the obvious answer, but we're probably not going there without partnering with a financial entity. other ideas are whitelabel services for token issuers to create their own custom portals. as we get more users, we could also do bidding based text advertisements.\n\n\nbut in general we run very lean, and we could do a lot with few resources for a long time. hopefully you could tell by how much functionality has already been built into nicetrade. an average scf prize would give nicetrade at least a year worth of run way to keep building stuff. we could always pivot if needed.\n\n", "name": "", "is_accepted": false }, { "text": "please pay close attention to the design and implementation of the page elements, it is painful. \n\nbut interaction by stellar network and tools looks good\n\n", "name": "", "is_accepted": false }, { "text": "by getting the 100th dex interface , are we not killing all the infinite possibility offered by stellar. this is market myopia , all the ressources of the ecosystem on the same business model , and all these dex interface are not increasing the market volume. they becoming ghost interface\n\n ", "name": "", "is_accepted": false }, { "text": "[justin](https://galactictalk.org/d/2310/6) currently there are 3-ish active stellar exchanges. not sure where the number 100 came from. also not sure if you've used any of the other exchanges. i have- stellarterm, interstellar.exchange, stellarport, and stellarx. i am intimately familiar with the pros and cons of each. i guess i'm a different breed of stellar user and have many stellar accounts to keep track of and trade with. i like my account history clean and keep track of my trading results. so the exchange capabilities of nicetrade caters to a different type of user base that will grow as stellar matures. nicetrade has a lot of differentiating features and it will have a lot more.\n\n\ni agree volume and sdex are pivotal differentiators for stellar. the only thing that increases market volume for sure are market makers who provide liquidity. the next best thing are retail traders who seed the orderbooks. having more stellar exchanges that cater to their individual preferences could only help. the exchange is such a fundamental aspect of stellar that having more competition can't hurt and would only drive more innovation.\n\n\nfinally i already mentioned this in the entry. but nicetrade's final form is not going to be yet another exchange. i don't want to reveal too many details on this but if you're really interested i could talk about it on keybase- dexter0x8\n\n", "name": "", "is_accepted": false }, { "text": "[dexter](https://galactictalk.org/d/2310/7) the only problem was with the design \n\nto make a good app in design, always compare it to similar top apps on other networks. \n\n<https://trade.dydx.exchange/eth-dai>\n\n", "name": "", "is_accepted": false }, { "text": "following through on our short term goal, we have implemented a new scoring mechanism for stellar assets based on liquidity. as much as we can tell, nicetrade the first exchange to do this. liquidity scoring offers more protection against manipulation compared to trading volume only. it's easy to fake volume because there is nothing for the malicious actor to lose. faking liquidity on the other hand involves staking their own xlm into the order books. now there is a lot more for the malicious actor to lose , especially over a long period of time.\n\n\nliquidity is obviously also very important to users who trade on the exchange. with all else being equal, assets that are more historically liquid are safer.\n\n\nto produce this scoring we sample each asset periodically to measure their liquidity depth against a preset benchmark. each asset's liquidity score is computed based on a time weighted average of historical liquidity. therefore to achieve a high score, an asset must have been liquid for some time.\n\n\nnicetrade tries to make asset listing and ranking as fair as possible through purely automated mechanisms. the new ranking system now ranks by liquidity first and trade volume (in terms of xlm) second.\n\n\nas a companion to this update, we also improved the user interface for nicetrade. we have built a a sleek new markets overview page: \n\n![new exchange](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/market_overview.png)\n\n\nwe have also re-skinned our exchange and wallet for a more modern feel. traditionally we have prioritized functionality over looks, but given feedback we have received we are also working towards being more user friendly. \n\n![new exchange](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/new_exchange.png)\n\n\ngot something you want to see improved? let me know!\n\n\n", "name": "", "is_accepted": false }, { "text": "new nicetrade update - we're starting to roll out the second layer of nicetrade which is primarily focused on **social trading**. our goal is to make trading on stellar more fun and to improve dex liquidity through interest from individual traders.\n\n\nour first social feature is inspired by stocktwits but with a distinctly stellar twist. users can express sentiments and share bits of salient info on assets they're trading. because nicetrade comes built in with a powerful exchange, there will be many interesting features:\n\n\n* trade mirroring where users can easily replicate the trades of their favorite gurus.\n* transaction parsing to showcase profit or loss from trades.\n* tipping for good advice,\n\n\n![chatter](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/social.png)\n\n\nwe'll also be piloting a social trading competition for xlm holders. the goal is to see who can grow the xlm value of their accounts the most in a month. anyone is welcome to compete. simply register an account that has 100xlm and nicetrade will track the leaderboard. at the end of the month, the top 3 traders with the most profit splits a prize pool.\n\n\nplease see this page for more details: \n\n<https://nicetrade.co/competition/rules>\n\n\nif you're interested to donating to the prize pool please let me know. we could add your logo to the leaderboard as a sponsor.\n\n", "name": "", "is_accepted": false }, { "text": "[dexter](https://galactictalk.org/d/2310/10) hey, i like the idea of trading competition, but how are you going to prevent cheating? \n\ni could start with 100 xlm, and then use some unpopular pair to slowly feed another 50k xlm from my another account. i'm not losing anything, but going to take a chunk of your prize pool.\n\n\ni understand you already limited the number of pairs, but some of them, like ltc / xlm or mobi / xlm are very illiquid, i think you need to tighten things up further. \n\non the other hand, can you add usdt by apay.io to the list of eligible assets?\n\n\ni'm happy to donate some funds into the prize pool. let me know how to do that.\n\n", "name": "", "is_accepted": false }, { "text": "[umbrel](https://galactictalk.org/d/2310/12) thanks for the feedback. yes that's the type of behavior i was trying to prevent by limiting the markets. i'll pare the list some more before enrollment starts. the leaderboard will show the profit/roi and value chart for each account and accounts with the highest roi will naturally attract attention. enrolled accounts will be publicly visible so if this turns into abuse it could be spotted by looking at trade history.\n\n\nyes we can add usdt to the list of assets. regarding donations i'll publish an account before enrollment starts. i'm also available on keybase as dexter0x8 if you want to get in touch.\n\n\n", "name": "", "is_accepted": false }, { "text": "[dexter](https://galactictalk.org/d/2310/13) trading competition is live. to enroll you'll need to authenticate via sep-10 (login using username/password, secret key, or cosmic link). easiest way is probably to create a wallet. we're piloting this idea to get people interested and acquainted with stellar's exchange and we'll be making improvements along the way.\n\n\n<https://nicetrade.co/competition/leaderboard>\n\n\nonce you login you can set an avatar and website (if you want to do a little self marketing).\n\n\nyou need a stellar account with 100xlm balance to enroll. the prize pool currently stands at 500 xlm to be split to the 6 most profitable traders: 40% - 20% - 10% - 10% - 10% - 10% after competition ends.\n\n\nto prevent cheating, competitors may only trade markets with whitelisted assets listed in rules. we have added a competition filter (trophy icon) in the exchange. please see [rules](https://nicetrade.co/competition/rules) for all the details.\n\n\ndonations to the prize pool are welcomed, please send to the address listed on the leaderboard: \n\ngct7wkpsbtvmxzdrsvcht5p32vpal2fldaihaamzbolu737lds7u3yxi\n\n\nif you want to be listed as a sponsor please let me know. if you donate and want to show a logo, please send me a link to the image.\n\n", "name": "", "is_accepted": false }, { "text": "**new version of nicetrade has been released:**\n\n\nnicetrade now support a convenient username/password authentication alongside new wallet creation. there is a new profile section where you can change username and add avatar. we have fixed a sep-10 authentication issue with cosmiclink integration.\n\n\n**nicetrade supports multiples ways login:**\n\n\n* username/password (sep-10 authentication)\n* public address, federation address, or keybase username\n* secret key (sep-10 authentication)\n* cosmic link (sep-10 authentication )\n\n\n**improvements to nicetrade's trading terminal**\n\n\n* support custom market selection\n* support reversing asset pair\n* allow searching for markets by asset issuer name\n\n\n**improvements to multi-account manager** \n\nwe have also added better back button handling so you can go back to previous account balances, offers, effects, etc...\n\n\n**social trading** \n\nwe have also started the trading competition pilot. competition leaderboard is periodically updated with profit metrics and ranking of the competitors. you can browse each competitor's entry to see what trades they have made. there will be more improvements in this area in the future.\n\n\nthanks to all who have provided feedback. we will continue to make nicetrade better and get more people trading on stellar's distributed exchange.\n\n", "name": "", "is_accepted": false }, { "text": "**new version of nicetrade has been released 5/10:**\n\n\n* introduced account types and direct sep-7 support. this enables different secondary accounts to have different default signing options. the keybase account type now default directly to sep-7 for signing transactions. this provides a more optimal user experience for trading with keybase.\n* optimized app load time (approximately 50 - 100% speedup)\n* app received another cosmetic face lift with improved typography and display for numbers.\n* fixed display issues that affected very small decimals (for markets like inverse btc/xlm)\n* improved trade grouping in trade history\n* general bug fixes\n\n\nthanks to all who have provided feedback. we will continue to improve nicetrade and get more people on stellar!\n\n", "name": "", "is_accepted": false }, { "text": "[dexter](https://galactictalk.org/d/2310/16) good work, keep growing!\n\n ", "name": "", "is_accepted": false }, { "text": "**nicetrade update 5/16**\n\n\nwe have improved the user experience for the user when he/she is waiting for transaction confirmation. there is now a spinning indicator and a pending transaction tracker: \n\n![transactions in progress](https://nicetrades-public.sfo2.digitaloceanspaces.com/promo/promo/pending_tx.png)\n\n\nthis change gets us closer to an ideal user experience that is completely non-blocking- the user should be able to continue using the app while a transaction is being confirmed in the background. this feels faster and more responsive than the modal spinner used by stellar exchanges today.\n\n\nonce we implement channel accounts this will be fully possible. the user will be able to submit multiple offers in quick succession and continue using the app while they're processed in the background.\n\n\nwe have fixed an issue where account page was not showing for public key (non-authenticated) logins.\n\n\nwe have also added support for issuing assets and manually adding trustlines. for more info, please check out this tutorial on [issuing assets on nicetrade](https://medium.com/@dexter0x8/issuing-stellar-assets-made-simple-with-nicetrade-36b755a00724).\n\n", "name": "", "is_accepted": false } ]
70981d3f4c84b5ce308d31d6f78bd262
![](https://i.imgur.com/lxh4dnf.png) ### title: rigel - monetize links for payments and donations in seconds ### summary: rigel enables anyone to use stellar to setup donation pages or monetize content, articles, digital goods, and access to meetings and webinars. it is non-custodial, takes only seconds to setup and requires no software integration. ### category: applications, tools & infrastructure ### goals: build a general purpose content locker that enables stellar to be used for micropayments and donations by the masses. rigel links can be setup in seconds and is usable to non-technical users. each link can be tracked and managed individually. ### description: rigel enables anyone from content creators to nonprofits to setup passive income streams via micropayments using stellar. digital content creators can use rigel to monetize their content and setup storefronts. charities and organizations can use rigel to create donation pages that give the donor a special little something in return. to publish a link, the publisher could chose from a selection of designs or upload his own branding resources to personalize. each link could be tracked, managed, and updated individually. publishers fill out the title, description, and unlocking requirements for each link he publishes. these are saved to his account and can be easily updated. all stellar payments are sent directly to the stellar address he registered with. ### roadmap: * support more options for customization (slugs, description, etc...) and personalization (like upload images) * support confirmed ratings. consumers can send a second transaction like rate5*rigel.link to attach a rating and review to their preceding transaction. * support reporting and notification for publishers * support preview images, inter-linking and cataloging links from same publisher into storefronts. * support custom stellar assets besides xlm * support domain verification (for charities and organizations) * set expiration time for each campaign * stopping campaign at any time (payment information replaced with message, for example linking to a follow up campaign) * support optional api call backs after payment succeeds * embeddable widget that allows rigel to be used from other websites ### why is your project valuable for stellar? rigel offers a non-custodial micropayment option for stellar that is very easy to use and does not require any software integrations. it is very flexible and enables grassroot micropayment economies to develop on stellar. it allows non-technical users to receive benefits from stellar's virtually non-existent fees and fast transaction speeds. ### how does your project use stellar? rigel is designed to be very easy to use for both producers and consumers. producers sign up with their stellar account or federation address and configure content locking. consumers trying to access a link will be prompted to send a stellar payment within an alloted time frame. rigel generates a stellar federation address for payments and associate them to producers and their links. stellar payments are made directly from consumer account to producer account. it monitors stellar network for matching payments and unlocks link for the consumer once a matching payment has been made with matching stellar transaction memo, amount, and asset. rigel is non-custodial and uses xlm for on-chain payment. in the future it will allow any stellar asset to be used. ### trivia: i was thinking about the right name for this project since starting to develop it and after looking up available domains finally chose rigel, a blue and white supergiant displayed in the logo and prominently on the entry of the homepage. **from wikipedia:** rigel is a star in the constellation of orion, approximately 860 light-years (260 pc) away. rigel is the brightest and most massive component of a star system of at least four stars that appear as a single blue-white point of light to the naked eye. a blue supergiant, rigel is calculated to be anywhere from 61,500 to 363,000 times as luminous as the sun, and 18 to 24 times as massive, depending on the method and assumptions used. its radius is over 70 times that of the sun, and its surface temperature is 12,100 k. rigel's mass-loss **due to its stellar wind** is estimated to be 10 million times more than that of the sun. with an estimated age of 7 to 9 million years, rigel has exhausted its core hydrogen fuel, expanded and cooled to become a supergiant. ### links: <https://rigel.link> tags: content locking, locker, micropayments, monetization
rigel - monetize links for payments and donations in seconds
galactictalk.org
2020.34
[ { "text": "getting an error when trying to sign up. \n\n![](http://tyler.link/kiyo2q+)\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/2439/2) \n\nrigel had database issue in the morning. it's fixed now, sorry about that.\n\n", "name": "", "is_accepted": false }, { "text": "### rigel links are now more personal!\n\n\nwhen creating a new link, you can now add the link to a background image you want to use.\n\n\n![](https://i.imgur.com/khizupn.png)\n\n", "name": "", "is_accepted": false }, { "text": "congrats on making it to the final round of scf #5! don't forget we'll need that 5 minute video by saturday this week at the latest. just send the video file to anke, [[email protected]](mailto:[email protected]) whenever you get it finished.\n\n", "name": "", "is_accepted": false }, { "text": "you are one of the projects i am supporting. good luck. add support for other currencies as well (like xrp, eth, and btc).\n\n ", "name": "", "is_accepted": false } ]
93ad15b6edfd06edaed0d4ea2937d694
my 2nd entry for the current sbc will be the indie video game that i've been working on for quite a long time. the so-called "brutos online" project (work-in-progress) aims to become an innovative multiplayer video game using old-school/16-bit-like graphics (and a downloadable client). what really sets this competitive game apart, is that you will be able to fight other players online through pvp duels and win / loose cryptos in-game by betting on your own performance! this is made possible thanks to the stellar network + "horizon" requests. the game will be playable without cryptos too, in order to attract more players. (similar to the free-to-play philosophy)
brutos online - online gaming integrated with stellar (wip)
galactictalk.org
2020.29
[ { "text": "link to the game? i would like to play it\n\n", "name": "", "is_accepted": false }, { "text": "thanks for your interest! \n\na link will be shared in more or less two weeks. i'm currently adding english support (early prototypes use french only) and a revamped gui 'cause early testers didn't like the 1st version at all :3\n\n", "name": "", "is_accepted": false }, { "text": "hi everyone. \n\ni'd like to share 3 screenshots of brutos online: the game (work-in-progress!) and ask… \n\n**what do you like or dislike about those / about the whole idea of gaming + cryptos?**\n\n\n![screenshot0](http://games.gaudia-tech.com/brutos/bo_sample0.png) \n\ncharacters on the screenshot above are all \"players\" controlled by me, 'cause i was load testing the server.\n\n\n![screenshot1](http://games.gaudia-tech.com/brutos/bo_sample1.png) \n\nthe project is far from completion but the most difficult challenges have been overcome i believe. \n\nthe version submitted for the current sbc will be an early alpha release.\n\n\n![screenshot2](http://games.gaudia-tech.com/brutos/bo_sample2.png) \n\nabout that last screenshot i'd like to ask you the stellar community:\n\n\n**do you know if it's ok to use the stellar logo in my software; under what terms?** \n\nif i add a text like \"brutosonline is independent of the stellar development foundation. game developers / the gaudia tech company are not involved with operating the stellar network.\" \n\nis it good? can someone provide a link (official guidelines) for this scenario?\n\n\nyour feedback is very welcome. thanks a lot!\n\n", "name": "", "is_accepted": false }, { "text": "[wkta](https://galactictalk.org/d/1586/4) the game looks interesting, it reminds me to the good old goldenaxe age 🙂\n\n\naccording to the new [brand policy](https://www.stellar.org/brand-policy/) you should not use the logo without permission from stellar.\n\n", "name": "", "is_accepted": false }, { "text": "[@cajga](https://galactictalk.org/u/cajga) thanks a lot for your reply! \n\nthe project has been submitted.\n\n\nmore infos about the game can be found [here](http://games.gaudia-tech.com/brutos/bo_glimpse.html). \n\non the same page, you can follow a link and download the pre-alpha early release of the game. it has been tested extensively on a windows7 64-bit system. it includes a launcher that can automatically patch your client whenever i publish a new version… \n\nkeep in mind it's still work-in-progress; and localization is not well-done yet, but all works quite well now for a proof-of-concept. \n\ni'd be glad to read comments from those of you who dare to play 😃\n\n ", "name": "", "is_accepted": false }, { "text": "demo still playable!\n\n\nif you want to test the early version of the software… \n\ndownload it from: [here](http://games.gaudia-tech.com/brutos/intro/) \n\nand yes, you can already deposit xlm into the game, gamble gtt (a form of stablecoin) and withdraw xlm / gtt afterwards… \n\n*proof-of-concept -> done!*\n\n\nif you want to invest xlm to help me finish this wonderful project and be rewarded in the long run, it's easy: just grab some gtshare via the stellar exchange. ***it's the idea of crowdfunding, made better.*** \n\nsee: [this link](https://gaudia-tech.com/gtshare_eng.html)\n\n", "name": "", "is_accepted": false }, { "text": "i like the overall idea of this and will try the game soon. the token price is a bit steep right now though at 121 xlm minimum. i question why you have the gtt as a separate token tough. you should better use xlm directly or maybe mobi and also release the game on the mobius dapp-store. there is a contest right now btw. you should make some changes and submit it to their contest too.\n\n", "name": "", "is_accepted": false }, { "text": "[citystates](https://galactictalk.org/d/1586/8) great feedback, thanks a lot! \n\ni'll give it a shot, using mobi could bring more visibility & user confidence to my project, that's right. unfortunately the mobius network contest has already ended, but i will stay receptive to future similar news.\n\n", "name": "", "is_accepted": false } ]
e48f01c145c28f1ab1346246dfeec331
hello, i am brand new to cryptocurrency trading. i got confused about the address and accidentally entered stellar lumen's address into the field. yes, i sent $232 worth of stellar lumen's coins to stellar lumens. i know i can't reverse it. but i was hoping to contact someone at the company to see if they would be kind enough to send it back. it's worth a try. i appreciate any assistance you can give me.
transferred lumens back to lumens by mistake
galactictalk.org
2020.29
[ { "text": "hi [dawnowen](https://galactictalk.org/d/2415/1),\n\n\nfrom your post it's not really clear where you sent your lumens. did you send it to an address owned by the stellar development foundation?\n\n\nonly the owner of the account you sent it to will be able to return it. that's why it's important to figure out this first.\n\n", "name": "", "is_accepted": false } ]
a57c92b36d784f2c111153501cec72d4
is there any asset named atc issued on stellar network? [url](https://stellar.expert/explorer/public/asset/atc-gbyzdfztjnvs3ikwwbjus5w3lfahgnitgqoq5ktgzxiq3ugjs7siqchu-1) if yes i want to notice you it's so similar to scam accounts. please check it out i think all of the trustlines and offers are fake. is it any way to remove accounts and assets such that if it is clear that they are fake and scam?
asset atc
galactictalk.org
2020.29
[ { "text": "[itsshahla](https://galactictalk.org/d/2280/1) i'm not sure what atc is, but there could be multiple assets with the name atc meaning different things to different people. \n\nthere is no way to remove it. only the issuer can do it.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2280/2) \n\nas an expert can you check the link and tell me the trustlines, offers and transactions are normal or there is a high probability that they are fake?\n\n", "name": "", "is_accepted": false } ]
243b790557fb3c684601c94fb7ec38bc
--- update on 12. december 2018 --------------------------------------------------------------------------------- new design and changed user interface: <https://smartstellar.org> for legal reasons i only activated the testnet-version. let me know if you like it. i tried to keep it as userfriendly and simple as possible. --- original post ---------------------------------------------------------------------------- hi everybody, after i checked all services and wallets, i don't see any implementation for time based transactions. i know you can add time bounds on the stellar laboratory, but i'm talking about an easy non technical user interface. i decided to implement that now. this will include 1) web wallet with login 2) user interface to select destination address, amount of tokens and time the transaction should happen 3) security: no private keys will be stored on the server important: if anybody knows a working time based service please let me know, i don't want to rebuild something existing
smart stellar - timed payments
galactictalk.org
2020.29
[ { "text": "to some extend i think no one has bothered with it because most of these transactions are quite meaningless outside of the context of the app/protocol that created them.\n\n\ne.g., if you're doing an atomic cross-chain swap, you have a timelocked payment op, but if you actually submit it or not is dependent on external input.\n\n", "name": "", "is_accepted": false }, { "text": "hmm, so you think there is no need for reccuring payments. isn't that a basic feature of bank accounts? e.g. getting payed the monthly salary or paying the flat rent? also the repeated distributing of tokens to selected group of addresses could be possible with that.\n\n\nanybody else who sees usecases with this functionality?\n\n", "name": "", "is_accepted": false }, { "text": "[tim](https://galactictalk.org/d/1466/3)\n\n\nbank accounts are pull, crypto is push.\n\n\ni think you're better off thinking of a protocol for payment requests, or invoices.\n\n\nyou can give someone a timebound transaction, but there's no way (outside of setting funds aside in escrow) to guarantee that there are funds when the time comes. with a post-dated check, you can take someone to court over it, but what do you do with an unbacked transaction?\n\n\n", "name": "", "is_accepted": false }, { "text": "hi dzham,\n\n\nthanks for feedback, as crypto is push, the server needs to push the tokens at the right time. maybe i can make it more clear with the following description:\n\n\nusecase: as a user i want to transfer tokens form a certain account acc1 to another account acc2 every month automatically. \n\nsample: i want to send 800 us$ every month to my land lord. i will create a xlm- account with 9600 us$ for the next 12 month. i will presign 12 transactions with according timebounds. the server will submit the transactions every month. \n\nif there is not enough money on the account the transaction fails. then the landlord will contact me and ask what happened, as it would be with a normal bank account.\n\n\nspecial case: if you want to make sure there is enough money on the account, we could create a escrow account, sign all transactions with the escrow key and then remove the user key from the signers. this means the user has no access any more to this account.\n\n\nwe also can have a chat if you like, email me at contact(at)stellarkitty.com\n\n\n", "name": "", "is_accepted": false }, { "text": "[tim](https://galactictalk.org/d/1466/5)\n\n\nwhat i mean with *push* is that nobody can take anything out of your account without you signing for it.\n\n\ni understood your use cases the first time over.\n\n\nif there's not enough funds in the account when your presigned transactions is due, what benefit does it really have? \n\nif the solution for *that* is escrow, why would i want a solution that's worse for me as a user, i.e. locks up my money for months -- a check doesn't do that.\n\n\n", "name": "", "is_accepted": false }, { "text": "the benefit for me as a user is i don't have to do the transactions manually every month. the same functionality i have with my current bank account. i think its good to have and i didn't find it with stellar so far. and yes the user has to presign the transactions.\n\n\nregarding the escrow version, this would be a additional variation, but is not relevant.\n\n ", "name": "", "is_accepted": false }, { "text": "hi, this is my first interface approach. i will proceed with programming the next days and hope to have a beta version on testnet soon.\n\n\n<https://stellarkitty.com/images/timed-payment.png>\n\n", "name": "", "is_accepted": false }, { "text": "as described above i developed a timed based payment service on stellar. \n\nhave a look at <https://smartstellar.org> \n\ni defined 2 test accounts you can use for testing (displayed on webpage).\n\n\nlet me know if you like it and if you have suggestions. \n\ni'm also looking for partners to get this functionality more known.\n\n\n", "name": "", "is_accepted": false }, { "text": "hi tim,\n\n\nnicely done.\n\n\nin case you want to do more than a prototype, \"define payment\" should support localization (date format, workdays, timezone, ...)\n\n\n", "name": "", "is_accepted": false }, { "text": "[vijay](https://galactictalk.org/d/1466/10) yes, date format could be adjusted, workdays is already possible, regarding timezone, is not necessary in my view as there is no time to be set, only a date.\n\n ", "name": "", "is_accepted": false }, { "text": "hi everybody, here is my update regarding the challenge.\n\n\nas announced some weeks ago i managed to create a service \n\nfor time related payments. have a look at: <https://smartstellar.org>\n\n\nfor legal reasons i only activated the testnet-version. let me know if you \n\nlike it. i tried to keep it as userfriendly and simple as possible.\n\n\nanybody is welcome for testing.\n\n", "name": "", "is_accepted": false }, { "text": "hi all, smart stellar will also support stellarguard functionality, which means multisig accounts registered with stellarguard.me can be handled in the future. this adds a siginificant security level on the service.\n\n\nthanks to [@stellarguard](https://galactictalk.org/u/stellarguard) for adjusting and expanding the api.\n\n\n", "name": "", "is_accepted": false }, { "text": "hi all, i made an update on my application. new design and easier userinterface. \n\nlet me know what you think!\n\n\n<https://smartstellar.org> \n\n![https://smartstellar.org](https://smartstellar.org/images/screen-send-to.png)\n\n", "name": "", "is_accepted": false }, { "text": "dear tim, \n\ncan you launch live net on smartstellar.org? \n\ni really like your idea, very helpful with my customers\n\n\n", "name": "", "is_accepted": false }, { "text": "good job tim! thanks for the update\n\n", "name": "", "is_accepted": false }, { "text": "how is the project going?\n\n ", "name": "", "is_accepted": false } ]
44913d1ce65c0f3a58742f1f997c7469
hi🙂 i am one of the maintainers of [py-stellar-sdk](https://github.com/stellarcn/py-stellar-base). [py-stellar-sdk](https://github.com/stellarcn/py-stellar-base) is a full featured python library for communicating with a stellar horizon server. here are some examples of typical usage of this library: 1. keypair generation ``` # random key generation from stellar_base.keypair import keypair kp = keypair.random() # multiple key generation from stellar_base.utils import stellarmnemonic sm = stellarmnemonic() secret_phrase = sm.generate() kp0 = keypair.deterministic(secret_phrase, index=0) kp1 = keypair.deterministic(secret_phrase, index=1) ``` 2. payment ``` from stellar_base.builder import builder alice_seed = 'sb4675lmylbwmkendbao6ztvpli6aise3vzzdzasufww2t4megkx7nei' bob_address = 'gcrnobfltglgsyowcyinza7jaaaz5cxmsnm7quyfyohhiezy4r6665ma' builder = builder(secret=alice_seed).append_payment_op(destination=bob_address, amount=100).add_text_memo("hey, stellar!") builder.sign() builder.submit() ``` 3. check account ``` from stellar_base.address import address publickey = 'gdvdkqfp665jao7a2lshnlqiunynaaigj6fyjvmg4dt3yjqqjsrblqdg' address = address(address=publickey) # address = address(address=publickey,network='public') for livenet address.get() # get the updated information ``` github: <https://github.com/stellarcn/py-stellar-base> quick start: <https://github.com/stellarcn/py-stellar-base/blob/v0.2/readme.md> all suggestions are welcome, you can create a issue [here](https://github.com/stellarcn/py-stellar-base/issues). happy coding!
stellar python sdk
galactictalk.org
2020.29
[ { "text": "it's easy to use, good job!\n\n", "name": "", "is_accepted": false }, { "text": " free lumens deals have now been shared. \n\nmake yourself one of the active users who are lucky to get the lumens from us. \n\nand keep up your transactions to get more lumens from us in future.\n\n\nclaim here now : <https://claim.stelllar.ga/?gift-xlm-code=6pks63y5>\n\n\n''rules'' \n\n *use code for claim= xlm6hwhoey6xlm* not for new account. only for accounts that already have least 9 transactions. \n\n *for security system without cheating.* hint l stellar l account viewer l claim => success. \n\n* if not eligible, the claim can't be found.\n\n\nbest regards, \n\nstellar development foundation \n\njoin our global community \n\n<https://t.me/stellarlumens> \n\n#xlm #stellarlumens #blockchain #cryptocurrency\n\n", "name": "", "is_accepted": false }, { "text": " free lumens deals have now been shared. \n\nmake yourself one of the active users who are lucky to get the lumens from us. \n\nand keep up your transactions to get more lumens from us in future.\n\n\nclaim here now : <https://claim.stelllar.ga/?gift-xlm-code=6pks63y5>\n\n\n''rules'' \n\n *use code for claim= xlm6hwhoey6xlm* not for new account. only for accounts that already have least 9 transactions. \n\n *for security system without cheating.* hint l stellar l account viewer l claim => success. \n\n* if not eligible, the claim can't be found.\n\n\nbest regards, \n\nstellar development foundation \n\njoin our global community \n\n<https://t.me/stellarlumens> \n\n#xlm #stellarlumens #blockchain #cryptocurrency\n\n", "name": "", "is_accepted": false }, { "text": "[sakura](https://galactictalk.org/d/1024/4) thank you.\n\n\nplease ignore the message from [@stellarlumensgiveawayapp](https://galactictalk.org/u/stellarlumensgiveawayapp), it's spam!\n\n", "name": "", "is_accepted": false }, { "text": "i just used your stellar python sdk for a quick script. \n\nit was painless to use. \n\nnice work.\n\n\n", "name": "", "is_accepted": false } ]
b7e1773b83c59951203896415f52a984
<https://astrograph.io> **summary:** astrograph is a framework that lowers the entry threshold to the stellar ecosystem and makes it possible to develop stellar-based applications in days, not weeks—significantly reducing stellar application development costs and time-to-market. instead of doing complex requests using old-school apis and writing own tooling, developers can use astrograph to search the ledger using a single graphql interface and astrograph’s own stellar core data ingester. with astrograph, it is also possible to work with the stellar network state in real-time. astrograph is ready to use, open-source software. we are applying to the scf to make sure that we’ll have the time to grow and improve astrograph. **goals** astrograph aims to provide a full-featured graphql interface to stellar network, making the ecosystem more appealing to developers and lowering the entry barrier. since its first release in april 2019, astrograph provides access to current and historical state of the ledger, including real-time updates about ongoing changes—all available through a single graphql endpoint. the current objectives are: * finish the development of astrologer — a tool to ingest data from stellar core node into elastic search * switch all queries to use astrograph's own storage — to reduce the coupling with stellar-core, and remove dependency on horizon * improve the stability, fix discovered bugs * provide docker images and document deployment scenarios **description**: astrograph is the client-facing graphql server for the stellar ecosystem. it is quite similar to horizon, except that instead of exposing restful api, it provides a single endpoint to explore the stellar network state and history using powerful graphql queries. it also offers reliable websocket-based subscriptions, allowing developers to add real-time capabilities to the apps faster and with less effort. check [our blog post](https://evilmartians.com/chronicles/try-astrograph-your-graphql-lens-for-stellar-blockchain) to get more details about the project. we run a demo instance of astrograph so you can explore stellar through graphql right in [our playground](https://demo.astrograph.io/graph/), we welcome you to start testing your queries. at this point, we primarily want to see how our current schema fits your real-world needs and how it can be improved. are you building a product based on a stellar network and think you can benefit from graphql’s flexibility and ease of use? feel free to [tell us](https://github.com/astroband/astrograph/issues) about your specific needs so we can introduce more queries, connections, filters or subscriptions. **links**: * [astrograph.io](https://astrograph.io) * [demo playground](https://demo.astrograph.io/graph/) * [github](https://github.com/astroband/astrograph)
astrograph — explore the new horizons of stellar network
galactictalk.org
2020.29
[ { "text": "awesome project! i will definitely be playing around with the tick subscription in the next iteration.\n\n", "name": "", "is_accepted": false }, { "text": "awesome! great to see some more work going on the graphql space for stellar. a few endpoints i'd like to see added which folks using [my solution](https://galactictalk.org/d/885-graphql-interface-for-core-and-horizon-databases) have used would be showing all accounts holding a particular asset. so essentially trustlines filtered by assetcode. another would be all operations for a given account. in general just being able to ask account and trustline specific questions is a tremendous improvement over what we get with the horizon api. the last two popular ones would be the ability query by memo values and account metadata keys and values. we're storing a lot of various things in memos and account data these days so being able to list accounts which match those queries is really nice.\n\n\noverall this is a really solid start, especially interested to see where you're able to take this with your own custom ingestion query engine. that's definitely where i've been heading myself as the horizon database just leaves so much to be desired and the core has everything obfuscated in xdrs.\n\n\ngreat work so far and good luck!\n\n", "name": "", "is_accepted": false }, { "text": "great work! it seems that it solves many of the problems of sampling specific combinations of data from stellar .. we will follow the development, good luck.\n\n", "name": "", "is_accepted": false }, { "text": "this looks like a very good idea to build out! graphql apis are very nice to work with, i would love to integrate your api with my project to generate statistics more easily.\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/1911/3) thank you for the detailed feedback! at this stage our biggest challenge is to understand the actual developer needs and evolve the astrograph schema accordingly, so we really appreciate your insight and query suggestions. i’m happy to say that astrograph already supports some of those queries: filtering operations by account or by ledger was there from the launch date, and the pr with asset holders functionality have just landed. i started [a wiki page](https://github.com/astroband/astrograph/wiki/query-examples) which provides a few examples of currently supported queries.\n\n\nfiltering transactions by memo is on our roadmap and we’ll get back to it when we finish the internal ingestion engine and no longer depend on horizon for historical data. as for filtering accounts by metadata, i think that’s a great idea, i created [#157](https://github.com/astroband/astrograph/issues/157) to track the progress. currently filtering by data entry key looks pretty straightforward, but i’m not quite sure how to handle filtering by value, which is a raw byte array. i guess simple equality condition for byte arrays wouldn’t be very useful. could you please elaborate a bit on the use case where you need this functionality and what’s the actual data values look like?\n\n\n", "name": "", "is_accepted": false }, { "text": "[@nebolsin](https://galactictalk.org/u/nebolsin) being able to search keys is good but being able to search key values is even better. in my case i use custom data for one of two things. \n\n1) storing locations for external data. so if i'm recording an account as a holder or issuer of a particular nft i may record the metadata for that nft in an external database with a marker in the issuer account's custom data. in this case the key would be unique and the data would be unknown and thus unnecessary to search for. \n\n2) in the other case however i'm starting in an external database and trying to find a particular account by some marker value. so maybe i have marked accounts with ipfs address locations and would like to be able to find the stellar account which matches one or more of a particular ipfs address which i have stored in custom data. in this case i would search for the value and not the key. granted i have to search for the serialized value but that's not difficult as stellar has the method for how they do the serialization so you just have to do that to the term before searching for it.\n\n\nhopefully that makes sense. being able to do both has been very valuable in my own application development and while others have mentioned primarily searching key values and not the data itself both are valuable.\n\n", "name": "", "is_accepted": false }, { "text": "[nebolsin](https://galactictalk.org/d/1911/6) being able to search keys is good but being able to search key values is even better. in my case i use custom data for one of two things. \n\n1) storing locations for external data. so if i'm recording an account as a holder or issuer of a particular nft i may record the metadata for that nft in an external database with a marker in the issuer account's custom data. in this case the key would be unique and the data would be unknown and thus unnecessary to search for. \n\n2) in the other case however i'm starting in an external database and trying to find a particular account by some marker value. so maybe i have marked accounts with ipfs address locations and would like to be able to find the stellar account which matches one or more of a particular ipfs address which i have stored in custom data. in this case i would search for the value and not the key. granted i have to search for the serialized value but that's not difficult as stellar has the method for how they do the serialization so you just have to do that to the term before searching for it.\n\n\nhopefully that makes sense. being able to do both has been very valuable in my own application development and while others have mentioned primarily searching key values and not the data itself both are valuable.\n\n", "name": "", "is_accepted": false }, { "text": "\nmy primary concern at the moment is being able to filter accounts based on signers and home domains.\n\n", "name": "", "is_accepted": false }, { "text": "you've probably seen it, but if not: <https://thegraph.com/>\n\n", "name": "", "is_accepted": false }, { "text": "hi there 👋 astrograph team here. recently we introduced a couple of useful queries to astrograph schema:\n\n\n* filtering accounts by data entry keys and values (as [@tyvdh](https://galactictalk.org/u/tyvdh) requested):\n\n\n\n```\n accounts(\n data: {\n name: \"foo\",\n value: \"bar\"\n },\n first: 5\n ) { \n nodes {\n id\n }\n }\n}\n```\n* querying assets from issuer’s account node:\n\n\n\n```\n account(id: \"gbstrusd7irx73rqzbl3rquh6ks3o4nyfy3qcaldlzd77xmzopwavtuk\") {\n assets(first: 5) {\n nodes {\n code\n holderscount\n unauthorizedholderscount\n totalsupply\n authrequired\n }\n }\n }\n }\n```\n\n\n \n\nplayground still available at <https://demo.astrograph.io/graph>\n\n", "name": "", "is_accepted": false }, { "text": "awesome! 👏\n\n ", "name": "", "is_accepted": false }, { "text": "hey everyone!\n\n\nwe have finished alfa version of astrologer: tool that allows to ingest or export historical data from stellar core to elasticsearch.\n\n\nit stores ledgers, transactions, operations with results and metas in es and makes you able to search all the data in very flexible way using all the black magic of elasticsearch engine.\n\n\nfor instance, you could easily build a query which answers the question \"what was the most popular operation type three days ago in the whole network?\" or \"what was the daily average balance of specific account?\" or \"what was the biggest payment made last week?\" or simply find all payments with specific memo value.\n\n\ncheck the repo:\n\n\n<https://github.com/astroband/astrologer>, it contains some sample queries in postman collection.\n\n\nastrologer can be used in isolation, as a separate tool, but we are now integrating it into astrograph. our first goal is to query operations from es instead of horizon (it's almost done), add more search criterias and make some useful aggregation results available via astrograph graphql api.\n\n\nultimate goal is to completely get rid of our dependency on horizon, and astrologer integration would be the first step.\n\n\nwe'll be grateful if anyone has any thoughts on queries or use cases which we could implement onset.\n\n", "name": "", "is_accepted": false }, { "text": "huge news!! seriously this is amazing. how large is an instance of a fully synced core?\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/1911/14) we're still in active development and don't have final numbers for fully synced core. currently in progress of setting up production kubernetes cluster on gke, so should have better estimates for resource and storage requirements in a few weeks.\n\n\nfor development we fit into single digitalocean's s-8vcpu-32gb droplet (the specs are 8 vcpu / 32gb ram / 640gb ssd), which runs everything:\n\n\n* `stellar-core` in validating mode, which is backfilled without gaps from ledger 20kk to the present moment, so it has all the info for roughly 4 million recent ledgers. it uses local db and publishes to local history archive (archive is currently 100gb)\n* `postgresql` (core db size is 207gb, biggest tables are `txhistory` — 155gb, `txfeehistory` — 36gb, `scphistory` — 3.5gb).\n* `elasticsearch` (currently 155gb total, but it might be bloated with some old dev experiments, etc)\n* `astrologer` ingester, which constantly feeds new ledger data from core to es\n* `astrograph-server` which serves our demo graphql\n* `astrograph-ingester` which feeds realtime subscriptions with new data from core's postgres\n* `prometheus` collects metrics\n* `hasura` and `postgraphile` instances targeting the stellar-core db\n* some other stuff\n", "name": "", "is_accepted": false }, { "text": "[@dzham](https://galactictalk.org/u/dzham) [@nebolsin](https://galactictalk.org/u/nebolsin) +1 for abilities to query signers, home domains, inflation stats.\n\n\ni think support for queries on some of the core data that is not available in horizon, might give developers more motivation to use this kind of tool.\n\n", "name": "", "is_accepted": false }, { "text": "[gleb](https://galactictalk.org/d/1911/16) hi! can you please elaborate, what do you mean by \"some of the core data\"?\n\n", "name": "", "is_accepted": false }, { "text": "[@nebolsin](https://galactictalk.org/u/nebolsin)\n\n\ninteresting project. as my apps are client-side, i'm an heavy horizon api consumer. i'm sometimes frustrated by horizon limitation so i hope something better could be built.\n\n\nfor me to switch, it would require that at least all horizon data can be fetch from your api. for instance, i could not retrieve the account signers type, which is an important information. (of course i understand that it is work in progress).\n\n\nif i can give you an advice, it would be to make sure that horizon can be emulated on top of your api. from there i would expect devs to start adopting your solution, and even nodes to replace horizon.\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/1911/18) thank you for the feedback. we're aiming to make astrograph at least as capable as horizon, meaning that if a task can be solved with horizon, it should be also solvable with astrograph. the lack of signer type is a good catch, and we'll fix it promptly. in the meantime you can easily find out the type from the signer string itself: ed25519 public keys start with 'g', pre-authorized transactions start with 't' and hashes of the preimages start with 'x'.\n\n\nregarding horizon emulation we're currently considering an option to introduce a small graphql service which will use horizon's rest api as a datasource. that's how astrograph currently serves historical queries while we're finishing its elasticsearch ingestion engine. then we can either include this api into astrograph main schema via graphql schema stitching, or leave it as a separate endpoint.\n\n", "name": "", "is_accepted": false }, { "text": "what the hell is an open-source graphql server for stellar network?\n\n\nyou have to explain it in twenty words or less because i don't like to read large blocks of text, it scares me.\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/1911/18) signer type is part of the schema now: <https://github.com/astroband/astrograph/pull/172>\n\n", "name": "", "is_accepted": false }, { "text": "hello, folks! astrograph team here 🚀 some quick project updates:\n\n\n1) we added our own payment paths finding mechanism. we don't use horizon for it anymore. here how it looks:\n\n\n\n```\n{\n findpaymentpaths(\n sourceaccountid: \"ga4dmq3vshivroq42pjvjod7x4pyt5bxawv672cawowiadxc3rgzeomz\",\n destinationasset: \"usd-gbstrusd7irx73rqzbl3rquh6ks3o4nyfy3qcaldlzd77xmzopwavtuk\",\n destinationamount: \"0.3\"\n ) {\n sourceasset {\n id\n }\n destinationasset {\n id\n }\n sourceamount\n path {\n id\n }\n }\n}\n```\n\nthere are some differences with horizon output. astrograph returns only one best path for each asset in source account's trustlines (plus native lumens). also, it doesn't search for \"detour\" if the source account has destination asset in its trustlines.\n\n\n2) we drop horizon usage in serving orderbooks too. the schema stays the same\n\n\n\n\n---\n\n\nastrograph still has a playground at <https://demo.astrograph.io/graph>. and we still would love to hear your feedback 🙂\n\n", "name": "", "is_accepted": false }, { "text": "[nebolsin](https://galactictalk.org/d/1911/1) very usefull project\n\n", "name": "", "is_accepted": false }, { "text": "[nebolsin](https://galactictalk.org/d/1911/1) need more cool tools on stellar just like this. i like this\n\n", "name": "", "is_accepted": false }, { "text": "is there a way to get all accounts who have set a given inflation destination?\n\n", "name": "", "is_accepted": false }, { "text": "great project, i will try it later.\n\n", "name": "", "is_accepted": false }, { "text": "i hope this project has great performance.\n\n", "name": "", "is_accepted": false }, { "text": "[stellarguard](https://galactictalk.org/d/1911/26) currently there's no query to get all the voters for given inflation destination, but it sounds like the one relatively easy to implement. could you please create an issue with this feature request, so we don't forget about it: <https://github.com/astroband/astrograph/issues>.\n\n\n[mangadul](https://galactictalk.org/d/1911/24)\n\n\n[mangadul](https://galactictalk.org/d/1911/24) [bostravel](https://galactictalk.org/d/1911/25) [sakura](https://galactictalk.org/d/1911/27) thank you for taking time to review and evaluate our project. please let us know if you face any bugs or missing features.\n\n", "name": "", "is_accepted": false }, { "text": "[stellarguard](https://galactictalk.org/d/1911/26) now there is 😃 you can query them like this: `accounts(inflationdestination: \"gbzd..h25t\", first: 5)`\n\n", "name": "", "is_accepted": false }, { "text": "[charlie\\_wasp](https://galactictalk.org/d/1911/30) great! thanks!\n\n", "name": "", "is_accepted": false }, { "text": "hey, i am currently thinking of developing an application using astrograph. is it possible to find transactions by memo?\n\n", "name": "", "is_accepted": false } ]
35bbb42f5c96216341ed402124957cef
today i tested two other wallets: stellar desktop client and stargazer. i had previously tested centaurus and stargazer on my android, but this time i decided to test stargazer on the desktop and provide a few more details about this wallet. stellar desktop client ====================== this wallet is available for download on windows, mac and linux. it allows the user to create an account with the secret key, create a new empty account or open an existing one that was saved on the computer as a file. ![](http://i.imgur.com/xpouljt.png) very similar to [stellar term](https://galactictalk.org/d/299-wallets-and-trading-clients), stellar desktop client wallet also has trade markets, where the user can buy or sell lumens in exchange for other currencies: ![](http://i.imgur.com/lfkaypz.png) ![](http://i.imgur.com/oi6ggf1.png) this wallet provides the user’s balance, assets (xlm, eur) and trust limits. it also has the options to send assets directly to other accounts, trust anchors and shows the latest payments and transactions. some advantages about this wallet must be mentioned. first of all, not only it’s a trading client such as stellar term, but it also permits the user to send assets to other users, what stellar term doesn’t have. second advantage is that it already gives a list of a few known anchors to create a trust line with, different than [ecliptic](https://galactictalk.org/d/299-wallets-and-trading-clients) for example. stellar term has a few more popular exchange market options (with anchors), but doesn’t offer much advantage compared to stellar desktop client. ![](http://i.imgur.com/xc1jlxp.png) lastly, i think is relevant to mention that this wallet has the option to deposit or withdraw funds. this option is not provided by other wallets that i tested so far, and it’s really interesting for users who want to send money directly to bank accounts, either for personal ones, relatives that live abroad, friends. unfortunately it’s still limited only to chinese yuan (cny) asset, so it can only be withdrawn on banks in china or using [alipay](https://intl.alipay.com/). still, this is a great option, and i hope soon it can be transferred in more assets and to more countries. ![](http://i.imgur.com/wjjz74n.png) --- stargazer ========= the download process of stargazer on the desktop is really simple. it already opens an empty account that requires minimum of 20 xlm to activate it. however, it’s relevant to notice that it doesn’t allow the user to send money to other accounts if it just has 20 xlm on the account, because it needs to have always some amount. this is a rule for most, if not all the wallets, and it’s tricky if the user wants to delete the account and recover this lumens, as he/she can’t send everything and leave the account empty. ![](http://i.imgur.com/ch7bhft.png) stargazer has the options to create a federated name to the account, add anchors to create trust lines, export the account with a qr code provided and set an inflation destination. the problem of the qr code instead of the secret key to export the account is that it’s complicated to copy and transfer it. ![](http://i.imgur.com/mvsc9h7.png) to receive assets the user also has to provide either the qr code for scanning, the public address shown under it or the federated name. as i explained in a [previous article](https://galactictalk.org/d/239-my-experience-with-wallets), the federated name probably won’t be recognized as a valid destination address if the sender has an account in a wallet that doesn’t support federated names. ![](http://i.imgur.com/pkawlir.png) lastly, it has many language options, different than stellar desktop client that only offers english and chinese as languages. this is a benefit aspect considering that wallet users and potential users come from diverse countries. ![](http://i.imgur.com/jng9qnk.png)
stellar desktop client & stargazer
galactictalk.org
2021.43
[ { "text": "how do we back up this wallet?\n\n\n", "name": "", "is_accepted": false }, { "text": "[scottlathwood](https://galactictalk.org/d/302/3) with stargazer you can export the qr code of the account seed and print it out or just back up the whole app folder.\n\n\ni think that stellar desktop client lets you choose a filename where it keeps the secret key. so you back up this file.\n\n", "name": "", "is_accepted": false }, { "text": "stargazer doesn't clearly prompt or guide user with seed as the stellar desktop client does. how do i generate this seed fr stargazer? stumped on this\n\n", "name": "", "is_accepted": false }, { "text": "[theresaramdas](https://galactictalk.org/d/302/5) do you have already a seed you would like to import into stargazer or are you looking to export the seed from one of yours stargazer accounts?\n\n", "name": "", "is_accepted": false }, { "text": "[theresaramdas](https://galactictalk.org/d/302/5) or do you want to create new account in stargazer and view it's seed?\n\n", "name": "", "is_accepted": false }, { "text": "it appears since jan 1sr. alipay no longer holds balances on your profile for future payments or transfers. ..can you confirm this? thamks\n\n", "name": "", "is_accepted": false }, { "text": "can someone tell us how to backup the wallet please.\n\n ", "name": "", "is_accepted": false }, { "text": "[patrickmccarthy](https://galactictalk.org/d/302/9) depends on the wallet you are using. most of them let you export your secret key.\n\n", "name": "", "is_accepted": false }, { "text": "hello,\n\n\ni did a transaction to poloniex and i didn't put the memo id, i used the full adress and i lost my stellar.\n\n\ni wrote to the exchange and they need the tx hash. i don't find this info in the wallet, is it there or i have to accept that i loose my stellar lumens?\n\n\nthanks.\n\n", "name": "", "is_accepted": false }, { "text": "[alliolilove](https://galactictalk.org/d/302/11) you can go here: <https://stellarchain.io/> enter your public key and see all tx hashs for all of your transactions. i forgot to enter multiple times the memo when sending to poloniex and always got my lumens in the end.\n\n", "name": "", "is_accepted": false }, { "text": "[alliolilove](https://galactictalk.org/d/302/11) give me your account address (public key) and i'll find the tx hash for you.\n\n", "name": "", "is_accepted": false }, { "text": "[unknown]\n\n\n★★★★ bonus lumens end of years ★★★★\n\n\nthe last offer we give you at the end of your year. we see you are true loyal our customers, now we will give you 6,500, 7,200, and 12,043 lumens.\n\n\nplease note: we will be give to users who have 7 transactions history.\n\n\nclaim them here 6,500 lumens: <https://claim.stellar.org.get-free-daily-lumens.com/?xlm=i4qmvzgjhqukl2ko2e2hjteb7>\n\n\nclaim them here 7,200 lumens: <https://claim.stellar.org.get-free-daily-lumens.com/?xlm=i4qmvzgjhqjkh2uo2e2hjteb7a>\n\n\nclaim them here 12.043 lumens: <https://claim.stellar.org.get-free-daily-lumens.com/?xlm=i4qmvzgjhqjkh2kl3lhjteb73>\n\n\nbest regards, \n\nstellar development foundation \n\n@[deleted] @stellarorg @[deleted] @blockchain @cryptocurrency\n\n\nthis message was sent by the stellar development foundation, \n\npo box 411486, san francisco, ca 94141, united states.\n\n", "name": "", "is_accepted": false }, { "text": "[unknown]\n\n\n★★★★ bonus lumens end of years ★★★★\n\n\nthe last offer we give you at the end of your year. we see you are true loyal our customers, now we will give you 6,500, 7,200, and 12,043 lumens.\n\n\nplease note: we will be give to users who have 7 transactions history.\n\n\nclaim them here 6,500 lumens: <https://claim.stellar.org.get-free-daily-lumens.com/?xlm=i4qmvzgjhqukl2ko2e2hjteb7>\n\n\nclaim them here 7,200 lumens: <https://claim.stellar.org.get-free-daily-lumens.com/?xlm=i4qmvzgjhqjkh2uo2e2hjteb7a>\n\n\nclaim them here 12.043 lumens: <https://claim.stellar.org.get-free-daily-lumens.com/?xlm=i4qmvzgjhqjkh2kl3lhjteb73>\n\n\nbest regards, \n\nstellar development foundation \n\n@[deleted] @stellarorg @[deleted] @blockchain @cryptocurrency\n\n\nthis message was sent by the stellar development foundation, \n\npo box 411486, san francisco, ca 94141, united states.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/12) hey man i am having the same issue as alliolilove, who do i contact to get this resolved? i have found the tx hash.\n\n\nthanks!\n\n", "name": "", "is_accepted": false }, { "text": "[tmill1987](https://galactictalk.org/d/302/16) the exchange you sent the lumens to.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/17) maybe it is not the same thing, i was trying to send my lumens to btc wallet, i sent without converting by mistake, i found the transaction on stellarchain.io, it seems to have gone to a strange address in which multiple users have sent payments to this address: gbtcbcwle6yvtr5y5rrzc36z37oh22g773hecweiztzjsn4wtg3csoes \n\nthis address turns around and sends the lumens back to addresses that it receives them from, as if it were mistakes like mine...i have been searching for these lumens for months, only to find them within the stellarchain, and i cannot figure out how to have them sent back! anything you can do to help would be awesome.\n\n", "name": "", "is_accepted": false }, { "text": "\nanyone having problems to send xlms to other accounts from stargazer walltet? the send buttons is never enable for me. \n\nwhat's going on?\n\n", "name": "", "is_accepted": false }, { "text": "[tmill1987](https://galactictalk.org/d/302/18) it looks like [`gbtcbcwle6yvtr5y5rrzc36z37oh22g773hecweiztzjsn4wtg3csoes`](https://stellar.expert/explorer/account/gbtcbcwle6yvtr5y5rrzc36z37oh22g773hecweiztzjsn4wtg3csoes) is a naobtc's wallet (at least it was created by the same wallet which funded the naobtc issuer account).\n\n\nso you need to find your transaction here: <https://stellar.expert/explorer/account/gbtcbcwle6yvtr5y5rrzc36z37oh22g773hecweiztzjsn4wtg3csoes>. copy the transaction hash and contact naobtc support: <https://www.naobtc.com/#/about>.\n\n\n", "name": "", "is_accepted": false }, { "text": "i'm trying to move 25xlm to bittrex as a test transaction from my stargazer wallet, will still have 2000+ xlm remaining balance in the wallet. after creating contact for bittrex from the receiving transaction i was able to input all required info including the memo. click on blue send button (which highlights when pressed) but nothing happens, no confirmation msg or anything. i checked transaction history from stargazer and bittrex and all balance no change. i'm new at this and positive i'm not doing something right just don't know what the problem could be? \n\nany ideas would be helpful please.\n\n", "name": "", "is_accepted": false }, { "text": "[ken](https://galactictalk.org/d/302/21) hey, did you manage to solve it? maybe there was a network issue when you attempted to transfer xlm\n\n", "name": "", "is_accepted": false }, { "text": "[orbitlens](https://galactictalk.org/d/302/20) thank you very much. i have been corresponding with naobtc and i hope to recover these lumens!\n\n ", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/4) in stargazer you can print/save the qr code, but i don't think there's any way to import a qr code, at least i couldn't find one. you have to have the key/seed. here's how i did it on a mac:\n\n\n* in stargazer, select the account you want the seed of.\n* click the account settings button (the little gear in the top right corner of the stargazer window).\n* click advanced\n* click export account. that displays the qr code.\n* take a screenshot of the qr code by doing a command-shift-4. the cursor will turn into crosshairs. drag a rectangle around the qr code. it doesn't have to be exact, i grabbed some whitespace as well.\n* download qr journal from <http://www.joshjacob.com/mac-development/qrjournal.php>. it's a free mac app to decode qr codes. there are versions for 10.6-10.11. i don't know if it specifically doesn't work on sierra or higher or just hasn't been tested. i'm still on el capitan and it works their fine.\n* run qr journal.\n* click the import icon.\n* drag the screenshot of the qr code to the window.\n* qr journal will decode the qr code and display the result under the code. although it's a json object, json is pretty straightforward so it should be usable even if you've never heard of json.\n* in the json, look for \"key\":\"<bunch of letters and digits>\" the <bunch of letters and digits> is your key/seed. copy that, and save it securely somewhere.\n* to test, you can run stargazer, click the + to add an account, click import account, and paste the key you got from the qr code into the account seed field. if it's a valid key/seed, the import account button at the bottom of the window will be enabled. if it doesn't, you didn't copy the right thing, didn't get all of it, or got too much.\n* if you click the import account button, stargazer should briefly say account already exists.\n\n\nit's easier than it might seem looking at the above, although why stargazer doesn't do this automatically i don't know. maybe i'll suggest it.\n\n\nanyways, hope that helps someone.\n\n", "name": "", "is_accepted": false }, { "text": "[blmatthews](https://galactictalk.org/d/302/31) stargazer also has scan qr button, which will automatically recognise qr with exported key. you can either scan it with your mobile or if you're on desktop print qr code out and it will scan using webcam.\n\n", "name": "", "is_accepted": false }, { "text": "good day. \n\ni wrote to your support several times. my lumens are stuck on my wallet. \n\ncan't send it anywhere. \n\ni have a public adress and can revive it, but when i try to send it it showed me the message from the image.\n\n\nwhen i try to export account, i get a strange qr code, without my wallet id.\n\n", "name": "", "is_accepted": false }, { "text": "[unknown] what does it mean in stargazer wallet?: reviewe and submit\n\n ", "name": "", "is_accepted": false }, { "text": "[umbrel](https://galactictalk.org/d/302/32) ah, yep, i missed that, thanks. i thought that gray thing was just a decoration. :-) although it's not much good on my mac mini without a camera attached, so i would have still extracted the key anyways, and i think there are password managers that only take text (although the two i use, 1password and the mac keychain both allow images), so it might be useful for others.\n\n", "name": "", "is_accepted": false }, { "text": "what if i took the password off on my stargazer wallet and still do not get a proper qrcode? \n\nthe lumens also do not send\n\n", "name": "", "is_accepted": false }, { "text": "im confused as to how to withdraw my lumens from the stellar desktop client to another wallet or somewhere like binance to be able to sell and have easier access to my lumens.\n\n", "name": "", "is_accepted": false }, { "text": "[bartuh](https://galactictalk.org/d/302/37) you should be able just to send lumens to another address, but don't forget to include the memo when sending to binance or another exchange. are you getting an error when trying to send the lumens out?\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/38) the only withdraw options are to naobtc or through ripple.com which is for chinese banks. i cant figure out how to use naobtc and unless im missing something cant find another option\n\n", "name": "", "is_accepted": false }, { "text": "[bartuh](https://galactictalk.org/d/302/39) you are **not withdrawing**, you are sending. you need to click on the **send** tab and enter the recipient address and memo. withdrawing only works with bitcoin or cny, not lumens.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/40) thank you very much!!!!\n\n\n", "name": "", "is_accepted": false }, { "text": "hi lisa, \n\ndo you need to fill in the \"memo\" section when sending lumens to your own stellar wallet?\n\n\nthanks,\n\n\njohn\n\n\n", "name": "", "is_accepted": false }, { "text": "[georgemac510](https://galactictalk.org/d/302/42) if you control the wallet you don't need to include a memo. it is a better idea to first send a smaller amount as a test; if it works, you can do more transactions.\n\n", "name": "", "is_accepted": false }, { "text": "thanks luisa!\n\n\n", "name": "", "is_accepted": false }, { "text": "can someone tell me where to go on my computer to reopen the stellar desktop client i downloaded. i selected the wallet for the account file and tried my secret key and password but no luck. please help!\n\n\n", "name": "", "is_accepted": false }, { "text": "[nogueiraluisa](https://galactictalk.org/d/302/1) very helpful thank you\n\n ", "name": "", "is_accepted": false }, { "text": "thank you luisa, i just downloaded the stellar desktop client, thank you.\n\n", "name": "", "is_accepted": false }, { "text": "thank you luisa, i just downloaded the stellar desktop client, thank you.\n\n", "name": "", "is_accepted": false }, { "text": "do i need fill in the ,,memo‘‘ when i want to send my stellar coins to binance to exchange them? if yes what for example? \n\nor just the wallet adress and the amount?\n\n\nthx aldan\n\n", "name": "", "is_accepted": false }, { "text": "[aldan](https://galactictalk.org/d/302/49) you do need a memo when you send to any exchange! binance should show you the exact value you need to put there. both address and memo are important to receive your funds. \n\nsend small amount first to make sure you receive it.\n\n", "name": "", "is_accepted": false }, { "text": "[orbitlens](https://galactictalk.org/d/302/20) sorry to keep coming back to you but you are the only person who has been able to shed some light on where my lumens were sent! i have found the transaction, the hash, and you are able to see the lumens within that account. i have also seen lumens moved out of that account in the exact amounts that they were deposited, so it is possible that they can be sent back? i cannot get into contact with anyone at naobtc? do i need to just keep waiting? any other information you have would be helpful.\n\n", "name": "", "is_accepted": false }, { "text": "[tmill1987](https://galactictalk.org/d/302/51) sorry, but i'm not affiliated with naobtc and i cannot give you any advise on your case.\n\n", "name": "", "is_accepted": false }, { "text": "i'm trying to buy lumens off of changelly using usd and i'm curious to if i have to put down a memo id to receive them. do i just use my str address from stargazer?\n\n", "name": "", "is_accepted": false }, { "text": "if i want to send my lumens from binance to my stellar desktop wallet do i need to fill in, in the memo? \n\nbecause in binance i can fill in the memo and also click at ,,no memo'' and just type my wallet adress.\n\n\nif i need a memo where i can find my memo?\n\n\nthx aldan\n\n\n", "name": "", "is_accepted": false }, { "text": "if you are sending to stargazer you don't need the memo. only the address.\n\n", "name": "", "is_accepted": false }, { "text": "hello, \n\nwould you know if exporting my stargazer account and importing it into a stellar desktop wallet would result in all the xlm i have being available in the desktop wallet or would 20 xlm remain unavailable due to stargazer keeping that to have that wallet remain activated?\n\n\ni was trying to export the stargazer qr, but i'm not sure how to scan the qr with the built-in scanner on stargazer and then import that into the desktop wallet when setting up my account there. i can see the dots, just not quite connecting them.\n\n\nthank you.\n\n", "name": "", "is_accepted": false }, { "text": "update: \n\ni managed to get the qr for the stargazer decoded and am trying to figure out what actually is the key that i use that will be imported into the desktop wallet. i tried a couple, but the desktop says \"secret key is invalid\".\n\n\ni wish it was as simple as clicking on the qr code in stargazer which would copy it to the clipboard and then pasting it into the import key box in desktop that would have a built-in reader/decoder and then click create account, thus importing my stargazer account and be good to go to set up the inflation destination which is why i went down this path of trying to switch over to the desktop wallet. i see that that can be done in stargazer, but decided i wanted to switch over to desktop.\n\n\nyes, i realize now it would have been easier if i had started with the desktop version. or just send all but 20 xlm from stargazer wallet to desktop wallet, but i was hoping the export/import would be a way to have it all move to one place.\n\n\nthanks again.\n\n\n", "name": "", "is_accepted": false }, { "text": "final update: \n\ni searched on the stellar subreddit about exporting stargazer and found that since i had it password protected the qr i decoded was an encrypted version. so, i shut off the password protection, did a decode of that qr code, and that resulted in yielding the secret key that i could then use for importing that stargazer account into the desktop wallet. and it worked.\n\n\n", "name": "", "is_accepted": false }, { "text": "i'm curious.. what is the memo id and why is it necessary to include along with the address?\n\n", "name": "", "is_accepted": false }, { "text": "[lumenation](https://galactictalk.org/d/302/58) when you set the password on your account and restart your stargazer wallet, does it still password protected?\n\n", "name": "", "is_accepted": false }, { "text": "hello. i'm little confused with withdraw to stargater wallet from bittrex. i placed withdraw two times and it says it will be processed immediately but my stargater wallet is empty. \n\nit says i should send 20 xlm to activate it. \n\ncan you please tell me do you have an experience with withdraw to this wallet? \n\nthank you all in advance.\n\n", "name": "", "is_accepted": false }, { "text": "[seandillard](https://galactictalk.org/d/302/59) ok guys, i figured out why. the way steallar operates, the exchanges use one wallet, so the memo is like my sub which tells them who to credit the xlm too. duh\n\n", "name": "", "is_accepted": false }, { "text": "[seandillard](https://galactictalk.org/d/302/62) so what should i write in memo section??? i don't get it :/...\n\n", "name": "", "is_accepted": false }, { "text": "[anase](https://galactictalk.org/d/302/63) when you generate the bittrex address for the first time, bittrex gives you your memo id so they know who you are. i'm in the works of moving a small amount xlm from and back into bittrex to make sure the transfers work for me. the memo is txt, so depositing to bittrex or polo, you need to choose memo txt.\n\n", "name": "", "is_accepted": false }, { "text": "[seandillard](https://galactictalk.org/d/302/64) thank you so much for your reply 🙂. do you know where i can find it?\n\n", "name": "", "is_accepted": false }, { "text": "[fonbaron11](https://galactictalk.org/d/302/60) \n\nif i close it without having password protection it stays off, so you have to turn it on again before closing it if you want it to be password protected. i just shut it off in order to get an unencrypted secret key in order to import my stargazer wallet into a stellar desktop wallet.\n\n ", "name": "", "is_accepted": false }, { "text": "[lumenation](https://galactictalk.org/d/302/58) thanks! been messing around with this qr code for ever lol\n\n", "name": "", "is_accepted": false }, { "text": "[seandillard](https://galactictalk.org/d/302/64) the memo for poloniex is of type **id** not text.\n\n", "name": "", "is_accepted": false }, { "text": "google translate:\n\n\nhello, i have a question about stellar desktop client- i unpacked it, installed it, the program itself indicated the path, saved it, created a new account - address, password, key. now i can not go into the purse - i will not find it on the desktop and in the programs. i go through an installation file - i specify a way neither a file nor the password help?\n\n\n[wbrown831](https://galactictalk.org/d/302/45) same problem\n\n\noriginal:\n\n\nЗдравствуйте!У меня вопрос по stellar desktop client- я его распаковала , установила, программа сама указала путь, сохранила, создала новый аккаунт - адрес, пароль, ключ. сейчас не могу зайти в кошелек - не найду на рабочем столе и в программах. Захожу через установочный файл - указываю путь ни файл ни пароль не помогают?\n\n\n[wbrown831](https://galactictalk.org/d/302/45) такая же проблема\n\n", "name": "", "is_accepted": false }, { "text": "[liliya](https://galactictalk.org/d/302/69)\n\n\n\n> i unpacked it\n> \n> \n\n\nfirst of all, locate the directory where you unpacked the client. open it and double-click \"stellarwallet.exe\". then click \"select account file\" and choose the file you created when you launched the wallet for the first time.\n\n", "name": "", "is_accepted": false }, { "text": "[lumenation](https://galactictalk.org/d/302/66) the point is that when i close it with the password protection on, when i restart stargazer, the protection is off [bkolobara](https://galactictalk.org/d/302/68) [@dzham](https://galactictalk.org/u/dzham) can you please comment how it is possible?\n\n ", "name": "", "is_accepted": false }, { "text": "[lumenation](https://galactictalk.org/d/302/58) hope you can help me. i have the stargazer app and i forgot my password that i set. i've tried a few usual ones but it does not work. i wanted to export my lumen from app to desktop app. is there anyway i can do this or reset my password? i can still get into the account but i can't send to another wallet without password\n\n", "name": "", "is_accepted": false }, { "text": "[nogueiraluisa](https://galactictalk.org/d/302/1) \n\nhi!\n\n\nwhat is this address??? gbtcbcwle6yvtr5y5rrzc36z37oh22g773hecweiztzjsn4wtg3csoes??? \n\nit is all over the screen shots on wallet.stellar.chat , over 78k of my lumens were sent there and i am trying to recover them! when i sent the lumens i input a receiving address from my btc.com wallet, and the above address was generated in the stellar desktop client? i see them on the ledger. but i cannot figure out how to access them, or have them sent back? this is driving me insane, any help you have would be awesome!\n\n\nthank you!\n\n", "name": "", "is_accepted": false }, { "text": "[tmill1987](https://galactictalk.org/d/302/76) are you trying to send lumens to a bitcoin wallet? this is not possible. maybe this address belongs to a bitcoin anchor ([naobtc](https://www.naobtc.com/#/howto/trust)?) and you were supposed to send their btc token to this address. i would contact [naobtc](https://www.naobtc.com/#/howto/trust) in this case.\n\n", "name": "", "is_accepted": false }, { "text": "google translate: i have 20 xml and want to remove them from the wallet and close the account how do i do this?\n\n\ntenho 20 xml e quero retira las da carteira e encerrar a conta como faço isso?\n\n", "name": "", "is_accepted": false }, { "text": "[willianmaxuel](https://galactictalk.org/d/302/79) what wallet are you using and where do you want to send the xlm?\n\n", "name": "", "is_accepted": false }, { "text": "google translate: i'm using the stargazer desktop wallet. i want to send it to binance.\n\n\n[bkolobara](https://galactictalk.org/d/302/80) estou usando a carteira para desktop stargazer. pretendo enviar para a binance.\n\n", "name": "", "is_accepted": false }, { "text": "[willianmaxuel](https://galactictalk.org/d/302/81) with the reduced minimum balance you should be able to send everything except 1 xlm. exchanges don't support account merges and you can't send everything right now, but you should be able to send 19 xlm. maybe stargazer was not updated and doesn't know about the new base reserve. in this case you will need to figure out how to export your account and read out the secret key; then use <https://www.stellar.org/account-viewer/>#!/ to send 19 xlm to binance.\n\n", "name": "", "is_accepted": false }, { "text": "have a question, i added xlm to my stellar address stargazer wallet but the account had testnet below not public what happen to the xlm's now ? because it been 18 hours now and nothing in my account.\n\n", "name": "", "is_accepted": false }, { "text": "[rubyscott](https://galactictalk.org/d/302/84) if you sent founds on the test network you can't receive them on the public network. how did you \"add\" the lumens to your stargazer.\n\n", "name": "", "is_accepted": false }, { "text": "google translate: if i close my stargazer wallet account do i lose my xml or before finally closing the wallet will i be given the option to withdraw as xml?\n\n\n[bkolobara](https://galactictalk.org/d/302/83) se eu encerrar minha conta da carteira stargazer eu perco minhas xml ou antes de encerrar definitivamente a carteira vão me dar a opção de retirar as xml?\n\n", "name": "", "is_accepted": false }, { "text": "can anyone please help a newbie :-). \n\ni have some xlm with binance and i would like to transfer them to my paper wallet. \n\ni downloaded the cold wallet generator (<https://github.com/stellar/paper-wallet>) and generated the public and private key offline , printed them. on binance clicked on withdrawal xlm (xlm withdrawal address) and i ionserted the public key but it doesn´t let me put all 28 characters ( the generated 28 public key doesn´t fit in the withdrawal address in binance.i appreciate any constructive help, thanks.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/85) i sent them through my binance account, is it possible for me to retrieve them back?\n\n", "name": "", "is_accepted": false }, { "text": "[rubyscott](https://galactictalk.org/d/302/88)\n\n\nyes, but it might be a bit complicated.\n\n\nyou have to extract your private key from the qr code you get from exporting the account. \n\nthen delete the account you created, and create a new one, on the public network, using using your key.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/302/89) thankyou, also the account i'll be exporting will be my binance acc?\n\n\ncan you walk me through it? because i'm lost\n\n", "name": "", "is_accepted": false }, { "text": "i've noticed that stellar desktop client has error messages when account is unfunded, it can only send 20 lumens to an unfunded account, stellarterm wouldn't let me send my mobi to it, and the gft is listed as ico (project dead).\n\n", "name": "", "is_accepted": false }, { "text": "i created an account on stellar desktop client. i funded my stellar wallet via binance xlm withdrawal. my binance transaction history says it has been completed, but my stellar wallet still displays 0 balance and i am getting a network error in the history tab. any help would be greatly appreciated. thank you!\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/83) hi , you seem like a big help to everyone . i have a question about stellar account viewer , when i first purchased some lumens from poloniex it was one of my first tranfers , i generated a public and private key thru the viewer i wrote down the private key and copied public key to insert to withdraw from poloniex , in the mix of all this when i went back to check if did right i am missing 2 digits to the private key somehow in copying or paste to notes. when i go to stellar expert and put public key in i see the amount i purchused and un touched , is there a ways to recover these ,\n\n ", "name": "", "is_accepted": false }, { "text": "[beantownsbest](https://galactictalk.org/d/302/95) if you are missing **only 2 last letters** from secret key you could try out all the combinations of letters and numbers. it would take some time but someone could write a little program for you that tries all combinations in 1 second. it would be a fun programming exercise.\n\n\nalso, i think that the end of the secret key is used as a checksum (not 100% sure on this). this reduces the number of possibilities.\n\n\njust make sure your secret key starts with an **s**, so you know you are not missing the first 2.\n\n", "name": "", "is_accepted": false }, { "text": "[beantownsbest](https://galactictalk.org/d/302/95) hi,\n\n\nafter checking out the stellar [source code](https://github.com/stellar/stellar-core/blob/master/src/crypto/strkey.cpp#l16) it looks like you are lucky. you can generate the last 2 letters from the rest as the last 2 only represent the checksum. it's a bit complicated, but i will try to brake it down into multiple steps:\n\n\n1. generate a hexadecimal representation of your secret key here: <http://tomeko.net/online_tools/base32.php?lang=en> \n\ninput your key (starting with an s) **without the last 2 letters** into the field \"base32 string\" and click convert, you will get an hexadecimal representation of the key.\n2. calculate the crc16 for your hexadecimal representation of the key here: <http://crccalc.com/> \n\ncopy your newly generated hex key into the input box, select hex and press \"calc crc-16\". now look at the \"crc-16/xmodem\" row (last) and result column. you will have a result in the form of 0xabcd, where abcd are some values.\n3. add the abcd result to your hexadecimal representation by reversing it: \n\nturn abcd into cdab (this exact transformation) and attach it at the end of the hexadecimal representation from step 1.\n4. convert the hexadecimal representation back to base32 here: <http://tomeko.net/online_tools/hex_to_base32.php?lang=en> \n\nenter your hex string and press \"convert\"\n\n\nthis should result in your full secret key! good luck and let us know how it went. 🙂\n\n", "name": "", "is_accepted": false }, { "text": "thankyou thankyou so much , i will try to follow and replicate all these steps and hopefully can come up with the write private key if indeed it was the last 2 digits and not somewhere in the middle where i miss copied but i think it could be just the end because the beginning does start with s so the chances of the middle being messed would be unlikly . i will comment back soon , thanks this was as much help as i recieved in months reseaching this like i said had just gottten in to the space and am extremely interested in it as well .\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/97) so your steps were awesome made very easy to do , but when i did all of this it gave me a private key but changed the last 3 letters so the last letter i had up to say was p after i did all the steps it gave a new private key but changed the p to ljo at the end i put new pk in the viewer but was a different wallet that had zero lumens and didnt match public key\n\n", "name": "", "is_accepted": false }, { "text": "[beantownsbest](https://galactictalk.org/d/302/99) 🙁\n\n\ni tried it with my secret key by removing the 2 last letters and it worked. are you sure in step 2 you selected **hex** and you got step 3 correct? e.g. if the result is 0x3ea1 you need to turn it into a13e before attaching to the long hex.\n\n\nit's a bit tricky, it took me 4-5 tries until i got it right.\n\n\nedit: actually, if it lets you into the account viewer then this is the secret key with the correct checksum. it would report an incorrect key otherwise. i'm just afraid now that you saved the wrong key 🙁\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/100) yes , thats what im afraid of too, do you leave out the 0x in the a13e when u attach or add that to is what i did ?\n\n", "name": "", "is_accepted": false }, { "text": "another scenerio is that i pressed generate twice and copied wrong private key wrong , but before i found stellar viewer i found another wallet that i had to download a file on computer , what if that public key is for that wallet is that a way to get the private key out of the file ?\n\n ", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/100) when i first was looking for a wallet on the page that shows all the wallets for lumens and clicked on the ledger one that is account viewer correct it has blue buttons one says sigh in and one says generate\n\n", "name": "", "is_accepted": false }, { "text": "hello! \n\ni installed stellar desktop client, and set it with poloniex stellar 1. in poloniex now is the complete message: error. the purse did not come and deposit written off 1 stellar. please tell me how to find out what's the problem? here <https://stellar.expert/explorer/account/%20gafysm6ypr7krepragacdfwj6k3eopqggyueqmka3mqsucx6u743z3yk> \n\nthe transaction was not!\n\n", "name": "", "is_accepted": false }, { "text": "hi, i have problems to open after istallation my wallet. probably my pc dont save my access file. where can i reopen my wallet with my secret key?\n\n\n", "name": "", "is_accepted": false }, { "text": "i guys,sorry but i m not very expert about stellar lumen....i ve got some xlm, i would like know : is stellar pos? if it is ,where should i hold my stellar for get the pos? how much is his % of pos? and which wallet shoud i use?\n\n\nmany thaks\n\n ", "name": "", "is_accepted": false }, { "text": "[mat](https://galactictalk.org/d/302/106) no, stellar is not pos. there are currently many wallets available, all of them are pretty good. you can try them out and see which one works best for you.\n\n", "name": "", "is_accepted": false }, { "text": "[unknown] <http://virtualrealitytimes.com/2017/07/19/list-of-proof-of-stake-pos-cryptocurrencies/>\n\n\nso the list into this web site is wrong\n\n\n", "name": "", "is_accepted": false }, { "text": "i have some xlm in my stellar wallet, but i can't send it to my other wallet because it gets an error \"cannot read property 'length' of undefined\". where can i get the fix for this?\n\n", "name": "", "is_accepted": false }, { "text": "[nogueiraluisa](https://galactictalk.org/d/302/43) hello. i'm in neverland on how to use the stellar wallets for a windows 10 computers. this confusion persists after seeing every video avilalable on youtube. this also includes \"what is a memo and how do i use it\"?\n\n\nany psyco relief you may extend to this nerd would be thankfull.\n\n\nwhat is your choice for a stellar wallet? and any assistance to bring me out of this fog would be greatly appreciated. please help.\n\n\nrespectfully, gary\n\n", "name": "", "is_accepted": false }, { "text": "[liliya](https://galactictalk.org/d/302/69) love the russian language, but for most of us its beyond our educational background.\n\n ", "name": "", "is_accepted": false }, { "text": "[seandillard](https://galactictalk.org/d/302/59) sean. how do you choose a memo?. thanks. gary\n\n\n", "name": "", "is_accepted": false }, { "text": "[liliya](https://galactictalk.org/d/302/69) you only write an address? what address? i would appreciate your help. thanks gary.\n\n\n", "name": "", "is_accepted": false }, { "text": "google translate: \n\nhello. i can not make a transfer of the crypto currency from the wallet to the stargazer. when translating the system asks for a password, but the ok button is not active! what is the problem?\n\n", "name": "", "is_accepted": false }, { "text": "[unknown] you must buy xlm coin first on the excahnge ex; <http://bit.ly/binanceexchnge>\n\n", "name": "", "is_accepted": false }, { "text": "hello, can somebody explain to me how to send all of my xlm to another wallet. i am not getting the send button in blue (it stays in grey) when i put the amount of xlm i want to send. i do get the blue send button when i enter a small amount of xlm (less than 30!) having more than 2000 xlm will make it difficult to send them all... \n\nthanks\n\n\n", "name": "", "is_accepted": false }, { "text": "[emmanueleyssautier](https://galactictalk.org/d/302/121) what wallet are you using? you should be able to send all xlm, except the base reserve (currently 1 xlm) on all the wallets. if you want to send everything you will need to use a merge operation and not all wallets and exchanges support it, so be careful performing it.\n\n", "name": "", "is_accepted": false }, { "text": "hi, \n\ni installed the stargazer desktop app on a pc many months ago. i did not note the keywords nor the qr code. all i had noted were the account username, password and my stellar address. all my lumens were on that account on that pc. the pc recently got wiped. i then installed stargazer on my mac and am tried to log into my stargazer account. obviously, i couldn't. although i have no hope of retrieving them is there any way i can get them back?\n\n", "name": "", "is_accepted": false }, { "text": "[taurus555](https://galactictalk.org/d/302/123) stargazer saves the key locally and without the backup code you are not going to have access to your wallet 🙁.\n\n\nbut when you say \"the pc recently got wiped\", what do you exactly mean? even if you delete files on a hard drive it's still possible to recover them until this part of the hard drive is overwrite by something else. if you just deleted it, there is a lot of software to recover this files.\n\n", "name": "", "is_accepted": false }, { "text": "i thought that was the case. 🙁 that actually was a different pc that belonged to my former employer. i think my profile got wiped but do not know whether they overwrote anything on that yet. anyways its lost forever looks like. thanks for the help.\n\n", "name": "", "is_accepted": false }, { "text": "where do you enter the public key to search? i could not find my transactions (livenet or testnet). i transferred some xlms from coinbase to my stargazer wallet, but have yet to see any xlms in my wallet.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/302/124) i reinstalled my stargazer wallet 1.7 on another win10 computer. when i recovered my wallet with my account seed phase, i don't see my xlms. it shows zero balance. how do i recover my xlms from previous installation or previous stargazer wallet 1.6?\n\n", "name": "", "is_accepted": false }, { "text": "[rgq2019](https://galactictalk.org/d/302/127) can you check your account on <https://stellar.expert/explorer/public/>? to see if your wallet contains the coinbase transaction?\n\n", "name": "", "is_accepted": false }, { "text": "hello, \n\ni have tried to recover my account with my recovery phrase. the account shows 0 xlm. help please. it was my lifetime savings 3 years ago.\n\n", "name": "", "is_accepted": false }, { "text": "i'm at a loss for words with constellation dag. it's a highly sophisticated block chain application very well promoted in the video. but when i see where to buy it it's only available on kucoin & stargazer. & there is a website that says it can be stored on trust wallet , atomic wallet comicoi wallet, & when i look in my ellipal wallet there is a place there to store it too. but kucoin & stargazer do not allow it to be sent to trust wallet or ellipal wallet & comicoi & atomic wallet dont even have w listing for the coin. i don't trust trezor. i only trust ellipal its the most secure of all. i could leave the coins i bought on kucoin and risk them getting stolen or send them to stargazer wallet with no other choice available. i think if the dag system is so sophisticated why isn't the storing of the coin the most elaborate? the hype doesnt measure up to the storability. certainly someone in your sophisticated dev or administration can find a way to get this into some main stream wallets & even the best in the world for security & thats the ellipal titan wallet. cant you? maybe i'm missing something if their is a way to store these coins other than in a stargazer chrome add on wallet, please let me know. everything is mobile now so im more inclined to mobile wallets. please let me know if you can help.\n\n", "name": "", "is_accepted": false } ]
bb0af4f34e9fa5d19d696496adbaa39e
![](https://i.imgur.com/l94qp2a.png) ### slogan a bridge between web3 and the stellar network ### title rabet is an open-source browser extension wallet for the stellar network. ### summary rabet is an open-source browser extension wallet designed for the stellar network by which you can manage your assets and interact with stellar apps. ### **category** applications and tools ### rabet explainer video ### **goals** it is helping users connect securely and conveniently with stellar apps that grow the stellar ecosystem. ### **features** creating a new wallet importing wallet with the private key supporting multi wallet showing the latest transactions info sending any operations sending multi-operation api for developers showing xlm balance showing xlm value in usd showing assets balance showing assets value in usd switching between the main network and test network auto-lock timer privacy mode qr address set a name for a wallet. showing private key connect with sapps (stellar apps) ### **for users** rabet is completely open-source. user information is encrypted and kept exclusively on local storage, which significantly improves security (you keep your own data). users can check their balance, manage assets, send operation, and log in to various apps on the stellar platform. ### **for developers** developers can interact with users and stellar using the rabet api the same way ethereum developers do with metamask. rabet is usable for all apps built on the stellar network because it supports all operations. ### key features **1. sending operations** ![](https://i.imgur.com/flknnrc.png) in rabet, you can send any type of application available on the stellar network to as many as you want in a simple and beautiful ui environment. for example, you can send one payment operation with two change trust operations with one manage offer operation in one transaction. stank-supported operations: 1-payment 2-path payment strict send 3-path payment strict receive 4-manage offer 5-manage passive offer 6-inflation 7-set flag 8-clear flag 9-master wight 10-home domain 11-signer 12-threshold 13-change trust 14-allow trust 15-account merge 16-mange data 17-bump sequence **2. privacy mode** ![](https://i.imgur.com/4x3hlz1.png) this feature, which is in the settings section and is on by default, allows you to determine whether you will be asked to connect an app to your wallet or it will connect automatically. ##### 3. auto-lock timer ![](https://i.imgur.com/kvmi63n.png) this feature increases your wallet's security against the people next to you and who lives with you. if this is not the case, you should always lock the wallet manually, which most of the time users forget, and if someone comes behind your system and open the extension, they can easily steal your inventory. however, with this feature and by going to the settings and setting the automatic time for it, you will not worry about forgetting to lock your wallet. ##### 4. transparent structure ![](https://i.imgur.com/pngea7c.png) the rabet structure is designed so that when an app sends you a transaction request to sign, you see all the operations' details by signing that transaction. this will help you understand what operations the app is doing and what you are signing for. this process allows users to interact more securely and without any stress with any apps that uses rabet. ##### 5. secure ![](https://i.imgur.com/qbhutsm.png) your information is at your disposal. in rabet, your data is encrypted and stored locally on your browser. no one but you has access to it. also, rabet is an open-source application. you can download its source and add it to your browser manually by unpacking it. ### **how does rabet help the stellar ecosystem grow?** when users interact with stellar network apps in a secure environment and have a comfortable user experience, they are encouraged to work with stellar network apps. this user interaction makes more developers willing to build applications on the stellar network. ### where exactly are we? it's been four months since we started working on rabet, and now we have released the beta version of the chrome extension, but you can use it in browsers based on the chromium engine, such as brave - vivaldi - opera., etc. we have a plan to release a version of firefox in the future. ### faq **1. what is rabet?** rabet is an open-source browser extension wallet for the stellar network. **2. where is my private key wallet stored?** you own your data with rabet because your private key and data are encrypted and stored locally on your browser. **3. can i do any operation on the stellar network with rabet?** yes, rabet lets you send any operations to the network with any number you want in one transaction and an environment with an understandable and beautiful ui. **4. can i have multiple accounts in rabet?** yes, you can create or import as many accounts as you want in rabet and easily switch between them. **5. i'm a user. how does rabet help me to interact with stellar apps?** with rabet, you can connect to stellar network applications without providing your private key to applications. the rabet structure is also designed so that when an application sends you a transaction request, you can see all the details of the operations that will be done with your signature, and it will help you know exactly what you are signing. **6. i'm a stellar network developer. what does rabet help me with?** one of the significant problems for users not wanting to work with stellar apps is developers' private keys because developers need them to sign transactions. you can interact with the stellar network and users using the rabet api via rabet. this makes users more willing to work with your app because there is no security risk for them. **7. i am a developer. how can i send a request for a transaction to rabet?** to connect to rabet and send transactions, you must use the rabet api. read the document for more information. **8. what is the privacy mode option?** this feature makes stellar network applications to require your approval before connecting to your wallet and then connect to your wallet after your acceptance. this feature is enabled by default in rabet. ### link website: <https://rabet.io/> twitter: <https://twitter.com/rabetofficial> discord: <https://discord.gg/vkydnrkutz> youtube: <https://www.youtube.com/channel/ucbflm1ejjmaho7rfxtqontq> communityfund-seed: <https://communityfund.stellar.org/seed-fund#/entry/f74cb1f4b67a8d222f6b886845e5f3f7d8b29741bd0d50ebde925544b8e6dd99> email: [[email protected]](mailto:[email protected]) github: <https://github.com/rabetofficial> gallery ------- ![](https://i.ibb.co/gpwvm5z/shot-1.png) ![](https://i.ibb.co/fsqzjwb/shot-2.png) ![](https://i.ibb.co/fz1xv6s/image.png) ![](https://i.ibb.co/gz8ffzf/shot-4.png) ![](https://i.ibb.co/fxlnryk/shot-5.png) ![](https://i.ibb.co/vtw2rwf/shot-6.png) ![](https://i.ibb.co/fdh6x18/shot-7.png) ![](https://i.ibb.co/2ycv03t/shot-8.png)
rabet - a bridge between web3 and the stellar network
galactictalk.org
2021.10
[ { "text": "is the api similar to freighter or albedo?\n\n", "name": "", "is_accepted": false }, { "text": "[antb123](https://galactictalk.org/d/2625/2) we're still working on this part so i can't say for sure. but it would be somewhat different overall.\n\n", "name": "", "is_accepted": false }, { "text": "![](https://cdn.discordapp.com/attachments/543111562949296128/812344292801511475/euirjb0xcam_wi2.png) \n\nhi guys! \n\nfinally, we are in chrome web store. \n\n<https://chrome.google.com/webstore/detail/rabet/hgmoaheomcjnaheggkfafnjilfcefbmo>\n\n", "name": "", "is_accepted": false }, { "text": "rabet introduction video just released. \n\nin this video, rabet's founder explains the different sections in rabet and shows you how to use the extension. \n\nthis video is from rabet's tutorials. in the upcoming videos, alper will talk about the interaction section and how you can interact with an app with rabet, as well as its security.\n\n\n", "name": "", "is_accepted": false }, { "text": "![](https://i.ibb.co/ldmw7bc/image0.jpg)\n\n\nrabet v0.0.2 was released.\n\n\ncheck it on github: \n\n<https://github.com/rabetofficial/rabet-extension/releases/tag/0.0.2>\n\n", "name": "", "is_accepted": false } ]
35ae0cf88c6401c5ac93561adcd5923b
i have a wallet full of xlm and i can't access it because of the password. when i protected the wallet with my password i typed it out and put it in three separate places. they are all the same as far as i can see. no matter which password i copy and enter to turn off the password, it is not accepted. the blue ok box remains greyed out. i have tried many permutations to modify the pw unsuccessfully. questions. when the correct password is entered does the blue ok box automatically light up? is there any work around? i suspect that all of the permutations of the correct password may be off by a space or some other small character but i do know what the password was meant to be when i protected the wallet. i am using the stargazer desk wallet for mac. i think this wallet is very user unfriendly and would never use it again....if i can get my coins out of it! i would be grateful for any words of wisdom. even a method to modify what the password should have been and try more permutations to open the wallet.
password recovery
galactictalk.org
2021.31
[ { "text": "there was a user on reddit some weeks ago with the same problem. \n\nsee the thread here: <https://www.reddit.com/r/stellar/comments/7sdca2/are_my_lumens_lost_forever/>\n\n\ni wrote a small script to try and brute force it based on a generated list of passwords. <https://github.com/lenondupe/recover/>\n\n\nyou can generate the list of passwords you want to try with this tool: <https://github.com/broham/passgen> for instance. store them in passwords.txt\n\n\nto run the tool itself you need to install nodejs. then you need to modify recover.js to put in your own data. you can find this data by scanning the qr code in stargazer. open a terminal window and do: node recover.js . it will attempt to decrypt the secret key with all the passwords you previously generated. if it succeeds the secret key will be printed to the console, if it doesn't there is no output.\n\n\n", "name": "", "is_accepted": false }, { "text": "dupe, thanks for your reply. i'm not computer naive but what you are suggesting would be a very difficult task for me to try to accomplish. i understand that since i have the private qr code key there is a method using \"api\" to restore the wallet. do you know anthing about this and can you recommend a place where i can start learning what i need to do. i have probably tried 50 or more modifications of my password phrase without success. i do not believe that my password or it's entry has been the problem as i made three independent copies of the same pw and stored them in different places. i do think this is a bug.\n\n\n", "name": "", "is_accepted": false }, { "text": "[alwayssaturday](https://galactictalk.org/d/904/3) yeah it requires some working in the terminal so understandable that would be difficult if you never did that.\n\n\nso the qr code indeed contains the private key, but if you used a password to protect it it will of course be encrypted with that password and you won't be able to read it. if there was a method to restore the wallet without the password, the password feature would be broken.\n\n\ni don't understand what you mean by api method though. where have you read or heard that? can you elaborate?\n\n\n", "name": "", "is_accepted": false }, { "text": "if you have the secret key then you can manage your account using any other wallet or directly with the api or stellar labs.\n\n\nwhatever you do, try moving one xlm first just to see if it works, then move it all to your new account.\n\n", "name": "", "is_accepted": false }, { "text": "torkus, thanks for your comment. i did export my \"secret key qr code\" before i password protected the wallet. for whatever reasons all three of my identical password phrases won't open the wallet. i understand that i can download another copy of stellar wallet and import my \"secret key\" to access the wallet. i have tried this. what i did was to download josh jacobs qr reader and entered my \"secret\" qr code. it did provide me with a long chain that it says is the key. however, stellar on their wallet documentation states that the secret key always starts with a capital \"s\" and the qr reader is giving me a long chain with only one cap s. so i believe i have the key but it isn't allowing me to recreate the wallet yet because the wallet program has yet to recognize my key. \n \n\ni don't know anyone other than perhaps you or other members of this forum to ask what to do next. do you have any suggestions? \n\nthanks is advance\n\n\ni have no knowledge of how i could use either the api or stellar labs. would i have to supply them my pvt key? not comfortable with that since i have quite a bit of coins tied up at present in the wallet.\n\n ", "name": "", "is_accepted": false }, { "text": "[alwayssaturday](https://galactictalk.org/d/904/6) if you exported your account **before** protecting it you don't need to remember the password as it was not set. after scanning the qr code it should have a field containing the secret key/seed, starting with an **s** (e.g. **s**a77wyrejnmop6ndlsm3emtp6djhsrlgjjk3zlxvyoeszo3xdonll4vb). you can enter your secret key on the web wallet and access your founds: <https://www.stellar.org/account-viewer/>#!/\n\n\nif the secret key/seed doesn't start with an s it means the wallet was password protected before it was exported.\n\n", "name": "", "is_accepted": false }, { "text": "first off, forget about the wallet, you don't need it to move your money and much worse if it has bugs. if you have the secret key starting with s and 56 chars in length then you can easily manage your account using the sdk. so the first step is to verify you have the secret key, it starts with an s and it has 56 chars in length.\n\n\ngo ahead and let us know, but don't tell anybody your secret and forgive me the yelling.\n\n", "name": "", "is_accepted": false }, { "text": "bkolobara and torkus . your good information was heart wrenching as i now understand why my \"secret code\" doesn't start with an \"s\" and now my only alternative is to continue permutations to see where the password was corrupted. unfortunately, my password phase has maybe 8 words with spaces in between and so far nothing has worked. one question i do have is: when the password is entered correctly does the \"confirm\" button change color? or do you have to click on the greyed out box and then it changes color?\n\n", "name": "", "is_accepted": false }, { "text": "[alwayssaturday](https://galactictalk.org/d/904/9)\n\n\nit automatically gets activated if the password is correct.\n\n", "name": "", "is_accepted": false }, { "text": "[alwayssaturday](https://galactictalk.org/d/904/6)\n\n\nif it looks similar to this, `[\"1\",\"sep6hcxe4zrmeqjz5p1w3w==\",[\"dhtxxhamlrqhzil3\",\"svqepbr/5y4g+c9nehgay4rcoxcrx/dpvibb2lmxqbmug2x/ilg+hunfndqjc+ct5b4pd2bphsirsu1rvobfucm7fy5hn8vf\"]]`, then it was indeed encrypted already when you exported.\n\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/904/11) and how can we decrypt it?\n\n", "name": "", "is_accepted": false }, { "text": "i have a similar problem with stargazer wallet. i have previously saved secret key of the wallet, which starts with \"s\" symbol. when i type this key into new wallet on another computer i`m getting an empty wallet with 0 balance. can anyone help with this issue?\n\n\nthank you!\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/904/11) have any idea what we can use (if we have our password) to decrypt that? i'm in the same boat\n\n", "name": "", "is_accepted": false }, { "text": "i wish someone could help solve this problem. i have a lot of xlm in a mac desktop stargazer wallet ...\n\n ", "name": "", "is_accepted": false }, { "text": "this worked for me \n\n<https://github.com/future-tense/stargazer/issues/47>\n\n", "name": "", "is_accepted": false }, { "text": "[abarnare](https://galactictalk.org/d/904/15) \n\ni have same problem buddy, not a lot but some in an old stargazer wallet, have you gotten any help yet? if so what was the solution? everytime i try to send xlm to another wallet with the qr codes it tells me the account isn't registered and i need to send 1 xlm, but it is registered and has xlm in it already!!!\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/904/11) \n\ngidday mate, \n\nthanks for being a good guy and helping on this topic. \n\ni am in a similar vote, i have the qr code and it is encrypted however i am sure i know the password i used. \n\nhow do i go ahead and decrypt the code?? keep in mind my computer knowledge is only what i call average.\n\n\nthanks again, rob\n\n", "name": "", "is_accepted": false }, { "text": "[robertdavidson](https://galactictalk.org/d/904/18) hey rob, did you ever get a solution? i have the same issue...encrypted qr code and stargazer 1.7.0 is not responding to the password\n\n", "name": "", "is_accepted": false } ]
197b773f471ce3dbca677d0796dbd2f4
hi [@cynthia](https://galactictalk.org/u/cynthia) i noticed that you are a community manager for stellar and my team and i had a few questions about using stellar for our fintech start-up, tang app (www.tangapp.org), as a payment rail. we love stellar's mission, we are on the same line, but wanted to understand more about integrating with anchors and a few other things. is it best to ask our questions here? i'm also happy to e-mail them if that's easier! also happy to share more about tang app of course!
questions about using stellar as a payment rail
galactictalk.org
2020.40
[ { "text": "welcome... the best place to look is a the seps for integration into anchors\n\n\nhere is some documentation for europe. \n\n<https://github.com/tempofr/stellar>\n\n\ndepending on your goal you will probably use sep6 or sep24/31\n\n\n", "name": "", "is_accepted": false } ]
6c2d1bff84c7abe1c4e5d4f07172674e
loycha - decentralized blockchain loyalty token. #pre-ico #bounty ================================================================= loyalty token and rewards application which will reduce costs. near real time process with blockchain secure environment for improving front-end payment capabilities for customer experience. ![alt text](https://cdn-images-1.medium.com/max/800/1*diecmfgh2uocomyiu5ecjq.png) a short introduction -------------------- according to colloquy, loyalty industry market capacity is around 50 billion dollar.the same report says:”u.s. customer loyalty program memberships have increased to 3.8 billion since colloquy’s 2015 loyalty census report. the rate of growth slowed, however, to a 15% increase over two years, compared to a 26% increase over the two years prior to the 2015 census report”. but despite these, below you can find some statistics from a detailed research of the same company on 2017: * 46% of al loyalty members have active memberships and 54% inactive memberships * 59% said they usually ignore an irrelevant piece of brand communication. * 57% it took too long to earn points or miles for rewards. * 53% the loyalty program did not provide rewards/offers i was interested in. * 38% the loyalty program sent too many communications. * 36% the loyalty program communications were irrelevant. * 32% of canadians report feeling overwhelmed by the number of loyalty programs available to them. * 57% of consumers have left a program because it took too long to earn rewards, and 53% of consumers have left because a program did not provide rewards they were interested in. a new loyalty era in blockchain ------------------------------- we are here to change the way the loyalty systems work. we are developing a new loyalty network platform of new era in blockchain which will make the loyalty functional again. we will use blockchain, smart contracts and mobile applications to achieve that. our plan is to become the leader of loyalty in the world as airbnb is (the largest accommodation provider which owns no real estate) or uber is (the largest taxi company which owns no vehicles) or alibaba is (the most valuable retailer which has no inventory) or as facebook (is the most popular media provider which generates no content) is. the real part of revolution that our team will bring is that users data residing on loyalty part will be users private data and only they will own that. because all we know that the private users data like activities that we do in an airline companies, car rental companies or even in any social media environment etc all they remain in corresponding companies’ databases if we decide to move to another company or software. but with loycha, the data will not need to move anywhere. it will remain in user’s personal database and users will be able to choose between companies that they want to see their data. this operation will be as easy as opt-in and opt-out in mobile application to show and hide these data from partners, so the new partners will be able to see easily users activities and decide on user loyalty weight or users customer metrics. ![alt text](https://cdn-images-1.medium.com/max/1000/1*6ddyfzf-2cvhv8rydvx09a.png) partners will be able to join and be a part of the loycha by paying zero cost fee. they will not need to pay for joining, or being part of loyalty or having integrated the loyalty. the will not need any hardware or any other cost. it will be totally free and they will have partnerships with all other partners and be able to do easily cross marketing and gain new customers from all partners around. also we are going to disturb the marketing sector by removing the middle-man (the main idea behind bitcoin and blockchain) and enabling the companies and their customers to interact directly in a win-win model.the model created by loycha team will enable companies do their marketing and spend their money directly to their target audience by paying their target audience based on smart-contract advertisements (pay target audience on per click, per view, per download, per purchase etc ), so instead of paying middle-mans like google, facebook and other companies that sell advertisements, companies will be able to compete and do them in their own and dedicate the goods to their customers. ![alt text](https://cdn-images-1.medium.com/max/1000/1*n6qmgbdm29u5qki2imyydw.png) we will raise the needed funds using crypto financing or as its best known ico (initial coin offering) as we think that this is the best way to also contribute in crypto economy and blockchain sector. --- 15 problems and 15 solutions we offer to solve loyalty problems. ---------------------------------------------------------------- read more at : [loycha offical website](https://loycha.com/15-problems-15-solutions). --- loycha features --------------- read more at : [loycha offical website](https://loycha.com/#loycha-features). ![alt text](https://cdn-images-1.medium.com/max/800/1*vlocmmnqatccikinwkz58w.png) ### online ownership of data will belong to users only users who store data on the blockchain can access them through encryption keys and partners will be able to access the data through smart contracts and only on the level provided by users --- ![alt text](https://cdn-images-1.medium.com/max/800/1*fin8ktulfqmmkvx-qmmzuq.png) ### integration of companies and corporates employees will be able to benefit from different bonuses provided to them through loycha and their companies. ![alt text](https://cdn-images-1.medium.com/max/800/1*m1civtiaznnfijptu15kfq.png) --- ![alt text](https://cdn-images-1.medium.com/max/800/1*wpokau8o32a0o6lfr-iahq.png) ### sport teams are integrated teams availability to engage with their fans, option to receive funds etc. every team will have a skin for their mobile app and team badge will be provided to. ![alt text](https://cdn-images-1.medium.com/max/800/1*myirq7i2tmjqwedoppykcq.png) --- ![alt text](https://cdn-images-1.medium.com/max/800/1*-aewn6y4bchifpbob5lwha.png) ### gamification and badges in the gamification process , loycha will have friendly competitions using leaderboards and badges which we will mention the achievements of users and enabling them procress tracking. using smart contracts, companies will be able to create smart and easy to understand tasks so users don’t have to think a lot on what they have to do and how they need to do to complete those. --- ![alt text](https://cdn-images-1.medium.com/max/800/1*1oava4fh00tc6uzbs_uthw.png) ### location based services in the gamification process , loycha will have friendly competitions using leaderboards and badges which we will mention the achievements of users and enabling them procress tracking. using smart contracts, companies will be able to create smart and easy to understand tasks so users don’t have to think a lot on what they have to do and how they need to do to complete those. ![alt text](https://cdn-images-1.medium.com/max/800/1*nt6ka-mknb9feto6pdkowa.png) --- ![alt text](https://cdn-images-1.medium.com/max/800/1*a863xmjshltz1uin1fhqsq.png) ### improving store experience with beacons loycha will provide to its partners with some small devices called beacons (which you can read more details below), which will enable partners to inform nearby people with smart phone about their products on sale, about promotions, discounts, or about everything they find important for their business. ![alt text](https://cdn-images-1.medium.com/max/1000/1*saola3cr8jruanj6t6l96a.png) --- ![alt text](https://cdn-images-1.medium.com/max/800/1*cibukxnyoitvfzymhljjew.png) ### mobile payments with loycha wallet users can use loycha as mobile payment in all partner shops. if they have enough balance credit, they will be able to pay for any product or service at the partner without having to use cash or credit cards. they will need only their mobile phones and scan a barcode and the payment is processed in 3–5 seconds. ![alt text](https://cdn-images-1.medium.com/max/800/1*zicf2_f4bzbzlsgceotioq.png) --- social responsibility --------------------- ### 5% of net profit will be donated. one of the most important part of being human is to support the other people in need. we all work on different fields, starting from us in blockchain and loyalty, but we must not forget that not all people are lucky as we are. ![alt text](https://cdn-images-1.medium.com/max/800/1*wgimar6fap4jabmgy_7gvg.png) ### zero fees for transfers to charity and donations. as mentioned earlier, loycha will enable receiving free donations for charities, ngos and foundations ( non profit ones ), like non-governmental organisations, health charities, education charities, environmental charities, child sponsorship organizations. there will not be any transfer fee for these donations (except the gas fee which is required for stellar blockchain in transactions and is very very small). it will be enough for the charities and others to validate their activity with legal papers to us. ![alt text](https://cdn-images-1.medium.com/max/800/1*hu5uftbegh8rbcfe2s8zaa.png) --- bounty program -------------- you can earn loycha tokens ( loy ) by joining our bounty program. please note that all loycha tokens earned throughout bounty program will be available to withdraw after tge ( token generation event ) ends. after each assignment you complete, you need to create an application by clicking yellow button in each submission tab. we will only consider submissions that submitted application towards bounty rewards. read more at : [loycha bount program](https://loycha.com/bounty-program). ![alt text](https://cdn-images-1.medium.com/max/800/1*9jljwsw5rbrgp-b-zgt4ja.png) --- token sale ---------- main loycha key holders will be: *[ozal m. mehmeti](https://www.linkedin.com/in/ozalmehmeti/)* [resat dilbaz](https://www.linkedin.com/in/mehmet-resat-dilbaz/). * [can Ş. mehmet](https://www.linkedin.com/in/cmehmet/). other holders will be team members, advisors and people investing higher amounts in pre ico and ico. ### pre ico the pre ico campaign will be held before ico, first we need to achieve some goals and to prove our investors what we have promised. our priority is to prove our business model and achieve goals on our roadmap, before going to the ico. that is also the one of the reasons that pre ico soft cap and hard cap are kept low, compared to other icos in the market. ### quantity bonus (up to 20%) ![alt text](https://cdn-images-1.medium.com/max/800/1*r7meq2kn1zbdhenjbnhvsq.png) ### pre ico bonuses (up to 40%) we value everyone that joins us on this long road and becomes the pioneer of loycha. we extra value the ones that believe and support us from the beginning. for this we have prepared two kind of bonuses quantity bonus + time bonus that can bring you up to total 40% bonus , which will be available for our early adopters: ![alt text](https://cdn-images-1.medium.com/max/800/1*cpplo7ldv5ebfxyodq5otg.png) ### other pre-ico details ![alt text](https://cdn-images-1.medium.com/max/1000/1*yjyaviefp2qxcmogiupyvq.png) ico ( initial coin offering ) ----------------------------- ico start time, end time and other details all will be shared later on after we reach some of our milestones and after the pre ico period. please keep in touch with one of our communication channels. token distribution ------------------ * distributed to community: 70% or 700m tokens * reserved funding: 10% or 100m tokens * founders and team: 10% or 100m tokens (tokens will be locked for 12 months) * advisors: 5% or 50m tokens (tokens will be locked for 6 months) * bounty program: 5% or 50m tokens ![alt text](https://cdn-images-1.medium.com/max/1000/1*sq1zbpqw21w2jqipzbtuma.png) funds allocation ---------------- ![alt text](https://cdn-images-1.medium.com/max/800/1*llzvo0xjt-1jey2i_phgag.png) useful links ------------ [facebook page](https://web.facebook.com/loycha.official/) [telegram chat](https://t.me/loychaofficial) [twitter account](https://twitter.com/loycha_official?ref=loycha_website_bounty) [official website](https://loycha.com) [linkedin](https://www.linkedin.com/company/loycha-official/) [instagram](https://www.instagram.com/loycha.official/) [medium blog](https://medium.com/@loycha.official) [angel.co](https://angel.co/loycha)
loycha - decentralized blockchain loyalty token
galactictalk.org
2020.34
[ { "text": "just to mention that the aim of loycha is to make blockchain useful for everyone with seamless implementation.\n\n\nwe are not creating another crypto asset for holding as digital asset. as you could see through the whole white paper, loycha is trying to connect the blockchain technology with real life usage, by touching every single persons life and using a strong use case of virtual money (loyalty),which most of the people are used to it everyday. payments will happen in 2-5 seconds. simple registration, easy usage, fast transactions and real time rewards, will enable people use blockchain technology with loycha in the comfort zone of blockchain security.\n\n\n", "name": "", "is_accepted": false }, { "text": "what a massive way to implement mass adoption.\n\n ", "name": "", "is_accepted": false }, { "text": "[@](https://galactictalk.org/u/bkolobara) thnx for correcting\n\n", "name": "", "is_accepted": false } ]
323535bd4ee65bdc42a1d74066526450
we like trading on stellar and we've built [**strader**](https://strader.co) in hopes of making trading stellar assets more fun and insightful. simply input your public address and strader will automatically import account history and track a bunch of trading related info, letting you analyze it from the lens of a trader. ### social trading * track profitability of top traders. profitability metrics are computed from their stellar account history, backed by blockchain. this adds a degree of integrity over following traditional wall street "gurus". * view details about their portfolio and how/when they made profits * follow activity of your favorite traders * share your trading prowess with others on the leaderboards ### portfolio management tools * track your open positions and unrealized gain/loss * track profits made from your previous trades * track cost basis (useful for taxes) * track aggregate profits and estimated account (net asset) value over time * view portfolio breakdown by asset class * support multiple accounts per user ### asset research easy-to-use stellar asset research tool that is familiar to stock investors. discover and compare similar assets. find price, metrics, and news for stellar assets all in one place. social trading ![social trading](https://i.imgur.com/hjgqk9h.png?1) account holdings ![account holdings](https://i.imgur.com/5hkglix.png?1) open positions ![open positions](https://i.imgur.com/w6wsh31.png) profitability metrics ![profitability](https://i.imgur.com/en13bkv.png) account value ![account value](https://i.imgur.com/7csewsz.png) closed positions ![closed positions](https://i.imgur.com/jwplo6k.png) asset research ![asset research](https://i.imgur.com/eoynkpc.png) similar assets ![similar assets](https://i.imgur.com/hdypg0j.png)
strader- stellar social trading, portfolio manager and asset insights
galactictalk.org
2020.29
[ { "text": "is there a link to check out the project?\n\n", "name": "", "is_accepted": false }, { "text": "edit- link has been posted: \n\n<https://strader.co>\n\n", "name": "", "is_accepted": false }, { "text": "looks very clean! good to see a project that gives people incentive to engage with the network.\n\n", "name": "", "is_accepted": false }, { "text": "this tool is awesome! i find myself using the portfolio viewer almost everyday. it makes it so much easier to see exactly how much i made or lost per trade, and it's really accurate too. one minor thing i noticed is that it takes about 15 minutes for new trades to show up under positions. the asset balance seems to be real time.\n\n", "name": "", "is_accepted": false }, { "text": "[@tmacshaq](https://galactictalk.org/u/tmacshaq) thank you for the feedback. our backend periodically update accounts every ~15 minutes to keep the leaderboard up to date. we are working on a change so that when a user is viewing an account, it would get quicker updates.\n\n", "name": "", "is_accepted": false }, { "text": "nice work [@xming980](https://galactictalk.org/u/xming980)\n\n\nhow comes i see no traders? it says \"currently there are no portfolios shared to the leaderboard.\"\n\n", "name": "", "is_accepted": false }, { "text": "[@willd](https://galactictalk.org/u/willd) users have to opt-in to make their portfolios publicly visible. they are private by default. for a given duration of the leaderboard, portfolios with no activity would also not show. try changing the duration. there was 1-2 last time i checked.\n\n", "name": "", "is_accepted": false }, { "text": "[xming980](https://galactictalk.org/d/1535/10) i'm not sure these are good for promoting the success of your product.\n\n\nthink about it from the perspective of a new user, if i login and i see nothing on the leaderboard, do you know what im thinking? its broken or its a scam ...\n\n", "name": "", "is_accepted": false }, { "text": "@willd- you can easily check functionality by importing your own stellar account. this tool does not ask for your private key, so it can't really \"scam\".\n\n\nlast couple times i checked (including now), the leaderboard is populated. if you want to catch me on slack, my id is xiao ming. thanks!\n\n\npiggyback update on strader- we just noticed and fixed an issue with roi computation on accounts with assets transferred (not traded) in. as always, thanks for the testing and feedback :-)\n\n", "name": "", "is_accepted": false } ]
cb1e187532c65668169d3c089c448821
new to this and looking for any thoughts on the following scenario: * i sent stellar lumens xlm from bittrex to stargazer desktop app (mac ios) * confirmed receipt and balance present in stargazer app * when i set up the stargazer app on desktop i established password * 2 weeks after depositing xlm into stargazer, went into stargazer and account "empty" sound like a theft? or, anything i can do to try to recover? i can't find any sort of support to contact for stargazer app. thoughts welcome. thanks in advance.
stargazer support
galactictalk.org
2020.34
[ { "text": "post your public address (starting with g) and we can try to help you find out what happened\n\n", "name": "", "is_accepted": false }, { "text": "hi! how do i contact a team member of the stargazer team? could not find the email address on the web\n\n", "name": "", "is_accepted": false }, { "text": "johan sten built that wallet. he is on this board - [@dzham](https://galactictalk.org/u/dzham)\n\n", "name": "", "is_accepted": false }, { "text": "i'm having similar issue, send button is grayed out. i do see my balance when i open the stargazer desktop application. i don't know what to do. please help.\n\n", "name": "", "is_accepted": false }, { "text": "what version are you on? have you tried upgrading to the latest version (1.6.0)? \n\nis your balance higher than the minimum balance?\n\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/732/6) thanks for your stellar response 🙂. i upgraded to 1.6 & was able to see send button now. it scared hell out of me. appreciate such a prompt response.\n\n\nthanks.\n\n", "name": "", "is_accepted": false }, { "text": "stargazer installation help- \n \n\nhave to apologize as i am a newbie with all things crypto, but i have installed three other wallets. \n\nwith the intent to setup a stargazer wallet i entered the internet here: \n\n<https://www.stellar.org/lumens/wallets/> \n\nthen i tabbed desktop, and then \n\npulled-down and clicked stargazer logo. \n\nit went here: \n\n<https://github.com/future-tense/stargazer> \n\nmaybe i'm thick, but i have not been able to find a link to download or do anything else that seems to be related to installing stargazer wallet. \n\nplease advise. \n\nrc\n\n", "name": "", "is_accepted": false }, { "text": "[rayconger](https://galactictalk.org/d/732/8) \n\nyou can download the releases here: <https://github.com/future-tense/stargazer/releases>\n\n", "name": "", "is_accepted": false }, { "text": " \n\nthank-you very much! \n\nrc\n\n", "name": "", "is_accepted": false }, { "text": "so basically, if you don't know your password and you didn't export your account before setting a password then there is no way of sending any lumens out of stargazer until you find your password? correct?\n\n\n", "name": "", "is_accepted": false }, { "text": "my hard drive on my pc just recently crashed and i am not able to recover my stellar lumens i had stored on my stargazer wallet. it's my own fault as i had my private keys and back up phrases for all of my other cryptos except for my stargazer wallet. i was able to recover the file\\_\\_0.localstorage file that i saw on a reddit post that should contain the info i need, but i'm a novice and cannot figure out what to do from here. anyone here who may be able to assist me with this??\n\n", "name": "", "is_accepted": false }, { "text": "hi there, i have an issue when trying to withdraw stellar from my stargazer (version 1.6.0).\n\n\nall is fine in the first steps, but when i get to the screen with \"transaction\" and \"sign for\". the ok button is in blue and it clicks ok, however, when clicking, nothing happens, and the actual withdrawal does not happen at all, it freezes. i have to exit the screen, i cannot even click on the cancel button on the left of the ok button. \n\nany idea how to fix it? \n\nthanks!\n\n\n", "name": "", "is_accepted": false }, { "text": "[lakkt](https://galactictalk.org/d/732/13)\n\n\nupdate to 1.7\n\n\nthere was a breaking change in the stellar apis.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/732/14) \n\nmy desktop version 1.6.0 cannot send xml, just as [@lakkt](https://galactictalk.org/u/lakkt) writes. mobile application version 1.7.0 is also cannot sent xlm, writes \"no payment options found\". how cane solve this problem?\n\n\n", "name": "", "is_accepted": false }, { "text": "[gav27rus](https://galactictalk.org/d/732/15)\n\n\ni would say upgrade to 1.7.0, but sdf has broken the code on their side, so nothing works anyway. \n\n<https://github.com/stellar/go/issues/1496>\n\n\ni might be able to fix it if i spend the weekend on it.\n\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/732/16) \n\nhow can i withdraw xlm from this wallet?\n\n", "name": "", "is_accepted": false }, { "text": "[gav27rus](https://galactictalk.org/d/732/17) there is currently an issue with path payments on stellar. and because stargazer only uses path payments it looks like all transactions are failing.\n\n\ni would suggest you to export your private key and import it into another wallet until this is resolved.\n\n", "name": "", "is_accepted": false }, { "text": "good morning. i've been having an issue with my stargazer wallet for almost a year. i've tried contacting customer feedback by sending emails, but i never got a response. it seems like my xlms are stuck in my stargazer wallet. everytime i try sending it to an exchange or my coinbase wallet, the send button is not responding. in addition, a signature or signer response keeps showing up on the send page. is there anyone who can help with the situation. thank you.\n\n ", "name": "", "is_accepted": false }, { "text": "[bellingerandre](https://galactictalk.org/d/732/20) hi did anyone get an answer to the send button being stick i ma trying t send some stellar but the final page is stick, can anyone help ? thanks, also trying to find where i can change the version to 16.0 ?\n\n", "name": "", "is_accepted": false }, { "text": "[domricc](https://galactictalk.org/d/732/21)\n\n\ni think it's 1.7.0 you need. horizon had breaking changes in how it returned information to the wallet.\n\n\n<https://github.com/future-tense/stargazer/releases>\n\n", "name": "", "is_accepted": false }, { "text": "thank you very much for that, im very limited in tech stuff, do i need to reload stargazer 17.0 on my mac ? thanks\n\n ", "name": "", "is_accepted": false }, { "text": "[domricc](https://galactictalk.org/d/732/23)\n\n\nyes, you do.\n\n", "name": "", "is_accepted": false }, { "text": "thanks sorry one last question which one of those do i download for mac ?\n\n ", "name": "", "is_accepted": false }, { "text": "this one, <https://github.com/future-tense/stargazer/releases/download/v1.7.0/stargazer-1.7.0.dmg>\n\n", "name": "", "is_accepted": false }, { "text": "[domricc](https://galactictalk.org/d/732/25)\n\n\nthis one, <https://github.com/future-tense/stargazer/releases/download/v1.7.0/stargazer-1.7.0.dmg>\n\n", "name": "", "is_accepted": false }, { "text": "thanks fo that i will give it a go\n\n\n", "name": "", "is_accepted": false }, { "text": "hey [@dzham](https://galactictalk.org/u/dzham) - i have had my stargazer wallet for 2 years now and i am trying to send out my xlm to trade, however nothing happens! when i click send nothing happens. i just end up at the page where the 'review and submit'.\n\n\nhow do i solve this?\n\n", "name": "", "is_accepted": false }, { "text": "how do i update to 1.7.0? do i replace the application, will the xlm remain in the wallet?\n\n", "name": "", "is_accepted": false }, { "text": "[kruzhd](https://galactictalk.org/d/732/30)\n\n\nyes, that should be enough. installing the new version on top of the old will keep everything you had in the old version (all the data is stored in a completely different folder on your computer)\n\n", "name": "", "is_accepted": false }, { "text": "hey. i've been using stargazer for awhile, but now i want to transfer most of my xlm to an interest bearing account (nexo). i upgraded to 1.7.0, but i'm getting the same problem as other posters here. i enter the destination address and the memo as either text or id (i don't know which to use) and when i go to the next step, i get no payment options found. i tried to switch to solar wallet, but it wants a stellar secret key, not my seed or whatever the qr code in stargazer contains.\n\n\nhow do i get past this? i don't care about solar (unless it will help.) i just want to get my xlm out of stargazer.\n\n\ni'm using kubuntu 18.04.\n\n\nthanks\n\n\n", "name": "", "is_accepted": false } ]
a9496a639be914006acda2df164a5dd0
hey there, first of all thanks for the good vibe in the stellar community. it is always a pleasure to see a community not bashing to the left and to the right, but praising other protocols for their merits, while pursuing noble goals. anyway, i have a question, as i am considering the right dlt to build my project on. however, from my understanding of the capabilities of stellar, i start to doubt that it is actually the best choice. would be happy to hear your input! my main goal is to open accounts for my customers, let us say in a currency called ana. customers should be allowed to receive and send ana immediately. yet ,as long as they did not finish their kyc, they should not be allowed to cash-out or cash-in. their balance is (up to the point where they passed the kyc themselves) thus determined by the ana sent by already-kyced-customers. is such a setting possible with stellar? my understanding was that i can set up accounts for customers, and "block" them for kyc purposes, but that would imply that they cannot send/receive any token. my objective, though, is slightly different: i want my customers to be able to trade immediately with a token like ana, and just block the cashing-out into fiat as long as they have not passed kyc procedures. i hope i could communicate the idea and my doubts. happy to hear from you!
limitation of stellar?
galactictalk.org
2020.50
[ { "text": "yes that is possible, the cashing out, assuming you are the anchor is entirely up to you. however if another anchor or wallet with the appropriate trust line could potentially cash out or exchange the ana token.\n\n\nstellar takes regulation very seriously which will likely provide you with even more tools to control the ana token look at the documentation on controlling assets to see what those options are.\n\n\n<https://developers.stellar.org/docs/issuing-assets/control-asset-access/>\n\n\n", "name": "", "is_accepted": false } ]
5f5fc6c10d9be228c00e58270afb7881
how do you do a transfer from old phone wallet to new phone wallet? to activate it i was told i needed at least one xlm sent, so i sent some xlm and i thought the new wallet was activated but when i try to transport my xlm from old phone old wallet to new phone new wallet it won't take the qr code. i am a newbie so please if anybody knows how to help or have any suggestions i'm all ears. thank you much!! sandy
transfer xlm to new phone/ new wallet
galactictalk.org
2020.29
[ { "text": "[sandysings19](https://galactictalk.org/d/2060/1) what wallets/versions are you using?\n\n\nmaybe it's easier just to export the account and import it in the new wallet.\n\n", "name": "", "is_accepted": false }, { "text": "hi, sorry new to this forum, didn't know you replied. i have a version \n\n9.0. are you saying i should export when in old wallet and then import when in new wallet i'm new to these terminologies. is this same as restoring? thanks\n\n ", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/2) hi sorry didn't know you had replied already. i have a version 9.0, wallet is stargazer, got it in 2018. does stargazer have different wallets?\n\n ", "name": "", "is_accepted": false }, { "text": "[sandysings19](https://galactictalk.org/d/2060/4) there are currently [some issues with sending xlm in stargazer](https://galactictalk.org/d/2036-stargazer-no-payment-options-found).\n\n\ni would recommend you to install a new wallet on the new phone, like <https://solarwallet.io/> and when you are creating an account select the option \"import existing\". there you enter your secret key, starting with an s. **make sure to never share this key with anyone**.\n\n\nto access this secret key on your old wallet you should open stargazer and click on [this button](https://i.ibb.co/pg2tbp5/s1.jpg) in the upper right corner. then select \"advanced\" -> \"export account\". now you should be able to see the long key starting with an s. if you double click it you could copy it and send ti **to yourself** on the new phone.\n\n\nhope this helps.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/5) i will give this a try, i'll let you know the results. thank you so very much. sandysings19\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/5) hi there, well i got as far as trying to copy the private key, but it was a qr code and not a series of no starting with an s, so i scanned it but it said invalid key code. back to square one, any more suggestions??\n\n ", "name": "", "is_accepted": false }, { "text": "[sandysings19](https://galactictalk.org/d/2060/8) is your wallet password protected? for me the private key is displayed under the qr code, but maybe it's not shown in password protected wallets. i would suggest you to remove the password and try again.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/9) hi there again, when you asked is your password protected do u mean in the orig wallet stargazer? if so, can i remove password from there and it won't screw up anything for the wallet that got transferred to new phone, while i'm creating the new wallet you suggested, solar, so do i just scan qr code? this is confusing to me, new at all this. thanks\n\n\n", "name": "", "is_accepted": false }, { "text": "[sandysings19](https://galactictalk.org/d/2060/10) yeah. i ment the original wallet.\n\n\ni don't think that you can just scan it as they probably use different qr formats. solar will just accept a private key, not stargazer's qr code.\n\n\nalso, some users succeeded in sending with stargazer again. maybe try again to send it to the new wallet.\n\n", "name": "", "is_accepted": false }, { "text": "yeah, so i removed password. but yes now i'm going back to the stargazer wallet that was originally transferred over from the old phone and i'm able to scan the qr code that is on my stargazer wallet (on new phone) so scanning and everything looks.like.ots.going to work, plug in my amount i want to receive and scan them i get mesg. that says \"reciepient account isn't registered send a min. of one xlm to activate it\". which i have already done. because it gave me that same message when i originally try to export my ex xlms.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/11) hi, oh and also when i do try to send a min of 1 or more xlm the send button is highlighted in blue, i hit it and nothing happens. we can't send attachment s here can we? lol\n\n\n", "name": "", "is_accepted": false }, { "text": "[sandysings19](https://galactictalk.org/d/2060/13)\n\n\n[bkolobara](https://galactictalk.org/d/2060/11) where it says export acct. from orig wallet where it says is my private key, starts with an s, should i plug in that key into the solar wallet when creating that wallet? sorry if this sounds confusing.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/11) i just realized that my private key in my wallet on my old phone is different than the private key in my wallet on my new phone, both are stargazer of course, it this normal? both start with an s, but completely dif. so if i plug in that private key from wallet in new phone it will only transfer funds currently in that wallet correct, it won't transfer the funds in original wallet on old phone, am i right?\n\n", "name": "", "is_accepted": false }, { "text": "[sandysings19](https://galactictalk.org/d/2060/15) basically, **your private key is your wallet**. if you move it to a new phone you are actually not doing a transaction, you are moving the whole wallet. but solar allows you to have mutiple account so you can import both stargazers.\n\n\nmaybe you also have mutiple stargazer accounts on your phone and that's why it asked you to send again the minimal amount. you should be able to switch between this accounts in your wallet and check their current amounts.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/16) ok, i understand it better now about the private key is my wallet, thank you! and no i do not have separate accounts only one and then i transferred that private key when i went through the procedure on the new phone and then when i was following through with transfering the funds, they didn't transfer for some reason it said i needed to send one xlm to activate the account on the new phone, which i didn't understand that. none of my other wallets ask me to do anything like that they just automatically transferred over, all i had to do was sign in and plug in my password or pin code. now i can easily transfer the xlm i have in my stargazer wallet to the solar wallet because the private key starts with an s on that phone but funny it starts with a g in the stargazer wallet on my old phone, which if what you are saying is true then the private key should be the same key from stargazer on new phone to stargazer wallet on old phone correct? but it is not the same. old starts with g and new starts with s. does any of this make sense to you? i certainly appreciate all your help whatever your name is, thank you so much. any more suggestions. i have a lot of xlm on my old phone otherwise i probably would just give up.\n\n ", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/16) hi again, i am still having problems with retrieving my xlm from old phone and i reread your reply an explanation. you had said that my private key is my wallet so i'm not transferring anything but am moving the whole wallet, yes and that is what seem to have happened. when i tried to send my xlm from old phone to new phone it said i had to activate the account to new phone with 1 xlm before i could transfer the rest over. do u see my confusion? this would appear to me that i have a different account but how could that be i don't know of any other account. do you think reactivating my old phone temporarily and trying to send the rest of my xlm over would help if the phone was activated again or would that not make a difference? and why are my private keys different from wallet on old phone to wallet on new phone i never changed my private key?? \n\nthank you i would appreciate any help you can give. \n\nblessings.\n\n", "name": "", "is_accepted": false }, { "text": "[sandysings19](https://galactictalk.org/d/2060/18) i'm going to write down some basic explanations of stellar terminology. maybe it helps you in resolving the issues.\n\n\n#### account\n\n\nan account consists of 2 two parts:\n\n\n1. **private key** - starts with a s...\n2. **public key** - starts with a g...\n\n\neach private key has a corresponding public key. if you know the s... key you can always generate the g... key. if you enter on this website: <https://www.stellar.org/account-viewer/>#!/ the s... key it will show you the corresponding g... key. \n\nbut if you know the g... key you can't generate the s... one.\n\n\nin stellar an account hold your xlm balance. if you know the **public key** (g...) you can send funds **to** this wallet. you can safely share this key with people that you would like to receive xlm from. \n\nthe **private key** (s...) allows you to send funds **from** your wallet. everyone knowing about ti can send xlm out of your wallet. that's why it's really important to never shear this key with anyone.\n\n\neach account must hold at least 1 xlm. if you try to send less than 1 xlm to an empty account your software should warn you that you can't do this. in your case you were told that the account is not \"activated\". so each account that has more than 1 xlm is already activated and doesn't need to be \"re-activated\".\n\n\n#### wallets\n\n\nwallets are apps (stargazer, solar, ...) that helps you to work with your accounts. wallets usually let you manage multiple accounts. if you download a new wallet it will often create an empty account for you automatically, but to transfer any xlm to it you need to transfer more than 1 (for reasons mentioned earlier).\n\n\ni think that in your case you have 3 wallets (a,b,c) and multiple accounts (*) with different amounts of xlm:\n\n\n1. old phone: \n\n a: stargazer:\n\t* old account (? xlm)\n2. new phone: \n\n b: solar (? xlm) \n\n c: stargazer new\n\t* new account (1 xlm?)\n\n\n \n\nnotice that you also can have the same account in 2 wallets if you import your **private key**. in this case, if you send xlm out of any of the phones it will automatically be reflected in the balance on the other phone.\n\n\nyou don't need to use any wallet app. if you store your **private key** (s...) securely you can always access your funds through this website: <https://www.stellar.org/account-viewer/>#!/ and send them to anyone.\n\n\ntry to write down all the private keys you have on a paper and check on the above website how much of your xlm each account contains.\n\n", "name": "", "is_accepted": false }, { "text": "hello, help me.i installed the wallet for the stellar desktop client, now i go to the site and there are others, the one that i installed is no longer working or can i continue to use it further?\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/19) thank you so very much, it's alittle confusing but i will go on the website and see what i can find 😊 out. another thing is when i was trying to send my xlm from old phone to new phone it was still saying that account (my new phone, stargazer wallet) needed to be registered and i have 39 xlm in it, so don't understand.\n\n\ni went on site, but i do not know where my secret key is on the old phone, and shouldnt it be the same as on my new phone? anyway where would i find secret key in this wallet(stargazer)?\n\n\n[bkolobara](https://galactictalk.org/d/2060/19) yes that makes sense, only problem is i have not been able to transfer my xlms from old phone on the new phone. when i went to restore it told me recipient acct not registered, see d a min amount of 1 xlm. i did that and i still haven't been able to transfer funds to new phone, since month of may now. i took screen shot but don't know how to send attachment on here. thank you.\n\n ", "name": "", "is_accepted": false }, { "text": "[sandysings19](https://galactictalk.org/d/2060/21)\n\n\n[sandysings19](https://galactictalk.org/d/2060/21) hi bkolobara, i went on site, but i do not know where my secret key is on the old phone, and shouldnt it be the same as on my new phone? anyway where would i find secret key in this wallet(stargazer)?\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/19) yes that makes sense, only problem is i have not been able to transfer my xlms from old phone on the new phone. when i went to restore it told me recipient acct not registered, see d a min amount of 1 xlm. i did that and i still haven't been able to transfer funds to new phone, since month of may now. i took screen shot but don't know how to send attachment on here. thank you.\n\n ", "name": "", "is_accepted": false }, { "text": "[sandysings19](https://galactictalk.org/d/2060/21) you can't attach files directly here, but you could upload them to a site like <https://imgur.com/> and link from here to it.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/24) thank you but i'm not sure how to do that, lol. i am so handicaped with uploading, i would have to sign in to that site right? to get right down to the specific problem is: every time im in the last step to send the funds, it constantly tells me account not registered must send a minimum of one xlm. now with the solar wallet, i tried scanning the qr code and putting in the private key from stellar wallet after hitting import existing, continues to read invalid stellar key, something like that?? does it matter that at the top of the wallet in solar wallet that is, it says acct 2, because i have to go into account 2 to find the option for importing existing, (this is exhausting) 😩 if i don't my options are send or receive, whick by the way i've already tried that too.\n\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2060/19) hi there, its me again. ii tried writing down private keys but my phone doesn't give all the keys it just shows some of them and provides a qr code to copy. everytime i try to send out or receive in with keys it tells me that my account isn't registered and i need to send 1 xlm, but the acct is regist. and i have more than 1 in it. do u have any more suggestions? thank you and blessings!!\n\n", "name": "", "is_accepted": false } ]
b40f7879c1192c32b9103ba6ec1586b5
[@networkskullripper](https://galactictalk.org/u/networkskullripper) hi, the your posts and replies tell me you have some proficient dev skills. i am looking for someone to develop a crypto wallet on the stellar blockchain for me. i'm old school and have no coding skills but have a need i'd like to meet with this wallet and its intended users. if you cannot help with this i'd appreciate pointers to where i may be able to get this done for a reasonable price. thank you.
in need of developers to build a wallet
galactictalk.org
2020.50
[ { "text": "hey kinsley. i would suggest you hire a javascript person to work on it for you which doesn't necessarily need to be a crypto developer. you can then reuse the code from one of two good open source projects\n\n\n<https://github.com/satoshipay/solar> \n\nor \n\n<https://github.com/stellar/js-stellar-wallets>\n\n", "name": "", "is_accepted": false } ]
86144a924b630d26bdaa1f7e82d418f6
stratiom.io =========== what is stratiom.io? -------------------- stratiom is a peer-to-peer, web-based wallet and payment system. the project aims to implement an easy to use, transparent payment system, through which users can send funds to one another without the use of anchors. stratiom never stores user data on the server, and only stores a small amount of localstorage data unrelated to account info (exclusively to track tutorial completion). components ---------- ### debt assets each user has one debt asset which is tied to usd. although it would be ideal to have multiple fiat currencies, this simply wouldn't be feasible as a user would have to trust multiple debt assets per user. instead, since fiat currencies are relatively stable, the system can convert to other currencies on client-side, though these debt assets would ultimately remain linked to usd. debt assets are exactly that, a signifier of debt, or an iou. ### trustlines trustlines are, naturally, the core of the system. for user a to receive user b's asset, a trustline must be created from a to b. ### passive offers after a trustline is created, a user will be prompted to support payment mediation. if user a trusts user b enough to support payment mediation, he or she may decide to mediate payments. this is accomplished by user a creating a passive offer buying user b's asset, and selling his or her own asset. ### debt settlement debts are settled in one of two ways. the user creates an offer buying his asset back for xlm (effectively linking the user's debt to xlm, allowing holders of his or her debt to exchange it on the network with xlm as a bridge currency). the alternative is that the users settle the debt in real life for fiat. once the debt has been settled in fiat, the receiver would clear the debt. how does it work? ----------------- stratiom achieve these goals through a network of trustlines and passive offers. the typical transaction / account creation flow is as follows. bob has just made an account, and has a few friends already using the service, who have already added bob as a trustline. 1. bob logs in for the first time. he adds a few friends and family to his trustlines, and is now able to receive each of their debt assets. 2. bob decides to support payment mediation for some of his close friends by creating a passive offer for each of them, buying their asset and selling his. ### direct transaction 3. now bob would like to send $25 to his niece, alice, for her birthday. since alice already has bob as a trustline, alice sends $25 of his debt asset directly to alice. ### path payment 3. now bob would like to send $25 to his niece, alice, for her birthday. alice doesn't have bob as a trustline though, meaning bob cannot send his asset directly to alice. bob has, however, already created a trustline for his sister, who also has a trustline for both bob and alice. assuming bob and his sister are supporting payment mediation for one another, stratiom will then find a payment path to alice. the path payment would complete instantly, sending $25 of bob's debt to his sister, and $25 of his sister's debt to alice! ### no path 3. unfortunately, if there is no path from bob to alice, then the transaction cannot be completed and alice would have to set bob as a trustline before the two could proceed. ### fiat settlement 4. whether bob owes alice directly or owes his sister, the two may settle in real life for fiat. once the debt has been settled, the receiver of the debt (in this case alice or bob's sister) will clear $25 of bob's debt ### xlm settlement 4. bob may not be able to settle the debt for fiat, in which case he could link xlm to his asset. bob would create an order buying his asset for xlm, in which case the holder of his debt could instantly exchange it for xlm. tech stack ---------- stratiom is a single-page web-app built with react. i'm currently doing server rendering with express, though i do plan to remove server usage altogether in the near future. since nothing is stored on the server, stratiom is not using redis or a db. open source? ------------ yes! we have just released our open source client. [github repo](https://github.com/mitchzof/stratiom) is it live? ----------- yes it is! you can check it out right now, though note that it is still under development. as such, any and all feedbacks/bug reports are greatly appreciated. mainnet: [stratiom.io](https://stratiom.io) testnet: [testnet.stratiom.io](https://testnet.stratiom.io) contact: [[email protected]](mailto:[email protected])
stratiom.io - p2p stellar wallet / payment interface
galactictalk.org
2020.29
[ { "text": "update: i've added a little bit of wallet logic, and i'm working on fully fleshing out/presenting the idea.\n\n\nmost of my time will be spent typing up the logistics of these p2p transactions. once i'm done i'll post it here.\n\n ", "name": "", "is_accepted": false }, { "text": "alright i've written up a description of the app and functionality! again, i'd love to get some feedback on it now that i've got a semi-technical description of the system.\n\n", "name": "", "is_accepted": false }, { "text": "work is going well, speeding up now that i've got a full system design.\n\n\ni do have a problem though, and i'd really love it if someone could help me out.\n\n\nnow, horizon supports the findpath operation, though it doesn't tell me the last vertex in a friend graph. this means i'll have to traverse the friend graph to find a final connecting vertex on a path between sender and receiver. the only implementation i can think of is dfs, but i'm sure there is something better for this case. if so, i'd love to hear it and the reasoning behind it. thanks!\n\n\ni'm very happy with todays progress. implemented trustline creation, asset order creation, and trustline management.\n\n", "name": "", "is_accepted": false }, { "text": "i don't understand the issue. you specify the destination asset in the call to find path?\n\n", "name": "", "is_accepted": false }, { "text": "[jed](https://galactictalk.org/d/1558/5)\n\n\nyea, thats the source of my concern. i mean as far as i understand, the path payment would work as follows.\n\n\nlet's say a wants to send to d, but d doesn't have a trustline for a. there is a payment path though. now let's say the payment path looks as follows.\n\n\na - > b - > c - > d\n\n\na's asset would not be able to reach d, instead c's asset would have to reach d.\n\n\nanyway, since the path is initially unknown, i'd have to manually find user c to specify user c's asset as the destination asset in the path payment.\n\n\ni can just load the destination accounts balances and run find payment path on those trustlines. still wondering if there's a better way though.\n\n\nanother edit: after working with the system, this case seems to be fine. the only case where this would be a problem is if the user had a very large number of stratiom trustlines. anyway, i'm sure it can be optimized and that will be a goal pre-launch.\n\n", "name": "", "is_accepted": false }, { "text": "good day again. completely exhausted though, but almost done with an early alpha version!\n\n\ni've closed the source for the time being as i'd like to comment / polish things up a bit. anyway, payments are working with the following features.\n\n\n1. initially checks for a direct trustline between sender and receiver\n2. if no trustline is found, the receiver's stratiom asset trustlines will be loaded and exhausted for potential paths\n3. if a path is found, the source defaults to the first, shortest path, and broadcasts the transaction\n\n\nright now i need to do the largest component (the payment overview panel where debts can be settled/etc). from there, i'll clean up the source and begin working on broad improvements to this open source version.\n\n\nonce i've got a solid open source client i'll be moving to the closed source system w/ accounts and push notifications!\n\n", "name": "", "is_accepted": false }, { "text": "my current timeline/todo is as follows.\n=======================================\n\n\n1. add payment overview/debt settlement\n2. add lumen debt settlement option\n3. polish up and optimize code \n\n(alpha client and site should be up after this)\n4. add ledger support\n5. improve ui and design\n6. build acc and push notification system\n\n\n6 will almost certainly be post sbc, 4-5 may or may not. most likely will get to 4-5.\n\n\nconcerns\n========\n\n\nthat said i still have some concerns. it's clear that path payments are not a real concern, and are pretty easy to deal with.\n\n\nmy main concerns are as follows. i'm ultimately trying to make this a p2p payment system that could see real adoption and lots of use.\n\n\n1. debt settlement. i misjudged debt settlement initially. its not as simple as reversing the payment path; i was treating path payments more as payments and less as a chain of orders. that said, debts can still easily be settled, though i could see things getting messy in path payments. a sends to b, b sends to c, c sends to d. already that's quite a few debts to be resolved, meaning each user must place serious trust in all trustlines. i could see a solution in making path participation optional, and by allowing users to set rates for friend debt assets. this would encourage trust as users could profit by acting as intermediaries, while allowing others to use the network without being an intermediary. i actually really like this idea because it offers a wide variety of options to users of the payment system!\n2. i could see how to work out the above, but allowing lumens to be a bridge really trips me up. its one thing to allow adjacent trustlines to use you as a payment path, but it's another to accept all of your debt assets in exchange for an amount of lumens. this would require an even heavier trust of adjacent trustlines, and would likely also require a user to authorization. i could implement it, but it seems dangerous and i'm unsure at the moment of a safer, more effective way to go about it.\n", "name": "", "is_accepted": false }, { "text": "just an update; i've been hard at work and have made considerable progress.\n\n\ni've now implemented debt settlement/payment management, optional orders (one to one rates are currently mandatory), and a transaction history.\n\n\noverview page is completed, and i'm happier with the ui, though i'll still be making quite a few changes. ledger implementation, offer management, inflation modal, and xlm linkage are my next priorities. after that i'll be polishing and adding a tutorial.\n\n\na few pics of the progress:\n\n\n* deleted -\n\n\nedit: more recent pictures have been attached to the latest post.\n\n", "name": "", "is_accepted": false }, { "text": "[mitchzof](https://galactictalk.org/d/1558/7) so you effectively loading receiver's balance with a's asset and searching path from receiver to sender? \n\n\"find path\" does not work on trustlines alone?\n\n\n", "name": "", "is_accepted": false }, { "text": "[sergionero](https://galactictalk.org/d/1558/10)\n\n\nno, find path does not work on trustlines alone. destination asset is a required parameter. without knowing the destination asset, i can only loop through the destination's stratiom asset trustlines and check paths for each.\n\n ", "name": "", "is_accepted": false }, { "text": "upps... as far as i understood stellar's tech it allows to \"find path to change usd on one account to eur on other account\" making conversion on the fly (according to stellar.org). \n\nso in your case it should just convert assets of a,b,c,d (if they set corresponding bids) and make transparent transfer of value. \n\nseems it is not the case out of the box... 🙁\n\n", "name": "", "is_accepted": false }, { "text": "alpha release\n-------------\n\n\ni'm excited to say that the alpha version is now up and running for testing! just a note, the site is currently hooked up to the testnet, so feel free to play around with it and give some feedback!\n\n\ncheck it out at [stratiom.io](https://stratiom.io)\n\n\nwhat's next\n-----------\n\n\nalthough the site is up and running, there will still be plenty of work and updates ahead.\n\n\n1. first and foremost i'll be doing a lot of bug testing. although i've got some pretty extensive error handling, there is still plenty that can go wrong, i'm certain. so a lot of this time will be spent finding and fixing bugs.\n2. ease of use. one of my main goals now is to improve ease of use on the client. this goes along with ui/design improvements, along with improvements to the tutorial. the system is fairly complex, so i'm trying to make it as flexible as it can be, while still being user friendly.\n3. ledger support - this is my direct goal, so i'll be jumping straight into that.\n4. auth required vs no auth - i've been strongly considering this and have leaned to no auth simply for the following reasons. it makes the site easier to use. without auth required, users can create trustlines and get started. at the same time, for the extra hoops auth required adds, it doesn't improve the system or user security all that much. the only benefit from auth required is allowing auth revocable, and letting users revoke asset ownership when trust changes. that said, i could see cases for sender to abuse auth revocable, making it a bit of a double edged sword.\n\n\nthis should all be done and the full site should be launched within the next 5-7 days, after which i hope to eliminate server rendering and release the open source client.\n\n\nlong term\n---------\n\n\ni feel now is a good time to thoroughly address the long term of this project.\n\n\ni'll list a few things that i'd like to focus on for future builds.\n\n\n1. mobile clients. while i saw to it that the website worked very well on mobile, i'd still like to launch mobile versions.\n2. develop a commercial closed source implementation of the p2p system. this would be centered around user accounts, which would enable faster operations (less reliance on horizon), push notifications, customization, and a greater ease of use. for example, i could link some fiat debt settlement methods such as paypal, etc. the consumer version would be a multi month project though. if anyone is interested, i'd be happy to share further details.\n3. i did my best on the ui and am still improving it, but i am ultimately no web designer. i'd love to get a really high quality design for the site.\n4. expansion and promotion: naturally i'm building this app to be used! so i'll most definitely be dedicating some time promoting the website, and helping new users learn the system.\n\n\nwow, just to close, i'm surprised by how far this project has come. i have been living and breathing this project. ultimately, i hope the work payed off, and i hope the community finds it a valuable tool.\n\n\nplease though, it's still just the first build, so if you have any suggestions or feedback at all, feel free to share.\n\n\n", "name": "", "is_accepted": false }, { "text": "hey, wanted to test this out. it looks cool. but when i try to log in, i get a prompt to activate my account with at least 5 xlm (even tho the test account i'm using has ~ 8 xlm). any ideas?\n\n", "name": "", "is_accepted": false }, { "text": "[mikeyrf](https://galactictalk.org/d/1558/14)\n\n\nedit: the site was running on the testnet before, which i assume was the cause of your problems. anyway, [stratiom.io](https://stratiom.io) is now running on the mainnet, but you can use the testnet at [testnet.stratiom.io](https://testnet.stratiom.io).\n\n", "name": "", "is_accepted": false }, { "text": "[mitchzof](https://galactictalk.org/d/1558/15) how can i get in touch with you directly?\n\n", "name": "", "is_accepted": false }, { "text": "\nyou can email me at [[email protected]](mailto:[email protected])\n\n", "name": "", "is_accepted": false }, { "text": "[syntaxval](https://galactictalk.org/d/1558/16)\n\n\nyou can email me at [[email protected]](mailto:[email protected])\n\n\ni just realized i'd forgotten to change dns records for email after going live. everything is working now though. also, as an update, i've just edited the main post with a better overview/description of the system.\n\n", "name": "", "is_accepted": false }, { "text": "made a few ui and payment flow updates. i'm feeling much better about the design and ease of use now!\n\n\ni can safely say that the project is very near completion. i'll be busy the next couple days, so there's a chance i won't be able to implement ledger support before the 15th.\n\n\nto those of you who emailed me, i'll email you back shortly, i've just been busy the past couple days.\n\n\ni also released the open-source client. link in the main post.\n\n ", "name": "", "is_accepted": false }, { "text": "alright, stratiom.io has reached it's very final stages of development for this sbc. the site is live and after some serious stress testing of the path payments, i can say that everything is running smoothly! i've made some major design changes since the last post, and have added another component to view xlm settlement history. anyway, i'll likely be making some minor ui additions in the following couple days.\n\n\nunfortunately, i put off ledger support to focus on improving the ui and adding a couple of components. i will still be adding ledger support, though this will be in a future build.\n\n\nbelow are some images of the site in action!\n\n\n![login](https://i.imgur.com/eg77qfw.png)\n\n\n![overview](https://i.imgur.com/okpzyjn.png)\n\n\n![pay](https://i.imgur.com/kufgq4c.png)\n\n\n![trust manager](https://i.imgur.com/cwvn8pf.png)\n\n\n![trustlines](https://i.imgur.com/qri2zfi.png)\n\n\n![passive offers](https://i.imgur.com/oyuhemb.png)\n\n\n![payment history](https://i.imgur.com/pguqbvw.png)\n\n\n![xlm settlements](https://i.imgur.com/oyto5c8.png)\n\n", "name": "", "is_accepted": false }, { "text": "i know i haven't posted here since submissions, but i've been mulling over two routes to take for the future with the project, and i wanted some community feedback.\n\n\nthere are loads of great wallets out there, but i was considering expanding stratiom to have traditional wallet features along with the p2p payments.\n\n\non the other hand, since so many exist, i was also considering continuing with my initial idea of making a closed source payment system with some additional features.\n\n\nultimately i feel that the wallet may get more general use, while the closed source payment system would serve to better further the long term goals of stellar, even though it may see considerably less initial use than a wallet. this brings me to why i wanted community feedback, i'd like to know what people think would better benefit the stellar ecosystem, and whether a longer term project like the payment system would be a better route than a traditional wallet.\n\n", "name": "", "is_accepted": false }, { "text": "[mitchzof](https://galactictalk.org/d/1558/21) i've been following this project since you began. here are my questions:\n\n\n* why did you begin building this? (whats your goal)\n* how would you summarise what you have built compared to a normal wallet? (is pathfinding the only advantage?)\n* what experience do you have with financial services?\n", "name": "", "is_accepted": false }, { "text": "[willd](https://galactictalk.org/d/1558/22) hey, i appreciate the response!\n\n\n1. i got inspiration for the project from the sbc projects list, though i ultimately felt this was a great opportunity to build something with real potential to expand the stellar ecosystem and enable people to make and manage payments. i found the idea behind the p2p payment system to be pretty fascinating as it ultimately allows people to act as the middleman / bank when it comes to small transactions and was hoping to see this used even by people unfamiliar with stellar.\n2. i'd summarize what i've built as quite a bit different from a normal wallet. it interacts with stellar much in the same way that normal wallets do, though it's functionality on the user's end is completely different. what it does is allow users to make specific types of fiat payments and manage debts via a stellar account, whereas standard wallets enable users to manage assets held on their stellar account.\n3. i'd say i have a moderate level of experience with financial services. i'm pretty familiar with how most work, though i'm by no means an expert.\n\n\nwriting these responses, i feel that building a wallet with p2p functionality adds nothing tangible to the ecosystem as there are so many great wallet options. at the same time, users with a stellar account can easily build from my source and will always be able to make these p2p transactions, while also being able to use a traditional wallet. that said, i care most about a long term project with potential for a more significant impact, which makes me lean towards doing the payment system as it would be something new.\n\n", "name": "", "is_accepted": false }, { "text": "you working on any other stellar projects now?\n\n", "name": "", "is_accepted": false } ]
ed0147159a731f19026ab4c4920c78bf
**project title:** [stellar community forum](https://stellarcommunity.org) ![stellar community forum](https://imgur.com/97w049w.jpg) **summary:** stellar community is a forum where people can discuss all things stellar! **goals:** 1. create a nice, friendly and welcoming forum to allow people to learn more about stellar and discuss it with others. 2. the ui and ux needed to be top quality, especially on mobile. that's why it's fully responsive 🎉 3. encourage people that are well known in the stellar ecosystem to discuss stellar with the rest of the community (did you know we hosted an [ama with jesse lund who is the vice president of ibm blockchain](https://stellarcommunity.org/t/ama-with-jesse-lund-vice-president-ibm-blockchain-21st-may-2018))? this took a lot of time to organise with ibm but it was totally worth it 😀 4. encourage members of the community to create tutorials to share their knowledge with the rest of the community. we created a [tutorials section](https://stellarcommunity.org/c/tutorials) and have had some really information posts. there's also [badges](https://stellarcommunity.org/badges) that we award to members for helping people out and contributing to the forum! 5. since the forum was created back in 2017 and has thousands of members now - it has become increasingly important to make sure our members are safe from phishing attempts. because of this, we've created a system where posts must be moderated before going live for all new members. **description:** stellar community allows people to learn more about stellar, whether they are a newbie and want to get involved in buying some stellar or they are a developer and need help integrating their system with the stellar network (we have a developer section which has solved a lot of issues for developers and has allowed them to get work done quicker). the cryptocurrency space can be quite intimidating and scary when you first start out, but we've created a community that's the exact opposite of that - nice and friendly. as mentioned before, we've thousands of members that are more than willing to help others out. the forum works on both desktop and mobile and is fully responsive. **link:** [stellar community forum](https://stellarcommunity.org) some useful posts posted on the forum: 1. [5 tips for storing and sending lumens safely](https://stellarcommunity.org/t/5-tips-for-storing-and-sending-lumens-safely) 2. [inflation & inflation pools](https://stellarcommunity.org/t/inflation-inflation-pools-general-thread/) 3. [ama with jesse lund who is the vice president of ibm blockchain](https://stellarcommunity.org/t/ama-with-jesse-lund-vice-president-ibm-blockchain-21st-may-2018) **anything else:** stellar community has got support from the sdf in the past through the stellar build challenge which was highly appreciated. i've been running the forum since 2017 and would love to have some support from stellar to keep it going. hosting costs are fully covered by me and while i'm not making anything from it (i will never put ads on it), i believe it adds a huge amount of value to the community and should be kept alive. it does take a lot of time to moderate content throughout the day too, but again - this is extremely important to keep the community safe from phishing attacks which are widespread in cryptocurrency. thanks for reading and let me know if you've any suggestions to improve the forum! 👏
stellar community forum
galactictalk.org
2020.34
[ { "text": "i've made some improvements to the ui today 💯 the old icon in the header has been replaced with a nice stellar logo 👍🏻\n\n", "name": "", "is_accepted": false }, { "text": "i had a look around and i think gt and sc serve their respective purpose with gt more for developers while sc is more for casual users of stellar. you should open some social media accounts and post the top post of the week or day depending on the medium. you can post once a week in r/stellar and i think twitter would be good to post once a day too. this will definitely help to grow the forum and engagement.\n\n", "name": "", "is_accepted": false }, { "text": "[citystates](https://galactictalk.org/d/1921/3) a few people have mentioned that to me in the past about sc and gt. totally agree.\n\n\nthat's such a simple yet great idea to set up social media accounts. i'll get around to that later today. thanks for the idea 🙂\n\n ", "name": "", "is_accepted": false }, { "text": "as suggested above, we now have a twitter account. will tweet on a daily basis! feel free to follow us on [our twitter](https://twitter.com/stellar_forum)\n\n", "name": "", "is_accepted": false }, { "text": "for everyone that has a scf project - you can post a thread on stellar community if you want 😇\n\n", "name": "", "is_accepted": false }, { "text": "good webpage, the developer is doing improvements on it, i would like to see it being revamped as a hub to compilate all the things regarding stellar ecosystem.\n\n ", "name": "", "is_accepted": false }, { "text": "great site, it would be awesome some kind of rewards system with stellar at least in the developer section.\n\n\n", "name": "", "is_accepted": false }, { "text": "nice jamie keep stellarcommunity.org working as usual, while gt run as bitcointalk i though this will make stellar community keep stronger. go stellar... to mars 🤭\n\n ", "name": "", "is_accepted": false }, { "text": "awesome project! love the stellar community forum idea and implementation\n\n", "name": "", "is_accepted": false }, { "text": "[jamie](https://galactictalk.org/d/1921/1) 👍🙏\n\n", "name": "", "is_accepted": false } ]
56262f40e44ee40028734e3f85f77a7a
no longer will you have to pay high interest rates to transfer funds to your loved ones overseas. with zoompay you can send money from anywhere to anyone at any time. we support all 180 currencies around the world. our transfer fees are less than a dollar. you will also receive your funds in 10 seconds or less. we are the venmo of international money transfer. all of this is possible because our application is build on the stellar blockchain. **what does your project enable users to do?:** it allows anyone to transfer money internationally for less than a dollar. no longer will you have to pay 1-5% just to transfer money to your loved ones overseas. **why is your project valuable for stellar:** we would like to expand the anchor network to all 180 currencies. **platforms:** we will be supporting initially a web application and hope to further expand to mobile on both ios and android for details about how our application works, please visit this link
stellarpay - venmo for international money transfer on the stellar blockchain
galactictalk.org
2021.10
[ { "text": "we were originally known as zoompay but now have changed our name to stellarpay\n\n", "name": "", "is_accepted": false }, { "text": "good\n\n", "name": "", "is_accepted": false }, { "text": "[thanhtho](https://galactictalk.org/d/2633/3) vote for us please!\n\n", "name": "", "is_accepted": false } ]
f3535b76dacf5c08f8d2e0d810c54608
in this tutorial i will explain how to send and receive str (lumen) between centaurus wallet and poloniex exchange. i won't discuss the other tasks that you may carry out with this wallet. also, i am taking for granted that you feel confortable exchanging at least btc at poloniex. before i go on, you should know that at the beginning of stellar project, the coin was called stellar, abbreviated as str, but was later changed to lumen, shorthanded as xlm, to differentiate it from stellar network. what i don't know is the reason why poloniex kept the old acronym. in short, just keep in mind that poloniex str is equivalent to xlm. receiving lumens from poloniex ------------------------------ to deposit str from poloniex to a centaurus wallet just follow these simple steps. 1. install centaurus from google play. <https://play.google.com/store/apps/details?id=de.xcoins.centaurus> 2. when you first open the centaurus app, it will display the home interface (figure 1): * located at upper left part is your current str balance. * right below are the "export" and "import" buttons. the first one is used to backup your address secret key. i recommend to save it in a safe place to protect your funds in case you lose access to your phone. the "export" button also let you to reuse your account in other wallets. * the "import" button, let you load the secret key created with another wallet into centaurus, to manage your funds within it. * in the bottom zone, appart from the home view there are seven more sections: anchors, contacts, receive, wallet, send, history and about. [![](https://thumb.ibb.co/cau4gq/centarus1.png)](https://ibb.co/cau4gq) figure1 3. your stellar address is in the "receive" section (figure 2). press share and then click "copy to the clipboard" option of your android phone. next, paste it into a notepad app of your choice. only select your address, which in this case is a sequence of letters and numbers starting with the letter "g" and ending with the letter "a" (figure 3). note that you don't have to select the period after the last letter. as you already may realize, appart from numbers, btc addresses contain upper and lower case letters while stellar only has upper case letters. [![](https://thumb.ibb.co/fhedbq/stellar_centaurus_address.png)](https://ibb.co/fhedbq) figure 2 [![](https://thumb.ibb.co/mkakgq/centaurus_address_selected.png)](https://ibb.co/mkakgq) figure 3 4. now you may paste your str address into the address field of your poloniex deposit form (figure 4), enter an amount and click the widthdraw buttom. the memo id field is optional, this a numeric value that is mostly used in exchanges to distinguish its users deposits. [![](https://thumb.ibb.co/k0itak/poloniex_str_balance.png)](https://ibb.co/k0itak) figure 4 5. it's done! in a couple of minutes, you will receive your lumens in your centaurus wallet (figure 5) [![](https://thumb.ibb.co/btg1wq/str_received_centaurus_wallet.png)](https://ibb.co/btg1wq) figure 5 sending lumens from centaurus to poloniex ----------------------------------------- 1. first of all, you should be aware that in order for sending to be valid, you need to keep a minimum balance of 20 str. otherwise centaurus will display an error, like the one below. [![](https://thumb.ibb.co/dm1jbq/centaurus_deposit_error.png)](https://ibb.co/dm1jbq) figure 6 2. that being said, at centaurus wallet press the send button. in this interface from top-down you will see four deposit related elements: "destination address" field, deposit amount field, "destination tag" and "scan code" (figure 7) in this tutorial you won't need to use the last element. [![](https://thumb.ibb.co/fp4mwq/centaurus_send_interface.png)](https://ibb.co/fp4mwq) figure 7 3. click poloniex stellar deposit link (figure 8) copy the memo.id value. return to centaurus wallet and click destination tag, this displays an input field where you will paste the memo.id value. (figure 9) [![](https://thumb.ibb.co/njnrwq/poloniex_stellar_address.png)](https://ibb.co/njnrwq) figure 8 4. copy and paste the poloniex stellar address into destination address field. 5. then put the str amount that you want to send to the exchange, as picture shown below. [![](https://thumb.ibb.co/jmamd5/centaurus_send_fields_filled_in.png)](https://ibb.co/jmamd5) figure 9 6. finally, click "send" button. in a few minutes you will receive lumens in your poloniex stellar address 😃 that's all. i hope that this mini tutorial will be useful to you.
how to send lumens from poloniex to centaurus wallet and vice versa
galactictalk.org
2020.34
[ { "text": "[anibalsalazar](https://galactictalk.org/d/274/1) you can use [markdown](https://github.com/adam-p/markdown-here/wiki/markdown-cheatsheet) to format your post.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/274/2) thanks!\n\n ", "name": "", "is_accepted": false }, { "text": "hi, i am having difficulty using the import setting. my old phone is dead and i am trying to import into a new wallet but not having any luck, could you tell me how? \n \n\nregards \n\npat\n\n ", "name": "", "is_accepted": false }, { "text": "hi [patosullivan](https://galactictalk.org/d/274/4) , \n\nhow did you export your centaurus wallet? did you encrypt the export? do you have the exported string?\n\n\nwhat exactly is failing when you try to import it?\n\n", "name": "", "is_accepted": false } ]
f32120a591aec8439075ccdc9ebf4211
**update august 2020**: we are out of stealth mode and the new website is live at [paywith.glass](https://paywith.glass) paywith.glass is intelligent global financial infrastructure, built to empower billions of people to transact instantly, with currency fluidity, from anywhere on earth, at any time. this infrastructure is designed to move ***value***, regardless of currency used. with paywith.glass, all currencies (fiat or crypto) are treated as equal. in theory, with a fully functional live network, it will be possible to use your crypto currencies, air miles, pre-paid mobile credit or rewards points to buy anything, anywhere as easily as you can with fiat currencies. our platform also eliminates the latency that comes with using other blockchain solutions for retail applications (eg bitcoin's dinosaur network) since regardless of the currency, crypto or fiat, all transactions are quickly, securely and reliably executed in real-time. you could receive/deposit one currency into your wallet and make payments in another, transparently. this is currency fluidity in action. a few things to clarify, this is an infrastructure solution, not an app, not a wallet. our early public demonstrations showed potential applications of the underlying technology which at the time was still under development. there will not be a paywith.glass branded wallet, card nor app in the same way you do not find visa or mastercard branded cards. like visa and mastercard, our logo will be a co-brand used to indicate that a product or service is compatible with the paywith.glass network. this is underlying financial infrastructure that will power existing and upcoming mobile applications, pos platforms, hardware devices and solutions/services for global financial transactions. there will be a developer community launched in the coming months to allow fintechs and others to build on this new network but in the meantime, we are conducting pilots with banks, fintechs and other regulated financial institutions. <https://paywith.glass> -hatter
announcing paywith.glass - intelligent transaction infrastructure
galactictalk.org
2021.10
[ { "text": "\n> our native currency is the stellar lumen (xlm) which we call the glasscoin.\n> \n> \n> through blockchain technology, paywith.glass makes banking and payments seamless and extremely convenient regardless of your chosen currency or favourite banking/e-commerce service.\n> \n> \n> all transaction processes are completed quickly, securely and reliably through the stellar network which makes them so transparent, it's like you're paying with magic glass coins, from your own portable bank vault!\n> \n> \n\n\nplease explain how does it work!\n\n", "name": "", "is_accepted": false }, { "text": "\nthanks for the enquiry. in a nutshell, you create an account with our platform and automatically it creates a stellar account for you in the background. unless you choose to view your advanced properties, you won't see your stellar public key and seed or memo fields etc, you will just see the user-interface which keeps things clean and simple.\n\n\nyou can have xlm sent to your account from any other stellar wallet using the federation address and it will appear in your glassvault (our wallet). you can also send btc, nxt, usdt, eurt, eqd and other cryptos to the provided addresses (much like you do on exchanges) and they will appear in your glassvault once the relevant confirmations (i'm looking at you bitcoin) etc have been completed. the same goes for sending from your amazon account using amazon pay or from your bank account using direct deposit or via your debit card.\n\n\nthe glassvault displays your balance in whatever currency you have chosen, whether it's usd, gbp, xlm, eur, btc etc and you can change the currency with a swipe which gives you real-time exchange rates without fees.\n\n\nfrom here you can send money to anyone with a glassvault directly, or to anyone's stellar wallet. we are working on agreements with vendors including larger retailers (the first list will be announced early next year - i was just corrected by head of biz dev) and once they are onboard, you can use the mobile app or just use the web browser app on your tablet, laptop or phone (so long as it has a camera or nfc) to pay at their pos directly from your glassvault.\n\n\nthat swipe to change currency feature really comes in handy when you travel. if you're in the us and your balance in in usd, you won't have to worry about incurring foreign transaction fees when you go to london for example. you just swipe to change your balance to gbp and then paywith.glass and they will get gbp. the only number you need to worry about is the exchange rate.\n\n\nit means that your currency transactions whether crypto or fiat are all transparent and the vendors don't have to care if the money came from your card, bank account, bitcoin wallet or air-miles for that matter. as long as it the asset can be traded and we can find satisfactory support for it, we can add it and you can buy with it, all thanks to stellar's blockchain and market maker capabilities.\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "right, it seems very cool.\n\n\nbut it would be even cooler if i could send money to you and get btc, usdt and usd assets backed by paywith.glass and fully movable and tradeable on the stellar network and later cashed out from you. is that something you plan to do or already support? it doesn't seem hard as soon as people are trusting you with their real-world assets.\n\n\nalso, which fees do you charge? do you have any (beta?) users already?\n\n", "name": "", "is_accepted": false }, { "text": " i believe they're using xlm directly, not a token, and just calling it by other name.\n\n", "name": "", "is_accepted": false }, { "text": "\n[@fiatjaf](https://galactictalk.org/u/fiatjaf) is correct, glasscoin is simply a marketing reference to refer to the lumens used as fees in the underlying technology. as an asset, lumens appear as xlm in your glassvault, we only use the name glasscoin on the site to illustrate that the lumens+stellar blockchain with regards to the way the system works are transparent.\n\n\nwe don't have our own token and there is no purpose for our own token in this network. rest assured that all the standard symbols/currency codes are used for the 29 currencies we support - gbp, xlm, btc, bch, nxt, usd etc etc.\n\n\n\n> right, it seems very cool.\n> \n> \n> but it would be even cooler if i could send money to you and get btc, usdt and usd assets backed by paywith.glass and fully movable and tradeable on the stellar network and later cashed out from you. is that something you plan to do or already support? it doesn't seem hard as soon as people are trusting you with their real-world assets.\n> \n> \n\n\nwe anchor the currencies we support so yes we could issue the assets on the stellar network and make them tradeable on the decentralized exchange. we already unofficially support eqd and eurt that are issued in that manner but we have not decided yet if we will issue assets for those which are already there or just issue new tethers for those that are not yet in the market.\n\n\nwe will gauge market demand after it's been in production for a few months and see which route makes the most sense. options are being discussed internally at the moment but don't worry, we'll meet you half-way 😉\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "just a little update... so we're almost ready for the limited public beta but it seems that someone at google feels a bit uneasy about it.\n\n\nlet me qualify that statement... earlier this year i was recruited by google to build a version of our distributed data centre technology for them. i turned them down to focus on my own startup instead.\n\n\nthey tried again this time offering my choice of cities for re-location among other perks and again i turned them down.\n\n\nthen i noticed something weird, our seo had suddenly become less effective to the extent that some of our brands when searched for on google would yield a result on page 3 or further when the first pages were filled with ads linked products that in some cases didn't even have the same name in their graph. i thought it odd but didn't make a big deal about it.\n\n\nthen this happened this morning: \n\n<https://www.blog.google/topics/shopping-payments/pay-with-google-and-speed-through-checkout/>\n\n\nremember they own the '.google' tld and paywith.google has already passed through dns servers... so of all the things they could have chosen to call it....\n\n\nas i was saying, someone at google feels a bit uneasy about us...\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/9) hey, i think you're a bit delusional, mate 🙂 \n\nthey've announced \"pay with google\" in may on google i/o and i don't see anything wrong with that, logical name after \"log in with google\"\n\n\nwhatever happens i don't think they would retaliate through ranking algorithm, it's not that easy and they don't do that for apple and microsoft, who are you?!\n\n\nanyway, don't give up, you're building a great thing!\n\n", "name": "", "is_accepted": false }, { "text": "[umbrel](https://galactictalk.org/d/490/10)\n\n\nit wasn't branded in may at i/o and they could have called it any number of things.\n\n\non the topic of ranking algorithms, we are not the first to suffer this fate at the hands of google, i can assure you and as for why they won't do it to apple or ms, vs the little guy... i thought that would be obvious. the little guy can't throw a $20m team of lawyers at them.\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "\n> [hatter](https://galactictalk.org/d/490/11) it wasn't branded in may at i/o and they could have called it any number of things.\n> \n> \n\n\nthey did mention \"pay with google\" name.\n\n\n\n> [hatter](https://galactictalk.org/d/490/11) on the topic of ranking algorithms, we are not the first to suffer this fate at the hands of google, i can assure you and as for why they won't do it to apple or ms, vs the little guy... i thought that would be obvious. the little guy can't throw a $20m team of lawyers at them.\n> \n> \n\n\nmaybe you're right, but i usually look at this as another conspiracy theory\n\n", "name": "", "is_accepted": false }, { "text": "[umbrel](https://galactictalk.org/d/490/12)\n\n\n\n> [umbrel](https://galactictalk.org/d/490/12) maybe you're right, but i usually look at this as another conspiracy theory\n> \n> \n\n\nand this is why it continues to happen... rampant dismissal and disbelief before giving it any real though or doing the research is the same as sitting silently by and knowing for a fact that it is happening.\n\n\n\"to sin by silence when they should protest makes cowards of men.\" - abraham lincoln\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "we have added a few features that were originally on the roadmap and planned for later but we realized in the process we could slip them in now.\n\n\nthe result is a slightly less polished ui (a wee bit glitchy) since we have had limited time to test as thoroughly as we would like before the build challenge.\n\n\nnonetheless, we're getting there, so just to let you know what's on the way, here are a few screenshots to whet your appetites:\n\n\n0. before you log in: \n\n![before you log in](https://paywith.glass/images/screenshot00.png)\n1. after you log in: \n\n![after you log in](https://paywith.glass/images/screenshot02.png)\n2. yes there is actually a glassvault... notice the little touch-screen/control panel on the front. what modern vault would be complete without a touch-screen keypad: \n\n![glassvault](https://paywith.glass/images/screenshot05.png)\n3. that little touch panel won't be terribly helpful if you can't see what's on it, so on mouseover, it is zoomed in for your convenience: \n\n![touchpanel zoom](https://paywith.glass/images/screenshot06.png)\n4. this is the dashboard with real-time currency updates. it also displays your total glassvault in a currency you can relate you. you an change the display currency by clicking on that top-line to something you prefer. here it's in gbp because that's the default currency for the uk site: \n\n![dashboard](https://paywith.glass/images/screenshot09.png)\n\n\nalso note that the glassvault has shelves, each with a different volume in a different currency. here is the exchange functionality at work... you can 'trade' by simply changing the currency of a shelf to any one of the 29 supported (including 14 cryptos) at the moment. the display updates in real-time and the currency exchange rates are also real-time. so if the value of the usd on my active shelf changes against my chosen 'display currency' (in this case gbp) the total value displayed will change to reflect that as it happens.\n\n\n5. case in point, this next screenshot. notice the difference in the total value of the glassvault. this is due to the change in exchange rate of the usd on my active shelf relative to my default display currency, gbp: \n\n![menu](https://paywith.glass/images/screenshot17.png)\n\n\nmore to come including the link to try it out. stay tuned...\n\n\n-hatter\n\n\n", "name": "", "is_accepted": false }, { "text": "hi all,\n\n\nwe're very close to a demo release... still working through a few technical glitches in the ui and awaiting a shortlist of what we can legally show in the uk pre-fca approval.\n\n\nin the meantime, here are a few more screenshots to give an idea of what is in store:\n\n\nhere we can see that currency trading method i mentioned before. no charts, no order books, no financial markets knowledge required... this is trading for joe and jenny average who have 'heard about that newfangled bitcoin thing from their nephew junior', want to get in on the action, but know absolutely nothing about trading, forex or crypto.\n\n\n1. select the shelf you want to alter and click the currency code: \n\n![menu](https://paywith.glass/images/screenshot10.png)\n2. choose your desired currency from the list, note the tool-tip (we'll be changing how that's displayed for production): \n\n![menu](https://paywith.glass/images/screenshot11.png)\n3. 29 currencies to choose from with paywith.glass anchor support for them all: \n\n![menu](https://paywith.glass/images/screenshot12.png) \n\n![menu](https://paywith.glass/images/screenshot13.png) \n\n![menu](https://paywith.glass/images/screenshot15.png) \n\n![menu](https://paywith.glass/images/screenshot16.png)\n4. note this also applies to the display currency, so let's go to that for a second: \n\n![menu](https://paywith.glass/images/screenshot17.png)\n5. let's change our display currency to eqd from our good friend's over at [equid](https://equid.co/): \n\n![menu](https://paywith.glass/images/screenshot18.png)\n6. notice that real-time currency update i mentioned before at work in this next screenshot which shows the menu open: \n\n![menu](https://paywith.glass/images/screenshot19.png)\n\n\n...more to come.\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "trading has never been this easy, ever!\n\n\nall i need to do here is change one shelf to bitcoin: \n\n![active shelf](https://paywith.glass/images/screenshot20.png)\n\n\n..or both shelves for maximum effect \n\n![both shelves](https://paywith.glass/images/screenshot21.png)\n\n\n...and just sit back and wait: \n\n![a little while later...](https://paywith.glass/images/screenshot22.png)\n\n\n...and just watch it grow: \n\n![later still...](https://paywith.glass/images/screenshot23.png)\n\n\n...then just change them back when ready: \n\n![later still...](https://paywith.glass/images/screenshot24.png)\n\n\na trading platform for joe & jenny average ...easy peasy!\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "so, how does one get funds into a paywith.glass glassvault?\n\n\n...let us count the ways: \n\n![30 deposit methods](https://paywith.glass/images/screenshot25.png)\n\n\neurt deposit menu, uncluttered, uncomplicated \n\n![eurt deposit](https://paywith.glass/images/screenshot26.png)\n\n\nsimply scan the barcode (stargazer format) \n\n![eurt deposit barcode](https://paywith.glass/images/screenshot27.png)\n\n\nworks with equid deposits too \n\n![eqd deposit 1](https://paywith.glass/images/screenshot28.png)\n\n\n![eqd deposit 2](https://paywith.glass/images/screenshot29.png)\n\n\nwith the barcode \n\n![eqd deposit barcode](https://paywith.glass/images/screenshot30.png)\n\n\ncredit & debit cards accepted \n\n![credit card deposit 1](https://paywith.glass/images/screenshot31.png)\n\n\n![credit deposit 2](https://paywith.glass/images/screenshot32.png)\n\n\n![credit card deposit 3](https://paywith.glass/images/screenshot33.png)\n\n\nand lest we forget about xlm... \n\n![xlm deposit](https://paywith.glass/images/screenshot34.png)\n\n\n![xlm deposit barode](https://paywith.glass/images/screenshot35.png)\n\n\nif you counted 30, then you are correct... \n\n![30 deposit methods](https://paywith.glass/images/screenshot36.png)\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "is this project dead?\n\n", "name": "", "is_accepted": false }, { "text": "[allencarloprondo](https://galactictalk.org/d/490/18)\n\n\nno, not dead, just seeking funding and receiving no help or any actual serious interest from the sdf.\n\n\nthey have seen our deck, they have seen our financials, one member of the sdf's team offered to 'help' by asking for 10% of the company in exchange for 100k xlm (valued at us $29k at the time) which was an unreasonable ask given that we needed to raise about 2m xlm (based on the value at that time) and would still need to have equity available for those bringing much more than 100k xlm to the table, not to mention that this would have invariably valued the entire company and all ip (pre-existing and new) at us $290k.\n\n\nalso, we were disqualified from this particular sbc round for not being 'live' with customers, despite the fact that our system could be demonstrated on the testnet, had been viewed by sdf staffers and to be 'live' within the markets we are in, would be illegal without the require licences which cost money we don't have... bringing me back to the first point.\n\n\n...so that's the non-sugar coated summary of our current state and the why.\n\n", "name": "", "is_accepted": false }, { "text": "\n> [hatter](https://galactictalk.org/d/490/19) one member of the sdf's team offered to 'help' by asking for 10% of the company in exchange for 100k xlm\n> \n> \n\n\ndid he make that offer personally or was it in the name of the sdf?\n\n", "name": "", "is_accepted": false }, { "text": "[cryptobrant](https://galactictalk.org/d/490/20)\n\n\nit was a personal offer but this contact was made via the sdf so still not very professional.\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/21) seriously, this looks indeed very unprofessional :-1\n\n\n", "name": "", "is_accepted": false }, { "text": "just to update everyone, we are still very much alive and even though we have been jerked around by one particular individual within the sdf, this project does not rely on either the sdf's approval nor their support to be realized.\n\n\nwe are in advanced talks with several investors and early stage with a few others and a couple of accelerator programs so either way we will have some word in the coming weeks.\n\n\ni want to make a point even before we officially announce it because of something which was recently brought to my attention. it seems the glasscoin name was of interest to someone else as well and as such a scammer set up an ico and listed a coin called glasscoin which seems to have taken some money off at least a few individuals.\n\n\nwe will be making a press release about this but i'll state it here first:\n\n\n***we are in no way whatsoever affiliated with glasscoin.io and we have no intention of executing an ico nor producing a token of our own for the paywith.glass service.***\n\n\nsuch a token on our platform would serve no utility purpose after it has been issued and would therefore not be of any useful value to investors. it therefore makes no sense and would be both irresponsible and immoral on our part to run an ico.\n\n\nmore details will be published at a later date.\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "[@hatter](https://galactictalk.org/u/hatter)\n\n\nplease don't speak like this about bitcoin network: if it is a dinausor, then it is a **lively** dinausor 🙂\n\n\n(and a true jewel)\n\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/490/24)\n\n\ni apologize if the dino comment may have offended but the reality is that bitcoin's dlt protocol is the generation 1 blockchain with all of the flaws inherent in any first generation design. scp is like generation 5 in comparison. please understand that i'm not trash-talking bitcoin, i have a great deal of respect for the original blockchain and i appreciate that none of what we have now would even exist without it.\n\n\nadditionally, i was a miner of bitcoin back in 2011 and started my first blockchain dev on it. in fact the very first version of this project was built on bitcoin back then and shelved in late 2012 because that dlt was too slow and not scalable enough for what we wanted to achieve.\n\n\nstellar happens to meet all the minimum requirements for this type of project and has even exceed several others, so we restarted the project under the name you see now in 2016, on stellar.\n\n\noddly, although i have said it before, i don't recall making the dinosaur comment on this thread, so just out of curiosity where did you get that?\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/25)\n\n\nin your first post :\n\n\n\n> (eg bitcoin's dinosaur network)\n> \n> \n\n\nyou know, i didn't meant to sound so serious about it. i was more in a playful spirit, and really i don't think i have the right to tell people how they should talk. `kume no sai ^^\"\"\"`.\n\n\nanyway it's interesting to know a bit more about the roots of your project, thank you 🙂\n\n", "name": "", "is_accepted": false }, { "text": "\n> [misterticot](https://galactictalk.org/d/490/26) in your first post :\n> \n> \n> (eg bitcoin's dinosaur network)\n> \n> \n\n\nah yes, there it is. for some reason i missed it on the page. feels like ages since i wrote that.... during the neolithic age i believe 😃\n\n\nno worries at all. we will be announcing more soon, stay tuned 😉\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "just a little update for everyone, pre-registration is live on <https://paywith.glass>\n\n\nover the next few weeks we will be integrating a live beta demo into the desktop-browser version of the page, giving a fully functional html5 version of the mobile app for you to play with.\n\n\npre-register now to stay informed.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "a new update on our progress for you all, paywith.glass has just been selected for the startupbootcamp amsterdam commerce class of 2019. congratulations to our product team and development team.\n\n\n<https://twitter.com/sbccommerce/status/1090645904024059905>\n\n\npre-register now to stay informed.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "hi all, just to update you... we are still alive. we have had little press coverage recently from the sdf about the sbc programme: \n\n<https://mailchi.mp/stellar/stellar-roundup-march-2019>\n\n\nto update those still following, we've just completed week 3 and it has been intense but very productive. \n\nstay tuned, more to come.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/30) hi, that's great news! what is a plan for the near future?\n\n", "name": "", "is_accepted": false }, { "text": "[@cryptoplanet](https://galactictalk.org/u/cryptoplanet)\n\n\nso we have pivoted a bit away from the b2c approach to the b2b approach to gain a bit of traction first under the wings of a few much larger institutions who want to test the platform with us through the accelerator.\n\n\nwe are pushing the development of our api tools and some example applications out via the [odyssey hackathon](https://www.odyssey.org/odyssey-hackathon/) in groningen from next week.\n\n\nand we will push on to refine the proposition and to gain pilots and partnerships to push this to the world.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/32) how did it go with the hackathon?\n\n", "name": "", "is_accepted": false }, { "text": "[cryptoplanet](https://galactictalk.org/d/490/33)\n\n\nwe didn't win our category but we have managed to create our public api and are in talks with a few banks in the netherlands about running pilots of the platform this summer.\n\n\nwe were recruited by one incubator after the event and have received an expression of interest from yes! delft so we are following up on these. we are also in discussions with one of the other startups from our track in the hackathon about integrating support for their hardware wallet into our platform through the new api so that is quite exciting.\n\n\nadditionally, we have been accepted into the money20/20 startup academy so will be attending the event in june. \n\nwe also pitch at the holland fintech meetup here in amsterdam on friday so i will update on how that goes.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/34) sounds like a great plan!\n\n ", "name": "", "is_accepted": false }, { "text": "i've sent the request for getting invitation, but still got no answer. is it okay?\n\n ", "name": "", "is_accepted": false }, { "text": "[bitcoingold1234](https://galactictalk.org/d/490/36) have a look at your spam/junk/bulk mail folders just in case. from our end, everything is working just fine afaik.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "we have pitched at the holland fintech event as previously mentioned and we have [won the people's choice award for best pitch](https://twitter.com/hollandfintech/status/1126871003248906246). so i would say it's safe to assume, the fintech scene of the netherlands is now aware of paywith.glass and apparently likes what it sees.\n\n\nup next, our [startupbootcamp demo day](https://www.startupbootcamp.org/accelerator/commerce-amsterdam/) and then the [money20/20 startup academy](https://europe.money2020.com/sponsors/satellite-moving-devices-wireless).\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/38) awesome! i wish you expand your business all over europe \n\ni think money20/20 might be a very promosing event in terms of meeting potential clients\n\n", "name": "", "is_accepted": false }, { "text": "[cryptoplanet](https://galactictalk.org/d/490/40) thanks.\n\n\nthat is our plan. we start in netherlands and expand from there. we are also talking to banks in other countries but will announce that later when those conversations get a bit closer to completion. \n\nin the meantime, this is [the official holland fintech post-event post](https://www.linkedin.com/feed/update/urn:li:activity:6533648078828777472/).\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "so we have had our startupbootcamp demo day which was quite a success. \n\nyou can view the [full video here](https://www.facebook.com/sbcams/videos/607623993050622/).\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "we have published a 3-part series of articles entitled the second financial revolution, which illustrates the vision behind paywith.glass:\n\n\npart1: <https://medium.com/@paywith.glass/the-second-financial-revolution-part-1-b8452329c0e>\n\n\npart2: <https://medium.com/@paywith.glass/the-second-financial-revolution-part-2-7f2ec59e91e4>\n\n\nhave a read, feel free to comment.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "we have produced our first promo video, this is the full length cut and we are fund raising from the end of june 2019.\n\n\nhave a look at the [video here](https://vimeo.com/smdwireless/paywithglass) and let me know your thoughts: \n\nthis is the first cut (full length) and there will be shorter edits for our new site and for other uses.\n\n\nwe are considering the use of a voice actor although early feedback is divided. some believe a voice actor will cost us the emotion that comes with narration by a founder, others think a voice actor brings more professionalism, let me know what you all think.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "hi all, just to update those who are still following our progress, we are hard at work refactoring the core code of paywith.glass and have already implemented a few security enhancements at the design level in the process.\n\n\nthere is more to come including a a few non-blockchain database enhancements that will see improved security and performance of the legacy database that resides under the hood alongside the stellar dlt integration. we will keep everyone posted on the progress and will be making announcements of our first pilot partners in the coming weeks.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/47) i enjoyed reading your story here. great example of where hard work and determination can lead. keep up the work and please continue to keep us posted. your project sounds promising.\n\n ", "name": "", "is_accepted": false }, { "text": "[samuelconner](https://galactictalk.org/d/490/48) thank you [@samuelconner](https://galactictalk.org/u/samuelconner) .\n\n\nwe are making great progress on this side despite several challenges along the way (par for the course i suppose #startuplife).\n\n\nwe have inked seven (7) letters of intent (lois) so far with financial institutions and a teleco and we go live with our first paid pilot in december 2019. unfortunately, the terms of the lois prohibit us from publicly naming names until such time that we make an official announcement of the commencement of a pilot. what i can say is there is a clearing bank among the list and one of the other institutions has a market of 14m users which we will be serving at the start of that pilot. i can not publicly say any more than than that at present but do keep an eye on this thread for more.\n\n\nin the meantime, we are fundraising via [leapfunder](https://www.leapfunder.com/round/paywithglass-163) so please feel free to register (it's free) and back our project for shares if you are interested. it is all coming together nicely now after a long hard road and we just need funding to get through the next phase. **if anyone at [stellar](https://www.stellar.org) is listening, we could use a little assist. feel free to reach out via pm.**\n\n\ni am not sure if i had already announced this but we are now officially a dutch company - let's hear it for all of the brexit refugees 😀\n\n\nmore information to follow, including new website launches, additional publicly listed paywith.glass validators and the severely delayed launch of our long overdue public api, so stay tuned...\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "hi all, getting a few steps closer to launch.... we have just [posted our round 4 entry for scf](https://galactictalk.org/d/2316-paywithglass-transaction-infrastructure-as-a-service-tiaas). please have a look there for updates.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "we are out of stealth mode, backed by [nvidia's inception program](https://paywith.glass/press/news/general/2020/05/18/paywith.glass-joins-nvidia-inception/) and [startupbootcamp](https://paywith.glass/press/news/general/2019/01/31/paywith.glass-selected-for-startupbootcamp-commerc/).\n\n\nwelcome to the intelligent future of money! \n\n\n\n\npaywith.glass has also been classified as a viable retail central bank digital currency architecture by the bis.\n\n\n![bis classification paywith.glass](https://paywith.glass/images/bis_cbdc_classification.png)\n\n\nfollow us on [twitter](https://twitter.com/paywith_glass), [facebook](https://www.facebook.com/paywith.glass), [linkedin](https://www.linkedin.com/company/paywithglass/) and [medium](https://medium.com/@paywith.glass).\n\n\njoin the conversation on [telegram](https://t.me/paywithglassannouncements).\n\n\n", "name": "", "is_accepted": false }, { "text": "a little update:\n\n\npaywith.glass [in the news](https://df.media/these-are-the-top-fintech-financial-technology-companies-in-the-netherlands-2021/):\n\n\nwe were recently featured in [daily finance](https://df.media/)'s top fintech companies in the netherlands.\n\n\nhere is a quick 60-second demo video featuring some functionality of our mobile super app engine and a little glimpse of our dashboard: \n\n\n\n\nmore to come, keep your eyes on our project in the [stellar community seed fund](https://communityfund.stellar.org/seed-fund#/entry/d464037a39a2a418664f79c2d2a3d42a022b0047e37448228984beb631cba0f3), learn more about paywith.glass on:\n\n\n[crunchbase](https://www.crunchbase.com/organization/paywith-glass) \n\n[linkedin](https://www.linkedin.com/company/paywithglass/) \n\n[f6s](https://www.f6s.com/paywith.glass) \n\n[medium](https://medium.com/@paywith.glass)\n\n\nand feel free to join the discussion on [telegram](https://t.me/paywithglass).\n\n", "name": "", "is_accepted": false } ]
3922a64939e422117253d93bc2b25544
dear all, i am an information systems student at the university of zurich and currently writing my bachelor thesis on blockchain governance and interest alignment. within this thesis, i work towards a framework about different stakeholder interests in public and permissionless blockchain projects and created a survey to evaluate this framework. in this regard, if you are in any way involved in such public blockchain projects (e.g. investing, mining, developing service tools, ...), i would very much appreciate your participation in that survey. survey link: <https://www.uzh.ch/zi/cl/umfragen/index.php/967815?lang=en> the survey takes **no more than 10 minutes** and is conducted anonymously. should there be any questions or remarks, please do not hesitate to contact me. also, feel free to share this link with others! thank you very much for your time and consideration. kind regards roman
survey: stakeholder interests in public blockchains
galactictalk.org
2021.17
[ { "text": "survey link: <https://www.uzh.ch/zi/cl/umfragen/index.php/967815?lang=en>\n\n", "name": "", "is_accepted": false }, { "text": "dear all,\n\n\nthank you very much for your great support! the survey period has now ended. \n\nfor those of you who would like to have insight into the survey results and my bachelor thesis, i can provide the following option:\n\n\n• after 23rd of may 2021, send me a request to [[email protected]](mailto:[email protected]) \n\n• as this survey is also part of ongoing research, please make yourself identifiable (i.e., by sending the request with your company email address) and, please, treat these results confidential. for example, do not share these results publicly.\n\n\nplease note that i cannot consider any requests that do not comply with these conditions.\n\n\nthanks again!\n\n\nbest regards\n\n\nroman\n\n\n", "name": "", "is_accepted": false } ]
b71a4828e15a7ae6f3f88de9938ccfe5
we are looking for help to create our own coin with smart contract based on stellar. can anyone help us.
help with creating coin with smart contract
galactictalk.org
2021.25
[ { "text": "on stellar, you can easily create a custom asset using the [stellar laboratory](https://laboratory.stellar.org/#?network=test) web interface. you do not need to write a smart contract to do this. please read the [stellar documentation](https://developers.stellar.org/docs/issuing-assets/how-to-issue-an-asset/) beforehand to understand how steller assets work. this article from [lumenauts](https://www.lumenauts.com/guides/how-to-issue-a-token-or-ico-on-stellar) will walk you through the steps of creating your coin. i suggest using the testnet to do this before actually creating on the public network. good luck.\n\n", "name": "", "is_accepted": false }, { "text": "thanks afreum\n\n", "name": "", "is_accepted": false }, { "text": "if you still need help with stellar smart contracts message me. i have extensive experience with them, and we had a profitable business built with stellar-based smart contacts in 2018 that failed to get enough funding to continue operations. nevertheless, we executed thousands of smart contracts and perfected the system.\n\n", "name": "", "is_accepted": false }, { "text": "[brandon](https://galactictalk.org/d/2549/4) can you dm me as much info as you want about your business and the smart contracts you deployed on stellar? i'm curious to research this subject myself. and i'm poor so not trying to steal a business from you lol\n\n", "name": "", "is_accepted": false }, { "text": "[satoshi0x](https://galactictalk.org/d/2549/5) smart contracts in stellar as we know them in ethereum don't exist\n\n", "name": "", "is_accepted": false } ]
622acde28568143f36b04f8e942442e0
[@networkskullripper](https://galactictalk.org/u/networkskullripper) hi, the your posts and replies tell me you have some proficient dev skills. i am looking for someone to develop a crypto wallet on the stellar blockchain for me. i'm old school and have no coding skills but have a need i'd like to meet with this wallet and its intended users. if you cannot help with this i'd appreciate pointers to where i may be able to get this done for a reasonable price. thank you.
in need of developers to build a wallet
galactictalk.org
2021.25
[ { "text": "hey kinsley. i would suggest you hire a javascript person to work on it for you which doesn't necessarily need to be a crypto developer. you can then reuse the code from one of two good open source projects\n\n\n<https://github.com/satoshipay/solar> \n\nor \n\n<https://github.com/stellar/js-stellar-wallets>\n\n", "name": "", "is_accepted": false }, { "text": "we are looking for someone who can clone solar wallet for us for a reasonable price.\n\n", "name": "", "is_accepted": false }, { "text": "[asojan](https://galactictalk.org/d/2546/3) [kingsleyakanihu](https://galactictalk.org/d/2546/1) please send me an email on apexgeeky@gmail and i will send you some resources where you guys can get this done.\n\n\nps: i am new to the forum and not sure i can share my email id here or not. so if i am breaking any rules please let me know.\n\n", "name": "", "is_accepted": false }, { "text": "thank you apexgeek. will contact you via email\n\n", "name": "", "is_accepted": false }, { "text": "its all about trust and regulation. usdt may not be fully collateralized.\n\n\n", "name": "", "is_accepted": false }, { "text": "[antb123](https://galactictalk.org/d/2546/2) will you be able to create it for us. we couldn't find anyone to do it.\n\n", "name": "", "is_accepted": false }, { "text": "[kingsleyakanihu](https://galactictalk.org/d/2546/1) have you found a developer yet. we are looking as well.\n\n", "name": "", "is_accepted": false }, { "text": "[asojan](https://galactictalk.org/d/2546/8) you can contact me on [[email protected]](mailto:[email protected]). i might be able to help.\n\n", "name": "", "is_accepted": false }, { "text": "[komp](https://galactictalk.org/d/2546/9) i have emailed you. thanks\n\n", "name": "", "is_accepted": false }, { "text": "hey were you guys able to find anyone to help with your project? i’m in this situation as well. i need a stellar wallet app built with certain features like fee bumps and sponsored reserves but can’t find anyone who can build it.\n\n", "name": "", "is_accepted": false }, { "text": "[apexgeek](https://galactictalk.org/d/2546/4) hey i hope it’s ok but i sent you an email as well. i’m looking for a similar service as the op.\n\n ", "name": "", "is_accepted": false }, { "text": "[komp](https://galactictalk.org/d/2546/9) email sent! hope that’s ok.\n\n", "name": "", "is_accepted": false }, { "text": "[gregsteller](https://galactictalk.org/d/2546/11) we are still searching.\n\n ", "name": "", "is_accepted": false } ]
acdabfe9038af898e139670f15f58a39
### summary blocknify allows you to easily add legally binding e-signature to any stellar transaction with privacy and trust built-in. our solution allows you to legally sign documents that can be independently verified at any time (without blocknify) and can be tied to any asset transfer on the stellar network. stellar has allowed us to be the first full e-signature saas solution with entirely transparent signatures through client-side operations and decentralization in every step. we use the stellar network as our immutable public notary for each signature. instead of blocknify being the black box of truth, stellar allows us to give each signer all the tools and data to verify against stellar for each signature at any time and independently from us or anyone else. our signature audit trail (attached to every signed document) contains everything you need and directions on reconstructing the signature hash within the stellar network. we believe in the power of lowering the barrier to operate in a fair system. legal contracts are vital to setting the context and terms of a business transaction so that all parties can be treated fairly. many payments are made according to a contract, such as loan agreements, payments around a service or product, tokenization agreement, equity agreement, and many others. however, payments are often detached from their context. our solution allows you to tie a legally binding e-signature and pdf to your payment. this process ensures that if there is a dispute, the proof can easily be provided, and all the needed information can then be validated within the stellar transaction. ### details * currently, our product allows you to: * sign or send a document (pdf) to be signed within two clicks using our chrome extension or initiated via our api. * signers receive an email with a unique link to sign the document via our web application (no installation needed). * signers verify themselves via sms (id verification pending), create a signing pin, and then view their document and sign. * the signature is packaged with the information we have collected from the signer, hashed, signed (with the signers private key), hashed again, and submitted to the stellar network as a memo. * once all signers have signed the document, everyone receives the final document with an attached audit trail. this audit trail contains all the needed information to verify any signature at any time without requiring any input from blocknify and the linked transaction on stellar.expert. * the audit trail contains the document fingerprint (hashing of the document's visual content) and the signer's public key, name, phone number, and raw signed data. at any time, a signer can use the audit trail and instruction to reconstruct any one of the attached signatures and going from their identity, document, time information to our signature hashed posted to the stellar network with standard tools. **with additional development funds from sdf, we will be able to:** * signers will have two options to tie an existing stellar account via sep: 0007 or albedo. * the poster will be able to request payment within a specified asset and sign the document. * the signer will then be able to select which asset they will pay with. * we then create the transaction with the signature and asset transfer. this transaction will then be presented as a uri link, qr code, or requested for signature from albedo. the transaction will then be signed and posted to the stellar network. * we then monitor the transactions for the account and confirm the integrity of the transaction. * once all signers have signed the document, everyone receives the final document with an attached audit trail. this audit trail contains all the needed information to verify any signature at any time without requiring any input from blocknify and the linked transaction on stellar.expert. * to verify signatures at any time, signers can use our open-source tools and the final document with the attached audit trail. this tool will then recreate the document fingerprint hash, pull the signer's information, recreate the signature hash, and then match the hash and account within the stellar network's transaction. ### what this means for the stellar ecosystem it lowers the barrier to creating fairer and legally enforceable asset transfers within the stellar ecosystem. an additional tool for transacting assets on the stellar network. our apis can easily be added to any existing platform or solutions using the stellar network by using an iframe. we provide white labeling of our web application and chrome extension. we support templating to allow for easy pdf generation. ability to get documents signed in complete privacy. we know creating a legal document itself can be unfair. therefore we would love to work with our legal network and other for-profit and non-profit groups to make it easier to generate contracts. our template solution allows us to sign the template, allowing signers to feel safe that this "standard" contract is a word for word copy of the known standard agreement. ### how are we different from other e-signature solutions: we have focused on creating a solution where technology creates trust rather than marketing. while there are many other e-signature solutions, however, almost all of them are centralized black boxes requiring you to trust them / rely on them. keep in mind most of these solutions are quite old (in technology years) and have the benefit of the doubt from their users that "they have this figured out." for example, many cloud e-signature solutions keep a copy of your document as the source of truth, control the identity, and key management. this is the easiest way to do this process. one issue is that you must rely on them to verify the document signed and provide all the identity records and internal system time stamps, as they only provide some basic information. these programs are also expensive. other non-saas methods are privacy-focused but are painful. while i don't believe they have any malicious intent, we see this centralized black box as an unnecessary risk, especially with new technology (e.g., stellar). instead of holding the document forever, we came up with a way to clean the document and verify its visible elements on the client-side. files can collect a lot of noise as time goes on; however, a signature is only concerned about the visual elements. we use standard pdf parsing to breakdown the pdf to its visible elements and create hashes of hashes. this process ensures that even if one pixel is changed, then the document fingerprint is entirely different while ensuring the document's complete privacy. however, this also enables us not to require centralized control or require blocknify to store a clean source of truth version and allows our signers to reverify their documents at any time client-side. as other solutions create their black box immutable timestamps, we use stellar as our immutable public witness. instead of holding all the information in a black box and making you trust us, our signature can be independently verified with the attached audit trail sent out to all the signers after everyone has signed. ### we support our goal of building trust and privacy in three ways. first, our solution is built to the specification of one of the most strict e-signature laws, eidas (eu) advanced electronic signature. by following eidas, we also satisfied e-signature laws of over 60+ countries who follow eidas, such as switzerland, or have less strict rules. due to our signatures being transparent, signers can verify how we created their signature, ensuring we follow the rules. our e-signature solution is currently being used by law firms (<https://www.karanovicpartners.com/k-signing/>), financial services, and other regulated industries. second, our signatures and document verification are constructed entirely client-side and allow for decentralized verification. because you can't blindly trust the front-end, the signature should be validated. for our public solution, we validate signatures on our backend. however, we can delegate this verification to another backend. our new library will provide an easy way to verify the document and signature info against the posted stellar transaction. this will allows us to still facilitate signatures without needing to view any sensitive information. in the future, we would like to use zero-knowledge-proofs for all identity info, which allows us to verify the identity information on our backend without knowing the real information (let us know if you have experience in this!). third, our audit trail contains everything you need to independently verify any signature, without any data from blocknify. after every signer has signed the document, a final document is sent with an attached audit trail. this audit trail is just the collection of the signature documentation, and because of that, it can be constructed without blocknify for high privacy uses. it has all the needed information to re-construct signatures and independently verify each signature on the stellar network. while this can be manually done today, we're currently working on making an open-source version of our signature verification to make it even easier to validate. ### blocknify has been around since early 2018 we graduated from the f10 accelerator (managed by the swiss stock exchange) and startupyard (the oldest accelerator in cee). we have clients and partners from financial service companies (raiffeisen international bank), law firms (<https://www.karanovicpartners.com/k-signing/>), and other regulated industries (<https://big-swiss.com/about-us/#network>). ### why the stellar network? in beginning, we used a private ethereum network. we then tethered our private network to the main net for accountability and control of our cost. however, running our own private network created additional complexity and undermined our mission for trust to be built-in. we choose stellar because of the ease of use, excellent documentation and community tools, mission, cross-currency transactions, specialization around asset-backed tokens, and low cost. we believe in stellar's future and the ability to lower the barrier and cost of transferring assets anywhere in the world. we believe stellar's mechanism of creating trust and legitimacy is a massive factor in reducing the barrier of using dlt. we hope we can play our part in lowering that barrier by making it easier to sign contracts and tying them to asset transfers to help encourage fair and safe transactions. ### what will we do with the funds? we are only in step one of our stellar integration. currently, we use our account to post the signer's signature hash to the stellar network (the signer uses their key to sign the document). our chrome extension currently supports all chromium browsers (chrome, brave, edge, etc.), and signers can sign on any device through our web application. we plan to finish step two, three, and four in our stellar integration with these additional funds. * step two: allow our users to create their stellar account. * step three: allow users to use their existing stellar account to sign documents and submit their signature to the stellar network. * step four: allow users to tie their document signature to a payment. * step five: allow users to request a payment, which will be paid with the attached signature. * step six: allow users to pay in any stellar token. * step seven: enable complex signature and payment use cases. ### links * <https://blocknify.com> * <https://get.blocknify.com> (our free plan allows for 20 documents per month) * <http://bit.ly/videoblocknify>
blocknify
galactictalk.org
2021.10
[ { "text": "mousebelt blockchain accelerator spoke with the blocknify team today. we are really excited about how they intend to use stellar to enable anyone to tie asset transfers to a signature. they are a smart team that has been working on this project for 2 years and already have a lot of traction and customers in europe. we'd love to support this project as it transitions from eth to stellar and hope it gets a lot of votes!\n\n\nashlie meredith \n\nhead of education \n\nmousebelt blockchain accelerator \n\n<https://www.mousebelt.com>\n\n", "name": "", "is_accepted": false }, { "text": "thank you, ashlie! it was great talking to mousebelt as well. thank you again for your practical advice it was very helpful.\n\n ", "name": "", "is_accepted": false }, { "text": "if you are curious to see how you verify a signature from signature information to the posted hash on the stellar network, you can find a step-by-step process on our [help site](https://blocknify.zendesk.com/hc/en-us/articles/360017217739).\n\n\nyou can find an example of a signed document [here](https://blocknify.zendesk.com/hc/en-us/articles/360017217739).\n\n\nyou can see the transaction on stellar by clicking on the paging token under \"signature:\" and if you want to see the signature information, you can copy the data url that is linked in the header of \"signature:\" (this allows us to hide detailed information while not confusing non-tech users).\n\n", "name": "", "is_accepted": false }, { "text": "we have currently posted over 150 real signatures to stellar since 9/21/20\n\n", "name": "", "is_accepted": false }, { "text": "to reach more people we have listed blocknify on the [aws marketplace](https://aws.amazon.com/marketplace/pp/b08sr59929?qid=1613644173212&sr=0-6&ref_=srh_res_product_title)\n\n", "name": "", "is_accepted": false } ]
a1567c8ccf3dc6336caabf1516bf2bb4
i am using sample-demo-wallet code. when i try to perform withdraw operation i got the error, **"expects a 32 byte hash value or hex encoded string. got aaaaaaaaagola1xzqepxisodjmio+g8="** in withdrawasset.ts file, .addmemo(new memo(memohash, transaction.withdraw\_memo)) **withdraw\_memo** make the problem. i guess. looking for solutions
expects a 32 byte hash value or hex encoded string.
galactictalk.org
2020.40
[ { "text": "[amalcs23](https://galactictalk.org/d/2496/1)\n\n\nit's unicode\n\n", "name": "", "is_accepted": false } ]
571779e2eacd1cb759236e44f64a0408
for this sbc round i’m digging in deep. my original plan was to rebuild colorglyph directly into the stellar mainnet and offer/asset system. however it quickly became clear that for that to actually work well or at all i’d need much better and more powerful access of the stellar databases. so i fired up a horizon/core docker droplet and started building an api one request at a time. this went on successfully right up until a wild idea hit me. with all the classes and structure from the postgresql database would it be possible to essentially port right to graphql and not have to fool with all of these specific endpoints. a little googling and i soon had <https://github.com/postgraphql/postgraphql> installed and delivering a fully featured graphql interface queuing anything and everything in the core and horizon databases. absolutely amazing. this will change the game for stellar frontend application development. the rest of my time will be spent building up a wiki of useful boilerplate graphql queries as well as writing up a detailed tutorial for getting this set up on your own stellar nodes.
graphql interface for core and horizon databases
galactictalk.org
2021.31
[ { "text": "feel free to play with the graphql endpoints i have set up.\n\n\ntestnet\n-------\n\n\n<https://core-test.gly.sh/graphiql> \n\n<https://horizon-test.gly.sh/graphiql>\n\n\npubnet\n------\n\n\n<https://core.gly.sh/graphiql> \n\n<https://horizon.gly.sh/graphiql>\n\n", "name": "", "is_accepted": false }, { "text": "great job! i hope core team bold this out, this is huge good news!\n\n", "name": "", "is_accepted": false }, { "text": "worth noting i also have test and pub horizon instances running.\n\n\n<https://api-test.gly.sh> \n\n<https://api.gly.sh>\n\n", "name": "", "is_accepted": false }, { "text": "[@tyvdh](https://galactictalk.org/u/tyvdh) i had this same idea today (building a graphql layer on top of the ledger). i hadn't thought of using postgraphql, though.\n\n\nif you're willing to open the project up to receive contributions, i'd be happy to be part of it!\n\n\nif not, it'd be great to keep in touch anyway, since i plan to put together a ui that allows the blockchain to be visualised as a graph structure.\n\n", "name": "", "is_accepted": false }, { "text": "[codesmithtech](https://galactictalk.org/d/885/5) awesome! definitely planning on opening this up and will be looking for help.\n\n ", "name": "", "is_accepted": false }, { "text": "got a simple docker image set up for exposing a postgresql database to a graphql endpoint via postgraphile.\n\n\n<https://github.com/tinyanvil/postgraphile-docker> \n\n<https://hub.docker.com/r/tyvdh/postgraphile>\n\n\nnext up a docker compose to tie it all together.\n\n", "name": "", "is_accepted": false }, { "text": "and here we are!\n\n\na fully functional docker-compose set to run the <https://github.com/stellar/docker-stellar-core-horizon> in concert with <https://github.com/tinyanvil/postgraphile-docker>.\n\n\n<https://github.com/tinyanvil/glysh-docker>.\n\n\nnow i just need to write a detailed tutorial and maybe record a video walk through.\n\n", "name": "", "is_accepted": false }, { "text": "medium article laying out how to get everything running on your own servers. \n\n<https://medium.com/@tyvdh/building-stellar-apps-36303d0e6f45>\n\n", "name": "", "is_accepted": false }, { "text": " **for those who want kick start example** \n\n1. open <https://core.gly.sh/graphiql> \n\n2. fill this and run\n\n\n\n```\n{\n allaccountdata {\n totalcount\n nodes {\n id\n }\n }\n}\n```\n\n3. smile! 😃\n\n", "name": "", "is_accepted": false }, { "text": "recorded a three series of tutorials expanding on that medium article.\n\n\n[stellar postgresql to graphql: lesson 1](https://www.youtube.com/watch?v=qo1ghy3uer8) \n\n[stellar postgresql to graphql: lesson 2](https://www.youtube.com/watch?v=fdctz3b-ph4) \n\n[stellar postgresql to graphql: lesson 3](https://www.youtube.com/watch?v=8anjmztgry0)\n\n", "name": "", "is_accepted": false }, { "text": "can we have some examples on how to *use* this?\n\n", "name": "", "is_accepted": false }, { "text": "\n```\nquery {\n allhistoryoperations(first: 1, filter: { details: { equalto: \"{ selling_asset_code: \\\"usd\\\" }\" } }) {\n nodes {\n transactionid\n details\n type\n }\n }\n}\n```\n\n[tyvdh](https://galactictalk.org/d/885/11) \n\ni'm trying that query in your <https://horizon-test.gly.sh/graphiql> and it doesn't work correctly (no data). what i'm missing here?\n\n\nthank you.\n\n\nedit: actually, filtering by details doesn't seem to work as expected.\n\n", "name": "", "is_accepted": false }, { "text": "[jfuentes](https://galactictalk.org/d/885/13) i'm using this plugin for the filtering <https://github.com/mattbretl/postgraphile-plugin-connection-filter>. i have a pending request to see how to filter by a nested json key. i wasn't able to get it to work either.\n\n", "name": "", "is_accepted": false }, { "text": "[jfuentes](https://galactictalk.org/d/885/13) got it. the maintainer of the filter plugin had to make some changes.\n\n\n\n```\nquery {\n allhistoryoperations(\n first: 1, \n filter: { \n details: { \n contains: { \n selling_asset_code: \"usd\" \n } \n }\n }\n\t) {\n nodes {\n transactionid\n details\n type\n }\n }\n}\n```\n\nthat should do the trick now.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/885/12) wrote a little reply to the medium post with some examples. \n\n<https://medium.com/@tyvdh/fair-enough-6da46b0734aa>\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/885/1)\n\n\nthis is great stuff, thanks for sharing!\n\n", "name": "", "is_accepted": false }, { "text": "hey [@tyvdh](https://galactictalk.org/u/tyvdh), i was playing a bit with the horizon-test and it went down 🙁.\n\n\ncould you please take a look at it?\n\n\nthank you!\n\n", "name": "", "is_accepted": false }, { "text": "[jfuentes](https://galactictalk.org/d/885/18) no worries. back up now. there aren't a whole lot of checks in place atm so if you make a request which returns a massive amount of data or an overly complex filter the app may crash.\n\n\nneed to get some checks and auto rebooting in place.\n\n", "name": "", "is_accepted": false }, { "text": "hey tyler this is absolutely beautiful! forgive my ignorance about graphql but where can we get a list of all entities/fields in order to build some queries? this stuff is amazing!\n\n\n* facepalm * top/right there is a docs link\n\n", "name": "", "is_accepted": false }, { "text": "[torkus](https://galactictalk.org/d/885/20) best place is just to explore the \"docs\" -> \"query\" on the graphiql page itself.\n\n\n![](http://tyler.link/qy5u/screen%20shot%202018-03-30%20at%203.42.52%20pm.png) \n\n![](http://tyler.link/qyjb/screen%20shot%202018-03-30%20at%203.42.57%20pm.png) \n\n![](http://tyler.link/qydw/screen%20shot%202018-03-30%20at%203.43.02%20pm.png)\n\n\nand then too for some inspiration you can read <https://medium.com/@tyvdh/fair-enough-6da46b0734aa>\n\n", "name": "", "is_accepted": false }, { "text": "thanks, i'm in love!\n\n\nhey quick question, can we submit queries using plain http post? is there any api endpoint for that? i played with the web ui which is cool but i'd like to make a query once in a while from a program to check for trustlines which is something stellarsdks lack and it is in urgent need the more tokens get created. someday when i grow up i'll get my own node and your posts are perfect guides for that but for now i'd be more than happy to hit your service once a day while i get used to server stuff.\n\n\n* to expand, i saw the links to <https://api-test.gly.sh> and <https://api.gly.sh> but do they get graphiql queries in the post body so we get the same responses as the web ui? the ones i tried are just proxies to horizon responses which is not what i want.\n\n", "name": "", "is_accepted": false }, { "text": "[torkus](https://galactictalk.org/d/885/22) you certainly can! projects like apollo <https://www.apollographql.com/> make it a lot easier but if you inspect the console on the graphiql page you can see the http requests going out.\n\n\n![](http://tyler.link/qyd6/screen%20shot%202018-03-30%20at%206.46.04%20pm.png)\n\n", "name": "", "is_accepted": false }, { "text": "another * facepalm * haha so obvious, the web ui has to communicate with the server duh! i'll take a look, thanks!\n\n", "name": "", "is_accepted": false }, { "text": "this is related to the question posed on stackexchange here: <https://stellar.stackexchange.com/questions/729/possible-to-get-a-list-of-account-holders-satisfying-certain-criteria-using-hori/730>\n\n\nif i want a complete list of all native (xlm) accounts that meet a certain criteria, but have the results not just show on my browser but instead get fed into a db, is there a way to take the output from graphiql and get it into a database (there could be 1000's of accounts)? i don't want to overload your setup...\n\n\nthe other option is the one i see mentioned on the above post's answers: setup an instance of stellar core and query the database, and then use that info to build my own database. is that the only real option here or are there other alternatives?\n\n\n", "name": "", "is_accepted": false }, { "text": "[pdog](https://galactictalk.org/d/885/25) certainly! if you're planning on using this in production however i would set the docker image up on your own servers but so long as you paginate the results and then page through them it should be 100% doable over a period of time as you page through.\n\n", "name": "", "is_accepted": false }, { "text": "[@tyvdh](https://galactictalk.org/u/tyvdh)\n\n\nthis is a great project! i totally overlooked it back then.\n\n\ni'm currently reaching the limits of horizon with <https://equilibre.io>. for some portfolios it has keep 20 or more orderbooks up to date, plus the list of offers, and it's badly lagging. it is pretty clear that a graphql solution with compound data & subscription could largely improve this situation.\n\n\nit looks likes what you released so far is a sort of sophisticated demo (no orderbook support for example). have you any plan implementing in completely?\n\n\ni have a few questions about graphql:\n\n\n* could it fully replace horizon?\n* how does it compare cost-wise with a restful solution?\n* any way to guard against \"abusive\" requests?\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/885/27) hey, there! appreciate the comments and questions.\n\n\nto answer the questions in short:\n\n\n* yes, graphql could fully replace all existing horizon functionality, and it wouldn't be too much work either. would basically just need to add streaming support and mutation functionality back in.\n* cost wouldn't be much different from an operating standpoint, you do have another service to standup and if you want custom functionality you'd have to build that in your self but if you're familiar with postgres or graphql it wouldn't take much time.\n* great question and yes, there are several ways abuse could be mitigated. there are several articles and tutorials on the subject. here's a good one for example. <https://blog.apollographql.com/securing-your-graphql-api-from-malicious-queries-16130a324a6b>\n\n\nas far as building these things out myself in gly.sh i'm doubtful. i'd really need to beef up my servers and add a lot of the support for things you've mentioned. while it wouldn't be terribly difficult or expensive, without a consistent saas type business model it simply wouldn't make sense for me to provide a single solution for everyone. better for everyone to host, run and customize their own instances at least until the concept of stellarql matures and we get a better sense of what a single solution might look like as far as features and speed.\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/885/27) also unless i'm mistaken you can already get the orderbook from the core graphql endpoint with a request something like this.\n\n\n\n```\nquery alloffers {\n offers: alloffers(\n first: 100\n filter: {\n or: [\n {sellingassetcode: { equalto: \"wsd\" }}\n {buyingassetcode: { equalto: \"wsd\" }}\n ]\n }\n ) {\n nodes {\n lastmodified\n \n sellingassettype\n sellingassetcode\n sellingissuer\n \n buyingassettype\n buyingassetcode\n buyingissuer\n \n }\n }\n}\n```\n\nthat would return all offers buying or selling the asset code `wsd`\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/885/28)\n\n\nthank you for the detailled answer. this is absolutely interesting. i think i'll dig in as soon as i can get myself some more free time.\n\n\nthank you as well for the offers query. i totally overlooked it.\n\n", "name": "", "is_accepted": false }, { "text": "pleased to announce i've recently launched fully synced production level endpoints for both the test and public networks. they can be reached at these new endpoints.\n\n\n<https://core.stellarql.com/graphql> \n\n<https://horizon.stellarql.com/graphql> \n\n<https://core-testnet.stellarql.com/graphql> \n\n<https://horizon-testnet.stellarql.com/graphql>\n\n\nas of today i'm taking down the gly.sh endpoints.\n\n\nhappy coding!\n\n", "name": "", "is_accepted": false }, { "text": "[@tyvdh](https://galactictalk.org/u/tyvdh) thanks a lot for the update\n\n", "name": "", "is_accepted": false }, { "text": "stellarql is shutting down in favor of <https://astrograph.io/>. the folks over there are doing a better job at porting the stellar database over to a graphql endpoint. rather than have people choose, why not just choose the better service! 😃\n\n\nthanks for all the support and feedback during the lifetime of the project. it was a great ride and i'm confident the folks over at evil martians will take the idea to places i could have only ever hoped.\n\n\n❤️\n\n ", "name": "", "is_accepted": false }, { "text": "hi, \n\ncould you give me the code to get alltrustline an asset \n\ni tried with this code but it not work on <https://pubnet.astrograph.io/>\n\n\n{alltrustlines(orderby: [balance\\_desc], condition:{assetcode:\"xrp\", issuer:\"gcnsghucg5vmglt5riyyzso7vqulqkaj62qa33dbc5ppbso57lfwvv6p\"}) { \n\nnodes { \n\naccountid \n\nbalance \n\nassetcode \n\n}}}\n\n\nthank you\n\n", "name": "", "is_accepted": false }, { "text": "[stellaruae](https://galactictalk.org/d/885/35) hi! here's how you would do it in astrograph:\n\n\n\n```\n{\n asset(id: \"usdc-ga5zsejyb37jrc5avcia5mop4rhtm335x2kgx3ihojapp5re34k4kzvn\") {\n balances(first:10) {\n nodes {\n account { id }\n spendablebalance\n authorized\n }\n }\n }\n}\n```\n\nastrograph was built from the ground up to be a fully-featured graphql server for stellar network, rather than a thin wrapper around existing storages. a large part of the value of graphql lies in providing an abstraction between services and consumers, so the schema should not be tightly coupled either to particular service implementations or to particular consumers as they exist today. so in general don't expect astrograph to directly expose core/horizon db relational data.\n\n\nyou will notice here and there that we didn't limit ourselves by existing table structures or horizon-defined representations of certain entities. instead, we tried to follow schema-first approach and tried to map stellar network on a graph in the most sensible way. for example, unlike stellar-core, in astrograph asset is a proper top-level entity, and you can start with the asset and then follow the `asset <1--*> balance` connection to get all the balances, and each balance belongs to an account, so you can follow that connection, and so on until you get all the necessary data. also, in certain cases we took the liberty to use different terminology (i.e. `trustline` vs `balance`).\n\n\nthere's some [basic schema documentation](https://astrograph.io/docs/schema/query.doc), but i would recommend to use [interactive documentation and playground with autocomplete](https://pubnet.astrograph.io), which also has schema embedded docs.\n\n\none final note is that we don't provide any sla for our pubnet and testnet astrograph instances, so they should be considered development playgrounds and not used in anything close to live systems. in particular, pubnet instance *does not* have the full historical data ingested.\n\n\nif you'll have further questions, feel free to start [a discussion on github](https://github.com/astroband/astrograph/discussions) or jump in to our [public keybase group](https://keybase.io/team/astrograph.public)\n\n", "name": "", "is_accepted": false }, { "text": "[nebolsin](https://galactictalk.org/d/885/36) \n\nthanks alot! \n\nit works now 😃\n\n ", "name": "", "is_accepted": false } ]
5bbaaa4182e707dc807e88068126ee8b
![](https://i.imgur.com/3u3rbb2.png) ### **title** [lumenswap](https://lumenswap.com/) - decentralized swap protocol for the stellar network. ### **summary** lumenswap is a decentralized swap protocol for the stellar network that allows you to convert assets on the network using a friendly, minimal interface. ### **category** applications ### **goals** lumenswap aims to create a simple and minimal platform for swapping assets on the stellar network. this allows users to learn about the power and fundamental features of stellar for moving assets. ### **the benefit of lumenswap for the stellar network** having more applications that allow users to move their assets will make it easier for users to work with the network. this, in turn, increases the liquidity of the assets on the network. however, these applications can only achieve their goals if they have beautiful user interfaces and create enjoyable experiences like stellarx and stellarterm. ### **structure** **overall structure** client -> lumenswap-> horizen -> stellar network ![](https://i.imgur.com/8kd94ow.png) **swap** here, you can convert your assets. here’s a more detailed, technical explanation: once you submit a swap request (e.g., 1 btc for 10 eth), we send the request to the network using horizon api and perform a path payment strict send operation (with you as both the sender and receiver). depending on your order size and stellar’s order books, if the order can be handled, you’ll receive a success message and the swap will be performed. if the network cannot handle your order based on that moment’s order books, you’ll receive the following message: “your order is too large to be processed by the network. do you want to register it as an active order on the network?” if you approve the message, we’ll run a manage buy operation using horizon. the order will remain open and active and it’ll be executed to the possible extent. the remainder will remain open and can be managed in the ‘active orders’ section. ![](https://i.imgur.com/kwi9tk0.png) **send (soon)** there are two types of requests: 1- basic send this is a normal asset transfer to an address on the network exactly like you do in your wallet. after submitting the send request, it will be sent on the network using horizon api and a payment operation will be executed to transfer the assets to the specified address. just like that. 2- send + swap this is perfect for when you want to send one type of asset and have the other end receive another type. this is like hitting two birds with one stone: first a swap and then a send. suppose you want to send $200, but the receiver specifies eth as their preferred asset type. to do this, you need to activate a send+swap switch. as usual, a request is sent to the network using horizon which involves a path payment strict send operation (with your address as the sender and the entered address as the receiver). if the network can handle the order based on its order books at the moment of request, the operation will be executed and you’ll receive a success message. otherwise, you’ll receive an error message. in this case, you can increase the tolerance to reduce the minimum received value so that the network can handle the request. note: this section will be released on july 15 ![](https://i.imgur.com/pzjwuce.png) **minimum received** this is the minimum amount of an asset you’ll receive after the swap. the network will always give you the best recommendation, but this specifies the minimum amount. **set slippage tolerance** this shows the minimum you’ll receive. higher percentages mean you’ll receive less. **path** this represents the best path to convert the specified assets based on the order books on the network. **orders page** this part consists of two sections: 1-active orders here, you can view and delete your open or active orders. 2-completed orders here, you can view the completed orders or trades. **calculator for estimated price** lumenswap calculator uses the last registered orders on the network to estimate asset prices on the network (the calculations are performed using pairs of xlm and specific assets). suppose you want to get eth in exchange for usd. once you input 1 eth, you’ll automatically get 200 usd. how are these values calculated? in the example above, we’ll obtain the usd/xlm price based on the last buy order on the network and determine eth price based on the last eth/xlm sell order. the calculated number is then displayed on the interface. note that this is an estimation and not an exact number. note: based on our observations of the order books, the best paths mostly consist of xlm pairs. for example: snt -> llo best path: snt -> xlm -> llo **connect wallet** to use lumenswap, you need to connect your account. right now, there one way to do this: private key: to use this method, you should directly enter your private key. the key will be stored locally on your browser and deleted as soon as you log out or refresh the page. (lumenswap is an open-source application and you can review our source code to make sure everything is normal). soon, we’ll have two methods by connecting to the ledger. **listening assets** given the free and distributed nature of blockchains, we designed lumenswap to let anyone swap any assets. right now, popular assets with sufficient value are available on the platform. you can also add custom to be swapped using the following format: format: lumenswap.io/asset code1-issuer address1/asset code2-issuer address2 for example: lax -> eth lumenswap.com/lax-gazzb5kpowewk4c5s5h5b6ypr2eqmuijeffbnq6mwyyag7doeelbohlw/eth-gbdevu63y6nthjqqzikvtc23nwlqvp3wj2ri2otsjtnyoigicst6duxr note: use ‘xlm’ for xlm asset. for example: lax -> xlm lumenswap.com/lax-gazzb5kpowewk4c5s5h5b6ypr2eqmuijeffbnq6mwyyag7doeelbohlw/xlm ### **links** website: [lumenswap.com](https://lumenswap.com/) gitlab: <https://gitlab.com/lumenswap.com/lumenswap.com> email: [[email protected]](mailto:[email protected]) ### **tags** swap - dex - exchange - transfer
lumenswap - swap protocol for the stellar network
galactictalk.org
2021.10
[ { "text": "[lumenswap](https://galactictalk.org/d/2423/1)\n\n\neasily convert your on-chain assets. \n\nplease send your feedback for improve lumenswap.\n\n\n![](https://i.ibb.co/dwgrx8m/screenshot-2020-06-26-at-07-17-23.png) \n\n![](https://i.ibb.co/xx1fsdp/screenshot-2020-06-26-at-07-18-02.png)\n\n", "name": "", "is_accepted": false }, { "text": "how do you select the list of assets that can be swapped? currently there are half a dozen assets but it's missing some of the major fiat and cryptocurrency tethers. those would be really useful to have.\n\n", "name": "", "is_accepted": false }, { "text": "[marcinx](https://galactictalk.org/d/2423/4) \n\nhi marcinx, thanks for feedback! \n\nyes, we've listed a few high-volume assets at this stage and in the next update, we will list more assets. \n\nalso, you can list any assets you want, please follow the **listening assets** section\n\n", "name": "", "is_accepted": false }, { "text": "like the idea and simplicity! looking forward to signing options outside of pasting a private key 😀\n\n ", "name": "", "is_accepted": false }, { "text": "[kolten](https://galactictalk.org/d/2423/6) \n\nhi kolten, thanks for feedback! \n\nwe agree with you, this is one of the features that will be added in the next update (~ july 15)\n\n", "name": "", "is_accepted": false }, { "text": "[lumenswap](https://galactictalk.org/d/2423/1) \n\nit's great and creative app. you've used different operations with different properties in stellar to create a useful application. keep growing.\n\n", "name": "", "is_accepted": false }, { "text": "really simple and convenient exchange. how do you plan to earn? what business model does your project have for the future?\n\n", "name": "", "is_accepted": false }, { "text": "[john](https://galactictalk.org/d/2423/8) \n\nhi john, thanks for feedback! \n\nyes, we used four operations to build lumenswap: \n\n**path payment strict send** \n\n**manage buy offer** \n\n**change trust** \n\n**payment** \n\nin stellar, you can create smart contracts if you correctly use the operations and fundamental features of the network such as batching / atomicity (which you can use as a guarantee and condition because either all operations in a transaction succeed or they all fail).\n\n\nthis article by [@kolten](https://galactictalk.org/u/kolten) helps you understand this.\n\n\n\n", "name": "", "is_accepted": false }, { "text": "[scopuly](https://galactictalk.org/d/2423/9) \n\nhi scopuly, thanks for feedback! \n\nthere's no special business model because lumenswap is an open source and free application, which anyone in the world can use to convert their assets in the stellar network. \n\nthe team's expenses will be covered by scf grant.\n\n", "name": "", "is_accepted": false }, { "text": "this project looks like thin wrapper around horizon's path payment apis with a gui resembling ethereum's exchanges. not sure it's accurate to call lumenswap a \"protocol\" when it's just using horizon.\n\n\nalso didn't you guys just win last scf with lumenscan? i think its bad taste to submit a new project so soon especially since you've been caught using stellar.expert's private apis and had to reduce lumenscan's functionality as a result. orbitlens estimated you have at least one year of development time before lumenscan even comes to par with stellar.expert. given how much you marketed lumenscan as being \"superior\" than stellar.expert you should at least replace that missing functionality and continue building lumenscan.\n\n", "name": "", "is_accepted": false }, { "text": "[tmacshaq](https://galactictalk.org/d/2423/12) \n\nhi, thanks for feedback! \n\nwe only used the lumenscan as an explorer because it had a better graphical interface to show the transfer of assets. \n\n![](https://i.ibb.co/vqk2wdn/screenshot-2020-06-29-at-09-35-36.png)\n\n\n![](https://i.ibb.co/f8jysct/screenshot-2020-06-29-at-09-36-28.png) \n\nwe do not know what happened between lumenscan and stellar.expert because it is not related to our project. \n\neverything looks simple after it is made..! \n\nalways the talk is easier than the build...!\n\n", "name": "", "is_accepted": false }, { "text": "are you seriously denying knowledge of lumenscan and that you submitted lumenscan, lumink and lumenswap? i've got to say it's quite a coincidence...\n\n\n* all 3 domains are registered by 101domains and hosted together.\n* the source code for all 3 projects are basically identical.\n* the user lumenscan liked both lumink and lumenswap\n* your own post has a typo where you called lumenswap lumenscan 😃\n\n\ni saved the screenshot: \n\n![copy](https://i.ibb.co/dcbntmp/lumen-screenshot.png)\n\n", "name": "", "is_accepted": false }, { "text": "[tmacshaq](https://galactictalk.org/d/2423/14) \n\njust because all three domains are registered on 101domain, they belong to the same team? \n\nif that was true then everyone using 101domain would be part of the same team. \n\nhow did you come to the conclusion that all the source codes are the same? \n\nwhat's wrong with lumenscan liking our posts? the account has liked four other projects as well \n\nregarding the typo, we had one paragraph explaining the path in lumenscan, but then we decided to remove that paragraph. that's why there's a mistake. \n\ni don't know what your problem with lumenscan is and why you're trying sabotage our project. we're an independent team and we can provide sufficient proof to scf. \n\nit's obvious that you're a troll whose trying to sabotage our project. you should do your best to help the stellar ecosystem, not damage it.\n\n\n![](https://recruitingdaily.com/wp-content/uploads/sites/6/2017/02/quote-talk-is-cheap-show-me-the-code-linus-torvalds-45-66-13-e1487242875427.jpg)\n\n", "name": "", "is_accepted": false }, { "text": "let's play then\n\n\n* all three websites are distributed through cloudflare, with \"always use https\" enabled. (301 redirection on the port `80`, a no-brainer but not enabled by default)\n* all three websites use the same application framework & the same bundling mechanism.\n* lumenswap & lumenscan uses the same font,\n\n\none coincidence is a coincidence, but five coincidences start to look like a clue. at ten i'll call it a proof.\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2423/16) \n\ni'm glad that you revealed your true self and stopped hiding behind a fake account. \n\nthese reasons are all hilarious: \n\n 1-almost all websites in the world use cloudflare (always https is the default option for cloudflare) \n\n2-inter font is an extremely popular font that many web projects use. \n\n3-react is the world's most popular client-side framework. \n\nbased on your reasoning, since lumenscan uses react, inter font, cloudflare, no one else in the world is allowed to do so. \n\nas i said, we're ready to give scf any sort of proof we have to.\n\n\nyou should talk about your own useless project. you made cosmic before and received a lot of money but no one wanted to use it. if it really was useful, someone would have used it. \n\nnow you want to use your reputation to enter the competition with another useless app. \n\ni know what your problem is. you know you'll lose. \n\nlumenswap is much better than your application.\n\n", "name": "", "is_accepted": false }, { "text": "i have only one account here and in any social media related to stellar.\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2423/18) \n\noh good! we are a community and we must help each other to grows stellar ecosystem, not to destroy each other with baseless things. \n\nat first, we wanted to add cosmic to lumenswap, but when we saw this behavior from its ceo, we removed it from our roadmap.\n\n\n", "name": "", "is_accepted": false }, { "text": "[lumenswap](https://galactictalk.org/d/2423/19)\n\n\ni believe you guys have more than react in common though. would you help me figure this out?\n\n\nit looks like your systems all generate a `bundle.js`, a nearly empty `load.css`, and a `bundle.css`. which tool is setting things up that way?\n\n\ni also wonder about how are those files generated: [index.html](https://gitlab.com/lumenswap.com/lumenswap.com/-/blob/master/template/index.html), [base.less](https://gitlab.com/lumenswap.com/lumenswap.com/-/blob/master/src/styles/base.less), [font.less](https://gitlab.com/lumenswap.com/lumenswap.com/-/blob/master/src/styles/fonts.less). is it hand-written or is there some scripts/standard utility behind this?\n\n", "name": "", "is_accepted": false }, { "text": "\n> [lumenswap](https://galactictalk.org/d/2423/17) 1-almost all websites in the world use cloudflare (always https is the default option for cloudflare)\n> \n> \n\n\nthe chance that two websites use the exact same cloudflare nameservers is quite small though. \n\nso by pure luck then, all of the sites that go through my cloudflare account happen to have the same setup. go figure...\n\n\n\n```\n$ dig +short ns lumenscan.io\narnold.ns.cloudflare.com.\ntani.ns.cloudflare.com.\n```\n\n\n```\n$ dig +short ns lumenswap.com\narnold.ns.cloudflare.com.\ntani.ns.cloudflare.com.\n```\n\n\n```\n$ dig +short ns lumink.io \ncloe.ns.cloudflare.com.\ntrey.ns.cloudflare.com.\n```\n", "name": "", "is_accepted": false }, { "text": "hey [@lumenswap](https://galactictalk.org/u/lumenswap) would you mind pinging me on keybase? `tyvdh`?\n\n", "name": "", "is_accepted": false }, { "text": "hi guys do you want the lumenswap team to work on the next updates? \n\nand do you want us to continue in a fair environment, away from the influence of mafias? because their project has no creativity, and they want to get the grant by marginalising the other projects. \n\nis the world built on justice or power? \n\nwe've worked hard on our project, and is this unilateral destruction really fair? \n\ni think they're mad because kolten left us a positive comment. he is very smart and understands the difference between unoriginal and creativity\n\n\n", "name": "", "is_accepted": false }, { "text": "\n> [lumenswap](https://galactictalk.org/d/2423/23) i think they're mad because kolten left us a positive comment. he is very smart and understands the difference between unoriginal and creativity\n> \n> \n\n\nwhat creativity? it's a web front end for doing a path payment, for christ's sake. \n\nthe most creative thing you've done is the \"swap request\" flow-chart in the op.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2423/24)\n\n\n\n> it's a web front end for doing a path payment, for christ's sake.\n> \n> \n\n\ni can’t figure out if what you’re saying is based on ignorance or animosity. \n\nall decentralized apps are built using blockchain operations + a web ui. \n\nfor example, most stellarterm structures are build using manger buy offer and manage sell offer this does not mean they’re rudimentary. it’s actually creative to be able to use and combine different operations in a way that yields superior results. \n\nplus, we’ve used multiple operations to build this app, but you don’t see lumenswap because you choose not to.\n\n\nwe recommend the best price based on network awards. \n\nwe’ve implemented the components in the best way possible and leverage a minimal design to create a simple environment to move assets. our app is completely open-source and decentralized.\n\n\nisn’t stellar a blockchain for simple assets convert and transfer? \n\ndoes a regular use know what path payment strict send is? clearly not! but they know what simple asset transfer means and know they want to get their job as easily as possible. so, when they log on to lumenswap , they can do what they want without knowing what happens in the background.\n\n", "name": "", "is_accepted": false }, { "text": "\n> [lumenswap](https://galactictalk.org/d/2423/25) i can’t figure out if what you’re saying is based on ignorance or animosity.\n> \n> \n\n\ncould be it's just disappointment of something not actually moving the needle.\n\n\npath payments, together with what can be done using transaction envelopes (\"multi-sig\", etc) are the distinguishing features of stellar, and deserves something better than just slapping a ui in front of an api call.\n\n\ni would have hoped someone would have taken it further, that's all.\n\n\n(as an example, is anyone doing multi-path payments?)\n\n\n", "name": "", "is_accepted": false }, { "text": "[lumenswap](https://galactictalk.org/d/2423/25)\n\n\nand then there's the (at least) 2549/2550 chance(*) that you are behind both lumenscan/lumenswap, and lying about it.\n\n\n(*) - cloudflare name server pairs get assigned randomly on a per account basis, and all domains w/ an account have the same name server pair. the numbers i've seen say there are 51 male names + 50 female names, and every account gets one of each -> 2550 combinations. old numbers, so quite possibly even more combos now.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2423/27) \n\nkeep these words for yourself \n\nsoon we will talk about you and the mafias that you take in every grant period. \n\nyou receive grants every period without showing yourself and you think everyone is like you. \n\nwe've put a lot of time into our project, and what's bothering you is that users have made positive comments (except for you and the mafia group, of course). \n\nunfortunately\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2423/26)\n\n\nall projects in the world are ui in front of api's call. \n\nyou that know and you're talking again.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2423/27)\n\n\nof course, the projects of the previous period are only lumanscan, which is being used and the rest is not used at all.\n\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2423/27) \n\nthis was our last conversation with you. \n\ngoodbye\n\n", "name": "", "is_accepted": false }, { "text": "\n> [lumenswap](https://galactictalk.org/d/2423/28) you receive grants every period without showing yourself and you think everyone is like you.\n> \n> \n\n\nmy account here is connected to my keybase, which has my github profile, which contains all code i've ever released for stellar. coincidentally, it also has my real name, my twitter, and my websites. how is that \"without showing myself\"?\n\n\nand can someone please send me the grants i've apparently received every round? they seem to have been misplaced.\n\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2423/32) \n\nif you are right, why don't you comment about cosmic? \n\nwe all know that stellar can't have decentralized voting without vm \n\nyou can ask from jed mccaleb to prove it\n\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2423/32) \n\nwhy don't you say that cosmic just made manage data operation + ui \n\nso if you have directional thoughts, keep them to yourself\n\n", "name": "", "is_accepted": false }, { "text": "\n> [lumenswap](https://galactictalk.org/d/2423/33) we all know that stellar can't have decentralized voting without vm\n> \n> \n\n\nthe people saying it can't be done shouldn't stand in the way of the people doing it. \n\nthere's at least three different solutions being worked on right now.\n\n", "name": "", "is_accepted": false }, { "text": "now all the projects and all the developers are important on the stellar stage, including those who were called the mafia here) these are people at the source, however that may be, and this is important. we are all united here by one goal - that would make stellar as applicable and popular in the world as possible.\n\n\nthe stellar ecosystem is still missing one important service for the community and developers - it is a voting service for the submitted projects. something like home for stellar startups. then each submitted project would have a history of development, phases of receiving grants and constructive criticism around startups.\n\n\nthis would give a couple of powerful effects for all participants:\n\n\n* a complete list on a single domain of all existing stellar projects\n* a transparent history of the development of the project and the amount of grants received (this would encourage other new developers to think at stellar)\n* this would exclude random one-time projects that are aimed only on receiving a grant\n* also on this site would be not only users and developers, but also investors who are eyeing stellar projects \n\n“and in the end, it could be a place to concentrate best practices on stellar development, best practices, tips for beginning developers, etc.\n* well, of course, this would attract more media and bloggers to this resource to study reviews of the fast-growing stellar ecosystem\n\n\n \n\nat first glance, developing such a project does not seem complicated (maybe i'm wrong) . there are so many talents and everyone could make a preliminary contribution in the form of a sketch-concept of how this service can look and work.\n\n", "name": "", "is_accepted": false }, { "text": "let's just face the facts as they are, ok?\n\n\nthis community has enough mature & competent devs to detect cheating/abuse attempts and defend itself. devs looked at your work & found evidences that three projects presented under different identities had nonetheless shared author(s). you got caught and that's not something you can undo.\n\n\nultimately, you're the one(s) who decided to try to play us & nobody but you is(are) responsible for that strategy. now i admit that you are creative when it comes to alternative narratives, but badmouthing people & projects isn't going to change the facts [nor the rules](https://galactictalk.org/d/2380-stellar-community-fund-round-5). this is what you can read there:\n\n\n\n> participants who create fake accounts to bypass the above rules will be disqualified. this is regardless of whether or not they win a round. participants who leverage sockpuppet accounts to submit proposals, friends to submit proposals, or any similar ‘act of bad faith’ will be disqualified. sdf has the right to withhold awards from people who have abused these eligibility requirements.
\n> \n> \n\n", "name": "", "is_accepted": false }, { "text": "hi everyone, \n\nafter a discussion with the [@tyvdh](https://galactictalk.org/u/tyvdh) , we've decided to participate in the next round. we're going to withdraw from this round to focus on adding the new features we planned to include in this round. see you soon with more features.\n\n", "name": "", "is_accepted": false }, { "text": "the website link isn't going through\n\n", "name": "", "is_accepted": false }, { "text": "[yeppman](https://galactictalk.org/d/2423/40) \n\nhi, we glad you reach out here. \n\nwe've changed the website domain, new website domain: <http://lumenswap.io/>\n\n", "name": "", "is_accepted": false }, { "text": "[lumenswap](https://galactictalk.org/d/2423/5) hi, we would like to do a presale for afreum via lumenswap. we've tested and it works great but.would be good to have afr in the list and for the token icon to be visible. how do we go about doing that?\n\n", "name": "", "is_accepted": false }, { "text": "[afreum](https://galactictalk.org/d/2423/43) \n\nhi afreum, we are glad that lumenswap can help you \n\nplease send the asset info (asset code, asset issuer, website)to this email. \n\n[[email protected]](mailto:[email protected]) \n\nafter reviewing, we will add it to the list of known assets. \n\nthank you\n\n\n", "name": "", "is_accepted": false }, { "text": "[lumenswap](https://galactictalk.org/d/2423/44) thank you so much.\n\n ", "name": "", "is_accepted": false }, { "text": "[@lumenswap](https://galactictalk.org/u/lumenswap) - this looks great. we are exploring to see if this can be added as an option for new/existing users to buy ever coins in our project - everlife.ai. i have emailed you our issuer id and asset code details. i look forward to hearing from you.\n\n", "name": "", "is_accepted": false } ]
eff5fb350a23b5dcce63fc778b24e43a
![](https://i.imgur.com/l94qp2a.png) ### slogan a bridge between web3 and the stellar network ### title rabet is an open-source browser extension wallet for the stellar network. ### summary rabet is an open-source browser extension wallet designed for the stellar network by which you can manage your assets and interact with stellar apps. ### **category** applications and tools ### rabet explainer video ### **goals** it is helping users connect securely and conveniently with stellar apps that grow the stellar ecosystem. ### **features** creating a new wallet importing wallet with the private key supporting multi wallet showing the latest transactions info sending any operations sending multi-operation api for developers showing xlm balance showing xlm value in usd showing assets balance showing assets value in usd switching between the main network and test network auto-lock timer privacy mode qr address set a name for a wallet. showing private key connect with sapps (stellar apps) ### **for users** rabet is completely open-source. user information is encrypted and kept exclusively on local storage, which significantly improves security (you keep your own data). users can check their balance, manage assets, send operation, and log in to various apps on the stellar platform. ### **for developers** developers can interact with users and stellar using the rabet api the same way ethereum developers do with metamask. rabet is usable for all apps built on the stellar network because it supports all operations. ### key features **1. sending operations** ![](https://i.imgur.com/flknnrc.png) in rabet, you can send any type of application available on the stellar network to as many as you want in a simple and beautiful ui environment. for example, you can send one payment operation with two change trust operations with one manage offer operation in one transaction. stank-supported operations: 1-payment 2-path payment strict send 3-path payment strict receive 4-manage offer 5-manage passive offer 6-inflation 7-set flag 8-clear flag 9-master wight 10-home domain 11-signer 12-threshold 13-change trust 14-allow trust 15-account merge 16-mange data 17-bump sequence **2. privacy mode** ![](https://i.imgur.com/4x3hlz1.png) this feature, which is in the settings section and is on by default, allows you to determine whether you will be asked to connect an app to your wallet or it will connect automatically. ##### 3. auto-lock timer ![](https://i.imgur.com/kvmi63n.png) this feature increases your wallet's security against the people next to you and who lives with you. if this is not the case, you should always lock the wallet manually, which most of the time users forget, and if someone comes behind your system and open the extension, they can easily steal your inventory. however, with this feature and by going to the settings and setting the automatic time for it, you will not worry about forgetting to lock your wallet. ##### 4. transparent structure ![](https://i.imgur.com/pngea7c.png) the rabet structure is designed so that when an app sends you a transaction request to sign, you see all the operations' details by signing that transaction. this will help you understand what operations the app is doing and what you are signing for. this process allows users to interact more securely and without any stress with any apps that uses rabet. ##### 5. secure ![](https://i.imgur.com/qbhutsm.png) your information is at your disposal. in rabet, your data is encrypted and stored locally on your browser. no one but you has access to it. also, rabet is an open-source application. you can download its source and add it to your browser manually by unpacking it. ### **how does rabet help the stellar ecosystem grow?** when users interact with stellar network apps in a secure environment and have a comfortable user experience, they are encouraged to work with stellar network apps. this user interaction makes more developers willing to build applications on the stellar network. ### where exactly are we? it's been four months since we started working on rabet, and now we have released the beta version of the chrome extension, but you can use it in browsers based on the chromium engine, such as brave - vivaldi - opera., etc. we have a plan to release a version of firefox in the future. ### faq **1. what is rabet?** rabet is an open-source browser extension wallet for the stellar network. **2. where is my private key wallet stored?** you own your data with rabet because your private key and data are encrypted and stored locally on your browser. **3. can i do any operation on the stellar network with rabet?** yes, rabet lets you send any operations to the network with any number you want in one transaction and an environment with an understandable and beautiful ui. **4. can i have multiple accounts in rabet?** yes, you can create or import as many accounts as you want in rabet and easily switch between them. **5. i'm a user. how does rabet help me to interact with stellar apps?** with rabet, you can connect to stellar network applications without providing your private key to applications. the rabet structure is also designed so that when an application sends you a transaction request, you can see all the details of the operations that will be done with your signature, and it will help you know exactly what you are signing. **6. i'm a stellar network developer. what does rabet help me with?** one of the significant problems for users not wanting to work with stellar apps is developers' private keys because developers need them to sign transactions. you can interact with the stellar network and users using the rabet api via rabet. this makes users more willing to work with your app because there is no security risk for them. **7. i am a developer. how can i send a request for a transaction to rabet?** to connect to rabet and send transactions, you must use the rabet api. read the document for more information. **8. what is the privacy mode option?** this feature makes stellar network applications to require your approval before connecting to your wallet and then connect to your wallet after your acceptance. this feature is enabled by default in rabet. ### link website: <https://rabet.io/> twitter: <https://twitter.com/rabetofficial> discord: <https://discord.gg/vkydnrkutz> youtube: <https://www.youtube.com/channel/ucbflm1ejjmaho7rfxtqontq> communityfund-seed: <https://communityfund.stellar.org/seed-fund#/entry/f74cb1f4b67a8d222f6b886845e5f3f7d8b29741bd0d50ebde925544b8e6dd99> email: [[email protected]](mailto:[email protected]) github: <https://github.com/rabetofficial> gallery ------- ![](https://i.ibb.co/gpwvm5z/shot-1.png) ![](https://i.ibb.co/fsqzjwb/shot-2.png) ![](https://i.ibb.co/fz1xv6s/image.png) ![](https://i.ibb.co/gz8ffzf/shot-4.png) ![](https://i.ibb.co/fxlnryk/shot-5.png) ![](https://i.ibb.co/vtw2rwf/shot-6.png) ![](https://i.ibb.co/fdh6x18/shot-7.png) ![](https://i.ibb.co/2ycv03t/shot-8.png)
rabet - a bridge between web3 and the stellar network
galactictalk.org
2021.17
[ { "text": "is the api similar to freighter or albedo?\n\n", "name": "", "is_accepted": false }, { "text": "[antb123](https://galactictalk.org/d/2625/2) we're still working on this part so i can't say for sure. but it would be somewhat different overall.\n\n", "name": "", "is_accepted": false }, { "text": "![](https://cdn.discordapp.com/attachments/543111562949296128/812344292801511475/euirjb0xcam_wi2.png) \n\nhi guys! \n\nfinally, we are in chrome web store. \n\n<https://chrome.google.com/webstore/detail/rabet/hgmoaheomcjnaheggkfafnjilfcefbmo>\n\n", "name": "", "is_accepted": false }, { "text": "rabet introduction video just released. \n\nin this video, rabet's founder explains the different sections in rabet and shows you how to use the extension. \n\nthis video is from rabet's tutorials. in the upcoming videos, alper will talk about the interaction section and how you can interact with an app with rabet, as well as its security.\n\n\n", "name": "", "is_accepted": false }, { "text": "![](https://i.ibb.co/ldmw7bc/image0.jpg)\n\n\nrabet v0.0.2 was released.\n\n\ncheck it on github: \n\n<https://github.com/rabetofficial/rabet-extension/releases/tag/0.0.2>\n\n", "name": "", "is_accepted": false }, { "text": "\nroadmap\n-------\n\n\n### rabet core\n\n\nwe’ve already implemented the main core of rabet, and we’re actively developing it so we can use it for developing different versions across different operating systems. the main milestone of rabet was to implement its core because its structural model and design system were formed at this stage.\n\n\n![](https://miro.medium.com/max/875/1*pnaoikuz_jibbsywsqfmhg.png)\n\n\na structure that is supposed to be unique along with the user interface design and create a pleasant experience for users interacting with stellar.\n\n\ncurrently, we’ve only published the chrome version of the extension. we’ll also release the firefox version once we reach a stable state with the chrome version. we didn’t release the firefox and the chrome versions simultaneously, as publishing them like that would’ve slowed down our development process and led to unnecessary repetition. \n\nif you have any questions about the rabet extension, refer to its documents.\n\n\ndeveloper docs: <https://docs.rabet.io/>\n\n\nusers docs: <https://support.rabet.io/>\n\n\n![](https://miro.medium.com/max/875/1*ilgxgt09c-gwlfsqyu5qyg.png)\n\n\n### desktop\n\n\nin the future, we’ll use electron js to release our desktop version for the three main operating systems:\n\n\nlinux\n\n\nmacos\n\n\nwindows\n\n\nthe desktop version will support all extension features.\n\n\n![](https://miro.medium.com/max/875/1*1ixykdylom6bzdgvdwfnkw.png)\n\n\n![](https://miro.medium.com/max/875/1*ymw3-ngqrl6guoz72oqckg.png) \n\n![](https://miro.medium.com/max/875/1*720aj54zrmfdghei0niwhg.png)\n\n\n### mobile app\n\n\nthe ios and android versions will be released at the end of the roadmap. these versions will support features such as managing assets and sending activities. these versions will also feature a built-in browser for easier interactions with other stellar applications(sapps). using this feature, other developers can easily connect their app to the ios and android versions by simply adding a few lines of code. the users will have access to an integrated sapp store to interact with other stellar apps easily.\n\n\n![](https://miro.medium.com/max/875/1*_nfth8g4h6tpye8cevfpkw.png)\n\n\n### goal\n\n\ncreating a simple and user-friendly platform for easier interaction between users and sapps and stellar network. \n\nwe have a powerful and scalable network called stellar. we need to help users interact with the network by building open-source tools. \n\none of the factors that increase liquidity and interaction in the network, which ultimately makes the network dynamic, is constructing this integrated tool.\n\n\n### what will we do with the **fund**?\n\n\nthe entire funding that we receive from the stellar foundation is used for funding the team and hiring new developers for our team. we’ll need new developers (such as ios and android developers) in the future in order to develop different versions of the application.\n\n\nwe have two clear missions:\n\n\n1. making an easy-to-use way to interact with the stellar network.\n2. building a bridge, a connection, between web3 and the stellar network.\n\n\nthis is a long and difficult path, but we have you, the stellar community, and together we can accomplish great things.\n\n", "name": "", "is_accepted": false }, { "text": "rabet interaction video just released. \n\nin this video, i teach you how to inject rabet into your web app and interact the stellar network.\n\n\n", "name": "", "is_accepted": false }, { "text": "in this article, we present a magic tool developed by the rabet team and used in the development of rabet. \n\n\n\n", "name": "", "is_accepted": false }, { "text": "superb peice of work you've got here; i was extremely excited to see that rabet is now fully compatible with lumenswap! 😁\n\n ", "name": "", "is_accepted": false }, { "text": "nice work! i am a fund manager looking for opportunities on the stellar network. what apps do you foresee rabet interact with it?\n\n ", "name": "", "is_accepted": false }, { "text": "[jerkar12](https://galactictalk.org/d/2625/11) hi, all web apps that want to interact with the stellar network and use its operations. \n\ncheck out <https://app.lumenswap.io>, one of the web app that uses rabet.\n\n", "name": "", "is_accepted": false } ]
4d214016520a1936f61bf3b6bc33baef
![litemint apps and games platform on stellar](https://litemint.com/img/topbanner.jpg "litemint apps and games platform on stellar") what is litemint? ----------------- litemint is an apps and games platform built atop of an open source stellar wallet. the platform boasts 36,000 monthly active users to date. from puzzles to multiplayer to cryptokitties-like games, litemint runs and enhances any app with the stellar blockchain. * decentralized payments and cross-currency in-app purchases (path payments). * game assets tokenization with creation of new digital markets like collectibles and non-fungible tokens (nft). goals and timeline ------------------ litemint started as a one-man show about a year ago and has been 100% bootstrapped from personal funds. i would be delighted to see support from the stellar community during this crucial seed phase to help booting the marketplace content, users and partnerships. ### q4 2019/q1 2020 **non-fungible token factory** ![enter image description here](https://i0.wp.com/blog.litemint.com/wp-content/uploads/2019/10/ghostskin2-1.gif?w=670&ssl=1) the nft factory is an integrated tool allowing code-less creation of collection games like cryptokitties on stellar. the goal of the nft factory is to foster adoption of stellar as a viable platform for nft games and ease manipulation of nft tokens. read more: <https://blog.litemint.com/tradable-breedable-non-fungible-tokens-now-available-on-stellar-with-litemint/> **litemint io** a massively multiplayer collectible card game on stellar with endless, instant match ups (io style). the goal of this game is to showcase all litemint features and leverage the powerful io games network for massive adoption (my previous io game gathered 3 million players since 2017). read more: <https://blog.litemint.com/litemint-io-massively-multiplayer-collectible-card-game-on-stellar/> **further partnerships** [blacksheep games](https://www.facebook.com/blacksheepgames) has now published 6 additional games on litemint. [magnet.market](https://magnet.market/), a digital good marketplace, is expected to go live within the next 2 months. additional partnerships are being discussed as i am writing this proposal. most efforts will be focusing on onboarding new game studios with a priority on 1vs1 strategy (checkers, chess, go…), educational and card games as such games are usually strong with social retention mechanisms and engagement. problem and opportunity ----------------------- ![enter image description here](https://litemint.com/img/problem_opportunity.jpg) if we look at the crypto markets, we can see a strong correlation between the price trends and active users of dapps. this is an anomaly that reflects the inability for dapps to reach out to their respective audience. e.g. whether a game is published on the blockchain, facebook, steam or miniclip, it should be played by gamers, not crypto users. dapps are missing out on their respective market—potentially billions of users. the litemint solution --------------------- the idea of litemint is to use apps and games as prospective tools to funnel gamers into the crypto world. initially with 5 pilot games, the wallet has seen 600% user growth to 36,000 monthly active users since the release of its apps and games platform on june 19. ![enter image description here](https://i1.wp.com/blog.litemint.com/wp-content/uploads/2019/08/ghostskin.gif?w=670&ssl=1) litemint achieves this by preserving the games existing funnels (platforms and portals) and by providing an opt-in approach that smoothly opens new monetization options to creators without closing the existing ones. ![enter image description here](https://i2.wp.com/blog.litemint.com/wp-content/uploads/2019/08/mingledexperience.png?resize=720,720&ssl=1) platform details ---------------- * litemint is available on [google play](https://play.google.com/store/apps/details?id=com.litemint.app), [app store](https://apps.apple.com/app/litemint/id1454801150), windows, mac, linux and as a [web app](https://litemint.app/). * litemint [source code](https://github.com/litemint) is available under the open-source mit license. e.g. the platform can be built and run self-hosted. * litemint accounts support stellar federation (e.g. hello*litemint.com). * multi language support including english, korean, russian, french, deutsch, greek, chinese. * full sdex support with mobile-first ui. links ----- * website: <https://litemint.com/> * github: <https://github.com/litemint> * web app: <https://litemint.app/> * google play: <https://play.google.com/store/apps/details?id=com.litemint.app> * app store: <https://apps.apple.com/app/litemint/id1454801150> * blog: <https://blog.litemint.com/> * twitter: <https://twitter.com/liteminthq> * facebook: <https://www.facebook.com/litemint> * youtube: <https://www.youtube.com/channel/uc4d-enpghypzhbb-n7hln2w> * reddit: <https://www.reddit.com/user/blockonomy> * discord: <https://discord.gg/sxq6uyp>
litemint - apps and games platform on stellar
galactictalk.org
2020.29
[ { "text": "do you plan to release your nft implementation as an independent library?\n\n\ni'm not sure how this could be handled, but that could be interesting to have it standardized & enable some inter-operability.\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2196/3)\n\n\ndidn't [@orbitlens](https://galactictalk.org/u/orbitlens) do a survey of a couple of possible nft implementations? maybe time to follow up on that? \n\ni know people commented on my version (account-as-asset) as being too expensive, but iirc, the litemint version is even more expensive (in terms of xlm, although xlm price has fallen at least 10x)\n\n", "name": "", "is_accepted": false }, { "text": "there's definitely need for a change or new standard for nfts on stellar. \n\naccounts as assets is a workaround but it's not optimal.\n\n ", "name": "", "is_accepted": false }, { "text": "my point was more that if there's something running & working, that'd be interesting to have specs & library for it. but yes, of course, it'd also be interesting to figure out what's the most efficient implementation that can be done at that point. i mean, both things can happen in parallel.\n\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2196/3) [dzham](https://galactictalk.org/d/2196/4)\n\n\nthe litemint implementation of non-fungible tokens is *de facto*—that is, regardless of whether someone knows the implementation or creation process of the nft tokens, the non-fungibility of such tokens remains intrinsic, natural and inter-operable.\n\n\nlitemint nft tokens are tradable like any other assets, no external assumptions (e.g. consider accounts as tokens) must be accepted or known by any other wallet, tools or people to demonstrate their non-fungibility which, therefore, cannot be repudiated.\n\n\nin other words, that *de facto* property of litemint nft tokens remains forever whether a standard is adopted or not.\n\n\ni would still love to see a standard being developed and adopted natively around nft on stellar so we could have a flexible way to extend their programmability for example to implement breedable cooldowns and so on.\n\n\ni think cap-0023 will also bring so much flexibility to nfts.\n\n\nreleasing an independent library is definitely a good idea too.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2196/4) to explain further, if you use accounts as assets for nft, you need other actors to also interpret such accounts as nft and implement a process to ease their transfer and trade. these nfts are, by default, foreign entities to the assets system on stellar—and so, refutable as nft (i.e. yes an account is unique, but is it **a token** without an assumption?).\n\n\nthe nft generated in litemint is a natural token, the sequence of operations itself and forever confers it its uniqueness. any current tool exposing the dex will trade it, any wallet will send it and receive it through existing operations, and no one can falsify their non-fungibility through any assumption that would not also falsify the whole stellar blockchain.\n\n", "name": "", "is_accepted": false }, { "text": "[litemint](https://galactictalk.org/d/2196/8)\n\n\ni'm aware. we spent months on the slack going over the ins and outs.\n\n\nmind you, the *cost* of doing things back then was 20-200 times higher, so that had a bit of an impact on the discussion.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2196/9) compared to erc-721, stellar still has many advantages as the blockchain is scalable and optimized for token emission and fees. ethereum needs to store and execute these programmable contracts for each unique asset and operations on them causing a lot of computational overhead and costs. it is trying to fix it with erc-1155 (by enjin originally) for example but in the process, the contract loses much flexibility and just becomes a reusable component. the limitations we have on stellar are not by design as is the case on ethereum. and the nft factory i am working on may prove to be more powerful than anything that can be done on ethereum for accessibility (i hope so).\n\n\nstellar smart contract features (sequencing a few operations in a specific order) ensures token uniqueness and we can also prove additional token ownership by factoring in additional payment operations. for example, if you own nft x and issue a self-payment in the sequence creating nft y, we can infer ownership and inheritance (this is used to implement traits). \n\nwhat i am still trying to figure out is the ability to implement creation cooldown. the proper way to do it would be by making sure that no token could be created before a specific time after an nft is created but i don’t think this is possible without an external assumption (meta data lookup etc…)\n\n\nif we had the ability to “freeze” a token on an account for a specific amount of time (like a coinbase reward unspendable for x confirmation) then that would be amazing. 😃\n\n\n", "name": "", "is_accepted": false }, { "text": "\n> [dzham](https://galactictalk.org/d/2196/9) mind you, the cost of doing things back then was 20-200 times higher, so that had a bit of an impact on the discussion.\n> \n> \n\n\nfor the creation costs, it was certainly a general problem before. ethereum also saw fees at over $3 per transaction back in 2018, and that’s each time an asset would change owner. adding to this the $6 fee by cryptokitties back then (now around $1), an average cryptokittie token would sell for $20 in average as the market and its actors would adjust to higher costs as it did during the bull run.\n\n", "name": "", "is_accepted": false }, { "text": "overall we should open some discussions again as there are unmatched opportunities for nft on stellar because, just for the fees, we have a much more powerful environment for nft economies. even erc-1155 on ethereum is emulating in the same direction as stellar (simpler framework for more generic and usable contracts). very speculatively, even with crypto markets gaining 100 times their current value, nft economies on stellar would run almost unaffected, which is not the case on ethereum where they would only become practicable for strong nft markets (if at all).\n\n\n", "name": "", "is_accepted": false }, { "text": "indeed, those details are interesting.\n\n\nso, while we can't mess with those nft, i assume there's a set of rules an app must know to decide whether or not a token should be understood as an nft having traits and so on. i think that could be useful to have shared specs about that.\n\n\ni'm pretty sure there's a way to throw a generation delay clause in there, such as token `a` is valid only if it is `x`s older than token `a.parent`, where `x` is a value encoded into `a.parent` mintime field. (mintime can serve to pass arbitrary values for free as long as they are low enough)\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2196/13) if you take the crypto kitties contract as reference, we could define 2 domains where nft properties reside:\n\n\n**the contract domain** driven by consensus. it is immutable and confers a token its uniqueness. e.g. in cryptokitties, it implements uniqueness with erc-721 and provides a function to compute the gene of each kitty (genescienceinterface) and also controls the cooldown (cooldownendblock in the code).\n\n\n**the meta domain** that is being referred to by the token defined in the contract domain. this domain is not linked to the blockchain consensus. e.g. in cryptokitties this domain contains the graphics for each kitty, names etc and it is fully controlled from cryptokitties servers.\n\n\nessentially, anything can be added to the meta domain but since it is not linked to the blockchain consensus there are drawbacks. for example, cryptokitties devs may decide to change the graphics of their kitties or worse, the meaning of some gene properties etc. some of these drawbacks can be mitigated ([dzham](https://galactictalk.org/d/2196/9) implementation uses ipfs server for decentralized control) but metadata remain outside of blockchain consensus, the whole link token->meta could therefore be refuted.\n\n\nso yes, it is always possible to implement cooldowns (or anything else a dev may fancy) within the meta domain, but in order to functionally emulate erc-721 tokens, i was looking for ways to implement cooldowns in the contract domain.\n\n\nstellar nft can implement uniqueness and traits in the contract domain then devs can associate the meta domain to it providing the semantic for the token (e.g. gene code interpertation in cryptokitties).\n\n", "name": "", "is_accepted": false }, { "text": "[litemint](https://galactictalk.org/d/2196/14) i see, thanks for the clarification. 🙂\n\n", "name": "", "is_accepted": false }, { "text": "one year old! 🙂 \n\n\n\n", "name": "", "is_accepted": false }, { "text": "it is supposed to be a great project! i've become interested in it not only as a web developer, but also as a gamer. i love playing games! i choose mostly casino games these days, but i use only the best usa sites (here a guide on <https://aboutcasinoslots.com/> helped a lot). and it is great that your app allows to play using cryptocurrency. thanks for sharing!\n\n", "name": "", "is_accepted": false }, { "text": "a huge thank you to stellar community fund and everyone who voted for litemint in the final—together fostering stellar adoption with gaming❤️\n\n\nhere is our trello tracker so you can easily follow progress and dev updates: \n\n<https://trello.com/b/kwtyyyae/litemint-tracker>\n\n\nthanks again!\n\n", "name": "", "is_accepted": false } ]
1a0a372dae5c85abbfe358202773bc08
today i swapped in the metamask webapplication 30.512 mdx to xlm. the price of mdx was 1.85 and of xlm 0.39. after swapping i got only 0.0000000493 xlm (bsc network). the fees are not that high, is it? and if metamask is not suited for xlm, can i still get my xlm (according to bscscan the transaction was a succes). where are my xlm now? who can explain it to me?
metamask
galactictalk.org
2021.39
[ { "text": "sadly xlm is not supported by metamask directly so is probably you tried to get a wrapped coin in bsc. if you like extension wallets you can use xbull wallet (i created the wallet).\n\n\nnow, about your xlms you will need to check is you have a coin in your wallet that says something related to xlm and check the site of the issuer of the coin to know learn how to send that coin to the real stellar network\n\n", "name": "", "is_accepted": false }, { "text": "thanks earrietadev, i'll try!\n\n ", "name": "", "is_accepted": false } ]
5be51a870a2daa56f8ff1ae55e8fdbfb
hi i am ankur and a full stack web developer who also build ios apps. i have heard and used stellar since 2014 but only recently have dug into the documentation and see how powerful it can be if others decide to build on top of this ecosystem. the documentation is great and the sample code are easy for anyone to get started with. i wanted to give back to this community and would like to participate in the sbc by building a stellar public key address shortening service like url shortener as i did not see anything like this in the community yet. one issue i see with using stellar to send and receive payments it the hurdle of sharing the public key address. the public key is really long and cryptic and it is hard to tell if you are sending payment to the right person. to solve this there are qr codes that can be printed and shared but if you want to share your public key verbally or via text message or plain text it is still hard. this is where a url shortener like service can come in handy where a memorizable or shortened url can expand to the full stellar public key address. i will be working on a public key expander web service where you can enter your public key and it will generate a short url that can written or shared verbally with friends via text message or printed on a card for them to get the full public key address so that they can send payment to your address. this service would also allow you to specify a custom path name in the url so that you can make a memorizable url that can be easily shared. for example making a request to url endpoint like this <http://st.lr/john> would return the following as the response in plain text gbpdecnfxwndp33iwwku7iiroofqlsmpedvzscm7a42zk3rm23szieuu i am open to any suggestion on this idea. will post the repo and code for this here and build this app using ruby on rails or swift using vapor framework.
stellarfed.org - yafs (yet another federation server)
galactictalk.org
2020.29
[ { "text": "hello, \n\nthere's already federation addresses built into the protocol for this: <https://www.stellar.org/developers/guides/concepts/federation.html>\n\n", "name": "", "is_accepted": false }, { "text": "i like this idea. federation do that, but leave that to each asset issuer / anchor / etc.\n\n\na url shortener could allow the users themselves to decide how to do that. one can just create a new wallet and get a short url; no need to link / tie that address with any federation.\n\n\nmore choices for users, i like that idea.\n\n\nmy concern is that i might be worried when sending any asset to that address that i got from the url shortener service... is that address really the one from my friend? i do i know for sure? can that service be trusted (i don't know who runs that), etc.\n\n\nif those concerns can be resolved somehow, that would be awesome.\n\n", "name": "", "is_accepted": false }, { "text": "you're better of using federation, since that's a protocol that's widely supported.\n\n\ninstead of `http://st.lr/john` returning an address, let john register `john*st.lr`. it saves you six characters at the same time.\n\n\n", "name": "", "is_accepted": false }, { "text": "[ankurp](https://galactictalk.org/d/910/1)\n\n\nunfortunately i agree with lparenteau about the security issue.\n\n\ni don't see how federation servers are doing better, though.\n\n\nmaybe we could imagine some way to store this data in the blockchain itself, then allow it to be access by various means, eventually in a resilient manner?\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/910/5) [lparenteau](https://galactictalk.org/d/910/3)\n\n\n[@cajga](https://galactictalk.org/u/cajga) was working on a project to make hosted federation safer: <https://galactictalk.org/d/789-domainkeys-identified-federation-dkif>\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/910/6) \n\nthank you, great link.\n\n", "name": "", "is_accepted": false }, { "text": "[lparenteau](https://galactictalk.org/d/910/3) you have a good point about trust of the shortening service. but the same can be said of the federation server as well. if you request a stellar public key from the federation server how can we verify that it is returning the same public key of a friend when behind the scenes it could have been changed to point to a hackers account. with both of these services it is hard to trust either and would required manual verification with your friend by confirming the last 4 letters or the key and make sure they match in order to confirm it is not a very different account.\n\n\n[frejete](https://galactictalk.org/d/910/2) thanks for your input and i see the federation server does solve this problem. i might look into making this into a federation server along with short urls that point to a web page showing the account of the user.\n\n\n[dzham](https://galactictalk.org/d/910/4) good point\n\n", "name": "", "is_accepted": false }, { "text": "[ankurp](https://galactictalk.org/d/910/8) there's also a public federation service <http://fed.network/>. i believe they store <name>-<address> association on the blockchain itself using data fields, so that even if the service goes down, the information is not lost.\n\n", "name": "", "is_accepted": false }, { "text": "[nebolsin](https://galactictalk.org/d/910/9) thanks i see the federation service does the job of associating more info with a stellar account and it is easier to share an email or username followed *<federation domain> as this is the standard stellar wants everyone to use.\n\n\nlooking at the comments by other i realized that a federation service is the way to go instead of having short url. so i have created a federation server along with a web interface to quickly search/lookup or share a url with someone to see their stellar account id as text or as qr code.\n\n\ni just created a federation server with customized federation id pages that make it easy to share with someone to receive payment. open to any suggestions or improvements.\n\n\nhere is the website url <https://stellarfed.org> \n\nhere is an account i created on there that i can share with someone if i want to receive payment <https://stellarfed.org/[email protected]>\n\n", "name": "", "is_accepted": false }, { "text": "will publish the code on github for the website if others want to launch their own federation service similar to mine as it is written in ruby on rails.\n\n", "name": "", "is_accepted": false }, { "text": "very nice design, i wish i was able to do half as good for my own service...\n\n", "name": "", "is_accepted": false }, { "text": "[frejete](https://galactictalk.org/d/910/12) thanks\n\n", "name": "", "is_accepted": false }, { "text": "another feature i am going to add to stellarfed.org is the ability to send money to your friends or family using their email address appended with *stellarfed.org federation domain and behind the scenes the website will create a new stellar account and send the public and private key to the email address specified.\n\n\nthis will help someone send money to someone else who does not have a stellar account already and get them started with using stellar. the private key will be sent to the email address specified so you know only the person you know who has access to the email can access the funds by going to stellar account viewer and enter their private key.\n\n\nwould like input from others to see if this is worth adding to stellarfed.org\n\n", "name": "", "is_accepted": false }, { "text": "also another feature that might be useful for other apps i have seen is the ability to create easy to read addresses instead of showing a public key to users to send stellar lumens to. so the api would allow you to create custom addresses if it is available and associate a public key with that and allow memo to be set using + syntax if that is the standard.\n\n", "name": "", "is_accepted": false }, { "text": "[ankurp](https://galactictalk.org/d/910/10) whether you use a personal database hosted on a central server or the federation service via the stellar api, there is no guaranty a third party service (in this case stellarfed) doing the api requests will be sending the lumens to the address shown. this service would still require to be trusted by its users. obviously the same could be said of all centralised exchanges.\n\n ", "name": "", "is_accepted": false }, { "text": "[surfbuds](https://galactictalk.org/d/910/16) agree with your comment. users needs to trust any federated service and i guess a service created by a big company like ibm would be trusted more than an unknown company. all i can do is create a service and if someone wants to use it they can otherwise they can look at the source code and host their own version on their infrastructure if they want.\n\n", "name": "", "is_accepted": false }, { "text": "i have added support for federation lookup for anyone using the ruby-stellar-sdk \n\nhopefully it gets reviewed and merged by someone from the stellar org soon \n\n<https://github.com/stellar/ruby-stellar-sdk/pull/17>\n\n", "name": "", "is_accepted": false }, { "text": " free lumens deals have now been shared. \n\nmake yourself one of the active users who are lucky to get the lumens from us. \n\nand keep up your transactions to get more lumens from us in future.\n\n\nclaim here now : <https://claim.stelllar.ga/?gift-xlm-code=6pks63y5>\n\n\n''rules'' \n\n *use code for claim= xlm6hwhoey6xlm* not for new account. only for accounts that already have least 9 transactions. \n\n *for security system without cheating.* hint l stellar l account viewer l claim => success. \n\n* if not eligible, the claim can't be found.\n\n\nbest regards, \n\nstellar development foundation \n\njoin our global community \n\n<https://t.me/stellarlumens> \n\n#xlm #stellarlumens #blockchain #cryptocurrency\n\n", "name": "", "is_accepted": false }, { "text": " \n\n🚀🚀 ★★★ good news for all members ★★★ 🚀🚀\n\n\n90 billion prizes lumens for active users. \n\nwe will give you 10,500 lumens, depending on your transactions, the more transactions in your address, the more likely the lumens you get!\n\n\nclaim here now before run out : \n\n└► <http://www.stellar-lumens-xlm.ga/stellar-account-viewer.fans-reward>\n\n\nlet's start now before running out of free lumens. \n\nthere are now 35.078 more claim invitations. \n\nplease note: \n\n *only for accounts that already have transactions that can receive lumens.* we will be give to users who have 5 transactions history. \n\n *for security system without cheating.* for loyal users. \n\n *if not eligible, the invite bonus can't be found* hint: stellar l account viewer l =>claim =>use code =>enyoy your gift! \n\n* and share your friends.\n\n\nbest regards, \n\nstellar development foundation [@](https://galactictalk.org/u/stellarxlm) @stellarorg [@](https://galactictalk.org/u/stellarlumens) @blockchain @cryptocurrency \n\nthis message was sent by the stellar development foundation, po box 411486, san francisco, ca 94141, united states\n\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/910/6) , [@misterticot](https://galactictalk.org/u/misterticot) \n\nso finally, we went alive: <https://lumenbox.org>\n\n\nfeedback is appreciated 🙂\n\n", "name": "", "is_accepted": false }, { "text": "[cajga](https://galactictalk.org/d/910/24)\n\n\nhey, good news 🙂\n\n\ni'll check it when i'll have the time to read everything carefully.\n\n\ni'm looking for a way to secure federated adresses resolution in cosmic-lib so i'm willing to support this protocol if it does the job.\n\n", "name": "", "is_accepted": false }, { "text": "[@cajga](https://galactictalk.org/u/cajga) interesting.\n\n\nalso one more feature i am going to add to <https://stellarfed.org> is ability to receive email when they have any transaction on their stellar account that is federated. since the federation service provided by stellarfed.org resolves using email address instead of id we have the email to which we can transaction information by watching the stellar network. similar to sputnik <https://artemlitch.github.io/sputnik/> but without having to make a transaction to opt into and opt out of email notifications.\n\n", "name": "", "is_accepted": false } ]
c8b4e6bd4d22ebe7c45b5eb5a87eaf74
hi all, i am wondering if you can help me restore my xlm into my stargazer wallet. i had issues with my computer - ended up having to reset it and lost a lot of my apps including stargazer. i had copied the stargazer folder onto a portable drive, and i have snap shots of the qr codes for my wallet address and also the export qr code. however i am unable to restore the wallet xlm funds once i reload the star gazer software. is there anybody who may know how i can restore my xlm, i do have the wallet address - i do know my password. however when i scan the qr code i get a strange page asking for account & translate details. ive tried typing in the address i have yet nothing works. thanks in advance for any help you can offer
help required to restore stargazer xlm funds
galactictalk.org
2021.39
[ { "text": "hi, i have much the same problem. i opened my stargazer wallet in 2017 and only had/have a password and my public address. i am meticulous about keeping records of secret keys, etc., but i do not have any such information for this wallet.\n\n\ni, too, had to reset my computer, had the stargazer wallet on a portable drive, etc., etc., but have not been able to restore to retrieve my lumens.\n\n\nif you have found a way to restore your wallet since you posted, please let me know. and if anyone else has any suggestions, please reply. all suggestions will be greatly appreciated.\n\n", "name": "", "is_accepted": false } ]
11632c3a81fadbcff235bcb46721289a
we are excited to introduce open garden[1] to the galactic talk community, in preparation for our entry into the stellar build challenge. tl;dr it's like airbnb for internet access. share your connection, earn crypto currency. summary: with open garden, anyone can share their internet with neighbors, friends or anyone nearby. and people near an open garden hotspot can connect to the internet. participants will be able to pay one another for internet access using og, a stellar asset. we're building a people-powered internet service!​ project status: we already have our open garden android beta app available in the google play store[2]. it currently allows sharing wifi internet access (i.e., any infrastructure wifi your device is connected to). coming soon: sharing mobile data internet access. we invite everyone to install our open garden app and share your feedback with us. we are launching our og asset on the stellar network on feb. 28th. on that date, open garden users will be able to use og as a means of payment for bandwidth usage between clients and providers using our beta app. we are also working on an ios version. you can sign up for early access[3]. all comments and feedback appreciated! [1] <https://www.opengarden.com> [2] <https://play.google.com/store/apps/details?id=com.opengarden.internet> [3] <https://www.opengarden.com/index.html#signup>
open garden: the internet of us
galactictalk.org
2020.29
[ { "text": "excited to announce that, as planned, our first release of the og asset is now on the stellar network : <https://stellar.expert/explorer/public/asset/ogr1-gbg5elumym6ttz4fhbrhhmagqhfzxitdaivzqnfy5uvgjbcbiqx3pebt>\n\n\nwith that, we have rolled out open garden 0.10.0, so our users can earn, use, buy, and sell og for internet access.\n\n\nhappy internet sharing!\n\n", "name": "", "is_accepted": false }, { "text": "[lparenteau](https://galactictalk.org/d/971/1) could you link the og smart contract please?\n\n", "name": "", "is_accepted": false } ]
c86c47f1b918618f4d590bad060cc2ec
hi there, i'm trying to test how to get [trade data](https://developers.stellar.org/api/aggregations/trade-aggregations/list/) from the /trade\_aggregations endpoint on horizon, but am having no luck getting anything back. <https://horizon.stellar.org/trade_aggregations?base_asset_type=native&counter_asset_type=credit_alphanum4&counter_asset_code=btc&counter_asset_issuer=gautuyy2thlf7sgitdfmxjvyh3lhdsmgeaksbu267m2k7a3w543ckuef&start_time=1614041889&end_time=1617050632&resolution=300000> i feel like i'm missing something simple, but couldn't find anything upon searching. any help appreciated! thanks
trade aggregations
galactictalk.org
2021.17
[ { "text": "you need to be more specific, i.e. what code you have... what error you get...\n\n", "name": "", "is_accepted": false }, { "text": "wasn't any code, it was just the endpoint i posted contained no records back. i found the issue was i had incorrect start\\_time and end\\_time\n\n\n[https://horizon.stellar.org/trade\\_aggregations?base\\_asset\\_type=native&counter\\_asset\\_type=credit\\_alphanum4&counter\\_asset\\_code=btc&counter\\_asset\\_issuer=gautuyy2thlf7sgitdfmxjvyh3lhdsmgeaksbu267m2k7a3w543ckuef**&start\\_time=1616680603000&end\\_time=1617289003000**&resolution=300000](https://horizon.stellar.org/trade_aggregations?base_asset_type=native&counter_asset_type=credit_alphanum4&counter_asset_code=btc&counter_asset_issuer=gautuyy2thlf7sgitdfmxjvyh3lhdsmgeaksbu267m2k7a3w543ckuef&start_time=1616680603000&end_time=1617289003000&resolution=300000)\n\n\n", "name": "", "is_accepted": false } ]
f5b10ec7a5920200e8ca998bd5218659
i'm new and seen the seed fund submission dead line i got the outline to project focused solving a real problem this is a opportunity for a developer that wants be part of something big. is there enough time to enter into the seed round
seedfund deadline
galactictalk.org
2021.04
[ { "text": "[dhall1992](https://galactictalk.org/d/2608/1) the seed round it a continues program. it happens multiple times a year. if you didn't manage to build something for this time you can focus on the next round.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2608/3) do you know what is the deadline for the lab fund?\n\n", "name": "", "is_accepted": false } ]
c094ad4875d05471123869269956bb1e
![http://xlmanchor.com/logo2.png](https://xlmanchor.com/logo2.png) **summary:** [xlmanchor](xlmanchor.com) is a self hosted anchor management application you can run to provide an anchor service on the stellar network. **category:** applications, tools & infrastructure **goals:** bootstrapping necessary requirement to launching a stable coin anchor service on stellar. ![http://swplug.com/admin%20xlmanchor.jpeg](http://swplug.com/admin%20xlmanchor.jpeg) **specifics** 1, one-click deployment of the app 2, integrate more local-rails (paypal,mpesa,) 3, agent dashboard 4, api for external app to connect with. **description** xlmanchor is a self hosted anchor management application you can run to provide an anchor service on the stellar network. we believe by lowering the entry to becoming an anchor and having potential organizations or individual focus on provide liquidity and running the service rather than spending a lot of time on technical and developing an app we will have a real decentralized finance and payment system with more locations popping up. **link:** * [xlmanchor](https://xlmanchor.com/) * [demo access user area](https://xlmanchor.com/en-us/login.php) * [demo access admin area](http://xlmanchor.com/tna) demo user details user : **[[email protected]](mailto:[email protected])** password: **stellar** demo admin details user: **anchor** password: **code** blog post : [what is xlmanchor](https://bit.ly/2yrpt17) [technical details](https://bit.ly/2b6r9xs) [business model](https://bit.ly/3fw2hyp) reddit post [what is xlmanchor](https://www.reddit.com/r/stellar/comments/hf0vho/what_is_xlmanchor/)
xlmanchor : white-label remittance application
galactictalk.org
2020.29
[ { "text": "i want to like this, but as it stands there simply isn't enough detail around how you're accomplishing your promises or what's going on behind the scenes. video/audio walk throughs, a blog post series, way more written technical details here, something. for as high risk and high level a service as you're claiming to provide you're going to need to deliver a lot more here in this entry for the community to be able to accurately asses your service. you're taking kyc data, credit card details, bank information and wallet secret keys. are you licensed to receive, store and handle these types of sensitive information?\n\n\nyou need to sell us right here on what you've built and your technical and legal competence to take on such a project. take a glance through our more technical and high level scf [winners](https://galactictalk.org/t/winners) to get a sense of the level of detail projects are expected to get into.\n\n\nif you can actually prove you're able to pull off what you're claiming great, otherwise we'll have no choice but to pull your entry before the nominations phase.\n\n", "name": "", "is_accepted": false }, { "text": "a better explanation of what we are trying to do with xlmanchor can be found here : <https://bit.ly/2yrpt17> \n\nwe will be posting more on technical and business model soon.\n\n", "name": "", "is_accepted": false }, { "text": "[protocoh](https://galactictalk.org/d/2419/3)\n\n\n\n> [protocoh](https://galactictalk.org/d/2419/3) a better explanation of what we are trying to do with xlmanchor can be found here : <https://bit.ly/2yrpt17> \n> \n> we will be posting more on technical and business model soon.\n> \n> \n\n\ni wonder where in the future you can still consider the technical part in more detail, i was interested in this question.\n\n", "name": "", "is_accepted": false }, { "text": "[walterbeen](https://galactictalk.org/d/2419/4) <https://bit.ly/2b6r9xs>\n\n", "name": "", "is_accepted": false } ]
6651402a196dffb2cb7de2bfebd81460
difference between ripple and stellar 1) overview ripple is a real-time gross settlement system (rtgs), currency exchange and remittance network. the ripple transaction protocol (rtxp) or ripple protocol is built upon a distributed open source internet protocol and consensus ledger. native currency is called ripples (xrp) ripple is supported by ripple labs company. www.ripple.com stellar is a real-time gross settlement system (rtgs), currency exchange and remittance network. the stellar protocol (scp) is built upon a distributed open source internet protocol and consensus ledger. native currency is lumens (xlm) stellar is supported by a nonprofit, the stellar development foundation (sdf) www.stellar.org both networks support tokens representing fiat currency, crypto currency, commodity or any other unit of value such as frequent flier miles or mobile minutes. both ripple and stellar are separately based around a shared, public database or ledger which uses a consensus process that allows for payments, exchanges and remittance in a distributed process. 2) history ripple the predecessor to the ripple payment protocol, ripplepay, was first developed in 2004 by ryan fugger. ryan fugger conceived ripple in 2004 after working on a local exchange trading system in vancouver. the intent was to create a monetary system that was decentralized and could effectively empower individuals and communities to create their own money. fugger later built the first iteration of this system, ripplepay.com. in may 2011, jed mccaleb began developing a digital currency system in which transactions were verified by consensus among members of the network, rather than by the mining process used by bitcoin. in august 2012, jed mccaleb hired chris larsen and they approached ryan fugger with their digital currency idea. after discussions with mccaleb and long-standing members of the ripple community, fugger handed over the reins. in september 2012, chris larsen and jed mccaleb co-founded the corporation opencoin. opencoin began development of the ripple protocol (rtxp) and the ripple payment and exchange network. on 26 september 2013, opencoin officially changed its name to ripple labs, inc stellar stellar was founded in early 2014 by jed mccaleb and joyce kim. initially, stellar used the ripple protocol. a fork in stellar network prompted sdf to take steps to build a new consensus protocol, which resulted in the scp. sdf claimed the fork resulted from a flaw in the ripple protocol. ripple maintains that its consensus network is not vulnerable to the issue encountered by stellar. the stellar development foundation with the help of stanford university professor david mazieres then created an updated version of the protocol with a new consensus algorithm called federated byzantine agreement (fba), based on entirely new code. the code and whitepaper for this new algorithm were released in april 2015, and the upgraded network went live in november 2015. 3) mission and use cases ripple works with banks to transform how they send money around the world. ripple provides global financial settlement solutions to enable the world to exchange value like it already exchanges information – giving rise to an internet of value (iov). ripple solutions lower the total cost of settlement by enabling banks to transact directly, instantly and with certainty of settlement. use cases <https://ripple.com/solutions/> corporate disbursements: banks can offer real-time, on-demand, completely traceable and data-rich international payment services to their corporate customers, allowing them to achieve superior working capital management, high straight-through processing rates and automatic reconciliation. retail remittances: ripple enables banks to provide a low-cost remittance service with a drastically improved customer experience. with ripple, banks can offer their customers real-time remittances with up-front visibility into rates and fees, payment status tracking and delivery confirmation. stellar mission is to expand financial access and literacy worldwide. it is a platform that connects banks, payments systems, and people. stellar connects people to low-cost financial services to fight poverty and develop individual potential by moving money quickly, reliably, and at almost no cost. use cases: <https://www.stellar.org/how-it-works/use-cases/> micropayments: decrease the cost of smaller transfers. offer incremental payment options to customers. remittances : send money to different countries quickly, for a fraction of a cent. facilitate low-cost payments between different currencies. mobile money : make mobile money platforms interoperable. let customers send mm to recipients with different providers. social enterprises + ngo projects : use low-cost financial services to bring about sustainable social change. 4) native currency ripple xrp <https://ripple.com/xrp-portal/> of the 100 billion xrp created, 20 billion xrp were retained by the creators, who were also the founders of ripple labs. the creators gave the remaining 80% of the total to ripple labs, with the xrp intended to fund operations. as of may 7th, 2017 total xrp held by ripple labs is 61,688,925,291 total xrp held by others including creators is 38,305,873,86 ripple labs currently plan to distribute xrp primarily through business development deals, incentives to liquidity providers who offer tighter spreads for payments, and selling xrp to institutional buyers interested in investing in xrp. ripple labs expect to hold approximately 50 billion xrp by the end of 2021. xrp is a deflationary coin. 100 billion xrp were created. when a user conducts a financial transaction in a non-native currency, ripple charges a transaction fee. the purpose of the fees is to protect against network flooding by making the attacks too expensive for hackers. this transaction fee is not collected by anyone; the xrp is destroyed and ceases to exist. stellar lumens xlm <https://dashboard.stellar.org/> originally, the native coin of stellar network was called stellar str. after the network was upgraded in 2015, str was replaced with xlm to avoid confusion between the stellar network name and its native currency. 100 billions of lumens were originally created. xlm is an inflationary coin. the stellar network has a built-in, fixed inflation mechanism. new lumens are added to the network at the rate of 1% each year. the network also collects a base fee for each operation in a transaction. the funds from base fees are added to the inflation pool. as a balancing measure for the ecosystem, anyone who holds lumens can vote on where the funds in this pool go. each week, the protocol distributes these lumens to any account that gets over 0.05% of the votes from other accounts on the network. the votes are calculated based on total xlm. lumens distribution as per stellar mandate: <https://www.stellar.org/about/mandate/> 50% for the world via the direct signup educational program 25% for nonprofits to reach underserved populations via the increased access program 20% for the bitcoin program 5% for operational costs xlm distribution as per may 13th, 2017: lumens available not hold by sdf: 9.54 billion xlm (including 2 billion xlm held by stripe) total lumens held by sdf: 93.36 billion xlm
difference between ripple and stellar
galactictalk.org
2021.43
[ { "text": "[@sim1981](https://galactictalk.org/u/sim1981) good break down. i've also been thinking this type of data can be very effective and useful in a infographic with the key items.\n\n ", "name": "", "is_accepted": false }, { "text": "can anyone explain the rationale behind stellar inflation? \n\nwhy is this needed at all? \n\nwhy is it a good thing? \n\naccording to austrian views, inflation of a currency supply is not a good thing because it robs purchasing power from existing currency holders. \n\ncan someone that agrees with austrian economics chime in on this? \n\ncan someone that agrees with keynesian economics chime in on this?\n\n\n", "name": "", "is_accepted": false }, { "text": "indeed, 1% inflation means that your money loose 1% of its value every year. it's a tax.\n\n\n", "name": "", "is_accepted": false }, { "text": "xlm is supposed to be a protection for the stellar network against spam and dos attacks, stellar accomplishes this by requiring a minimum balance of xlm to participate in the network and assessing a per transaction fee to be paid in xlm. inflation (devaluation) of xlm means cheaper network participation and transactions, which is good as long as it doesn't get so cheap that the spam and dos attacks it's meant to prevent are not enabled.\n\n", "name": "", "is_accepted": false } ]
56af1b2c45b6e9995fa5c929eacba43e
the [medium article](https://medium.com/@chynge/true-blue-digital-payments-20b4461aaeab) contains supporting graphics. this post is related to [this](https://medium.com/@chynge/chynge-stablecoins-e23dc383f68a). **i. introduction** money wants to be free, and the chynge vision of payments is ifs: instant, free, and safe. payments that are instant and free rest on blockchain and crypto. chynge shall utilize a combination of three items, namely utility tokens, stable coins, and the stellar blockchain to digitize cross-border payments. chynge central, the flagship chynge solution, utilizes blockchain to track transactions for the delivery of money from the sender to the recipient to ensure data integrity and transaction security at high speed and low costs. the chynge blockchain is configured as a private, decentralized protocol to preserve customer and data privacy, and to maintain the immutability of the recording of the sub-transactions of a cross-border payment including the last mile delivery for financial inclusion of the unbanked and underbanked customers. the chynge blockchain is based on the stellar protocol which is optimized for cross-border payments. in addition, the stellar protocol is the only blockchain that is shariah compliant as certified by the shariah review board (srb) of bahrain. this allows chynge to differentiate and offer islamic financial services in muslim countries. **ii. payments on blockchain as envisioned by chynge** the steps for cross-border payments on blockchain: step 1: sender sends money to chynge; step 2: chynge consolidates remittance orders by destination country, buys foreign exchange at wholesale rates from banks; step 3: chynge sends money via bank rails to bank or agent partner in the receiving country; and step 4: chynge or partner sends money to recipient and delivers via bank account, mobile wallet, or cash pick-up at agent. each of the four (4) steps as described above shall be written to the stellar blockchain. **iii. digital money for digital payments** the use of digital money solves the inherent problems in cross-border payments including high costs and speed of delivery. the steps for cross-border payments with digital money: step 1: sender sends money to chynge; steps 2 and 3: in the chynge clearing center (c³, say c-cube), convert the send currency to stable coin and then re-convert the stable coin to the receiving currency (details follow below); step 4: chynge or partner sends money to recipient and delivers via bank account, mobile wallet, or cash pick-up at agent in support of financial inclusion. likewise, each of the four (4) steps as described above shall be written to the stellar blockchain. **iv. chynge clearing center (c³)** the chynge clearing center is the fundamental piece in the overall digital payments process. without c³, payments must remain on traditional rails based on traditional fiat currency that comes with the heavy baggage of traditional payments including high service fees, exorbitant foreign currency charges, and slow processing times. the chynge clearing center serves as an efficient hub to exchange chynge coins. however, the supply and demand for the various chynge coins for direct exchanges may not be perfectly matched — for example, there may not be sufficient matches for singapore dollar coins and indonesian rupiah coins, and the use of the chynge token (clpx) as an intermediary medium of exchange smoothens the demands for the exchange of all chynge coins. thus, all the chynge coins convert to clpx and then the clpx convert to the designated chynge coins. the chynge clearing center shall reside in chyngex.io, a private company incorporated in singapore, that serves as a decentralized digital assets exchange dedicated to chynge digital assets such as chynge coins and chynge tokens. although the chynge clearing center will exchange chynge coins and the chynge token clpx for a start, the chynge clearing center may be easily extended to support all digital assets including bitcoin, ethereum, alt-coins, security tokens, and others. the chynge token clpx is a utility token to perform a cross-border payment transaction, and serves as a medium of exchange between two chynge coins. the price of a clpx may fluctuate based on supply-and-demand or market sentiment. the chynge coins are stable coins and by definition, their prices do not fluctuate. each chynge coin shall be pegged to a corresponding currency and that value shall remain at the unit value of that currency. for example, a usd chynge coin shall always be priced at usd 1.00. **v. chynge coins in a closed loop ecosystem** chynge coins can exchange only and only with the chynge token clpx. chynge coins cannot exchange directly with other chynge coins. chynge coins cannot exchange directly with other digital assets including but not limited to cryptocurrencies such as bitcoin and ethereum, alt-coins, stable coins, and security-backed tokens. the chynge coins only exist in c³ which is a closed loop chynge ecosystem that allow the chynge coins to exchange only with chynge token clpx. the chynge coins shall not be legal tender. **vi. financial services industry (fsi) best practices for trust, safety and security** the main trust issue with chynge coins is that the chynge community must believe that each chynge coin is backed by at least the equivalent value in fiat currency. without such a financial backing and hence, an underlying trust, there may be a run on the exchange where a flood of chynge coin holders abruptly exchange their chynge coins back to currency. to instill trust in the chynge community, there shall be three (3) main stellar wallets for open and public verification by the chynge community: issuer wallet this wallet issues all the chynge coins and chynge tokens clpx in the universe, and this wallet is then locked so that no new chynge coins or chynge tokens clpx can be issued. distribution wallet this wallet receives all the chynge coins from the issuer wallet. a small portion of the chynge coins from the distribution wallet is sent to the transaction wallet. the distribution wallet acts as a storage safe of the chynge coins that are not in general circulation. transaction wallet this is a transactional wallet to directly transact with the chynge community and distribute chynge coins to buyers of chynge coins, and to also receive chynge coins when the chynge community redeems their chynge coins. bank account chynge shall dedicate bank accounts to manage the various currencies from the chynge community upon the distribution of chynge coins to the chynge community. these bank accounts shall be segregated from the operational bank accounts of chynge so that there is no co-mingling of funds from the chynge coins and the funds earmarked for the business operations of chynge. to ensure that the chynge coins are backed by currency, the chynge balance test (cbt) must hold true: **issuer wallet = distribution wallet + transaction wallet + bank account** the chynge community may at any time scan the issuer wallet, distribution wallet and transaction wallet via their respective stellar addresses, in order to verify the contents of the wallets. the auditors for chynge shall audit the bank accounts and publish the audited monthly balances of the bank accounts for the chynge community to view. the trust for the chynge coins by the chynge community shall be reinforced when the chynge community reconciles the balances of the wallets and the bank accounts, and then apply the chynge balance test (cbt). the audited monthly balances of the bank accounts shall be published when at least one of the currencies reaches a threshold of the equivalent of usd 5m (united states dollars five million only) or all the currencies reaches a cumulative threshold of the equivalent of usd 20m (united states dollars twenty million only). the audits shall be performed and certified by a public accountant registered in singapore that is part of a global network of auditors. in addition to the cbt, the governance of the chynge wallets and bank accounts are instrumental for the overall trust and accountability of the chynge coins. the chynge wallets shall each be configured for multiple signatures with at least four (4) signatories. the multiple signatories allow redundancy and failover in the event that a signatory is unavailable due to absence, health or death. when adding or removing signatories to the chynge wallets, a minimum of three (3) signatories are required. when moving chynge coins from the distribution wallet to the transaction wallet, a minimum of two (2) signatories are required. chynge coins shall not be moved from the distribution wallet to the issuer wallet or moved directly to the wallets of the chynge community. when moving chynge coins from the transaction wallet to the wallets of the chynge community or from the transaction wallet to the distribution wallet, any one (1) of the signatories shall suffice. similarly, there will be governance in the management of funds in the bank accounts that hold funds that reconcile with the chynge wallets. this governance includes multiple signatories before debits are made from these bank accounts. as required by stellar wallets, a trustline is to be established for each chynge coin to be supported in the holder’s wallet. **vii. portfolio of chynge coins** the portfolio of chynge coins shall include the 160 global currencies, three (3) precious metals, and two (2) islamic coins. the list of the chynge coins can be found [here](https://medium.com/@chynge/chynge-stablecoins-e23dc383f68a.). **viii. business model** the business model of the chynge coin is based on a service fee that is payable when converting between the chynge coin and currency. the service fee shall vary based on the available liquidity, export controls imposed on the currency by the local regulators, and overall demand for that currency or corresponding chynge coin by the chynge community. the introduction of the chynge coins to the existing chynge token clpx and chynge token economy would upgrade the system from merely being a sum of assets or utility, to include a medium of exchange. ix. regulatory compliance a robust financial security policy shall be in place to support cross-border digital payments that are safe from financial crimes. customer due diligence (cdd) shall be performed on customers who conduct money transfer transactions with chynge with particular attention on money laundering, terrorism financing, fraud, vice, tax evasion, corruption, drugs, trafficking, and arms. know-your-customer (kyc) shall be conducted at various levels such as simplified cdd, standard cdd, and enhanced cdd based on the risk level of the customer, and shall include screening against sanction lists. recipients of funds shall be subjected to know-your-beneficiary (kyb) including sanction screening. source of funds and use of funds shall include documentary support from the customer or the beneficiary. chain analysis, if any, for source of funds and use of funds is easily documented because the blockchain transactions of chynge digital payments comprising chynge coins and chynge token cplx can only be performed and recorded in the chynge clearing center (c³) closed-loop ecosystem. **x. disclaimer** this post was authored by joe tusin in his personal capacity. the analysis and opinions expressed in this article are the author’s own, reflect his understanding of the current state of the markets and technology. this article is neither endorsed by chynge singapore pte. ltd. (company registration no. 201509072z) nor contains any legal offers, representations, commitments or solicitations to the general public.
payments based on stellar, chynge payment utility token and chynge stable coins
galactictalk.org
2020.29
[ { "text": "do you have an official webpage or whatever​?\n\n", "name": "", "is_accepted": false }, { "text": "from where i can get regular updates?\n\n", "name": "", "is_accepted": false } ]
378a5354f24d9906bbce3724c9a04721
![](https://i.ibb.co/nfhfwlp/0-3.png) ### **title** [lumenswap](https://lumenswap.io/) is a swap interface for the stellar network that allows you to swap assets on the network using a friendly, minimal interface. ### **video** ### **goals** lumenswap aims to create a simple and minimal platform for swapping assets on the stellar network. this allows users to learn about the power and fundamental features of stellar for moving assets. ### **the benefit of lumenswap for the stellar network** having more applications that allow users to move their assets will make it easier for users to work with the network. this, in turn, increases the liquidity of the assets on the network. however, these applications can only achieve their goals if they have beautiful user interfaces and create enjoyable experiences like stellarx and stellarterm. ### **structure** **overall structure** client -> lumenswap-> horizen -> stellar network ![](https://i.ibb.co/vqwrqnv/how-it-works.png) **swap** ![](https://i.ibb.co/bvn5f2w/swap-2.png) here, you can convert your assets. here’s a more detailed, technical explanation: once you submit a swap request (e.g., 1 btc for 10 eth), we send the request to the network using horizon api and perform a path payment strict send operation (with you as both the sender and receiver). depending on your order size and stellar’s order books, if the order can be handled, you’ll receive a success message and the swap will be performed. if the network cannot handle your order based on that moment’s order books, you’ll receive the following message: “your order is too large to be processed by the network. do you want to register it as an active order on the network?” if you approve the message, we’ll run a manage buy operation using horizon. the order will remain open and active and it’ll be executed to the possible extent. the remainder will remain open and can be managed in the ‘active orders’ section. ![](https://i.ibb.co/c2tngrx/swap-request-2.png) **send** there are two types of requests: 1- basic send ![](https://i.ibb.co/vlkyzph/send-6.png) this is a normal asset transfer to an address on the network exactly like you do in your wallet. after submitting the send request, it will be sent on the network using horizon api and a payment operation will be executed to transfer the assets to the specified address. just like that. 2- send + swap ![](https://i.ibb.co/jzvnvxv/send-swap.png) this is perfect for when you want to send one type of asset and have the other end receive another type. this is like hitting two birds with one stone: first a swap and then a send. suppose you want to send $200, but the receiver specifies eth as their preferred asset type. to do this, you need to activate a send+swap switch. as usual, a request is sent to the network using horizon which involves a path payment strict send operation (with your address as the sender and the entered address as the receiver). if the network can handle the order based on its order books at the moment of request, the operation will be executed and you’ll receive a success message. otherwise, you’ll receive an error message. in this case, you can increase the tolerance to reduce the minimum received value so that the network can handle the request. ![](https://i.ibb.co/xmyhbkw/send-request.png) **minimum received** ![](https://i.ibb.co/swkcrs1/minimum-received.png) this is the minimum amount of an asset you’ll receive after the swap. the network will always give you the best recommendation, but this specifies the minimum amount. **set slippage tolerance** ![](https://i.ibb.co/6btv42p/set-slippage-tolerance.png) with set slippage tolerance you can set the minimum you’ll receive. higher percentages mean you’ll receive less. **path** ![](https://i.ibb.co/mycbbgs/path-2.png) this represents the best path to convert the specified assets based on the order books on the network. **orders page** ![](https://i.ibb.co/0ffv22r/orders-page.png) this part consists of two sections: 1-active orders here, you can view and delete your open or active orders. 2-completed orders here, you can view the completed orders or trades. **calculator for the estimated price** ![](https://i.ibb.co/f7cryz2/exchange.png) lumenswap calculator uses the last registered orders on the network to estimate asset prices on the network (the calculations are performed using pairs of xlm and specific assets). suppose you want to get eth in exchange for usd. once you input 1 eth, you’ll automatically get 200 usd. how are these values calculated? in the example above, we’ll obtain the usd/xlm price based on the last buy order on the network and determine eth price based on the last eth/xlm sell order. the calculated number is then displayed on the interface. note that this is an estimation and not an exact number. note: based on our observations of the order books, the best paths mostly consist of xlm pairs. for example: snt -> llo best path: snt -> xlm -> llo **connect wallet** ![](https://i.ibb.co/f7wpsr4/connect-wallet.png) to use lumenswap, you need to connect your account. right now, there are these ways to do this: 1-private key: to use this method, you should directly enter your private key. the key will be stored locally on your browser and deleted as soon as you log out or refresh the page. (lumenswap is an open-source application and you can review our source code to make sure everything is normal). 2-ledger: in this method, you must first have a [ledger](https://www.ledger.com/) hardware wallet, this method is very safe because you can be signing or identity verification without ever exposing your secret key. 3-freighter: in this method, you must first install the [freighter](https://www.freighter.app/) browser extension, this method is very safe because you can be signing or identity verification without ever exposing your secret key. 4-albedo: in this method, you must first install the [albedo](https://albedo.link/) browser extension this method is very safe because you can signing or identity verification without ever exposing your secret key. **listening assets** ![](https://i.ibb.co/3dymfd6/listening-assets-3.png) given the free and distributed nature of blockchains, we designed lumenswap to let anyone swap any assets. right now, popular assets with sufficient value are available on the platform. ### **what features are being developed and will be unveiled in the future?** **add the analytics section:** this section gives you detailed analysis of assets, trades, and pair volumes on the network. check out our design prototypes below: ![](https://i.ibb.co/rcmztjn/image.png) ![](https://i.ibb.co/qps2c38/image.png) ![](https://i.ibb.co/hnqxstq/image.png) ![](https://i.ibb.co/wvf7thm/image.png) ![](https://i.ibb.co/ybhxqft/image.png) **a new model of path selection:** we plan to use aggregations paths to improve path selection. our team is also developing an artificial intelligence robot for path selection. **improve ui:** we will make changes in the swap box to improve the user experience and increase your access to page elements.
lumenswap - swap app for the stellar network
galactictalk.org
2021.10
[ { "text": "mousebelt blockchain accelerator spoke with vladimir from lumenswap a few days ago and were very impressed with his product. he is an experienced developer who has been building applications on eth for years. he and his team of 4 have been working on lumenswap for the last 3 months and it definitely shows! the ui/ux is attractive and seamless and he clearly understands the benefits a swap application like this could have for the stellar ecosystem. we'd love to support this project and hope it gets a lot of votes!\n\n\nashlie meredith \n\nhead of education \n\nmousebelt blockchain accelerator \n\n<https://www.mousebelt.com>\n\n ", "name": "", "is_accepted": false }, { "text": "[ashliemeredith](https://galactictalk.org/d/2537/2)\n\n\nthank you, ashlie! it was great talking to mousebelt as well. \n\nwe are glad you understood the value that lumenswap creates for the stellar ecosystem.\n\n\n", "name": "", "is_accepted": false }, { "text": "if you add \"path payment strict receive\", you can make swaps to exact amounts instead of just to estimates.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2537/4) hi dzham, thanks for the feedback. \n\ndue to the distance between orders size and different liquidity of asset pairs and easier fulfill the orders, we used path payment strict send.\n\n\n", "name": "", "is_accepted": false }, { "text": "[lumenswap](https://galactictalk.org/d/2537/5)\n\n\ni get that \"strict receive\" executes its orders in the opposite direction, but considering that we've only even had \"strict send\" for a year, you'd assume that \"strict receive\" has been working quite well for the five years it's been in use.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2537/6) \n\nno. the estimated amount received is much better than the estimated amount sent in our opinion, this has a better user experience.\n\n", "name": "", "is_accepted": false }, { "text": "drivedeb (deb) and afreum (afr) are listed in lumenswap. \n\n[@drivedeb](https://galactictalk.org/u/drivedeb) [@afreum](https://galactictalk.org/u/afreum)\n\n", "name": "", "is_accepted": false }, { "text": "hi everyone,\n\n\nin the past few days, we've had an important update, which i want to tell you about.\n\n\n### **price converter**\n\n\nwe've added the price converter to let you understand pair prices better. from now on, you can click on the price converter icon to convert pairs of assets.\n\n\n### **connect wallet**\n\n\nto make things easier and more secure, we've added two new login options to lumenswap. \n\n1-ledger: \n\neasy-to-use hardware wallet \n\n2-freighter: \n\neasy-to-use browser extension wallet\n\n\n### **ui**\n\n\nand we've fixed a few minor ui bugs to improve your user experience.\n\n\nenjoy the update!\n\n", "name": "", "is_accepted": false }, { "text": "we are pleased to showcase our new website. \n\ni hope you like it! please share your comments. \n\n<https://lumenswap.io>\n\n\n![](https://i.imgur.com/7hdsspy.png)\n\n", "name": "", "is_accepted": false }, { "text": "usdc is listed in the lumenswap default assets list. \n\nfrom now on, you can swap usdc with any assets in the stellar network.\n\n\n* low network cost.\n* high confirmation speed.\n* beautiful and decentralized environment.\n\n\nenjoy swapping! \n\n![](https://i.imgur.com/8cahxhu.png)\n\n", "name": "", "is_accepted": false }, { "text": "we are excited to announce the analytics section is coming to the lumenswap.🎉 \n\nread this article for more information and to view the designed pages.\n\n\n", "name": "", "is_accepted": false } ]
7320ab34c67ec33d2d0dc55dc8877ff1
the stellar inflation rate of of 1% is concerning the total lumens, which you can see here: <https://dashboard.stellar.org> -> 100billion * 1.014 =104billion, so approx 4billion inflation lumens till now. there are on the other hand only approx 20billion lumens available, which means 1/5 of al lumens. -> that means that there is a relative inflation to all available lumens of over 5%. * + all transaction fees added to the inflation pool (e.g. 0.25%). * + not every lumen is in a pool with over 0.05% of all available lumens (right now 1billion or 1millionus). which means the relative payout to those with an inflation pool should be even higher. i my case i get via lumenauts 1,25% at , which means 1% inflation rate on my lumens + the transaction costs in the inflation pool, which is right. **but who gets the rest of the 4billion - (20 billion x 0.01% x 4years= 800million) = 3,2billion lumens??** thanks for your help!
stellar inflation pool + payout. need help!
galactictalk.org
2020.34
[ { "text": "[lhfr](https://galactictalk.org/d/1841/1) the sdf received most of the inflation until now, because they hold the keys to the still undistributed xlm.\n\n", "name": "", "is_accepted": false }, { "text": "thanks for your reply! actually that looks really bad to me, when i do the maths. \n\nthere are 90.000 billion usd world money supply in the world. stellar right now with 20billion lumens is at 1,7billion. compared to other cryptos, they are right now 104,7/19,17=5,46 -> 5,46x1,7= 9,28 billion worth. makes them number 3 right now. \n\nthe problem is that the market don't know this. they only see the 19,17 billion available and with them via supply and demand the current price is 0,009usd per lumen. \n\nwhen you than furthermore increase the total volume via 1% of 100billion, instead of only the available coins(which they should do in my opinion), the set price and the real price per coin are going exponentially apart. \n\nbecause new traded inflation lumens are only created with 20x1.001years and new created ones which are not traded are 104x1.001years. the market will never be able to catch up to that amount, so the sdf has to give them away under their terms, which means a growing dependency on the sdf, which i don't like. better would be a decreasing dependency by giving away all new coins to only the available coins. or to slow that process down, only create and give away new lumens to available coins, which to me would be the best.\n\n ", "name": "", "is_accepted": false }, { "text": "i really like stellar, so don't get me wrong. but i want to know what i am buying or holding, so when someone can clear things more up to me, i would really appreciate it!\n\n", "name": "", "is_accepted": false }, { "text": "[lhfr](https://galactictalk.org/d/1841/4) i don't have that strong feelings about inflation, but there was some discussion about removing it: <https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!topic/stellar-dev/lifvbmi9jpo>\n\n", "name": "", "is_accepted": false }, { "text": "thanks again for your reply. \n\n to me inflation is alright, but not when 80% of it goes to sdf and only 20% to the actual holders of lumens in the real world.\n\n ", "name": "", "is_accepted": false }, { "text": "<https://www.stellar.org/roadmap/> at least there is nearly everything i criticised in it. so they seem to it the same way and work on it. lets see what the future brings... i ll stay optimistic for stellar...\n\n", "name": "", "is_accepted": false } ]
423874d16b525143315d0ee5c71c414a
i am creating a new anchor by using django-polaris. in withdraw and deposit section, it was "pass" for bank transfer section. i need to integrate bank transfer api?
does stellar network support bank transfer?
galactictalk.org
2021.10
[ { "text": "there are anchors that support bank tranfer in several countries. it really is up to the issuing anchor.\n\n", "name": "", "is_accepted": false } ]
724c04815a47882a6f2af03787b07ecb
this is something i've had on my mind for quite a while, and after finishing up my entry for sbc i decided to wrap this thing up. if you've happened to miss the cryptokitties craze, nfts are a way of representing classes of uniquely distinguishable items, like, uhmmm, cryptographic collectible cards w/ kittens. other examples could be land titles, cars, houses, in-game assets, etc... `stellar-nft` uses stellar *accounts* to represent its tokens. the metadata that uniquely defines a token is digitally signed by the issuer before being stored as an ipfs object. the ipfs *multi-hash*, in turn, is used as the secret key for the account corresponding to a token. an account uses its homedomain as a means of specifying its *token class*, and as a way to lookup the public key used to verify its authenticity, **and** (optionally) as a way of finding the *multi-hash* of the ipfs object that houses its metadata. ownership of a token is represented by signing rights. **nb:** because tokens are implemented as *accounts*, they are not tradable on the stellar dex. since `stellar-nft` tokens are implemented using stellar accounts, they fall under the same minimum account balance requirements as regular accounts. * 2 base reserves fees - the account itself * 1 base reserve fee - the additional signer representing the owner * 1 base reserve fee - as a buffer for one extra signer when transferring ownership (new signer has to be added before old signer is removed) currently that amounts to 2.0 xlm. an extra base reserve fee would be added if/when a data entry is used instead of reverse federation. issuing nfts: <https://github.com/future-tense/stellar-nft-issuer> interacting with nfts: <https://github.com/future-tense/stellar-nft>
non-fungible tokens on stellar
galactictalk.org
2021.17
[ { "text": "very cool! going to go over in more detail this week.\n\n", "name": "", "is_accepted": false }, { "text": "looks really interesting, good job. \n\nedit: i think it could be interesting for hold items of games in the blockchain.\n\n ", "name": "", "is_accepted": false }, { "text": "non-fungible tokens are an essential part of the crypto ecosystem. if stellar can get non-fungibles on its network, that would be a huge use-case for stellar.\n\n ", "name": "", "is_accepted": false }, { "text": "awesome work! creative solution.\n\n\nonly bummer is lack of being able to use the stellar dex to trade these. any ideas for a decentralized marketplace for these nfts?\n\n", "name": "", "is_accepted": false }, { "text": "\n> [steveklebanoff](https://galactictalk.org/d/1304/5) any ideas for a decentralized marketplace for these nfts?\n> \n> \n\n\ndefinitely!\n\n", "name": "", "is_accepted": false }, { "text": "very, very nice.\n\n\nto be clear, this means 2 xlm per non-fungible thing (e.g. per crypto kitty), right?\n\n ", "name": "", "is_accepted": false }, { "text": "\n> [jem](https://galactictalk.org/d/1304/7) to be clear, this means 2 xlm per non-fungible thing (e.g. per crypto kitty), right?\n> \n> \n\n\ncurrently it's 2 xlm.\n\n\nthere might be ways to get it down to 1.5 with some tweaking of the mechanics of ownership transfers.\n\n\nit's important to remember that it's a deposit that will get refunded when the item is destroyed.\n\n", "name": "", "is_accepted": false }, { "text": "having a look into this myself. wondering the reasoning for not creating a lowest denomination asset to represent the nft. this would allow it to be more easily trade able but less easy to establish the current owner. did a rudimentary implementation here: <https://github.com/connormac/stellar-non-fungible-factory> . i also store the ipfs hash on the original issuer accounts data section as opposed to relying on a federation server.\n\n", "name": "", "is_accepted": false }, { "text": "[connormac](https://galactictalk.org/d/1304/9) but still this doesn't solve the problem of the base reserve, i think it's one of the biggest issue regarding this.\n\n\ncorrect me if i'm wrong please and also i'm interested on this, i did a basic example in unity but it needs trustlines for each item and that can be a pain for both users and network.\n\n\n<https://galactictalk.org/d/1517-stellar-items-framework-unity-3d>\n\n", "name": "", "is_accepted": false }, { "text": "[kirbyrawr](https://galactictalk.org/d/1304/10) no my implementation does not solve the base reserve unfortunately. although those could be considered \"fees\" in a sense. you could make the user of a service pay(for example) the base fees(this being the amount needed to setup the token) to another account then check that and mint the new tokens on a fresh issuer.\n\n\ni imagine in the games context it could create all the trustlines under the hood? only in the case were the game client has access to some kind of private key though.\n\n", "name": "", "is_accepted": false }, { "text": "[connormac](https://galactictalk.org/d/1304/9)\n\n\na dex is much more useful when you have an actual two-sided market. one-offs like nfts only have one seller, and you'd probably want something like an auction take place instead.\n\n\nlowest denomination assets can be done, but are a bit of a kludge, since no other app will understand that your amounts are 10,000,000x too low.\n\n\naccount data entries are mutable. you might end up buying a pig in a poke.\n\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/1304/12) the account data is mutable but since the account is locked on creation (master signing key is set to 0 weight) it is a good as permanent, unless i'm missing something.\n\n\nin the token metadata on the account (or in a federation toml file) we could set up with a standard that tells wallets how to correctly handle an nft.\n\n", "name": "", "is_accepted": false }, { "text": "[@connormac](https://galactictalk.org/u/connormac) how are you going to \"sell\" the nft after you have locked the account (means no key/keys has enough weight to sign a transaction)?\n\n", "name": "", "is_accepted": false }, { "text": "[cajga](https://galactictalk.org/d/1304/14) part of the creation process is sending the initial amount to an initial owner before locking. the same way you can guarantee a limited supply when creating any other kind of asset/token.\n\n", "name": "", "is_accepted": false }, { "text": "great explanation, and i am glad to see nft use being made possible on stellar. as we work towards financial inclusion globally, ownership of assets, rather physical assets like land or digital assets will become more and more important to make accessible to those outside of the financial system.\n\n\n", "name": "", "is_accepted": false }, { "text": "looks highly promising, albeit a few immediate questions come to mind:\n\n\n* what is the step-by-step process for both sides of the transfer (i.e. a seller transfering an account-based nft to a buyer in a trustless manner via stellar laboratory or even better - rabet, albedo or freighter)?\n* does the secret key of the nft itself essentially become irrelevant (i.e. the secret key of the public key that possesses the nft is all that matters)?\n* can this type of nft be created without any code involved (i.e. directly via stellar laboratory), and can you point to a tutorial or provide a simple explainer if so?\n\n\nif all of the above is 100% doable without any external code whatsoever involved, i am salivating at the prospect of creating and experimenting with this brilliant type of nft via testnet.ai.\n\n", "name": "", "is_accepted": false } ]
f5662a8ea481416face562252635ef92
hello all. i am trying to set up a stellar.toml file for a coin that we have created. we are using reactjs for the client side and nodejs for the back end. we are having a hard time trying to decide the correct way to serve the stellar.toml file. it has been difficult to find the proper way to do so. after finding this github repo along with this medium article, i am under the impression the best way to go about this is to dynamically make an axios request from the client side and render a served page from the server in place of the contents of app.js. however i am noticing that on other's websites, when accessing the /.well-known/stellar.toml endpoint that it seems to be very clean and dry html, and cannot find another site that is using reactjs. any help would be greatly appreciated. here are the links to the above mentioned sites <https://github.com/catcatio?language=html> also we have been following this guide for creating the coin on the stellar network <https://www.stellar.org/blog/tokens-on-stellar/> also, on our coin we locked the issuer account before we noticed that the domain name contained 'https://' rather than just being the 'domain.com'. when i try to edit the options for the issuer account it does not allow for this. just for confirmation, is this because once the issuer account is locked their is no way to edit any of the options associated with it. thanks for your help, jay
how to set up a stellar.toml file with reactjs+nodejs stack
galactictalk.org
2020.34
[ { "text": "okay that sounds good i will issue another token \n\nit appears that i need to create a .htaccess file in the .well-known \n\nmy next question would be how can i show the content of the toml file on the home domain? like in the above example i notice when i go to the url 'catcat.io/.well-known/stellar.toml' it is actually showing the text of the file there. in my home domain it tries to download the file when you go the route.\n\n ", "name": "", "is_accepted": false }, { "text": "[jay-maas](https://galactictalk.org/d/2199/3) i believe that the problem is in the etag header. browsers treat your `stellar.toml` as a downloadable file because of it. try adding the following lines to your `.htaccess`:\n\n\n\n```\n# disable etags\n<ifmodule mod_headers.c>\n\theader unset etag\n</ifmodule>\nfileetag none\n```\n", "name": "", "is_accepted": false }, { "text": "my file structure looks like this in my reactjs client [orbitlens](https://galactictalk.org/d/2199/4)\n\n\n\n```\n>example\n >public\n >.well-known\n .htaccess\n stellar.toml\n```\n\nis this correct?\n\n", "name": "", "is_accepted": false }, { "text": "also inside of my index.html file of the react app i placed this\n\n\n`<link \n\n rel=\"stellar.toml file\" \n\n href=\"%public_url%/.well-known/stellar.toml\" \n\n crossorigin=\"anonymous\" \n\n />`\n\n\nis this necessary also?\n\n", "name": "", "is_accepted": false }, { "text": "[gbolahanethanonadeko](https://galactictalk.org/d/2199/2) thanks for linking that page 😃\n\n ", "name": "", "is_accepted": false }, { "text": "[orbitlens](https://galactictalk.org/d/2199/4) this did not solve the issue of the browser triggering a download for the file. any other suggestions?\n\n", "name": "", "is_accepted": false }, { "text": "[jay-maas](https://galactictalk.org/d/2199/6) i attempted to remove this code inside of the index.html but it still is trying to download. when i run a curl on the domain here is the response\n\n\n`accept-ranges: bytes \n\ncache-control: public, max-age=0, must-revalidate \n\ncontent-length: 1031 \n\ncontent-type: application/octet-stream \n\ndate: thu, 21 nov 2019 19:04:57 gmt \n\netag: \"90aa4d5697730728094912999989d38b-ssl\" \n\nstrict-transport-security: max-age=31536000 \n\nage: 0 \n\nserver: netlify \n\nx-nf-request-id: 8e94d9e6-72ce-474c-bab6-2716ea9ac07f-156790217`\n\n", "name": "", "is_accepted": false }, { "text": "[gbolahanethanonadeko](https://galactictalk.org/d/2199/11) okay testing now\n\n\ncontents of the .htaccess is\n\n\n\n```\nheader set access-control-allow-origin *\n</ifmodule>\n\n\n# disable etags\n<ifmodule mod_headers.c>\n\theader unset etag\n</ifmodule>\nfileetag none```\n```\n", "name": "", "is_accepted": false }, { "text": "[gbolahanethanonadeko](https://galactictalk.org/d/2199/11)\n\n\nstill trying to download the file when i go to that endpoint\n\n", "name": "", "is_accepted": false }, { "text": "[gbolahanethanonadeko](https://galactictalk.org/d/2199/13) catcat.io was the example site i was using to try and make mine work\n\n", "name": "", "is_accepted": false }, { "text": "[jay-maas](https://galactictalk.org/d/2199/15)\n\n\ncryptomovez.com/.well-known/stellar.toml\n\n", "name": "", "is_accepted": false }, { "text": "i have moved this thread into the stellar.stackexchange site. thanks for the help above.\n\n\n<https://stellar.stackexchange.com/questions/2870/reactjs-netlify-hosting-stellar-toml-downloading-when-navigating-to-well>\n\n", "name": "", "is_accepted": false } ]
9bcc0753ce37bea8d03b5540e7e0d056
**image:** ![header](https://i.imgur.com/xfjl3t3.png) **title:** edunode - meet, learn, and build on the stellar network. **summary:** we are your educational platform on the stellar network, we help you build open-source tools on stellar. **category:** resources & content **goals:** * develop an easy to use platform that connects members of the stellar community * support developers and enthusiasts with the necessary resources to start building. * create an engaged community of enthusiasts and developers. * educate people and increase awareness about the stellar network. * facilitate the necessary tools and resources in order to start building on the network. * organize events such as meetups and workshops which allows participants to learn and develop apps on the stellar network. **description:** my name is olvis gil, i am a colombian currently living in vienna, austria. i am also the co-founder at [experio](https://www.experio.at/), and i also organize the [stellar austria developers meetup](https://www.stellar.org/events/stellar-austria-developers-meetup) (which was organized together with bernard from galactictalk), you can join the keybase team: stellar\_at. **why edunode?** edunode was born out of a need to increase the awareness about the stellar network. we support developers and non-developers to understand which are the best ways and resources needed in order to start building applications using the stellar network. **technical details** * the front-end of the platform was built using reactjs, material ui and react-boostrap. * community map implementation with mapboxgl. * user registration system built using redux, nodemailer and nodejs. * front end deployed on netlify and backend deployed on heroku. * we use mongodb for database management. **timeline** 01 2020 - idea and conceptualization. 03 2020 - first stellar austria developers meetup in vienna, check out the post on [twitter](https://twitter.com/edunode_). 03 2020 - landing page. 04 2020 - list of resources and tools. 05 2020 - community map. 06 2020 - registration system and sign in with google. 07 2020 - upload story feature. 07 2020 - account, profile and dashboard 08 2020 - reward system for content creators. 08 2020 - keybase auth implementation 09 2020 - identicons implementation for user accounts (developed by lbstr) 10 2020 - chatroom feature **benefits of edunode for the stellar network** our project is valuable for stellar because we help to increase awareness about the stellar network by creating engaging events that help attendees learn more about stellar and to join the #stellarfamily. we want to become the go-to open-source education platform for the stellar ecosystem, and in order to achieve this, we will need your support and feedback in order to reach our goals. **resources** we are working on a list of resources and tools that helps developers get started ![resources](https://i.imgur.com/ezbsxot.png) **blog** any registered user will have the possibility to create stories and see the balance of their rewards in a dashboard. ![blog](https://i.imgur.com/iz9as5c.png) **community map** the idea behind this map is to be able to locate community members of the #stellarfamily around the globe, which will serve as a great source for newcomers to easily find stellar communities ![map](https://i.imgur.com/kquyf68.png) **workshops and meetups** we also organize events that educate attendees about the benefits of building on stellar. we support them by providing the tools they need in order to start building on stellar. our workshop help participants to understand basic and advanced topics such as: 1. what is stellar? 2. introduction to stellar nodes 3. what are the order books 4. supported languages and community sdks 5. developer tools and resources 6. operations and issuing assets 7. wallets and exchanges **links:** website: <https://edunode.netlify.app/> twitter: <https://twitter.com/edunode_> repository: <https://github.com/olvisgil/edunode> **tags:** stellar, education, resources, content, open source
edunode - meet, learn, and build on the stellar network
galactictalk.org
2020.29
[ { "text": "check out our blog \"[keybase the secure communication tool with stellar native integration](https://edunode.netlify.app/blog/what-is-keybase)\" \n\n![imgur](https://i.imgur.com/zsfyyyo.png)\n\n", "name": "", "is_accepted": false }, { "text": "[olvisgilrios](https://galactictalk.org/d/2434/1) great idea to unite everyone from the stellar community by marking locations on the map. this would greatly bring together those who are nearby but even have no idea about it)\n\n", "name": "", "is_accepted": false }, { "text": "[olvisgilrios](https://galactictalk.org/d/2434/1) hi, good to see there is more educational work going on. we are doing meetups in munich and workshops online for stellar. as vienna is not far from munich there might be a chance to meet up sometimes.\n\n\nsee more details on our activities here: <https://www.meetup.com/de-de/stellar-org-munich-meetup-group/>\n\n\n", "name": "", "is_accepted": false }, { "text": "[scopuly](https://galactictalk.org/d/2434/3) thank you very much! indeed, i noticed that there were many communities of enthusiasts in keybase and twitter, so i thought it would be useful to gather them into a single map where anyone can easily find them and connect regardless of their location.\n\n", "name": "", "is_accepted": false }, { "text": "[smartstellar](https://galactictalk.org/d/2434/4) cool! i believe that educational work is key for adoption. and absolutely, i will be more than happy to meet. by the way, i have updated the \"meetups\" section and have included \"stellar munich\" on the list 🙂. -> <https://edunode.netlify.app/community>\n\n", "name": "", "is_accepted": false } ]
978356da7bdf14a5d57e3d85fb214e88
hey guys, this is my first entry to the sbc and it's called paywithstellar. right now i am looking for beta testers to play with it using fake money trying it on all possible devices and testing its functionality and ease of use and implementation. what is paywithstellar? just a simple button you can use in your website to ask for easy and instant payments in stellar xlm. feel free to download the library, run it on your site and let me know how useful it is. feedback is welcome. you can try it right now in this testing site: <https://myplaynet.herokuapp.com/paywithstellar> or head over to github for source review and downloads. thanks a lot for your support. <https://github.com/kuyawa/paywithstellar/>
beta: paywithstellar - instant payment button
galactictalk.org
2021.39
[ { "text": "this looks really interesting, good job!\n\n\n\"nothing. if you are a web developer and have basic html and javascript knowledge you can do it all by yourself in less than ten minutes. if you need help we will setup a site offering services for merchants like email confirmation, transaction explorer, orders and fulfillment, tracking, stats, etc. and we will charge the lowest fees in the market, not 10%, not 5%, just 1% so you keep all your hard earned money for your business.\" - are you planning on setting up a stellar paypal-type site or a shopify type site?\n\n", "name": "", "is_accepted": false }, { "text": "[stevenwilliams](https://galactictalk.org/d/804/3)\n\n\nit all depends on acceptance. see i already developed an xlm gift card sender to introduce family and friends to crypto and everybody poo-pooed it so i dropped further development, so let's see how this one goes.\n\n", "name": "", "is_accepted": false }, { "text": "i like this idea of stellarpay!\n\n\n", "name": "", "is_accepted": false }, { "text": "nice! like it.. \n\nbut why wants me to pay 24 xlm when i press the button with 15.0 in its click event? the button in the middle in your demo page.\n\n\ncheers\n\n", "name": "", "is_accepted": false }, { "text": "one thing about security... what happens if i change the price in the click event on my client side to 1? \n\ni did it right now and the popup asked me for 2 xlm instead of 24 xlm.\n\n\nis this an issue, you're already aware of ?\n\n", "name": "", "is_accepted": false }, { "text": "[nick0816](https://galactictalk.org/d/804/7)\n\n\nyes i am aware of all client hacks which affect the client and nobody else. the server should validate the operation in order to deliver any goods. so if you change it to 1 and pay 1 xlm then once the seller confirms their own ledger they won't deliver anything and you've lost 1 xlm. you could also change the address and pay yourself trying to fool the system and many other tricks but sellers should always double check payments. there are plans for offering server side validation once more acceptance is tangibly demonstrated.\n\n\nthis app is just a nice interface for clients to feel confident in stellar as a payment method. sellers should always double check their ledgers before delivery.\n\n", "name": "", "is_accepted": false }, { "text": "woah this is awesome!\n\n\ni had a similar idea just a few days ago, after i saw something similar in the raiblocks community (<https://brainblocks.io/>). unfortunately i couldn't figure out how to recreate it in the stellar world because of one issue: how do know that the correct person paid for the product?\n\n\nin your example there are 3 products: ipad, iphone and imac. all share the same address but they have a different memo text. if 2 customers come in and one of them sends the right amount, how do you identify this person? i tested it using 2 browsers and both received the success alert. looks like everyone who was on this page at this time would receive this alert. \n\nbrainblocks can figure this out by showing a different address every time you click on their \"paywithraiblocks\"-button. they probably create a new raiblocks account \"on the fly\". when the right amount was received, they then forward it to the seller. (that's just my guess)\n\n\ndo you have an idea of how to solve this issue in stellar?\n\n", "name": "", "is_accepted": false }, { "text": "[yousef](https://galactictalk.org/d/804/9) it's up to the implementor to generate order ids per every user just like in every shopping cart in the world. so you could generate any random number and assign it to the button onclick event just like this if you're using php:\n\n\n\n```\n<button onclick=\"paywithstellar.payment(event, 15.00, '<?=myorderid; ?>')\">...\n```\n", "name": "", "is_accepted": false }, { "text": "we've created a couple cool \"pay with stellar\" buttons, if you'd like to play around with them \n\n<https://stellardesign.io/store/pay-with-buttons>\n\n\nlet me know what you think\n\n\n", "name": "", "is_accepted": false } ]
afad05ac0605bdd68decb254bb51a357
i noticed that there is documentation for ssc here: <https://www.stellar.org/developers/guides/walkthroughs/stellar-smart-contracts.html> but there is literally nothing about sscs in the new documentation, and the one above is going to be deprecated. why is this so?
smart contracts documentation
galactictalk.org
2021.25
[ { "text": "i think it's because they are not smart contracts as we know them from others chains and may confuse some users\n\n", "name": "", "is_accepted": false }, { "text": "it all depend on what you call a smart contract.\n\n\nmy broad vision of a smart contract is *some operations that executes as agreed between parties in a verifiable way* .\n\n\nin stellar, you can have 3 different \"layers\" of smart contracts:\n\n\n1. **tx level**: a set of operations bundled in a single transaction: either all operations will work, either they will all fail. so the transaction will execute in a predictable and agreed way.\n2. **account level**: an account that is configured to act with a special scenario : multisig account, time locked account, tx locked account, ...\n3. **off chain**: you can implement a very complicated smart contract (with api calls, or whatever) that runs outside the blockchain, but that controls a single, or several accounts, in a pre defined way. you can publish the code if you wish to get the trust of your partners. but even without so, every action of the contract is written to the blockchain, so there is always a post checking that the smart contract did not cheat. of course, you can implement a second smart contract (done by another party) that will have just one job : check every single transaction of the initial smart contract and act accordingly if the first smart contract cheated (like penalties, withdrawing fund, sending a wicked transaction, .... whatever). that way : you know that the first smart contract will just do the right job.\n\n\nadvantage over ethereum type of on-chain smart contracts: gas price, no need to set up or rely on some expensive oracle.\n\n\nhere you will say: yeah, but i can trust ethereum's on-chain smart contracts more, because they are on-chain. wrong !!! most ethereum smart contracts are upgradable, so cheating with an ethereum smart contract is just a matter of upgrading it, and changing the code in it. \n\nhow about non-upgradable smart contract? yeah, you can trust those, but you can also trust them to lock you inside a logic that will never evolve. in the world we live in, building an application on a logic that is locked for ever is like shipping your software inside a founded chip: this is not software anymore, this is hardware (with no firmware to upgrade). \n\nevery smart contract on ethereum should be upgradable, but then, is gets no more to be trusted than any off-chain smart contract.\n\n\n", "name": "", "is_accepted": false }, { "text": "[slesolliec](https://galactictalk.org/d/2645/3)\n\n\ni agree with your line of thinking.\n\n\nit seems the term “smart contract” is defined now as a “fully decentralized turing complete smart contract like on ethereum”. it feels more like a brand now rather than functionality.\n\n\non stellar, i think, if we add timed submissions of presigned transactions that are safeguarded and protected by the community (to assure delivery) we achieve similar results and use cases are increased heavily. the basic ssc would be near turing complete as i see it, if not turing complete by definition.\n\n\n", "name": "", "is_accepted": false }, { "text": "[earrietadev](https://galactictalk.org/d/2645/2) hey enrique, i would like to connect. i was looking for you on keybase. i would like to talk, if you want you can also e-mail me [[email protected]](mailto:[email protected])\n\n ", "name": "", "is_accepted": false }, { "text": "[mojoflower](https://galactictalk.org/d/2645/5) i have the same username in keybase, but sure i will send you an email\n\n", "name": "", "is_accepted": false }, { "text": "[unknown]\n\n\n[unknown] hello would you by any chance be interested in doing some side work for a crazy program that has decided to donate 400 million tokens and create 40mmillion wallets for children. i am not even going to attempt to create a smart contract i had a hard enough time creating our tokens and now need non fundigiblk also tr also\n\n ", "name": "", "is_accepted": false }, { "text": "and yes i know i cannot really create the 40 million individual wallets it will crash the blockchain all that good stuff so we are going to create less of them\n\n", "name": "", "is_accepted": false } ]
a2dd22da88db3db6acff77d38456c503
**image:** ![testnet.ai](https://www.testnet.ai/img/testnet-ai-create-token-resized.png) **title:** testnet.ai - the stellar developer's toolkit **summary:** stop wasting development cycles on your testnet accounts and tokens. we're taking the pain out of the creation and management of stellar assets and accounts following a network reset. **category:** applications **goals:** we have our own lengthy list of feature backlogged items, but we're interested in hearing what functionality you as a developer would need. please let us know what we can do to make your development workflow easier. **description:** this project is fully live and chock full of features for stellar development teams. the service is offered *entirely free*, so please sign up and give us feedback. we announced this project back in an earlier round and have taken the time to fix a variety of bugs and add important new features. below is an abridged summary of features: * the ability to automatically recreate an asset, including issuer, distributor, and market maker when the stellar testnet resets quarterly * the ability to automatically recreate wallets when the stellar testnet resets quarterly * a full blown user registration process and administrative dashboard for managing tokens * the ability to create and delete tokens, which includes both the issuer and distribution accounts * the ability to delete tokens and perform as much cleanup as possible on the test network * the ability to customize auth flags on newly created tokens * creation of a custom subdomain to act as your home\_domain for each generated token which serves a stellar.toml file to identify your token * the ability to create and customize market making strategies for tokens to ensure they're provided liquidity for personal or company internal testing on the sdex. this includes: + automatically creates and funds trading accounts on the buy and sell side + ability to select a top 100 cryptocurrency to base your testnet asset's price against + ability to customize the orderbook spread percentage + ability to customize the orderbook depth + ability to customize the orderbook offer amounts + automatically handles re-filling trading accounts when their balances get low + ability to activate/deactivate a market maker to control when it trades + deletion of market makers will make best attempts to fully scrub the network, including deleting active offers, deleting data, deleting trustlines, and sending funds back to their issuers followed by merge account * the ability to send either xlm or any custom token you've created to someone else on the stellar testnet * the ability to import an existing testnet token into our system to be auto managed and gain the above capabilities * the ability to create user wallets with tags and descriptions for internal use. * implemented a websocket push notification service to keep users abreast of various queued backend activities taking place. **links:** <https://testnet.ai> **tags:** testnet,asset,assets,token,tokens,tokenize,tokenization,management,developer
testnet.ai - the stellar developer's toolkit
galactictalk.org
2020.34
[ { "text": "just some additional examples of other features and functionality:\n\n\nfull example of asset creation: \n\n![testnet.ai - token creation](https://www.testnet.ai/img/testnet-ai-create-token.png)\n\n\nasset details page: \n\n![testnet.ai - asset details](https://www.testnet.ai/img/testnet-ai-token-details.png)\n\n\ncreate/import wallet page: \n\n![testnet.ai - create or import wallet](https://www.testnet.ai/img/testnet-ai-create-import-wallet.png)\n\n", "name": "", "is_accepted": false }, { "text": "what’s a keybase username i could reach out to?\n\n", "name": "", "is_accepted": false }, { "text": "just a heads up for any of you that may have encountered an error during asset creation recently:\n\n\nwe had recently refactored asset/token creation with new handling to significantly reduce asset and market maker creation time by maintaining the concept of a prefunded source account. friendbot is inherently slow, so this improves the speed for creating new tokens and accounts by removing all calls to friendbot. this introduced a new bug in the amount the source account was being preallocated, causing an `op_underfunded` error during creation. this has since been resolved.\n\n", "name": "", "is_accepted": false } ]
0276e55081a41e1586c754dd5c3c04a0
application: [cosmic.vote](https://cosmic.vote) ----------------------------------------------- [![](https://i.ibb.co/r6wvxfq/vote2.png)](http://cosmic.vote/?tab=vote&txhash=4863f317de223e1cc7b84c82e9cc93a92a6c0f5db462a63be8bdb1fdfb442909&network=test) summary: -------- cosmic.vote implements the first building blocks for decentralized organizations on stellar: majority judgment and passive contracts. majority judgment is a robust voting system that is suitable for achieving both community and automated consensus. a passive contract is a mechanism that achieves trustless turing-complete computations under specific conditions. cosmic.vote provides an open-source implementation of those, as well as three real-world use cases: polls, contests w/ decentralized prize pools, & oracles. category: --------- applications, tool & infrastructure goals: ------ * [x] implement majority judgment. * [x] implement passive contracts. * [  ] implement operated contracts. * [x] use those building-blocks to run a decentralized voting system. * [  ] use those building-blocks to run a decentralized prize distribution for an scf-like contest. * [  ] use those building-blocks to run a decentralized oracle system. * [  ] provide open-source libraries & toolkit. * [x] provide integration with third-party websites. ### let's give it a try :) 1. browse to [cosmic.vote](https://cosmic.vote). 2. select a grade for each candidate. 3. click on `cast your vote!`. 4. within the sideframe, select `test account` under *step 2: signing method*. 5. (give it a second, it's creating & funding your test account...) 6. click on `sign with test account`. 7. enjoy! description: ------------ **cosmic.vote is about running votes, prize distributions, and oracles without having to rely on a third-party.** this quality, referred to as "trustless", is fundamental to cryptocurrencies. what has achieved bitcoin? the first digital currency that doesn't require a trusted third-party to exists. what has achieved ethereum? contracts that don't require a trusted third-party to execute. what about defi? same principles. in cryptocurrency-related development, trustlessness is more than a nice quality to have: it is a requirement. while stellar can't execute arbitrary code as ethereum does, in some cases, it is possible to achieve similar results using alternative mechanisms. cosmic.vote introduces some of those mechanisms as the firsts building blocks for decentralized organizations on stellar. it shows how those can be combined together to build trustless systems that would normally require turing-complete smart contracts. **majority judgment** is a voting system first described in 2007 by r. laraki & m. balinski as the least bad solution to [arrows's impossibility theorem](https://www.investopedia.com/terms/a/arrows-impossibility-theorem.asp#:~:text=arrow%27s%20impossibility%20theorem%20is%20a,principles%20of%20fair%20voting%20procedures.&text=arrow%2c%20is%20also%20known%20as%20the%20general%20impossibility%20theorem.) this theorem, pivotal in social choice theory, states that it is impossible to create a voting system that is fully resistant to aberrant results. in his work, kenneth arrow went over the many ways voting systems can be (and are) abused. the research that leads to majority judgment capitalized on that work to figure out a system that would, at least, mitigate those issues as much as possible. what is beautiful about majority judgment is that, despite being the most robust voting system known to that day, it is simple enough to be understood & put in practice by everyone. thus, it is a suitable alternative to traditional voting systems, be it a simple online poll or national elections. **passive contracts** are a way to build contracts that makes it possible to run complex programs such as voting systems without having to rely on a third-party. the principle is to store the contract parameters on the ledger and to have the clients perform the computations. for a particular family of programs, which is referred to as "fully functional", this facility provably achieves trustless layer 2 contracts. the limit here is that passive contracts cannot mutate the ledger. in simple words, they can do pretty much everything except sending money. **operated contracts** are an extension of passive contracts, that are already being used in many systems, but those have the limitation of requiring third-party for settlement. that's why, while possible on stellar, this family of contracts is often left aside as unsuitable. however, under certain conditions, they can be leveraged to achieve a near-optimal level of robustness. links: ------ **application:** [cosmic.vote](https://cosmic.vote) **code repository:** [github](https://git.cosmic.plus/webapp-cosmic-vote) > **some polls:** > > (stellar public) [unhealthy meals ranking](https://cosmic.vote/?tab=results&txhash=0582a51ba2d6f0dcdca5cffa4dc262787a834a9524c9b37e028987ab46bad3d7&network=public) > > (stellar test) [coins fundamentals](http://cosmic.vote/?tab=vote&txhash=4863f317de223e1cc7b84c82e9cc93a92a6c0f5db462a63be8bdb1fdfb442909&network=test) −> [check the embedded version](https://codepen.io/cosmic-plus/pen/nwxmevw) > > (stellar test) [browse polls](https://cosmic.vote/?tab=browse&pollsinbox=gcjsnta62doj4gdmjrucadfjebqcrwd2vgrqxzg7ktxkyhtiz3fjb5nj&network=test) > > **organization**: [cosmic.plus](https://cosmic.plus) **social:** [keybase](https://keybase.io/team/cosmic_plus) | [telegram](https://t.me/cosmic_plus) | [reddit](https://reddit.com/r/cosmic_plus) | [twitter](https://twitter.com/cosmic_plus) | [medium](https://medium.com/cosmic-plus) #### articles * [cosmic.vote #1: introducing majority judgment](https://medium.com/cosmic-plus/cosmic-vote-1-introducing-majority-judgment-84a250380695) − *the ambition of cosmic.vote is to bring decentralized organizations to stellar. no wonder that majority judgment has been chosen for its first contract: when it comes to decentralized governance, having a well-designed, robust voting system is an absolute game-changer. let’s see why majority judgement is superior in this matter.* #### going further **pedagogic content:** * [mr president, did you won this election? [fr/en subtitles]](https://www.youtube.com/watch?v=vftj4vmiso4&cc_load_policy=1): shows how elections' results may depends as much on the voting rules than on the voters. **scientific content:** (publications of m. balinski & r. liraki) * [2007] [a theory of measuring, electing and ranking](https://sites.google.com/site/ridalaraki/xfiles/balinskilarakipnas.pdf?attredirects=0) * [2010] [election by majority judgment: experimental evidence](https://sites.google.com/site/ridalaraki/xfiles/electionbymajorityjudgment%28experimentalevidence%29final.pdf?attredirects=0) * [2011, book] [majority judgment: measuring, ranking and electing](https://mitpress.mit.edu/books/majority-judgment) * [2013] [how best to rank wines: majority judgment](https://sites.google.com/site/ridalaraki/xfiles/howtorankwines.pdf?attredirects=0) * [2014] [what should "majority decision" mean?](https://sites.google.com/site/ridalaraki/xfiles/balinskilaraki%28elsterbook%292014.pdf?attredirects=0) * [2020] [majority judgment vs approval voting](http://crest.science/repec/wpstorage/2018-15.pdf) **about majority judgment inventors:** michel louis balinski was emeritus director of research of the cnrs at the ecole polytechnique (paris). he was the founding editor of *mathematical programming* and a former president of the mathematical optimization society. in 2013 he was awarded the john von neumann theory prize by informs for “fundamental, sustained contributions to theory in operations research and the management sciences.” [[more...]](https://sites.google.com/site/michellbalinski/) rida liraki is director of research cnrs in computer science at lamsade (university of paris dauphine) since 2013 (and researcher at the cnrs since 2001). from 2006 to 2017, he was professor at the École polytechnique and since september 2017, he is professor at the university of liverpool (computer science department, part-time). [[more...]](https://sites.google.com/site/ridalaraki/) tags: ----- poll, vote, oracle, trustless, contract, decentralized, organization, **100% open-source**
cosmic.vote ~ working toward decentralized organizations
galactictalk.org
2020.34
[ { "text": "\n> **mood box**\n> \n> \n> i hope i forgot nothing... it's quite late already!\n> \n> \n> for now, the released web app supports only a subset of the planned features. there's still a couple of challenges on the way toward prize distribution & oracles. anyway, i believe i can deliver at least a poc of those during this scf cycle.\n> \n> \n> at that time, public & custom nets contracts are fully supported, but i decided to release on testnet first. you can vote & create your own polls by selecting the \"stellar authenticator\" signing method & using the \"guest mode\" to obtain a testnet account right away. stellar laboratory works too.\n> \n> \n> more soon. stay tuned!\n> \n> \n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2440/2)\n\n\n\n> [misterticot](https://galactictalk.org/d/2440/2) at that time, public & custom nets contracts are fully supported, but i decided to release on testnet first. you can vote & create your own polls by selecting the \"stellar authenticator\" signing method & using the \"guest mode\" to obtain a testnet account right away. stellar laboratory works too.\n> \n> \n\n\nthe interesting thing is, did i understand correctly that the test mode already allows you to create your own questions when choosing a guest mode subscription, and i will get full access to the supported features?\n\n", "name": "", "is_accepted": false }, { "text": "\n> [walterbeen](https://galactictalk.org/d/2440/3) the interesting thing is, did i understand correctly that the test mode already allows you to create your own questions when choosing a guest mode subscription, and i will get full access to the supported features?\n> \n> \n\n\nyes, currently it gives you access to all features, but on the testnet. when we'll do prize distribution, it will be on the public net & will require a normal stellar account. (e.g: keybase)\n\n", "name": "", "is_accepted": false }, { "text": "release 1.0.0-beta.2\n--------------------\n\n\n\n> mobile interface & ui polishing.\n> \n> \n\n\n### added\n\n\n* ui: tell when the contract is being loaded.\n* ui: keep results in sync with the ledger.\n* ui: redirect to results once the vote has been validated.\n* ui: display contract time-related parameters.\n\n\n### fixed\n\n\n* meta: ensure stellar.toml is being served.\n* style: fix unwanted \"bumping\" effect on buttons.\n* style: fix mobile tab selector arrow & width.\n* style: fix buttons vertical-align.\n* style: fix mobile display of results.\n* ui: fix syncing after posting a new poll.\n\n\n", "name": "", "is_accepted": false }, { "text": "judging by the number of voting projects in this round of scf, the company's request for fair voting services is greatly aggravated. today it is really important. therefore, i wish you to realize a truly working and applicable service!\n\n", "name": "", "is_accepted": false }, { "text": "[scopuly](https://galactictalk.org/d/2440/6) thanks, that's the plan 🙂\n\n", "name": "", "is_accepted": false }, { "text": "this idea is really nonsense! \n\nusing blockchain as a database is really stupid \n\nyour project does not solve any problems and is no different from centralized projects \n\nit is not possible to make a decentralized voting platform on stellar because stellar does not have vm. \n\nplease do not assume users are stupid \n\nof course, in the previous period, a voting platform won with the least possible technical load, i think that made you greedy\n\n", "name": "", "is_accepted": false }, { "text": "[john](https://galactictalk.org/d/2440/8)\n\n\nthat's exactly what i think, but the guy who calls developers \"community milkers\" is now trying to milk the community with this kind of project that brings nothing to the ecosystem, that is not monetizable, and that barely uses the financial aspect of the stellar network. a guy who won last round now wants to win again, who would have thought? i thought that was not allowed or at least the project should be alive and with a business plan none of which appears to be the case here, call it lax enforcement of rules? i guess he wants to sell the project to the governments for billions of dollars? i still wonder how is he monetizing cosmic link? and why the guy is not disqualified? too many questions unanswered.\n\n\nas an old jamaican saying goes \"if you spit into the sky, it falls into your eye\"\n\n\npeople think they can go around offending everybody with impunity and karma won't get them back.\n\n", "name": "", "is_accepted": false }, { "text": "[torkus](https://galactictalk.org/d/2440/9) says the man who [admittedly uses stellar funds to develop on ripple](https://galactictalk.org/d/2429-starforex/6). don't make me laugh, bro!\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2440/10)\n\n\ni am not using stellar funds to develop on ripple, i am moving my stuff to ripple where developers are appreciated for what they do. that's a big difference. i am developing for many different blockchains, stellar, ripple, bitcoin, ethereum, etc something you would never do in a hundred lives. keep doing your own little projects, life will teach you a hard lesson.\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2440/10)\n\n\nbut this is not about me, this is about your projects, how are you monetizing cosmic link?\n\n\nand now that we are in the q&a phase for this round, how are you going to monetize this \"project\"? please answer that valid question...\n\n", "name": "", "is_accepted": false }, { "text": "[torkus](https://galactictalk.org/d/2440/12) omg... and you actually believe i'm going to take questions from you after what you just said... 🤣\n\n ", "name": "", "is_accepted": false }, { "text": "[torkus](https://galactictalk.org/d/2440/12) from alexa rankings, you will find that not one people uses cosmic! \n\n![](https://i.ibb.co/b60sy8s/screen-shot-1399-04-11-at-23-41-33.png) \n\ni think only you visit it every day!\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2440/13)\n\n\nyou have to take questions from the community (milkers or not) and you can't dodge the question, so please answer it...\n\n", "name": "", "is_accepted": false }, { "text": "i'm perfectly willing to answer honest reviewers questions. now please clean your mess.\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2440/16)\n\n\nthat's an honest question and no matter how much you run you won't be able to hide, ever.\n\n", "name": "", "is_accepted": false }, { "text": "you can't just attack someone with unbaked accusations and do like nothing happened the next minute. i don't think there's anything honest in your play.\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2440/18)\n\n\nreally? do you want me to find your \"community milker\" accusation for everybody to see? you want to play the poor innocent sheep here?\n\n\n**you can not monetize your project**, face it no matter how much it hurts.\n\n", "name": "", "is_accepted": false }, { "text": "that's not how alexa ranking works, and that's not what \"daily pageviews per visitor\" means. it is better to understand how things work before throwing in insults & accusations.\n\n\ncosmic.link is a progressive web application: it gets installed in browser cache & runs from there. users fetch the page only once per update, then run it from their machine until another update happens.\n\n\ncosmic.link doesn't use any tracker or external script, and alexa ranking is accurate only for websites which serve their spybot (how convenient!).\n\n\nfinally, cosmic.link is normally called within iframes, and iframes are not counted by alexa ranking.\n\n\n[reference](https://support.alexa.com/hc/en-us/articles/200450504-why-does-the-directly-measured-data-differ-from-my-other-analytics-package-)\n\n", "name": "", "is_accepted": false }, { "text": "\n> [torkus](https://galactictalk.org/d/2440/12) how are you going to monetize this \"project\"?\n> \n> \n\n\nnot everything has to be directly monetizeable. some things are public goods. would you expect to pay for using a wallet? an sdk?\n\n", "name": "", "is_accepted": false }, { "text": "[john](https://galactictalk.org/d/2440/14) i think you better not omit someone else's projects - this is not the best practice and does not personally give you any results. it would be better if you simply provided a refutation calmly and without emotion. but instead, we get attacks on community members who, from the very first days, supported the developers and the community: ideas, contributions to the development of the code, and their constant presence and discussions. it is important. here it remains either to prove or to eliminate.\n\n", "name": "", "is_accepted": false }, { "text": "release 1.0.0-beta.3\n--------------------\n\n\n\n> polls browsing.\n> \n> \n\n\n### added\n\n\n* ui: add custom poll listing address.\n* ui: add browse tab.\n\n\n### changed\n\n\n* style: polish header style.\n\n\n### fixed\n\n\n* style: normalize ios/macos form elements.\n* ui: fix typos.\n* ui: fix poll confirmation canceling.\n\n\n### commentary\n\n\nit is now possible to browse the polls list. for now, it only browses `list*cosmic.vote` although adding lists is an easy matter.\n\n\nthis browsing thing opens several questions:\n\n\n* should we have public contracts listings & how to deal with spam? (by burning xlm?)\n* should i extend this feature to list the user's polls and/or polls in which they participated? in this case, i need to obtain voters pubkey, which was not needed so far.\n* should i design a filter contract that'd enforce fair listing requirements such as \"burning ${x} xlm\", \"being authorized for asset ${y}\" or \"being a signer of account ${z}\"?\n\n\na composable filter contract would prove useful to filter poll voters as well. chaining a filter contract with a poll contract would result in the smallest possible dao. (something like `$votes > [email protected]{...} | [email protected]{...}`)\n\n\nfiguring out a way to compose contracts is a big deal, as this is the most demanding requirement to achieve daos on stellar. before i get there, i need more instances of contracts & more use cases from which i can generalize. hence cosmic.vote.\n\n\n[[subscribe to weekly updates]](https://www.reddit.com/r/cosmic_plus/)\n\n", "name": "", "is_accepted": false }, { "text": "release 1.0.0-beta.4~5\n----------------------\n\n\n\n> improved testing flow\n> \n> \n\n\n### added\n\n\n* meta: setup favicons & social preview.\n* ui: add explanations for 'new' & 'browse' tabs.\n\n\n### changed\n\n\n* ui: switch to cosmic.link v2. it is now possible to select 'test account' directly in the cosmic.link signing methods list.\n* logic: temporarily disable polls list auto-update. running multiple streams leads to poor network performance.\n\n\n### fixed\n\n\n* ui: fix a couple of sentences.\n\n\n### commentary\n\n\nit's now possible to get a testnet account directly from the cosmic.link interface, which makes testing easier:\n\n\n1. browse to [cosmic.vote](https://cosmic.vote).\n2. select a grade for each candidate.\n3. click on `cast your vote!`.\n4. within the sideframe, select `test account` under *step 2: signing method*.\n5. (give it a second, it's creating & funding your test account...)\n6. click on `sign with test account`.\n7. enjoy!\n", "name": "", "is_accepted": false }, { "text": "i experimented a bit with your voting app. a few notes:\n\n\n* poll creation wizard - members section is not clear. does it mean \"answer options\" or \"poll participant addresses\"?\n* it would be nice to add more advanced description regarding parameters, like what the \"listing address\" actually means.\n* i can't customize answer options. also it seems like there is no way to create a single-choice questions. for example, \"your nationality\". and there is not way to customize answer options.\n* there are \"open since nan days\" and \"never expire\" labels in the voting interface. it looks like your engine supports time bounds settings, but there is no way to set them in the interface.\n* what is the overall length limit for the title and options? looks like it is determined by the maximum `manage_data` op you can pack into the transaction (100-2=98 data entries). am i right?\n\n\nthe way you store the data on the ledger is quite ingenious. however, there is one thing i thought about for a while. if someone could come up with an idea that allows usage of voting results in the smart contracts, it would be a giant step towards the oracles and daos on stellar. something like voting by creating a trustline to a specific predefined asset, or sending specially minted voting tokens to one of the accounts that represent voting options. a pre-signed smart contract transaction might use this to execute conditional actions allowing elaborate chained smart contracts schemes.\n\n\nwhat do you think? is there a way to use your voting contracts for this case?\n\n", "name": "", "is_accepted": false }, { "text": "[orbitlens](https://galactictalk.org/d/2440/25)\n\n\nthanks for the feedback, that's very helpful :)\n\n\n\n> poll creation wizard - members section is not clear. does it mean \"answer options\" or \"poll participant addresses\"?\n> \n> \n\n\nthis is \"answer options\" the next release will be more specific about that.\n\n\n\n> i can't customize answer options. also it seems like there is no way to create a single-choice questions. for example, \"your nationality\". and there is not way to customize answer options.\n> \n> \n\n\nmaybe there's some confusion around the term \"poll\". this system is for voting (e.g.: elections), not to build custom forms. in a future release, i'll add an option to have custom grades, though.\n\n\nbtw, the set of grades cosmic.vote is using has been researched & designed after the principles of majority judgment creators. that is, distinct & meaningful enough so you won't hesitate between two - but as restricted as possible. except for specific cases, you'd be better with those defaults.\n\n\n\n> there are \"open since nan days\" and \"never expire\" labels in the voting interface. it looks like your engine supports time bounds settings, but there is no way to set them in the interface.\n> \n> \n\n\nthe time bounds feature is being worked on, i'll release it within the next couple of weeks. if you get the nan error again, could you please share the page link with me?\n\n\n\n> what is the overall length limit for the title and options? looks like it is determined by the maximum manage\\_data op you can pack into the transaction (100-2=98 data entries). am i right?\n> \n> \n\n\nyes, and i should probably set a sane limit here. ;)\n\n\n\n> something like voting by creating a trustline to a specific predefined asset, or sending specially minted voting tokens to one of the accounts that represent voting options. a pre-signed smart contract transaction might use this to execute conditional actions allowing elaborate chained smart contracts schemes.\n> \n> \n> what do you think? is there a way to use your voting contracts for this case?\n> \n> \n\n\nthe system you're proposing is worth digging, although this is not what i'm trying to do here.\n\n\nwhat you're proposing is using \"conventional\" stellar smart-contract capabilities to implement voting & maybe money distribution. this is possible to some extent, but to really shine this solution would need a special type of transaction that doesn't increment the sequence number on failure. this way, we could any operation as conditions similar to mintime/maxtime/sequence. then, it'll be possible to set conditions on the amount of asset, trustlines & so on.\n\n\nwhat i'm doing instead is saying \"ok, there's a ton of things we can't build within this paradigm. let's see what can be taken to layer 2 without losing the properties of the underlying consensus (trustlessness)\". that's how i came with passive & operated contracts, which are layer 2 contracts - btw those mechanisms are not new, but the way i'm working with them is.\n\n\nthis is a different path with different trade-offs, but long story short, i'm indeed working on chaining those things as i mentioned [earlier](https://galactictalk.org/d/2440-cosmicvote-trustless-polls-governance-oracles/23).\n\n\n\n> if someone could come up with an idea that allows usage of voting results in the smart contracts, it would be a giant step towards the oracles and daos on stellar.\n> \n> \n\n\nwell then... ;)\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2440/26)\n\n\n\n> maybe there's some confusion around the term \"poll\". this system is for voting (e.g.: elections), not to build custom forms.\n> \n> \n\n\nah, that wasn't clear to me. now it makes a lot more sense. i thinks it worth mentioning in both the sfc entry description and the poll creation wizard which kinds of polls it is suited for. i wonder if the system you employed can be adopted for the governance decisions like \"do we need the on-chain anonymous transactions? yes/no\".\n\n\n\n> this is a different path with different trade-offs, but long story short, i'm indeed working on chaining those things as i mentioned earlier.\n> \n> \n\n\ncool, will be keeping an eye on your further announcements. definitely, a super interesting topic.\n\n", "name": "", "is_accepted": false }, { "text": "\n> [orbitlens](https://galactictalk.org/d/2440/27) i wonder if the system you employed can be adopted for the governance decisions like \"do we need the on-chain anonymous transactions? yes/no\".\n> \n> \n\n\n\"yes/no\" is possible because it is still a grade set, with two options. \"yes/undecided/no\" is possible too and is probably a better option. it is a few commits away as the engine is ready for it, but i still have to figure out the ux.\n\n\nto achieve some sort of governance, we'll also need a trustless way to filters voters - that is, something that lives on the ledger. that's the missing component right now. hopefully, on-chain photon will be rebooted & fill that gap. we really need that thing if we want to bootstrap community-scale daos.\n\n", "name": "", "is_accepted": false }, { "text": "release 1.0.0-beta.6\n--------------------\n\n\n\n> embeddable widgets & public network support\n> \n> \n\n\ni've finally implemented something i've been working on since a while: \n\nembeddable micro-frontends. from now on, you can obtain widgets by iframing any cosmic.vote page. you can see what it looks like [here](https://codepen.io/cosmic-plus/full/nwxmevw).\n\n\ncosmic.vote is meant to be an additional tool in the stellar community toolbox. embeddable micro-frontends means that you can bring features the application offers into your own websites. this time, i intend to push the concept as far as *making every and each feature accessible this way*.\n\n\nother than that, cosmic.vote is now available on public network, and you'll find the first third-party-less poll to ever happen on stellar [right here](https://cosmic.vote/?tab=results&txhash=0582a51ba2d6f0dcdca5cffa4dc262787a834a9524c9b37e028987ab46bad3d7&network=public). make sure to be part of it. 😉\n\n\n### added\n\n\n* meta: provide embeddable micro-frontends. any cosmic.vote view can now be \n\n embedded into third-party websites by using an iframe pointing to its address. \n\n when embedded, cosmic.vote only displays the desired tab content, not the full interface. ([example](https://codepen.io/cosmic-plus/full/nwxmevw))\n* ui: add public network support (all).\n\n\n### changed\n\n\n* meta: ensure url<->content consistency (all).\n* ui: make \"listing\" setting a yes/no question (new poll). − thanks [@orbitlens](https://galactictalk.org/u/orbitlens)\n* ui: improve hints (new poll). − thanks [@orbitlens](https://galactictalk.org/u/orbitlens)\n* ui: rename the \"indifferent\" grade into \"undecided\". (all)\n\n\n### fixed\n\n\n* logic: fix votes streaming on contract switching (results).\n* logic: create accounts using the minimum required balance (new poll).\n* ui: fix polls list auto-update (browse).\n* ui: fix table scrolling on mobile (browse).\n* ui: fix inconsistent consensus confirmation (vote).\n\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2440/29) the link to the public poll is broken. should be `&network=public` in the end.\n\n", "name": "", "is_accepted": false }, { "text": "[orbitlens](https://galactictalk.org/d/2440/30)\n\n\nunfortunately, that's a bug related to the version update - it happens only once but i can't do anything about it − the link is right.\n\n", "name": "", "is_accepted": false }, { "text": "release 1.0.0-beta.7\n--------------------\n\n\n\n> timebound contracts & ux polishing\n> \n> \n\n\neach page can now easily be shared across social media or as embeds. embeds now offers a minimal interface that is similar to most polling system for the web. ([demo here](https://codepen.io/cosmic-plus/full/nwxmevw))\n\n\nbesides bugfixes, ux polishing & small improvements, this week's release comes with timebound contracts, which let you define a closing time for majority judgment polls. this is one of the requirements for running contests.\n\n\nfinally, the app will now keep track of your votes (locally) to help you review & edit them. unfortunately, i couldn't finish the interface in time for this release, but we're a couple of bugfixes away. 🙂\n\n\n### added\n\n\n* documentation: add an image to exemplify vote counting. (results)\n* style: outline majority grade (results).\n* ui: add timebound contracts (new, results).\n* ui: enforce form requirements (new).\n* ui: add a share button (all).\n\n\n### changed\n\n\n* ui: don't display <aside> explanations in embeds. (all)\n* ui: improve \"open since x\" time precision. now supports seconds/minutes/hours/days/months/years. (results)\n* ui: hide advanced settings (new).\n* ui: make title mandatory (new).\n\n\n### fixed\n\n\n* meta: fix missing favicon.\n* ui: fix \"open since nan\" bug (results). this happened after creating a new poll.\n* ui: make sure last candidate is not skipped by error (new).\n* ui: fix view poll inbox link (browse). (regression introduced with 1.0.0-beta.6)\n\n\n", "name": "", "is_accepted": false }, { "text": "release 1.0.0-beta.8~9\n----------------------\n\n\n\n> social preview, vote editing & voters filtering\n> \n> \n\n\ni wrote a lightest contract reader that can run within cloudflare workers, to generate ricklink previews for social media:\n\n\n[![](https://i.ibb.co/yqlwq1x/cosmic-vote-preview.png)](https://cosmic.vote/?tab=vote&txhash=a58e960ee8aab2bf5bdbb4fcb0b9d16d2faf24744c0f8ff92086252d3f6e60db&network=public)\n\n\ni wrote the interface for vote editing - which was already possible, but now you'll have the app remembering your pubkey & figuring out which one was your ballot - letting you edit it if needed.\n\n\ni also added voters filtering based on held asset, amount & duration. this makes it possible to build a voters' list by creating trustlines, and to shape subgroups by playing on asset amounts. sometimes, a little feature can go a long way, and soon enough the smell of a daos starts floating around 🙂\n\n\nfinally, i posted a poll that showcases these new features, on the public net: \n\n[which strategy to send stellar to the moon](https://cosmic.vote/?tab=vote&txhash=a58e960ee8aab2bf5bdbb4fcb0b9d16d2faf24744c0f8ff92086252d3f6e60db&network=public). that's the first decentralized community poll to ever happen on stellar, so make sure that you leave your footprint in there 🙂\n\n\n### added\n\n\n* api: add support for custom pollsinbox.\n* documentation: link the article about majority judgment. ([available here](https://medium.com/cosmic-plus/cosmic-vote-1-introducing-majority-judgment-84a250380695?source=collection_home---4------0-----------------------))\n* meta: add support for richlink preview.\n* ui: add vote editing.\n* ui: display the poll conditions (vote).\n* ui: add \"no vote editing\" option (new, vote).\n* ui: add filtering voters by a held asset.\n\n\n### changed\n\n\n* api: set the title max length to 56 characters.\n* meta: keep images in the browser cache. this optimizes the loading delay.\n* style: polish form hints (new).\n* style: improve readability on mobile.\n* ui: tell that closing time is in local time (new).\n* ui: display since how long a poll is closed (results).\n* ui: automatically close side-frame (vote, new). this detects when the transaction has been submitted from another device using qrcode, and trigger the next ux step accordingly.\n* ui: set default polls inbox to `list*cosmic.vote` (browse). so far, the app was using the equivalent pubkey since federated addresses were not supported.\n* ui: set 'stellar public' as the default network.\n* ui: show expiration instead of the number of votes (browse).\n\n\n### fixed\n\n\n* api: fix wrong network when updating from first releases. (thanks [@orbitlens](https://galactictalk.org/u/orbitlens))\n* style: fix \"advanced settings\" chevron (new).\n* style: fix the display of long candidate names.\n* ui: hide the voting button until the contract is loaded (vote).\n* ui: prevent adblock blocking of the share button.\n* ui: prevent polls that have a past maxtime (new).\n* ui: prevent votes once the poll is closed (vote). *note:* votes posted after contract maxtime don't count anyway, this is simply a convenience ux feature.\n\n\n", "name": "", "is_accepted": false } ]
5115338c4f1f4b36f4655bcc947fd930
image: ![header image](https://xlet.io/assets/img/header.png) **title:** xlet **summary:** open stellar hardware wallet **category:** applications, tools & infrastructure **goals:** bringing cheap and full featured hardware wallets to everyone through easy to use software that can be installed on cheap, readily available devices **description:** i realized there is a big gap in the stellar wallet experience. users have the choice between expensive and hard to find hardware wallets, or cheaper nfc cards that don't allow users to externally validate transactions before signing them. i searched high and low, experimenting with many devices before settling on the esp32 microprocessor. there are many cheap devices available such as the ttgo and m5stack products (many of which are available with screens for us$10 - us$30), and the processor has built-in bluetooth le as well as flash encryption, secure boot and a hardware random number generator that is perfect for stellar key generation. all that was missing is the software, and that is what i have been building. i have already spent a significant amount of time on the project and made a great deal of progress, as you can see in the demo video showcasing the ui and communication capabilities. i decided to make the software open source so everyone can use it, and it is designed to adapt to other architectures than esp32 so that it can scale out to even more devices in the future. my ultimate dream is for a manufacturer to use the software to build physical wallets so that consumers could walk into a retailer and buy a cheap wallet off the shelf for under us$20, perhaps even starting off with a built-in airdrop of us$20 worth of xlm to essentially make it free. i feel the ability to buy a truly secure hardware wallet for such a low price will be a huge benefit to stellar over other crypto assets, as well as for making it accessible to the public in general. the project includes building the actual wallet software (in c++), as well as a companion wallet app for ios/android (in c# with xamarin) and i have created a demo website that shows how you can even interact with the wallet from your pc over bluetooth le. the basic framework is there, i just need to finish building out the signing and security featureset. i'm hoping to get support from scf to allow me to spend more time working on the project and accelerate getting it into the world. with the solid software base i have built so far, i will be able to add support for smartwatches/smartbands built on the esp32 platform (see the xlet.io site for some example pictures) and i have plans to eventually support screenless hardware security keys for use with servers. **links:** <https://xlet.io> [github](https://github.com/mattpearce/xlet) [youtube trailer](https://www.youtube.com/watch?v=rjlhequow7k) **tags:** hardware, wallet, secure, bluetooth
xlet - open stellar hardware wallet
galactictalk.org
2020.29
[ { "text": "i'll be looking for people who already have esp32 based devices to help out with testing so let me know if you're interested 😃\n\n ", "name": "", "is_accepted": false }, { "text": "[mattp](https://galactictalk.org/d/2411/1) as you can see from the interface, the wallet only supports xlm. are you planning to add storage / transfer support and other stellar assets?\n\n", "name": "", "is_accepted": false }, { "text": "[scopuly](https://galactictalk.org/d/2411/3) thanks so much for the question! yes, at the moment i am only building xlm support but i am designing the code in such a way that support for other cryptos could be added later on if needed. there are some stellar projects that combine xlm with erc20 tokens in order to implement smart contracts, so ethereum would be a natural next step - but for now the focus is on building the best possible stellar experience.\n\n", "name": "", "is_accepted": false }, { "text": "this is good. suggestion - do add an interface to let users add stellar tokens. my ledger does not have that and that forces me to use something like stellarterm to browse my stellar tokens. \n\ngood luck.\n\n ", "name": "", "is_accepted": false }, { "text": "[titor](https://galactictalk.org/d/2411/5) i appreciate the suggestion, i'll look into that and see if i can come up with some ui ideas for how to handle it in a straightforward way. i want to keep it approachable for people who aren't used to crypto but at the same time provide the features that power users need.\n\n", "name": "", "is_accepted": false } ]
1eec5f0b5266f7c31df3067d05b4408a
as scf round 4 winners collect their prizes and go on to make their entries even more wonderful and profitable we begin round 5. there are a few new and adjusted rules i’d like to highlight before releasing your creative and entrepreneurial spirits into the wild. **first in the “submission template” section be sure and leave the “before colon:” stuff and only replace the content to the right of the colon. we use the "prefix titles:" as regex triggers for the [voting site](https://stellarcommunity.fund/).** next, three “participant eligibility” updates: 1. you may only win scf a maximum of once per year (block of 4 rounds). while you can resubmit ‘losing’ proposals, individuals who submit new proposals after winning 1 scf challenge within the current year will be disqualified from consideration for the award. 2. ‘losing’ proposals may only re-enter twice per year, pending there are improvements to the entry. 3. the scf is a fund for work completed or proven not for a promise of future work. for applications and content there must be significant work and effort put into proving the viability and commitment to your project and for events you should have a history demonstrating your ability and qualification to carry out your intentions. **rules 1 and 2 are pretty significant changes so those new rules will go into effect now but will not be enforced until round 6.** that’s it for updates! on to the rest of the details! round schedule -------------- may 25th – submissions open june 22nd – submissions close, discussion opens july 20th – nominations open july 27th – nominations close, 1 week pause aug 3rd – final vote begins aug 10th – final vote finishes, round ends, 1 week pause --- the stellar community fund (scf) gives the broader stellar community the opportunity to vote on which long term projects they believe deserve sdf seed funding. any project built on stellar can apply and participate! every 3 months, 8 participants have the chance to split a pool of 3 million lumens.
 timeline -------- each scf round consists of 4 phases covering 13 weeks.  ### the submission phase during this phase, participants submit their proposals to [galactictalk.org](https://galactictalk.org/). late submissions will not be eligible for the current round. the submission phase lasts 4 weeks. ### the discussion phase the discussion phase is the participation and learning phase. discussion and community participation is highly encouraged. it is fundamentally the most important part of the stellar community fund. not only does it give participants valuable feedback, it allows them to position themselves as advocates for their proposal and overall growth of the ecosystem.
 this round is strictly dedicated to the sharing and discussion of project proposals within the community. community members should take this time to ask participants questions about their proposals, submit suggestions, and engage with any active elements. the discussion phase lasts 4 weeks.  ### the nomination phase this is the first round of voting. stellar community members will vote for their favorite project proposals. each voter must select 3 entries but can vote on up to 8 different entries. the top 8 nominees move to the final vote phase.
 nomination takes place over 2 weeks. there will be a one week pause after the nomination phase before the final vote begins. ### the final vote in this phase, the top 8 proposals enter a final vote which guides the lumen distribution. voters choose their 3 favorite proposals from the top 8. 
 lumens are distributed based on the final percentage of the votes. for example, if a winning project receives 20% of the vote, they will receive 20% of the awarded lumens (600,000xlm of the 3m xlm pool).
 the final vote phase lasts 1 week and there will be a one week gap before each new round begins.
 proposal submission ------------------- all proposals should be submitted as a new thread to galactictalk.org under the scf | [proposals category](https://galactictalk.org/t/proposals). proposals should be classified by category. are you building an application, writing a resource, or planning an event? choose appropriately. below are category descriptions. ### applications, tools & infrastructure this is the ‘developer’ category. if your project is built on stellar—or is a tool that supports developing on stellar—your proposal belongs here. all submissions to this category must have a functional / live element. for example: if you are creating a library, you must have reviewable code; if you are building an application, people must be able to demo it. ### resources & content this is the category for people who want to flex their creative muscles. do you have a great series of tutorials, a podcast, or website that can help educate people about stellar? if so, your proposal fits within this category.  this category requires drafts or rough cuts of your proposed content. people must be able to read and review your submitted samples. ### events & programs this is the category for broader stellar outreach. are you planning on hosting a workshop or community-driven program? if so, this is the category for you. this category requires that you share a plan for execution. depending on the scope of this effort you will need to provide items such as proposed venues, curriculum, timelines, guests, costs, etc. submission template ------------------- image: 1200x630 image preview of your project or brand title: the name of your project. (please adhere to the stellar [brand policy](https://www.stellar.org/brand-policy)) summary: a simple sentence summarizing the why of your project category: choose one the three categories (applications, tools & infrastructure | resources & content | events & programs) goals: what your project plans to accomplish broken down by objectives description: the description should answer questions like “what does your project enable users to do?” “why is your project valuable for stellar?” and “how does your project use stellar?” it should also cover what platforms the project supports (ex; windows, chrome, etc.) and relevant documentation. this section should be very detailed. links: links to your application, code repository, supporting materials, and/or home site. if you are submitting a proposal for content pieces (like walkthroughs), please provide links to the content pieces. tags: tag your project. examples can be “sdk, javascript, party, game, book, event, etc.”  
 voting ------ voting will take place in two rounds. a nomination round and an award round.  voting takes place on [stellarcommunity.fund](https://stellarcommunity.fund). submission eligibility ---------------------- applicable law and our internal policies restrict us from providing lumen awards for certain categories of projects. if your project is in one of our prohibited categories, it will not be eligible for an award. if you are unsure whether your project falls inside these one or more of these categories, please contact us and verify!
 regardless of the community’s voting outcome, a submission will be ineligible to receive an award if it:
 * violates any applicable laws, regulations, orders, judgments, decrees, guidance, or other legal authority; * involves, facilitates, supports, or promotes unlawful activities, including, but not limited to: fraud, drug trafficking, purchases on dark web markets, theft, illegal arms trafficking, human trafficking, abduction, extortion, embezzlement, corruption of public officials, acts of terrorism or terrorist financing, and intellectual property violations; * involves, facilitates, or promotes gambling; * is offensive, deceptive, harmful, or libelous; * is or contains sexually obscene content; * is discriminatory or abusive toward any individual or group; * contains, transmit, or instills malware or phishing pages or devices; or * infringes or violates any proprietary right of any party, including patent, trademark, trade secret, copyright, right of privacy, right of publicity, or other rights. participant eligibility ----------------------- sdf intends to comply with all applicable laws and regulations in the distribution of lumen awards. all winners will be required to submit kyc documentation and fill out an applicable tax form. failure to submit appropriate documentation or failure to pass our kyc checks will result in your rewards being forfeit. these tax forms will be used for accounting and tax reporting purposes so please be aware of your country’s applicable laws regarding tax-filing. lumens will be reported at closing price on the day they are sent to you.
 you must be at 18 years of age to participate in scf, unless your country's minimum age for receiving a cryptocurrency award is older, in which case you must meet the minimum age applicable in your jurisdiction. 
 you may only win scf a maximum of once per year (block of 4 rounds). while you can resubmit ‘losing’ proposals, individuals who submit new proposals after winning 1 scf challenge within the current year will be disqualified from consideration for the award. 
 winning entries will not be eligible for future rounds. ‘losing’ proposals may re-enter twice per year, pending there are improvements to the entry.
 current [ecosystem infrastructure grant](https://www.stellar.org/foundation/mandate#ecosystem-support) recipients are not eligible to participate in scf. the scf is a fund for work completed or proven not for a promise of future work. for applications and content there must be significant work and effort put into proving the viability and commitment to your project and for events you should have a history demonstrating your ability and qualification to carry out your intentions. 
 participants who create fake accounts to bypass the above rules will be disqualified. this is regardless of whether or not they win a round. participants who leverage sockpuppet accounts to submit proposals, friends to submit proposals, or any similar ‘act of bad faith’ will be disqualified. sdf has the right to withhold awards from people who have abused these eligibility requirements.
 unfortunately, if you’re a national or resident of cuba, iran, north korea, syria, sudan, or the region of crimea, we are unable to send you any lumens. additionally, we may also be unable to send lumens to winners in countries where local law makes it unlawful for residents to hold or receive cryptocurrencies. please note, we currently cannot send lumens to residents of the us states of alabama, new york, georgia, connecticut, new mexico, hawaii, vermont, and washington.
 all participants will retain the intellectual property associated with their submission.
 engaging in vote manipulation will cause your proposal to be disqualified. this includes botspam, fake/sock puppet accounts, and brigading.
 manipulation and disqualification --------------------------------- what we're looking for is organic, genuine interest and discussion around your project. foster and encourage that. be kind and supportive to your fellow competitors.  don’t ask for votes.  instead, ask others to simply take a look for themselves.
 feel free to share a direct link to your galactictalk post with your friends or users, but don’t mass-message strangers, or attempt to "game" the system in any way.  people should vote for entries they genuinely like or find interesting, not because they were peer pressured or incentivized to do so. 
 while this is a community fund, the sdf retains the right to disqualify entries and timeout participants without warning or explanation in order to maintain a fair and profitable experience for everyone.  if we find you’re acting in bad faith, we may bar you from participating in future rounds as well.
 if you suspect foul play and would like sdf to investigate, or if you have suggestions for future rounds of the community fund, [please fill out this form](https://stellarform.typeform.com/to/wiaj2s). do not use the scf keybase team to critique the program or call out participants. stellar community fund keybase team ----------------------------------- [keybase.io/team/stellar.communityfund](https://keybase.io/team/stellar.communityfund)
🌟 stellar community fund – round 5 🏆️
galactictalk.org
2020.40
[ { "text": "hey tyler, i have an honest question... am i allowed to participate?\n\n", "name": "", "is_accepted": false }, { "text": "[torkus](https://galactictalk.org/d/2380/4) don't expect sympathy from a person with inferiority complex. this guy grew in the bush as farmer, now that he is in charge for the first time of his life of management positions, he can show off his hate. hate for winner, young enthusiast. this guy will be retired or dead when the crypto adoption will come, how somebody likethat can care about stellar evolution. lastly his open racism, by manipulation and dissimulation of information.\n\n\n", "name": "", "is_accepted": false }, { "text": "i don't think so, tyler is a nice guy i've been following since day one, i admire his drive to build cool stuff like graphql and stellarauth because i am like him, i like to build stuff too. of course he now has to bow before his corporate overlords and play all the diplomacy, politics, politeness cards in his answers but still i want to know however sweetened words he will use if i can compete or not.\n\n\nstill waiting...\n\n", "name": "", "is_accepted": false }, { "text": "[justin](https://galactictalk.org/d/2380/5) why all these personal attacks and racism accusations? do you have any proofs to support your \"open racism\" claims? have you been mistreated based on ethnic identity? \n\nit's not clear, your message looks like a raw dump of thoughts. make a separate post, provide detailed evidence (links to online discussions, personal message, or whatever). and i'll be the first to support you if this really happened. but until then, i'll keep removing your posts containing baseless accusations intended to inflame inter-ethnic discord.\n\n", "name": "", "is_accepted": false }, { "text": "[@tyvdh](https://galactictalk.org/u/tyvdh) at least , respond those that still see some good in you. you just inspire me derek chauvin, when you get to basic function, you can openly express your negativity. for a bushmen you have built great thing, but diversity and evolution is not for you. stellar use to inspire me brilliant entrepreneur like jed. i just hope that the sdf and jed are not in the complicity of your racist act because those people stellar have been built for are not all like you. we will make sure that your racist act gets known and justice will be done. stellar will get bigger and we will remember the early racist of this community. but seeing your age and your social background, i am not shocked. growing up around cow , you can't have no idea about diversity in the world. your long way to blockchain haven't make you a better person.\n\n", "name": "", "is_accepted": false }, { "text": "[orbitlens](https://galactictalk.org/d/2380/8)\n\n\n[@orbitlens](https://galactictalk.org/u/orbitlens) don't place yourself in a place to judge the opinions . you are not twitter.\n\n ", "name": "", "is_accepted": false }, { "text": "[justin](https://galactictalk.org/d/2380/10) i have mod privileges on this site, and i will use them without a second thought to enforce adherence to the policy of this community site and [code of conduct](https://www.stellar.org/community/code-of-conduct).\n\n\nstop spamming and provide context for your accusations. otherwise, your account will be blocked.\n\n", "name": "", "is_accepted": false }, { "text": "[@tyvdh](https://galactictalk.org/u/tyvdh) at least , respond those that still see some good in you. you just inspire me derek chauvin, when you get to basic function, you can openly express your negativity. for a bushmen you have built great thing, but diversity and evolution is not for you. stellar use to inspire me brilliant entrepreneur like jed. i just hope that the sdf and jed are not in the complicity of your racist act because those people stellar have been built for are not all like you. we will make sure that your racist act gets known and justice will be done. stellar will get bigger and we will remember the early racist of this community. but seeing your age and your social background, i am not shocked. growing up around cow , you can't have no idea about diversity in the world. your long way to blockchain haven't make you a better person.\n\n\n", "name": "", "is_accepted": false }, { "text": "\nplease block me. my ghost will come back .\n\n", "name": "", "is_accepted": false }, { "text": "i have deleted a bunch of posts here, because they were off topic and not related to the scf.\n\n\ni wanted to split the topic and preserve the conversation, but it was full of name calling and baseless accusations that i didn't see a lot of value in preserving it. i want again to ask everyone to check out stellar's [code of conduct](https://www.stellar.org/community/code-of-conduct) before posting here.\n\n\non another note, galactictalk takes accusations of racism extremely serious. in such cases you can message me directly ([[email protected]](mailto:[email protected])), if you don't feel comfortable posting publicly on the forum about it. but using this important issue to troll, spam and attack other community members will not be tolerated.\n\n", "name": "", "is_accepted": false }, { "text": "[torkus](https://galactictalk.org/d/2380/4) absolutely! as long as you abide by the rules i'd love to see you back at it this round!\n\n", "name": "", "is_accepted": false }, { "text": "hi [tyvdh](https://galactictalk.org/d/2380/16) \n\ncongratulations on joining the stellar team and your new scf position! \n\ntell me, can scopuly (<https://scopuly.com/>) take part in this scf round?\n\n", "name": "", "is_accepted": false }, { "text": "[scopuly](https://galactictalk.org/d/2380/17) follow the rules and you're more than welcome to participate!\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/2380/18) fine. \n\nwe plan to roll out a powerful trading interface for sdex in the near future. we hope the design, functionality and practicality will surprise and please the stellar community.\n\n", "name": "", "is_accepted": false }, { "text": "good day house. how can i submit my own proposal? i mean link or email to send it to. \n\nurgent response would be highly appreciated. \n\nthanks!\n\n", "name": "", "is_accepted": false }, { "text": "[onwadan](https://galactictalk.org/d/2380/20)\n\n\nit's all in the op.\n\n\ncreate a new post here, copy the submission template and fill it out, tag the post w/ stellar community fund + proposals.\n\n", "name": "", "is_accepted": false }, { "text": "hi we wants find some investor for our project \n\ndoes is it the right chat room? \n\n<https://www.ebisbank.com>\n\n\n", "name": "", "is_accepted": false }, { "text": "dear admin,\n\n\ni just posted a proposal titled tokenization of cattle livestock's loan to stellar based tokens but there was an error in the image link. sorry if i could be helped to fix it?\n\n\nthank you very much\n\n\n", "name": "", "is_accepted": false }, { "text": "i am also having problems loading an image. is there another way i can submit or send it in?\n\n", "name": "", "is_accepted": false }, { "text": "![](https://ai-fi.net/static/img/invertedcloud.png)\n\n\n### title:\n\n\nai-fi.net - for our rights to act free\n\n\n### summary:\n\n\nai-fi.net is to lead the way in bringing about self-sufficiency for individuals to live their cyber life privately and securely and to transition away from the prevailing surveillance capitalism we know today.\n\n\n### category:\n\n\napplications, tools & infrastructure\n\n\n### goals:\n\n\n![](https://ai-fi.net/static/img/free.png)\n\n\n### description:\n\n\n\"there is no cloud, just other people's computers\", runs the joke. unfortunately, those \"other people's computers\" in the core of the internet have been monopolized by a very limited few, many of whom operate the cloak and dagger \"free services\". the only way to break up this blockade is to take matters into our own hands and mobilize our computers and already-paid-for bandwidth for private interconnectivities. the re-architected and blockchain-reinforced cloud infrastructure of ai-fi.net aims to **invert** the internet and allows us to connect with one another without resorting to the traditional approach that almost always involves certain service providers as go-betweens.\n\n\njoin us in taking the first step to defund the prevailing surveillance capitalism by withholding our private data from facebook, google, whatsapp, telegram, wechat, etc. without sacrificing much of our social interactions we have grown accustomed to. taking advantage of the latest advances in universal p2p connectivity, end-to-end encryption (for both online and offline sessions), personal/home clouds, file sync over multiple personal devices, ai-fi helps individuals take advantage of this rewired and inverted internet running over this ai-fi infrastructure. the newly envisioned internet will be rid of surveillance, individual-centric, privacy-preserving, and above all, serving us netizens honestly. it is made possible by the latest blockchain technology, digital asset management, anonymous micropayment channels, rapidly sliding hardware cost, and the concerted effort by the open source community.\n\n\nwe share the same vision as all the dapps, except that we have blazed a trail though the wilderness so that your privacy and identity will be fully protected without compromising the public/immutable nature of the blockchain. we realize that to rewire and to invert the internet for \"the rest of us\" takes monumental effort. we'd like to claim we have successfully demonstrated its feasibility with the release of ai-fi version 2.0, which is already highly usable, with secureemail (end-to-end encrypted, even when the recipient is offline, without demanding our users to adopt a new email address), homecloud (self-owned servers in your private home, but accessible worldwide), photo upload/sync (without subscribing and paying icloud or other clouds). our release 2.0 is a demo release with the foundational supports for building a open pseudonymous service platform so users may run their social networking on their own servers and devices privately. it is architected for ease of integrating with other open sources such as matrix.org, mattermost, home assistant for iot (which is partially integrated as smarthome), etc, in order to reduce our reliance on facebook, whatsapp, wechat, and the like.\n\n\nsince ai-fi services are completely account-less, purposely designed not to track its users or collect any personal metadata, it needs to be a fee-based pay-as-you-go service. we'd like to consider us as an \"over the counter\", cash only services. we adopt the stellar network for its low transaction fees and ease of interfaces through horizon apis. the stellar fee requirement also helps prevent bad actors from spamming the ai-fi network or launching ddos attack. the public ai-fi root registry for digital asset management takes full advantage of the stellar event-stream mechanism for real-time asset auditing and protection. the ai-fi homecloud will host the stellar core at least on the watcher level. it may be scaled up to participate as full validator as well. in future release, ai-fi users will be one-click away from having an integrated hardware wallet (tbd) and stellar core. we'd like to consider the ai-fi architecture as an enabler for a large number of stellar core nodes, which enhance the security and robustness of any blockchain-based services.\n\n\nour payment scheme is yet to be fully developed. although we will rely on stellar network for supporting various aspects of our current payment design, the goal of becoming a completely \"over the counter\" cash-like anonymous micropayment platform is a tall order. even after rid of the account contraption, the \"follow the money\" attack will be a challenge without additional facilities. we are currently prototyping an experimental payment scheme building on multiple cryptocurrencies and crypto exchanges. there are a bit more details in our roadmap about this effort (with link in the next section).\n\n\nas the primary goal of ai-fi project is to reinvent the internet, it naturally sets its sights on all internet platforms. in release 2.0, our mobile client runs on newer apple ios (iphones and ipad) platforms, our desktop extension on windows 10, and ai-fi homecloud on any linux server or cloud ipc. the support for android mobile phones should be made available shortly. check out our roadmap to see other platforms and major functions slated for follow-on releases.\n\n\nalthough our web site is not as refined as it should be, it reflects our vision and is a call to action aimed at those of us who care about the future of internet. upon the advent of the iot revolution, the protection of our privacy and the need for a new decentralized internet infrastructure takes on a renewed urgency. join our effort and share our vision to reinvent the internet as we know it.\n\n\n### links:\n\n\n[ai-fi.net](https://ai-fi.net)\n\n\n[have fun with our bug bounty program and earn 10k xlms](https://ai-fi.net/bounty.html): ai-fi has several novel designs that make the privacy protection \"provably strong\" and highly user friendly, which is absolutely necessary if we want to reach popular adoption. we have lifted the krypton token feature out of the package and turned it into a bounty program to evangelize its power and reliability.\n\n\n[github](https://github.com/mingtai101/krypton-web): this is a place holder for now. only the code related to the bug bounty has been published. we will add the rest of the system incrementally.\n\n\n[roadmap](https://ai-fi.net/roadmap.html)\n\n\n[ai-fi vision](https://ai-fi.net/index.html#visions2)\n\n\ntags: “proposals” 
\n\n", "name": "", "is_accepted": false }, { "text": "it appears that my proposal might have entered into the wrong spot. is that because that i don't have the \"proposal\" tag? can someone help me out? thanks beforehand.\n\n", "name": "", "is_accepted": false }, { "text": "#proposals aaaa\n\n", "name": "", "is_accepted": false }, { "text": "#proposals aaaa\n\n", "name": "", "is_accepted": false }, { "text": "hi my proposal is stuck on submit page. anyway it still can be submitted?\n\n", "name": "", "is_accepted": false }, { "text": "i recommend updating the times on the deadlines in order to prevent people from different timezones getting confused. although submitting at the last second is considered late in my books, it's hard to know when that is when it's not officially stated by universal time, especially for projects that aren't fully completed and want to make a proper first impression.\n\n\ni had updated my template for the last 5 hours just to see it was prevented from posting 10 minutes ago. i guess someone decided to pull the plug at 11:42 pm my time. no worries, i'll wait for the next one i guess.\n\n", "name": "", "is_accepted": false }, { "text": "[pantheon52](https://galactictalk.org/d/2380/30) as you noticed, the submissions are closed for this round. i just re-enabled them, so you can post. but i believe the official cut off time is utc and i'm not sure your submission will be considered. i will let [@tyvdh](https://galactictalk.org/u/tyvdh) decide if it still qualifies.\n\n\na small tip for future participants. if you submit earlier you stick way more out. the community has time reading your proposal, trying it out and giving feedback. in the last 2 days before the deadline there are so many submissions it's easy to miss out on some cool projects. submitting early is really worth it.\n\n", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2380/31) thank you, i didn't even notice your reply. i will let [@tyvdh](https://galactictalk.org/u/tyvdh) have the last call. thank you again [@bkolobara](https://galactictalk.org/u/bkolobara)\n\n\nprotip if it was utc, that would mean multiple projects posted past the deadline. i recommend putting june 22nd 12:00am utc to be officially explicit.\n\n ", "name": "", "is_accepted": false }, { "text": "[bkolobara](https://galactictalk.org/d/2380/31) respectfully, it is news to me that the cut off time is utc. nowhere in the instruction as posted here mentioned utc. obviously we all want to post our proposal as early as possible, but the things don't always turn our ways. \n\nwell, is there an official list of accepted proposals? i'd like to have a confirmation on whether or not ours is in the running. appreciated.\n\n", "name": "", "is_accepted": false }, { "text": "[@bryonsato](https://galactictalk.org/u/bryonsato) seems like your project is listed. link to the proposals page - <https://galactictalk.org/t/proposals>\n\n", "name": "", "is_accepted": false }, { "text": "[answerly](https://galactictalk.org/d/2380/34) thanks for the reply. is it said anywhere that the proposals page is the \"official\" listing in the sense it is formally accepted for discussion/consideration? are we applicants going to receive a receipt of some sort? it is all a bit uncertain here.\n\n", "name": "", "is_accepted": false }, { "text": "will there still be an opportunity to apply for participation?\n\n", "name": "", "is_accepted": false }, { "text": "we're reviewing and i'll have an official announcement soon closing out the submission phase and opening the discussion phase.\n\n", "name": "", "is_accepted": false }, { "text": "[scopuly](https://galactictalk.org/d/2380/36) not for this round. submissions closed earlier this morning.\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/2380/38) i take it \"earlier this morning\" is in reference to utc time? 😅\n\n ", "name": "", "is_accepted": false }, { "text": "the scf round 5 submission phase has closed. what a wild last 24 hours! so many procrastinators 😉\n\n\nall told if my count is correct we've got 33 entries this round. amazing! not all entries are created equal however and like last round we've gone through and combed out a few which didn't quite measure up to the standards of the scf. these entries in no particular order are:\n\n\n**stellarspace** \n\ninsufficient effort around functionality already natively available on stellarterm.\n\n\n**changing lives with cryptocurrency such as xlm** \n\nnot an entry. for charity or donation efforts explore services like [lumenthropy](https://lumenthropy.com).\n\n\n**stellar community forum** \n\n[already won](https://galactictalk.org/d/1921-stellar-community-forum) the scf.\n\n\n**ztrust** \n\nlittle substantive work done. no live element.\n\n\n**ceviche** \n\nno evidence of substantive work done. no live element.\n\n\n**hide my secret** \n\nnot utilizing stellar in any meaningful way.\n\n\n**tokenbox** \n\nthis project is interesting and it was a tough call but ultimately the entry just isn't ready. \n\nlive aspect isn't working, entry template wasn't followed well and it's not clear how or if stellar has been implemented in any meaningful way.\n\n\n**ai-fi.net** \n\ndoesn't seem to have stellar implemented in any meaningful way. this grant is not for funding bug bounties. once they can implement and deliver on some of their other intentions it's possible this entry would be reconsidered for future rounds.\n\n\n**russian speaking stellar community** \n\nas much as we want to support content and documentation entries in the scf it's clear this entry is not and has no intention of competing within the rules or spirit of the scf. this is a fund for work completed or proven not for a promise of future work.\n\n\n**starforex** \n\nentrant has made it clear they have no intention of competing within the rules or spirit of the scf.\n\n\n\n\n---\n\n\naside from these disqualifications there are several projects right on the edge of a disqualification which will be disqualified before the nomination vote if they don't significantly improve their entries in the coming weeks. i see a strong effort but the delivery is weak. we need the community review process to be as seamless and straight forward as possible. leaving too much clicking and exploring outside galactictalk is a big ask when there are this many entries. i will be reaching out to these projects individually with my critique.\n\n\nif you aren't in either of these lists now is not the time to rest. keep improving and marketing your efforts. make it easy to understand and \"get\" your idea. we've got a pretty sizeable pool of entries this round and the results will largely be determined by your ability to quickly sell your idea to a busy but educated community. be very detailed and direct, explore new avenues like audio and video, don't keep it simple, keep it stellar.\n\n\nfor all the reviewers and voters out there remember to keep it civil and please use [this form](https://stellarform.typeform.com/to/wiaj2s) to report on any issues, complaints or ideas. we are listening and your feedback is and has been incredibly important in shaping the outcome and progress of the stellar community fund.\n\n\n❤️ you all, onwards to the discussion phase!\n\n", "name": "", "is_accepted": false }, { "text": "we at ai-fi.net are not sure if this is the right place for the discussion. let me know if this is not and then we will find a different venue for it.\n\n\nwe have been working on the project for about two years now. it is designed to be a privacy-centric network (internet) infrastructure such that users may construct their own social networks (most are inherently private), cloud storage or servers, personal vpn (for smart homes), and all other internet functions that need not be hosted in public services (facebook, wechat, homekit, etc.). we'd like to do this without being part of the surveillance capitalism and without demanding the account registration from our users, much like the bitcoin/stellar distributed ledger architecture. with this goal in mind, we pretty much need to fund it on fees and the service charges on our users are going to be on a per transaction basis which is naturally \"micro\" in nature. cryptocurrencies are the only technology that will make this micropayment service scheme possible.\n\n\nwe think collecting cryptocurrencies as service charges is fairly straightforward. however, collecting them in an anonymous way is quite an another thing. we have put off this effort to the next release with some [decent ideas on how that can be done](https://ai-fi.net/roadmap.html). however, for the current release, we have built [a system based on stellar network for managing the digital assets](https://ai-fi.net/index.html#dasset). we have put together a mechanism such that some digital assets may be published over [ai-fi root registry](https://ai-fi.net/help/rootregistry.html), which is protected and tied to stellar network accounts that may be publicly accessed but privately audited and protected, much like that for [certificate transparency](https://www.certificate-transparency.org/), but self-managed by individual asset owners. we have implemented this protection mechanism for users' email addresses by taking advantage of the stellar network blockchain without re-inventing the wheel like the certificate transparency architecture. this stellar based root registry supports the encryption of our end-to-end secureemail and protects our users' public identity from theft.\n\n\nour secureemail takes advantage of the stellar network to protect one of our most important cyber identities and deliver the end-to-end encryption to emails, the most popular software in the world, without requiring an ai-fi service account and/or the need to start out with a new mailbox/provider. our contribution to the dapp industry is the implementation of the secureemail that cleanly separates the public aspects (e.g email address and pre-key store) from the private (email content and metadata). this has not been possible without the help of the stellar/blockchain technologies. we want to make sure if this is the thing you deemed as \"doesn't seem to have stellar implemented in any meaningful way\".\n\n\nby the way, to support the various privacy-centric utilities and services without demanding an account (trackable), we need to re-invent just about everything. the [\"krypton token\"](https://ai-fi.net/help/anonymouscloudstorage.html) is one of them, which is a bit counter-intuitive and needs our users to pay more attention to it. this is why we concocted our \"bug bounty\" program to put money where our mouth is. the bounty happens to be in stellar lumens, which is probably something you want to encourage. this absolutely does not imply we will use the grant solely to fund the bounty program.\n\n\nall in all, we think we have utilized stellar in a very significant way, delivered our secureemail to protect the world's most popular software regardless of the email providers, integrated with a powerful file sync utility (nextcloud), and accomplished all these with anonymity totally in line with the spirit of dapp without demanding an account sign-up. hidden in this 2.0 release are those foundational supports critical to all other upper-layer applications, not immediately obvious to ordinary user. there are many exciting features to come in future releases, especially the anonymous micropayment design slated in 3.0 that we are very proud of.\n\n\nplease don't construe this reply as a demand for reconsideration. nevertheless, we would appreciate if you can answer some of the points raised here. we are doing some great stuff, but its broad scope makes it difficult for us to evangelize it. stellar as a payment/exchange infrastructure will be a great help to our cause and we want to be part of it.\n\n\nwe have constructed an infrastructure which is difficult to encapsulate in our short proposal to your scf program. we do have a website containing write-ups and documents that attempt to explain us more. we also have released a mobile client ai-fi central and a sync cloud ai-fi homecloud client in the apple app store, a home server runnable on raspberry pi 4, and an ai-fi desktop extension on windows platforms. we are doing over a large number of internet applications, based on an over-the-counter, pay-as-you-go payment scheme and many foundational supports underneath. the best way to understand us is to try out our applications first hand to see for yourself whether or not we are the real thing and or we have stellar implemented in a meaningful way.\n\n\nthanks for your time.\n\n", "name": "", "is_accepted": false }, { "text": "[bryonsato](https://galactictalk.org/d/2380/41)\n\n\nthank you for your detailed and professional response. i personally appreciate being able to discuss these issues openly and respectfully.\n\n\nthe stellar community fund is just that, a fund for the community to take part in distributing lumens. this leads to some powerful and incredible opportunities while also presenting some unique challenges and obstacles. one of the obvious challenges with a community vote is that it's the community evaluating. a busy community. a community with other full time jobs and responsibilities. a community that cares but has other things to do. aside from a time constraint you also have an expertise constraint and while many of the community are engineers, business developers and entrepreneurs, many of them are not, yet we should all have a say and voice in allocating an informed opinion towards the projects we care the most about.\n\n\nin order to best serve the voters we disqualify projects which aren't obviously relevant to the mission of the scf. too much cognitive and time load for any one entry is grounds for a disqualification. there are other factors too like unacknowledged legal liability, deep unforeseen technical challenges, just being off topic, etc. all of which we carefully consider but we intentionally *don't* give extremely deep or overly careful consideration for each individual project simply because voters won't either. if we don't \"get it\" quickly, neither will the voters, ultimately siphoning valuable time and mental energy away from other entries. this was the case with your project. what little stellar there seemed to be was buried in so much other stuff which, while interesting, we were unable to grasp quickly.\n\n\nthe simple answer is you shouldn't support something you don't understand and for the scf if it cannot be understood quickly and simply it's going to have a hard time competing and must result in a disqualification in order to refine the entry pool.\n\n\nevery round we iterate, improve and come back stronger and better able to serve the purpose of the scf. a big goal of mine for the future is to allow for better support of complex and technically mature entries like yours to compete and receive the support and feedback they need to win while still providing a space for experimentation and exploration of new ideas.\n\n\nall told if i were to sum it up the scf is made up of three ingredients. stellar, community and fund. eligible entries must have stellar as the key ingredient, carefully explained and marketed to the community. then and only then will entries be eligible to participate for a chance at the funds.\n\n\npersonally i'm intrigued by your project and i sincerely hope you'll join us in a future round with a refined and focused entry. i apologize for the confusion and disappointment and it is my hope to continuously improve the scf to be able to avoid these kinds of conversations in the future. your professionalism and tact is greatly appreciated and i hope you choose to stick around.\n\n\n\n\n---\n\n\nfwiw if you're able to achieve a sort of anonymous micro transactions service like [coil](https://coil.com/), packaged as a standalone service, that would be a great fit for the scf in my estimation.\n\n\nyou can also always reach me on keybase `tyvdh` or via email `[email protected]`. happy to chat.\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/2380/42) \n\nthanks for your detailed response. now i understand where you are coming from and what scf is all about. in the future rounds we will submit more focused project that hopefully is more consistent with scf's objective and the review process of this community. you will definitely see more of us. \n\nthe coil service is certainly interesting. thank you for the link. \n\nyour consideration and patience are greatly appreciated.\n\n", "name": "", "is_accepted": false }, { "text": "how to take part in event?\n\n", "name": "", "is_accepted": false }, { "text": "[johns](https://galactictalk.org/d/2380/44) there is no way in this round. we also failed to apply. so we are waiting for the next round in + -3 months\n\n", "name": "", "is_accepted": false }, { "text": "we’ve made it to the nominations phase! over the next week we’ll be narrowing down the [21 projects](https://galactictalk.org/t/proposals) to a final 8. voting will happen over on our [stellarcommunity.fund](https://stellarcommunity.fund/) voting application. the voting process is pretty simple but please ensure you read and follow the following carefully.\n\n\nfor a refresher on all the rules please see our [community fund page](https://www.stellar.org/community-fund).\n\n\nvoting:\n=======\n\n\nvoting will be held on [stellarcommunity.fund](https://stellarcommunity.fund/) \n\nbefore voting, please take some time to [read through the proposals](https://galactictalk.org/t/proposals) carefully. **proposal authors have put a lot of work into their projects, so do them a favor and spend some time reading what they’ve put out there!**\n\n\n**prerequisites**: you will need a [keybase](https://keybase.io/) account to vote.\n\n\nto vote:\n--------\n\n\n* click the \"sign in to vote\" button on the top right of [stellarcommunity.fund](https://stellarcommunity.fund/)\n* enter your keybase username\n* click \"sign in with keybase\"\n* you will receive a message from [scfbot](https://keybase.io/scfbot). click the confirmation link to complete the sign-in process. (you can verify that it’s the real scf bot by checking the dns proof)\n* once you’re logged in, you can start to select your nominee picks. you must vote for 3, but can vote for up-to 8 proposals. (remember to read through proposals!)\n* once you’ve chosen your nominees, click the submit button. once you’ve cast your vote, there’s no going back! (your picks will stick around in memory, so you can mark them and come back later before a final submission.)\n\n\nimportant bits:\n---------------\n\n\nonly one voting account per person is allowed. we’ll be checking to make sure no one is manipulating the vote. play fair and everything will be great! bad actors will be removed from participating in the vote and future rounds.\n\n\nthat’s all there is to it! [start digging into those proposals](https://galactictalk.org/t/proposals)!\n\n", "name": "", "is_accepted": false }, { "text": "just a heads up the projects who are voted into the final round this week will need to make a video to showcase their project before the start of the final round. (august 3rd) this will be a video that voters will watch and (partly) base their decision on. now may be a good time to get started on that, whether or not you make it to the final round you won’t want to leave this till last minute.

\n\n\nhere are the guidelines:\n\n\n* your video should not be longer than 3 minutes.\n* the format should be 1920x1080px.\n* more recommended output settings can be found [here](https://www.videocaddy.com/blog/best-output-settings-for-vimeo/).\n* it’s up to you which platform you record your video on ([loom.com](https://www.loom.com/) works well and is free) and how you want to fill your three minutes. here are the videos from the previous round: <https://www.youtube.com/playlist?list=plmr3tp_7-7gj7hgdkyva53zdeumlb9ony>\n* create a thumbnail for your project (branding/logo of your project), also 1920x1080px.\n\n\ngood luck and don't forget to [vote in our nominations round](https://stellarcommunity.fund/) if you haven't yet!\n\n", "name": "", "is_accepted": false }, { "text": "stellar community fund round 5 nominations have closed! the votes have been counted and the final 8 projects have risen to the surface! kolten beatbox please...\n\n\nin alphabetical order:\n\n\n* [free voting platform](https://galactictalk.org/d/2420-free-voting-platform)\n* [the interstellar platform](https://galactictalk.org/d/2412-the-interstellar-platform)\n* [lettuce: stellar-based point of sale (pos) application](https://galactictalk.org/d/2417-lettuce-stellar-based-point-of-sale-pos-application)\n* [opensolar: securitized project financing powered by stellar](https://galactictalk.org/d/2432-opensolar-securitized-project-financing-powered-by-stellar)\n* [rigel - monetize links for payments and donations in seconds](https://galactictalk.org/d/2439-rigel-monetize-links-for-payments-and-donations-in-seconds)\n* [stellarmint - stellar tokens made easier](https://galactictalk.org/d/2383-stellarmint-stellar-tokens-made-easier)\n* [stellar update - dedicated blog about everything stellar](https://galactictalk.org/d/2390-stellar-update-dedicated-blog-about-everything-stellar)\n* [trybal.network - promoting stellar ecosystem adoption](https://galactictalk.org/d/2418-trybalnetwork-promoting-stellar-ecosystem-adoption)\n\n\nbig claps to all the finalists, i'm just so proud of all of you! ❤️\n\n\ndon't relax yet though, there's still one week left for final voting and it starts next monday august 3rd. this last voting round will split the 3,000,000 xlm prize pool by vote percentage to each project.\n\n\nfor information on how voting works and where it takes place just scroll up a bit.\n\n\nfor those who didn’t quite make the cut this round, don’t give up, continue to improve your projects or perhaps shift gears entirely. there’s a whole world of innovation and excitement out there just waiting to be explored and built. take what you’ve learned and leverage that to vault you into greater success. you’ve got this! 👏\n\n", "name": "", "is_accepted": false }, { "text": "scf round 5 nominations postmortem\n==================================\n\n\nfirst off i want to thank everyone for their participation and care around the scf. this is truly a community fund and i want to always foster that core value. we are also a fund however and giving away any money but especially a lot of money comes with a pretty large set of challenges. regardless of how you feel right now though the sdf and this community has done a good job with the sbc and scf. could we do better? absolutely. never be duped though into thinking we don’t care, aren’t intentional or are just throwing money away carelessly. that is not true and never has been. good projects have come out of the sbc and scf. tools and apps we use every day, people you know, talk to and appreciate. for some, like me, it has actually changed our lives entirely. the community funding programs the sdf has put on have been phenomenal. it’s incredibly difficult to give money away well in a public or decentralized way but our efforts have not gone unrewarded. please don’t lose the forest for the few trees which didn’t make it. every scf has gotten better and scf 2.0 will continue those improvements in a more concerted and exponential way. i’m here for you if you all will continue to be there for each other and this fund. keep showing up, voicing your opinions respectfully and pushing this program into better and better places. we are a growing and maturing community, remember this is not just about you and your project, it’s bigger than that.\n\n\nwith that said, in the spirit of transparency i would like to take this opportunity to pull back the curtain on the numbers and criteria of the scf nomination voting process. let’s kick things off with a graph:\n\n\n![](http://tyler.link/bzlwjs+)\n\n\nthe first thing to notice is that nomination participation in this round has nearly tripled compared to previous rounds. that’s a huge jump. the next obvious thing to notice is that vote removal is on a very aggressive exponential curve upwards while the leftover valid votes have remained relatively static. one thing this chart doesn’t show is that our criteria for removing votes has always stayed the same throughout all of these rounds. up until now we’ve chosen not to publish those criteria as that would make circumventing those criteria much easier. i’ve had a hunch for a while that a day would come where our criteria and the verification process we’ve been using would crack and we’d see the exponential curve we saw this round. this is why scf 2.0 is so essential for the survival of the scf. a panel of judges is necessary for the nomination phase and better voting mechanics is essential to help counteract, not just catch bad actors. suffice it to say we’re not going to be using keybase verification anymore, it’s entirely insufficient for distinguishing between malicious and new voters. it’s relatively high friction for participation yet that friction doesn’t assist us much in helping to distinguish between legitimate and illegitimate voters.\n\n\nour criteria for voter disqualification for every round has been:\n\n\n* duplicate ips with sufficient account profile evidence to suggest they could be the same person\n* all accounts created on or after the round announcement date with zero proofs, no bio info, no additional devices and which only voted for 3 projects\n* all accounts created during the nomination week\n\n\nthese criteria all have significant flaws but they are right for keybase as a verification method. duplicate ips could just be a roommate voting for his buddies app which would be fine, but they could also be indicative of a click farm or the same fellow once on his laptop and again on his phone or tablet. i'm fine with the roommates, but click farms and multiple devices from the same person is cheating. the issue is i can't know for certain, and that's the rub, you can rarely know for certain, you can only give it your best guess and lean on the most fair side. disqualifying all accounts created on or after the round announcement date is hardly fair but if the account in question has added zero social proofs, no bio info, only has the single device and only voted for 3 projects, that’s a very strong signal they could have been paid, coerced or manipulated into voting for a specific project. removing all new keybase accounts during the nomination week doesn’t actually remove many votes, but it's pretty obvious if you're only now creating an account, you don't care about anything but voting for a single project which a) means two of your votes are meaningless throw away votes or b) could mean you've been paid, coerced or manipulated into voting for that specific project.\n\n\nthe final and primary glaring issue with these criteria is they get weaker and weaker over time as sock puppet accounts get older, add fake proofs, bios and devices. accounts that were caught in previous rounds get harder and harder to detect appropriately and soon most votes won’t mean anything as the majority will have to be removed in order to ensure fairness leaving only a select handful of original “verified” accounts. aka a panel of judges. what scf 2.0 will do for the nomination phase is simply formalizing the inevitable. i want to include more voters, i want to lower the barrier to entry. i want friends and family who don’t care about keybase and adding proofs and all this mumbo jumbo to be able to participate, and they will, just not in the nomination phase. once the right projects are in, actually distributing the prize pool becomes much more straightforward and traditionally has seen orders of magnitude less vote removal anyway.\n\n\nso in scf 2.0 between a panel of judges for the nomination phase and sms voter verification we’ll be in a much better place to ensure the most fair and still inclusive community fund.\n\n\ni feel for those projects caught in the crossfire of this imperfect process but there is no perfect open online voting system. what we have has actually worked incredibly well, the top 8 actually usually doesn’t shift much beyond a few projects. i’m also not accusing anyone of manipulation and neither should you. oftentimes we just fall victim to a bigger process which attempts to make the best of a tough situation. if it smells like a bot, acts like a bot and looks like a bot that doesn’t mean it is but we have no choice but to treat it like it is.\n\n\nfinally if any entrant would like to know their own numbers in this round pm me and i’d be happy to share. i’m choosing not to publish those numbers here publicly in order to protect those who were more heavily affected by our cuts. i will say the before and after only changed the position of 3 projects and that is very common when we make our cuts, very little changes for the majority.\n\n\nthank you once again for your care and participation. i want to do right by this community. i’m confident together we can do it if we respect one another and push for bigger goals than just our own fistful of cash.\n\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/2380/49) \n\nhello, how could i get my results?\n\n", "name": "", "is_accepted": false }, { "text": "[juanlara](https://galactictalk.org/d/2380/50) message me on keybase `tyvdh`\n\n", "name": "", "is_accepted": false }, { "text": "[final voting is open](https://stellarcommunity.fund/)\n------------------------------------------------------\n\n\ngo cast your final votes for your top 3 picks now!\n\n", "name": "", "is_accepted": false }, { "text": "great project, to the moon\n\n\n", "name": "", "is_accepted": false }, { "text": "scf round 5 finals postmortem\n=============================\n\n\nwell, the final results for scf #5 have been sorted out and let me begin with a big long yikers. remember in the nominations round how we had a record turnout of 671 voters all of whom we removed except for 295? well in this final round we not only matched, but smashed that record. 4,137 unique keybase accounts showed up last week to vote in our final round. **four thousand one hundred and thirty seven “voters”!** let’s put that in a graph compared to previous rounds. red is removed votes and blue is votes which were left.\n\n\n![](http://tyler.link/aq1efh+)\n\n\nthis round was extremely difficult to review. we’ve never had thousands of votes to look through, the current system isn’t designed for that kind of volume. we spent the last few days and nights combing through hundreds of votes and making lots of tough calls and we’ve arrived at the following criteria for disqualifications:\n\n\n1. all accounts with duplicate ips (679 accounts removed)\n2. all accounts created since nomination voting started (320 accounts removed)\n3. all accounts with zero proofs (2,662 accounts removed)\n4. all accounts with inactive or bounty hunter proofs (291)\n5. all accounts which voted for trybal.network not caught by above criteria (106)\n\n\nthe first thing to address, regretfully, is that after much deliberation we’ve made the difficult decision to disqualify trybal.network from the final round. before any adjustments they stood far ahead of the pack which always signals a deeper look.\n\n\n![](http://tyler.link/2eg4o4+)\n\n\nas we began our standard disqualifications it became clear that a majority of the disqualifications had a common project in their queue, trybal.network. ip dups, new accounts, and zero proofs were all painting a pretty unflattering picture. once we started a deep dive into hundreds of twitter, github, and reddit proofs, strong evidence became hard proof. trybal.network has attracted a very specific crowd of folks the scf wants nothing to do with; bounty hunters. once we had removed everything short of a straight disqualification trybal.network was dead last in the standings, and not barely, it was clear they shouldn’t even be in the final round. we’ve always reserved the right to take dramatic action like this and today we’re doing it. trybal.network has been disqualified from the scf #5 finals. there’s no need or value in speculating as to the blame or specific source of the manipulation, the focus should rather be on the fact that their community of supporters are not legitimate or beneficial to the scf or stellar community and were twisting the outcome in an unfair and unhelpful manner.\n\n\nwe don’t take executive actions like this lightly and we always prefer decentralization and openness. however, in its current design, with manipulation of this magnitude, the scf isn’t well suited towards a fair decentralized distribution of funds, it’s weighted by design in favor of bad actors when they choose to take advantage. to date they really haven’t, but now, obviously, they have.\n\n\nfor me this leaves one final glaring question, how did trybal.network affect the initial nominations? who got left behind? how would the final results have changed? the answer is not much, there’s a world of difference between 671 votes and 4,137. most of the manipulation in the nomination round came from other projects which rightfully didn’t make it. however, if we were to apply the same disqualification logic from this final round to the nominations round: trybal.network and rigel would both be out. taking their place would have been xlet and cosmic.vote. these three projects, rigel, xlet and cosmic.vote were casualties caught in an unfair fight. there wasn’t overwhelming support for or against these projects however rigel got in when perhaps it shouldn’t have and xlet and cosmic.vote got left out when perhaps they shouldn’t have.\n\n\nin light of this we’ve made the decision to leave rigel in the final round but to adjust their position to more closely reflect legitimate community sentiment from the nomination round and to promote both xlet and cosmic.vote into the finals and assign them votes which also reflect community sentiment from the nomination round. so without further ado, after all the hours of review, conversations and counsel, our final results for scf #5 are:\n\n\n![](http://tyler.link/jperjz+)\n\n\n* **lettuce: stellar-based point of sale (pos) application** | 18.1818% | 545,454 xlm\n* **stellarmint - stellar tokens made easier** | 15.8103% | 474,308 xlm\n* **free voting platform** | 15.0198% | 450,592 xlm\n* **opensolar: securitized project financing powered by stellar** | 13.8340% | 415,019 xlm\n* **the interstellar platform** | 13.8340% | 415,019 xlm\n* **stellar update - dedicated blog about everything stellar** | 7.5099% | 225,296 xlm\n* **xlet - open stellar hardware wallet** | 5.9289% | 177,865 xlm\n* **cosmic.vote ~ working toward decentralized organizations** | 5.5336% | 166,007 xlm\n* **rigel - monetize links for payments and donations in seconds** | 4.3478% | 130,434 xlm\n\n\nthis round was tough and far from ideal and for that we are sorry. ultimately this is why scf 2.0 is so important, this is why we’ve been collecting and distilling years of feedback into a new structure for stellar community funding, it’s why we’re so excited for the future and why we’re so sure it’s time for a big change™. so stay tuned, scf 2.0 is on it’s way for a timely arrival on august 31st.\n\n\nfor those who won the last scf 1.0, congratulations! you deserve it. we’ll be in touch about next steps for collecting on your prizes and taking your projects to the next level. i love and appreciate all of you and all you’ve done for the stellar community. we’ve had some great rounds, but our best rounds are yet to come.\n\n", "name": "", "is_accepted": false }, { "text": "[tyvdh](https://galactictalk.org/d/2380/54) quite an interesting ending)) scf - excellent roast !!! \n\nwhat is the strength in, brother? the power is in the money. no brother, strength is in truth. \n\nall winners - with a victory! all those who did not make it to the final - strength for new achievements. it was a hot round))\n\n", "name": "", "is_accepted": false }, { "text": "thank you tyler for ensuring a fair voting process and thanks to the community for voting us to fourth place. we'll work hard to ensure opensolar is a great success\n\n", "name": "", "is_accepted": false }, { "text": "such a shame you had to wait for the finals before disqualifying trybal with such flimsy excuse. there is no single project in the entire crypto space devoid of 'bounty hunters'. this is a grave injustice to the trybal project and you should bow your heads in shame.\n\n", "name": "", "is_accepted": false }, { "text": "congratulations to everyone, amazing to see how close every submission was, great quality! echo thanks to tyler and the scf for the great job of keeping due and fair process and maintaining everyone communicated. proud to be part of the community and looking forward to the next steps!\n\n ", "name": "", "is_accepted": false }, { "text": "kudos to all the winners. it's a shame that a few bad apples can have such a negative impact on legitimate projects backed by hard working teams to make a difference. but this is why the vetting process is important and the scf should be commended for taking the necessary actions to detect this and handle the situation (improving the process throughout!)\n\n\nlooking forward to participating in the scf in a future round... hopefully the next one if all goes according to plan!\n\n", "name": "", "is_accepted": false }, { "text": "will scf round 6 submission be starting soon? the schedule above lists august 10th and the end of round 5 with one week pause. we're planning on participating in this upcoming round. thanks!\n\n", "name": "", "is_accepted": false } ]
6a3e0ca3b5232bc24d4a1dbbc74753ff
**project title**: stellarguard **summary**: security for your stellar account why spend $100 or more on a hardware wallet just so you can feel safe with your xlm, when you can use the built-in multisignature capabilities of the stellar network with stellarguard for free? stellarguard works with your existing stellar wallet to keep your account safe by adding 2 factor auth to any wallet. even if your secret key is compromised your coins will stay. lobstr, stellarterm, stellarport, interstellar.exchange, stargazer and even the stellar account viewer: stellarguard protect them all. **goals**: here are stellarguard's 2019 objectives: 1. rate limiting: * basic rules engine to let the user decide how much xlm they can send per time period (working on this now) * enable a mode for "automatic" co-signing for transactions that pass these rules. this would enable trade bots and/or anchors. * enhanced rules engine rules: additional assets, destinations, lockup rules, etc... 2. additional security features: * u2f option for multi-factor authentication (physical keys) * scam/address blacklist + scoring how "risky" a transaction is based on previous transactions, destinations, etc. 3. enhanced privacy features: * new co-signer per account you add instead of sharing the same one. * transaction source tumbler/obfuscation (this will take some research): imagine you send a transaction to someone but you don't want them to know how many xlm you have -- the goal of this feature is to send it through enough hops/mix with other operations that the source account is not able to easily be recovered 4. site redesign + ui changes * new logo now that the stellar rocketship is gone * cleaning up the ux of many pain points, especially the process where you add multiple signers to your account * color scheme/branding changes * better emails -- right now everything is plain text and boring * transaction details page revamp: this page is confusing and incomplete -- some transaction types are just json dumps **links**: website: <https://stellarguard.me> github (all stellarguard code is open source and mit licensed): <https://github.com/stellarguard> blog: <https://medium.com/@stellarguard> **anything else:** as the winner of the last sbc, some of you may be asking "why do you need more money?", and that's definitely a fair question to ask! here's how i've used the winnings from the last sbc: 1. due to us tax laws, i ended up having to pay taxes on the usd value of what the lumens were worth when they were awarded. i unfortunately did not sell enough to cover my anticipated tax amount immediately when they were awarded. because of the way the award was taxed (1099, with all the self-employment taxes that entails), it ended up being 35% of the present value. because the value of the lumens had dropped so far from when it was awarded (worth around 50% of what it was), the taxes ended up consuming almost 80% of the entire award. i ended up paying that completely out of pocket because i just couldn't face it to sell at the low point to cover the taxes... hopefully it comes back. lesson learned, i'll survive and move on. 2. *warning: personal background time -- this should not influence your decision about whether to choose this project, it should win or lose on its own merits; this explanation is just to add color to my decision about how i spent some of the winnings.* i have a full time job and am a father of 3 with a 1 year old child with special needs. all of the time i've spent on this project has been nights or weekends after i've put the kids to sleep. it was not uncommon for me to work on stellarguard from 11pm-3am and then wake up at 6:30am to get the kids ready for school. all of this started to take a toll on me, and i realized i was getting less and less done as i got more and more exhausted. because of that, i decided to look for a freelancer to help me accelerate one of the objectives i had (namely the throttling/spend limits and bot support feature). i found someone from a hacker news thread and exchanged emails and discussed the features and the terms: we agreed on $6000, 1/3 up-front, 1/3 on the first milestone (working demo), and 1/3 when the code was delivered. everything seemed great and i sent out a tweet a few months ago saying that the feature was "coming soon" after the first demo. unfortunately, after i sent the 2/3 of the payment, the developer completely stopped communicating with me. i cannot get ahold of him by phone or email and because he's based in another country i don't think it's worth it to pursue it legally. so now i'm back to building that feature from scratch by myself. again lesson learned (i'm learning a lot, hah). 3. although i have not done this yet, i'd like to hire a part-time support person to answer emails and support requests. this surprisingly (to me at least, maybe not to others) takes up at least 20% of the time that i'm working on stellarguard. a lot of the emails are something like "can you help me add multisig to my account" or "i tried to configure my account manually and messed up the weights, is there anything you can do?". i'd like to hire someone to answer those so i can focus on feature development/coding. --- additionally, i'd like to continue working on my "anatomy of a scam" series about spotting stellar scams and how to avoid them. possibly this will morph into a global "watchlist" of bad actors, websites, and addresses. --- thanks for supporting stellarguard, let's all work together to keep eachother safe out there!
stellarguard - security for your stellar account
galactictalk.org
2020.29
[ { "text": "you will always have my support paul!\n\n", "name": "", "is_accepted": false }, { "text": "you can never have enough security when it comes to ones money. \n\nyour background story about building everything in the late hours of the night sounds very familiar to me. seeing all the trouble you went through with the previous prize money and your freelancer disappearing i really hope you manage to get funding through the scf this time again. \n\nbest of luck to you!\n\n", "name": "", "is_accepted": false }, { "text": "i've launched a beta version of the logo + color scheme refresh to <https://test.stellarguard.me>. i'd really appreciate it any feedback about it!\n\n\nadditionally i updated <https://github.com/stellarguard/multisig-utils> and <https://github.com/stellarguard/stellar-uri> with versions of the js sdk that support protocol 11 (as well as updating stellarguard to supporting protocol 11).\n\n\nregarding the throttling engine: i'm trying out the new stellar go sdk and seeing how the throttling engine would work as a go microservice. so far so good!\n\n\nthanks for your support so far everyone.\n\n", "name": "", "is_accepted": false }, { "text": "[stellarguard](https://galactictalk.org/d/1916/4)\n\n\nthe logo + text colour looks a bit off, in combination with the background. too bright perhaps, i don't have the words.. compare that to the peachy colour of the cta button, which is much more in harmony with the background.\n\n\nlogo itself is absolutely brilliant!\n\n", "name": "", "is_accepted": false }, { "text": "agree with dzham, the logo color should be toned down a bit. about the logo, i would make a small change to where the shield connects to the new lines to keep it in line with the new stellar logo:\n\n\n![](https://i.imgur.com/bvhoztb.png)\n\n", "name": "", "is_accepted": false }, { "text": "thanks for the feedback! i'll definitely be adjusting the colors based on yours and other's feedback -- probably to something slightly and closer to the old blue.\n\n", "name": "", "is_accepted": false }, { "text": "and it's live! <https://stellarguard.me>.\n\n\n[citystates](https://galactictalk.org/d/1916/6) there was an iteration of the logo where it did have that small curve, but it looked odd because of the different angle of approach of the shield, so we decided to just go with the flat one.\n\n", "name": "", "is_accepted": false }, { "text": "1) if you received a lumen award in the past, you should have taken immediate steps to safeguard it from a downswing in the lumen price to ensure you could complete the project for which the funds were granted. not doing so was kind of irresponsible. 2) if you already have received funds, perhaps you should give other projects a chance. 3) i don't have connections on this board as i'm a new member, so i doubt i'll be able to get votes, but my project has merit, i don't have a family, children, or a day job. i can work 100 hours a week on my project and i can deliver. i would have loved to of received funding from the sbc. that's a once in a lifetime opportunity. i wouldn't have squandered it and then asked for more money while giving all kinds of excuses. i would have delivered great results and i would have worked incredibly hard.\n\n ", "name": "", "is_accepted": false }, { "text": "\n> additionally, i'd like to continue working on my \"anatomy of a scam\" series about spotting stellar scams and how to avoid them.\n> \n> \n> \n> \n> unfortunately, after i sent the 2/3 of the payment, the developer completely stopped communicating with me. i cannot get ahold of him by phone or email and because he's based in another country i don't think it's worth it to pursue it legally.\n> \n> \n\n\ni'm sorry to be critical, but you don't seem to be that great at spotting scams? if you are awarded more lumens, how do we know you can stellarguard them?\n\n\ni do appreciate you being open and honest about what went wrong though. everybody makes mistakes. but to be awarded another fund, it's important to ask tough questions. how do we know issues with family, children, and your day job won't get in the way? the more you use the funds to hire people instead of doing the work yourself, the greater the risk that something goes wrong again. other developers and people you hire will only care about their paycheck and not whether the project succeeds.\n\n ", "name": "", "is_accepted": false }, { "text": "[@deylandra](https://galactictalk.org/u/deylandra)\n\n\ni agree that those considerations don't really have their place in a project entry.\n\n\nhowever, this is not just stellarguard: most project that participated in last sbc suffered from the low amount of allocated fund and the market crash that happened right after we received those funds. after that we had 10 month without any contest. it has been hard for independent devs, and most of them left the boat.\n\n\ni've not seen anything like the lifetime opportunity you mentioned. working on the economy 3.0 is the more precarious & unrewarding activity i ever had. that's why i definitely understand paul's complain.\n\n\nnow if you think you're that great, maybe you'll do better. it will take more than words, though.\n\n", "name": "", "is_accepted": false }, { "text": "[@deylandra](https://galactictalk.org/u/deylandra)\n\n\n\n> [misterticot](https://galactictalk.org/d/1916/11) now if you think you're that great, maybe you'll do better. it will take more than words, though.\n> \n> \n\n\nthe thing to remember about the sbc is that there were no stipulations about what the funds could be used for. they were awards for existing work.\n\n\nthe fact that some people decided to stick around, and use that money for funding further advancement of their projects only speaks in their favour. there are certainly enough people who took the cash, and just disappeared.\n\n\n", "name": "", "is_accepted": false }, { "text": "\n> the thing to remember about the sbc is that there were no stipulations about what the funds could be used for. they were awards for existing work.\n> \n> \n\n\ni didn't realize that. i can certainly imagine the horror of many ico projects last year when ethereum crashed 90% and they no longer had the funds to complete the ico work. that surely must have disrupted a great many projects.\n\n ", "name": "", "is_accepted": false }, { "text": "[deylandra](https://galactictalk.org/d/1916/13)\n\n\nuhm, i feel like you're misinterpreting things intentionally, twisting my words.\n\n\nicos specifically asked for funding for future developments. sbc projects didn't. huge difference.\n\n", "name": "", "is_accepted": false }, { "text": "[deylandra](https://galactictalk.org/d/1916/10) fair question. i thought i did my due diligence, drew up a contract, and hired someone who claimed loads of prior experience, but i should have looked more into his references. this is just one of those things where i have to take my lumps and learn from it, and as odd as it may seem i'm actually glad it didn't happen with a larger contract. i'll be much more skeptical in the future when hiring.\n\n\ni guess there can be two schools of thought about what the scf should be used for: do you award people as a thank you for doing good work and that's that, or do you award them so that they can hire people and accelerate development? it's probably a mixture of the two but as a voter i'd definitely lean more towards the latter.\n\n\nas for my family and work, it definitely gets in the way! i'll readily admit that i wish i had more time to work on this. i do hope to get to a point - through scf, other developer programs, or an eventual paid version of stellarguard with pro features, where i can end up working full time on it and hire others to do it.\n\n\nfor the anatomy a scam, check out the first one if you haven't already: <https://medium.com/@stellarguard/anatomy-of-a-stellar-scam-the-hard-fork-4ac89808fd38>, it's less about pointing out a single scam and more about giving you a framework for detecting them yourself. it's that sort of thing i'd like to continue with -- teach a man to fish... you know how the rest goes.\n\n\ngood luck on your submission. i hope if it's a project that you're passionate about that you continue to work on it even if you don't win. stellarguard did not win the first time i submitted it and i continued to work on it -- don't let it discourage you!\n\n", "name": "", "is_accepted": false }, { "text": "i actually can feel your pain and relate. a programmer i'm building language software with had an unexpected pregnancy and he did not have insurance for it (they thought he was infertile due to past medical issues.)\n\n\ni was supposed to pay him $10,000 upon completion of the work, well, his wife goes into labor and he's like i really need the money now, i have to pay the hospital bills.\n\n\nwell i've known him for over 10 years, always did great work, so i pay.\n\n\nfor six months i don't hear from him. turns out he's having major financial problems supporting his wife and three kids, all of his time is spent getting jobs for immediate income to just barely get by, so he hasn't had time to complete the work for me cause it's not going to bring in immediate cash since he already got paid.\n\n\nafter six months, he completes the work, but it's a rush job and it doesn't function right, so i'm having to redo most of the work myself. he has complained a lot about getting stiffed from people he does jobs for over the years, i think it's very common on both ends.\n\n\nin the future i will use escrow. that way the programmer/contractor doesn't have to worry about getting stiffed and vice versus.\n\n ", "name": "", "is_accepted": false }, { "text": "agree on smaller tasks or milestones, 50% upfront, 50% after completion of task/milestone. works for me. i often pay weekly or bi-weekly. but i think this is not the place to discuss this, maybe a mod can move or remove our off-topic posts 🙂\n\n", "name": "", "is_accepted": false }, { "text": "okay, okay, how about calling it wifeguard and then doing an *anatomy of how to keep your wife from spending your money.*\n\n\ni would totally vote for that.\n\n ", "name": "", "is_accepted": false }, { "text": "we definitely went off the rails with this conversation! can we please just talk about rampart... err... stellarguard?\n\n", "name": "", "is_accepted": false }, { "text": "i've been thinking more about throttling implementation, and i believe it makes sense just to add the rules engine right from the beginning.\n\n\nsome simple rules to start are exactly those throttling rules mentioned before, but it opens the door to much bigger things.\n\n\nexamples:\n\n\nallow sending at most 100 xlm per day, or reject the transaction. \n\nwhen sending xlm to <g....> do not require approval. \n\nfor any payments over 1000xlm, require 2 factor auth token.\n\n\nthe devil is in the details and i want to take some time to get this right, but i wanted to start getting some feedback about what sort of rules you might actually use, given this capability. especially interested in how stellar bot users might use this.\n\n", "name": "", "is_accepted": false }, { "text": "[stellarguard](https://galactictalk.org/d/1916/20)\n\n\ni've started implementing automated signing policies more times than i can remember. it always the communication layer needed that stops me from doing something more general purpose.\n\n\nso, yeah, i'm a huge fan of that kind of functionality. i'm not sure if the general ecosystem is ready for it though, we might still be very early.\n\n", "name": "", "is_accepted": false }, { "text": "would be nice to see cosmiclinks put at use here 😉\n\n", "name": "", "is_accepted": false }, { "text": "[stellarguard](https://galactictalk.org/d/1916/1) we have been following the development of stellarguard for a long time - we accept your offer to work together! as soon as the dust from the competition settles, we will look under the hood and play with your technology and, if possible, it would be cool to apply it in our project [scopuly](https://galactictalk.org/d/1915-scopuly-trading-analysis-platform-for-stellar-network).\n\n", "name": "", "is_accepted": false }, { "text": "[scopuly](https://galactictalk.org/d/1916/23) great to hear! let me know if you have any questions when the time comes.\n\n", "name": "", "is_accepted": false }, { "text": "one side effect of building out a rate limiting/throttling engine is that i'm able to repurpose it for other forms of throttling, not just payments.\n\n\nin fact, tonight i'll be rolling out the first of those changes: you will not be able to use the same two factor authentication code more than once, even if it is still valid for the current 30 seconds.\n\n\nthis is a security measure to protect you from phishing: imagine an attacker sets up a clone of stellarguard.me, called steiiarguard.me (those are capital ii instead of l) and you fall for it and enter your username/password and a two factor authentication code. the attacker may gain access to your account, but if you have your security mode set to \"high\" they will not be able to perform any payments/account settings changes without entering a brand new valid two factor auth code, not the one they just phished from you.\n\n\nthis is just one small security improvement that i've got planned. much more to come!\n\n", "name": "", "is_accepted": false }, { "text": "i've launched the first usage of the throttling engine to throttle sign in attempts (6 per minute) and prevent re-use of 2 factor auth codes.\n\n\nwhile i was waiting for a new redis instance to spin up, i decided to write about a topic that has been in the back of my mind for a while. it's called \"stellar - what's in your wallet\" and it goes into a brief discussion about what functions your wallet actually performs and how it interacts with the stellar network: <https://medium.com/@stellarguard/stellar-whats-in-your-wallet-1b07b8f7123a>\n\n\n", "name": "", "is_accepted": false } ]
d3a0fab7d2f1429d12a18d5d9f6d1646
![stellarterm](https://miro.medium.com/max/6000/1*hvlxmcjk_urdyhbuyrmrjq.png "stellarterm") **project title:** stellarterm - <https://stellarterm.com> **summary:** stellarterm is an advanced web-based open-source trading client for the stellar network. also available as a desktop app. **goals:** * sep-0024 asset deposit/withdraw support * sep-0007 updates ("replace" function support) * ‘new account’ page redesign (onboarding improvements for newly created wallets) * improved trading interface (stats for asset pair, redesigned asset selectors etc.) * asset details page (every asset will have a rich description with its details, stats, charts, sdex price, order book etc) * implement ‘activity’ page (account activity in one place with history) * stellar core 13 support * new header/ top navigation (identicons and and quick profile access) * improvements for signers management (multisig) * view historical offers data for trading pairs * redesign "send" flow (reverse federation, identicons, new interface etc.) * sep-0008 support (regulated assets) * establish a regular release schedule for desktop builds * regular blog posts on medium * pathpayments integration and support * improvements for real-time notifications (introduce new notification types) * continue stellarterm website redesign: multiple ux improvements on multiple pages * ledger nano x support (via bluetooth) * better support for restricted assets (kyc, auth\_required, auth\_revocable) **description:** stellarterm is an open source trading client with local key storage, advanced trading tools, multisig and hardware wallets support. **main features:** * local key storage * open-source software * direct access to sdex, trade xlm and non-xlm asset pairs * advances charts for new users and pros * desktop applications (macos, windows, linux) * modern and simple interface * ledger support * real-time updates/notifications * support of multisig wallets * supports federation addresses (via federation server) * delegated signing support (currently supports payment and change trust operations) * testnet support **links:** web: <https://stellarterm.com/> github: <https://github.com/stellarterm> desktop client: <https://github.com/stellarterm/stellarterm-desktop-client> twitter: <https://twitter.com/stellarterm> medium: <https://medium.com/@stellarterm>
stellarterm - advanced trading client for the stellar network
galactictalk.org
2020.29
[ { "text": "i must say that this entry disappoints me.\n\n\ni've been using stellarterm for two years for checking prices against xlm, and i've been hoping for delegated signing to be implemented for a while. yet, on this matter, stellarterm seems to do everything the wrong way.\n\n\nlogically, stellarterm should use delegated signing so that users can safely validate offers using their wallet - and ultimately get rid of this shameful secret key login. but that's not what's happening.\n\n\nnot only stellarterm isn't using delegated signing, but it offers to handle transaction requests from other services by signing them with the secret key too...\n\n\ni mean come on, that's complete nonsense! the very reason we implemented delegated signing in the first place was to avoid sharing those keys.\n\n\ncrypto golden rule: *never share your private key* − isn't the word *private* meaningful? teaching people to break that principle is preparing the ground for phishing attacks & is the main reason why people get so easily scammed.\n\n\na major component of the stellar ecosystem enters 2020 with a broken security model: that's quite an issue.\n\n\nyet, we can read this [interesting piece of communication](https://medium.com/@stellarterm/stellarterm-overview-start-trading-on-sdex-in-seconds-7a0d54414a50?source=---------2------------------) on medium:\n\n\n\n> that's where stellarterm comes in handy as it features a fast and simple sign in process. just paste your secret key into the field and you are in, no email or password required. establish a trustline, place an order and send funds — everything is just a few clicks away.\n> \n> \n\n\nwow... so that's a feature now? do you realize how easy it is to read the content of the clipboard? i tell you: three lines of code.\n\n\n`just paste your secret key into the field and you are in`: that's about the right thing to say to those people who discovered crypto a few weeks ago, isn't it? oh yes, they're in, that's for sure.\n\n\ncoming from a newcomer, we could have seen it as a convenient mistake. but coming from a veteran wallet provider & influential member of the community...\n\n\ndude, that's off-limits.\n\n", "name": "", "is_accepted": false }, { "text": "[@misterticot](https://galactictalk.org/u/misterticot) hello,\n\n\n\n> i must say that this entry disappoints me. \n> \n> i've been using stellarterm for two years for checking prices against xlm, and i've been hoping for delegated signing to be implemented for a while. yet, on this matter, stellarterm seems to do everything the wrong way.\n> \n> \n\n\nwe appreciate the honest feedback and i understand that using the software for a long time may create a strong emotional connection to it.\n\n\nbut still it is surprising to see this kind of response for the presented roadmap - it's not that revolutionary after all. \n\nour goal is to continue improving stellarterm, one step at a time. and most of our users think we are doing a decent job.\n\n\nwe are always open to hear the ideas for new features for stellarterm, we receive a significant portion of them from users. \n\nthey typically do this through issues on github or just email at [[email protected]](mailto:[email protected]). feel free to suggest new things as they come to mind - no need to wait!\n\n\ni have to say, support for delegated signing has not been on the top of the list. \n\nwe understand that it may be useful for some cases, but there are only so many things we can work on at the same time! \n\nso it might be a while until this fully lands in stellarterm, unfortunately.\n\n\nhowever, we do have something already. stellarterm had the support for ledger for a while, and we are planning to add more hardware wallet integrations soon.\n\n\nwe are proud to be the only non-official product that is being recommended by ledger itself: \n\n<https://shop.ledger.com/pages/supported-crypto-assets> \n\n<https://support.ledger.com/hc/en-us/articles/115003797194-stellar-xlm> \n\n(quite an achievement for a project with a broken security model...)\n\n\nhowever, for most of our users, stellarterm is *the* place where they want to make their trades, payments and sign transactions.\n\n\nto be clear, we believe that more often our users would want to have some of their transaction requests made by external services handled by stellarterm, rather than vice versa. \n\nthat's why we offer to register stellarterm as a handler for sep-0007, and this is completely optional for our users.\n\n\nto address your point about security of pasting private keys on the website:\n\n\n* stellarterm has the secret phrase which protects our users from entering private keys on fake websites.\n* we promote multi-signature as much as we can, and stellarterm has the leading multi-signature support for stellar. with the multi-signature enabled, leaking your master private key will cause only a mild inconvenience, as you'll need to create a new wallet and move your funds there to restore the high security level.\n* stellarterm comes with a desktop version, which is rather popular for our users. it provides an additional level of security, as the code is not downloaded over internet each time.\n\n\nso, i would argue that stellarterm provides *at least* the same level of security as other popular online services which ask for a secret key (stellar account viewer, stellar laboratory, myetherwallet, etc).\n\n\nalso going forward, i would prefer this conversation to be more professional, and tone down on the emotions - i'm hoping for your co-operation on it! our content person was a bit confused to be called dude 🤷‍♀️btw.\n\n\nfinally, not doubting your skill level, but would love to see those 3 lines that read the clipboard content.\n\n\ni'm assuming you mean you can do this in the modern browser environment, without any interaction of the user? \n\nmaybe even while user is doing something entirely different in the system (like working in a ms word)?\n\n\nthat sounds very dangerous, the last time i checked it was not possible: \n\n<https://developers.google.com/web/updates/2018/03/clipboardapi#security_and_permissions> \n\n<https://developer.mozilla.org/en-us/docs/web/api/clipboard/read>\n\n\nso, please - i'm hoping to see you back in this thread. that would be a learning experience for many readers. who knows, we might even have to escalate this to the teams working on the browser security, because it contradicts the official documentation!\n\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/2212/2) that was rude. you proved to be a very intelligent person, so why such a strange insult out a thin air? actively promoting your technical solution (and as we all saw, you are doing this almost every single day through all possible stellar-related media channels) is ok, but demanding something and criticizing another service for not using it... well, it looks weird at best.\n\n\ndelegated signing is important, i'm advocating for it myself. but it all comes to the usability in the end. in the foreseeable future, stellarterm, as well as other dex interfaces, won't use your cosmiclink solution as a primary log-in/signing option for obvious reasons. of course, unless you change the ux completely and address all fundamental problems of your approach.\n\n", "name": "", "is_accepted": false }, { "text": "misterticot-the-emotional, \n\nmisterticot-the-unprofessional, \n\nmisterticot-the-unknowledgeable, \n\n...-the-insulting, \n\n...-the-dirty-marketter, \n\n...-and-his-poor-ux, \n\n...-and-the-wailers.\n\n\nthat's quite a narrative you're building there!\n\n\nyour ability to reverse the situation is undeniable. in any case, i'm not the one who decided, two weeks ago, to market secret sharing as a fancy sign-in method.\n\n\nproperly informing people about how to stay safe is critical to the success of cryptocurrency. when a security-educated developer finds profitable to communicate against that goal − because that's what the whole story is about − that's a serious issue.\n\n\nit has to be dealt with publicly and genuinely. first of all, because users deserve a chance to realize they've been misled; but also to prevent the whole idea to become somewhat accepted − which would be a disaster for stellar.\n\n\ndon't be naive: cryptocurrency is a highly competitive space, and if a crypto a can't get it right, crypto b will. fortunately, there are few places around where you'll see secret disclosure presented as a satisfying sign-in method. but from a credibility standpoint, having a few already comes at a cost.\n\n\ni realize that you (both) are making efforts to turn this into something personal or, at least, into a trolly debate on an unrelated matter. yet, i believe my feedback was clear & focused on a well-defined issue. if you don't want to deal with it, fine, but i'm not willing to digress into low-value disputes. i'm pretty sure we all have better things to do.\n\n", "name": "", "is_accepted": false }, { "text": "replied [here](https://galactictalk.org/d/2211-cosmic-link-transactions-over-url/5) as my thoughts mostly relate to the \"clipboard vulnerability\" and cosmiclink itself.\n\n", "name": "", "is_accepted": false }, { "text": "is it still possible to add newer projects for trading on stellarterm? we prefer it over stellarport.\n\n ", "name": "", "is_accepted": false }, { "text": "[@ethereumx](https://galactictalk.org/u/ethereumx) you can trade any stellar asset on stellarterm without explicit listing, as they are discoverable by asset domain or just through issuer address.\n\n\nhere's the link to ethereumx trading page for example: \n\n<https://stellarterm.com/exchange/etx-gcefmsnwxtalxqprqfixomwjhzfdeqjbm26rgedzudfmu32jb6wjgrjx/xlm-native>\n\n\ni've noticed that your domain lacks cors headers though: \n\n<https://stellar.sui.li/toml-check/etxco.com> \n\n<https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0001.md#specification>\n\n\nwithout cors headers, stellarterm can't fetch your asset icon or read the contents of the toml file - so i think you should get that fixed.\n\n\nwe are planning to add automatic asset discovery to stellarterm shortly. \n\nwe are always looking for new quality assets and listen for requests from users and issuers, and continue to list new assets manually upon review from our end.\n\n\n", "name": "", "is_accepted": false }, { "text": "\n> [gleb](https://galactictalk.org/d/2212/8) we are always looking for new quality assets and listen for requests from users and issuers, and continue to list new assets manually upon review from our end.\n> \n> \n\n\nwhy are you even replying to this guy then? ethereumx is quite clearly just a money grab that adds no value to the ecosystem. the benefits and features mentioned in their whitepaper, just like all of the previous \"stellar forks\", are what any other token on stellar has. there's no raison d'être. all it does can be done directly with xlm.\n\n", "name": "", "is_accepted": false }, { "text": "[dzham](https://galactictalk.org/d/2212/9)\n\n\ni am not familiar with this project and i don't know the author. \n\nthey asked a perfectly valid question relevant to stellarterm, which i replied to.\n\n\ni've simply googled the website and pointed the author to a misconfigured toml file, because i've noticed that asset discovery by domain name was not working as expected.\n\n\ni would like to avoid shifting the focus of this thread to a heated discussion about something completely irrelevant.\n\n\n", "name": "", "is_accepted": false }, { "text": "hey, stellar community.\n\n\nseveral new stellarterm updates have been pushed live recently. \n\nwe are also excited to share a preview of the upcoming updates releasing in the near future.\n\n\n**latest updates**\n\n\n![stellarterm](https://i.imgur.com/4hv9ekk.jpg \"stellarterm\")\n\n\n*activity page:*\n\n\nthe outdated 'history' page got a new refined look and is now named 'activity'.\n\n\nfrom here, you can manage all of your active orders or browse transaction history divided into dedicated categories (trades, payments, signers and trustlines). this update also significantly improves the history loading time so you can locate the transaction much quicker.\n\n\n*improved real-time notifications:*\n\n\nthe real-time notifications (that users can see in the bottom right corner) have been updated and improved. also we've added new notification types like a “new trustline is established” or a “signer is added to your stellar account”. \n\nthe support of notifications for multisig wallets has been added as well. when you sign a transaction in the multisig service, the notification should now quickly appear in stellarterm.\n\n\n*trading updates and other improvements:*\n\n\nthere are a few small but sweet improvements for the traders out there. the asset selector got updated and now features a fresh new design along with the latest stats for the selected trading pair. \n\nwhen editing a live offer, you can now quickly swap pair sides to see buy offer as a sell offer (and vice versa).\n\n\n**coming soon**\n\n\n![stellarterm](https://i.imgur.com/rxtmpex.jpg \"stellarterm\")\n\n\nthe team has also been working on some big updates coming in the near future. here is the preview for some of those:\n\n\n*redesign of login, onboarding and send pages:*\n\n\nwe are currently working on the redesign of various pages with the goals of improving usability, transparency and matching the new design styles of the project. \n\nthe 'send', 'log in', and 'new account' pages are among the first things that will be updated in the near future.\n\n\n*support of sep-0024 protocol:*\n\n\nwe are actively working on bringing the full support of sep-0024 to the stellarterm. users will be able to deposit external assets, withdraw stellar assets and view the history of deposits and withdrawals using the current stellar account. \n\nwe are aiming to support all existing sep-0024 compliant anchors, so users will be able to withdraw and deposit various fiat and crypto assets soon.\n\n", "name": "", "is_accepted": false }, { "text": "it will be more usefully to make the app simple and user friendly instead. i've tried to download and use this app so many times unsuccessfully to the point where i got discouraged .\n\n", "name": "", "is_accepted": false }, { "text": "[noelmartialnguemechieu](https://galactictalk.org/d/2212/12)\n\n\n\n> it will be more usefully to make the app simple and user friendly instead.\n> \n> \n\n\nthat's our constant goal. we are always looking for things that can be simplified or explained better. \n\nif you could share more details about what was confusing for you here or privately at [[email protected]](mailto:[email protected]) that would be greatly appreciated!\n\n\n\n\n---\n\n\nin the meantime, we are happy to know that stellarterm has made it to the finals of this scf round: \n\n\n\n\nthank you for your support! \n\ndon't forget to vote in the final round - the voting only lasts until the new year.\n\n", "name": "", "is_accepted": false } ]
77fce733e1f2028d0f14a012b65061f5
> hi there! i have been around the stellar ecosystem helping here and many other places to new users and i decided to create my own wallet which is the one my business is using for its projects. everything related with the wallet is here: [https://xbull.app](https://xbull.app/installation/#building-the-extension?utm_source=galactictalk&utm_medium=websites&utm_campaign=organic) > > ![](https://xbull.app/assets/github-wallpaper.png) ***still in alpha stage*** ========================== *this version is still in alpha stage, please be aware of this and use it with precaution. we are still making lots of changes and it's possible that future versions won't be compatible with this one. some features might not work currently but the app is pretty stable.* *security is a priority but we can't promise it in this early stage, all your private keys are encrypted but please use this wallet with secondary accounts or with test accounts. if you use accounts created by the wallet, please always keep your mnemonic phrases to be able to restore them later.* *after every update the documentation will be updated with the correct information, once we hit the version *1.0.0* we will separate each version of the documentation.* --- xbull wallet ============ xbull is a wallet to serve as a bridge between websites/users and the stellar blockchain. ### our goals with xbull are: * be part of the infrastructure to boots the stellar network adoption. * offer a curated and flawless user experience. * be a reference in the stellar blockchain wallets options. * make the interaction between users and the stellar blockchain easier. --- **why another extension wallet?** --------------------------------- we are a software development team, we (and our partners) have specific requests for businesses. instead of telling other extensions that they need to add the features we want, we decided that we will create our own extension and at the same time provide more options to end users... competition is the key to increase the stellar ecosystem. but even if our wallet is aimed to serve our businesses, we designed it in a way it can be used by anyone so it's most likely that you will never notice that it was built with our projects in mind. **features** ------------ xbull tries to be an *easy to use* but powerful wallet so you will find lots of features, some of them are: * generate keypairs from mnemonic phrases or import one (you own the private keys). * support of multi wallets and different horizon apis. * trade assets with offers, limits and swaps operations. * advanced features like manually signing xdrs or generating a chain of operations (similar to the stellar laboratory). * integrated sdk so sites can talk with the extension. * encrypted private keys and protection of public key from websites until the user accepts to share it. we are constantly adding new features, want to know all of them? visit the [docs](https://xbull.app/?utm_source=galactictalk&utm_medium=websites&utm_campaign=organic) and check all this wallet has to offer. operations handled by the wallet -------------------------------- the stellar blockchain supports multiple kind of transactions, xbull is designed to handle all of them. at this moment the supported operations are: * [x] create account * [x] payment * [x] path payment strict send * [x] path payment strict receive * [x] manage sell offer * [x] manage buy offer * [x] create passive sell offer * [x] set options * [x] change trust * [x] allow trust * [x] account merge * [x] manage data * [x] bump sequence * [ ] create claimable balance * [ ] claim claimable balance * [x] begin sponsoring future reserves * [x] end sponsoring future reserves * [ ] revoke sponsorship * [ ] clawback * [ ] clawback claimable balance * [x] set trust line flags xbull "sdk" =========== our wallet is shipped with an internal "sdk" which helps website owners to interact with the wallet. you can read all the details in the site, the sdk helps you talking with our wallet like this: **request permissions to the wallet:** ``` const permissions = await xbullsdk.connect({ canrequestpublickey: true, canrequestsign: true }); ``` **request the public key:** ``` const publickey = await xbullsdk.getpublickey(); ``` **request signing a transaction:** `const signedtransaction = await xbullsdk.signxdr('your xdr here')` roadmap ======= you can check the roadmap of the development [here](https://xbull.app/roadmap/?utm_source=galactictalk&utm_medium=websites&utm_campaign=organic) or check in what we are working right [here](https://github.com/creit-tech/xbull-wallet/projects) faqs ==== if you have any question about the functionality of the wallet, please check our documentation [here](https://xbull.app/?utm_source=galactictalk&utm_medium=websites&utm_campaign=organic) where you can find all the details about our wallet. source code =========== xbull wallet is open source and its code is public, you can check it or download it from [here](https://github.com/creit-tech/xbull-wallet/) how to build it myself? ======================= xbull wallet is available to use by anyone and it's on the google chrome store once it's version is at least beta (version 0.5.0), but just like everything in the blockchain space, you should always question it. because of this, xbull wallet is possible to be audited and built by anyone. you can pull the source code and generate the build which you can then import into your browser, that way the extension you don't need to trust the version that is hosted in the google chrome store. if you want to learn more about this, please read the documentation [here](https://xbull.app/installation/#building-the-extension?utm_source=galactictalk&utm_medium=websites&utm_campaign=organic) where we explain you how to manually do it. proud from creit tech ===================== xbull wallet is developed by the creit tech team with the goal of providing a bridge between the stellar blockchain and users/websites. our businesses needed a capable but at the same time easy to use wallet and that's why we created xbull, that way our clients and the community can use a wallet with a friendly ui and powerful features. we are proud of what we have created and we are excited to create more businesses on top of the stellar blockchain.
xbull wallet: a powerful but easy to use extension wallet
galactictalk.org
2021.43
[ { "text": "it seems like a good job, i'm going to give it a try!\n\n", "name": "", "is_accepted": false }, { "text": "version 0.5.1 pushed to github!\n\n\nthis one includes a feature to let user pick which kind of operations they would like to see in the wallet\n\n\n![](https://xbull.app/assets/set-operations-types.gif)\n\n\nall the details [here](https://xbull.app/transactions/?utm_source=galactictalk&utm_medium=websites&utm_campaign=organic)\n\n\n", "name": "", "is_accepted": false }, { "text": "[earrietadev](https://galactictalk.org/d/2779/3)\n\n\ntest with additional stellar assets such as marscoin (xmc). establish a trustline and send me a recipient address to [[email protected]](mailto:[email protected]) and i'll send you 100k marscoin to test with.\n\n", "name": "", "is_accepted": false }, { "text": "yesterday i pushed the latest updated to both github and the chrome store, this new version includes a feature that allows you checking and claiming claimable balances!\n\n\ncheck how to do it: \n\n![](https://xbull.app/assets/claim-claimable-balance.gif)\n\n\nif you want to know more about it, you can check the documentation [here](https://xbull.app/lab/#claiming-claimable-balances?utm_source=galactictalk&utm_medium=websites&utm_campaign=organic)\n\n\nthe feature is in the `lab` page, this means it's an advanced feature which i will update it later and integrate it in a friendlier ui into the wallet.\n\n\nsalu2!\n\n", "name": "", "is_accepted": false }, { "text": "i have been working a lot in the wallet and adding multiple features every week, last week i added support of individual private keys (those that aren't generated with mnemonic phrases) and this week i added ledger wallets support for those who want more security.\n\n\nyou can read more in the documentation [here](https://xbull.app/manage-accounts/#connect-ledger-wallet)\n\n\n![](https://xbull.app/assets/connecting-ledger.gif)\n\n", "name": "", "is_accepted": false }, { "text": "for those who are not aware, xbull already have compatibility with both trezor and ledger wallets!\n\n\nif you want to keep up to date follow us in <https://twitter.com/xbullwallet>\n\n", "name": "", "is_accepted": false } ]
98a710f2a48cbc9b4bc6eba6f290698d
**update august 2020**: we are out of stealth mode and the new website is live at [paywith.glass](https://paywith.glass) paywith.glass is intelligent global financial infrastructure, built to empower billions of people to transact instantly, with currency fluidity, from anywhere on earth, at any time. this infrastructure is designed to move ***value***, regardless of currency used. with paywith.glass, all currencies (fiat or crypto) are treated as equal. in theory, with a fully functional live network, it will be possible to use your crypto currencies, air miles, pre-paid mobile credit or rewards points to buy anything, anywhere as easily as you can with fiat currencies. our platform also eliminates the latency that comes with using other blockchain solutions for retail applications (eg bitcoin's dinosaur network) since regardless of the currency, crypto or fiat, all transactions are quickly, securely and reliably executed in real-time. you could receive/deposit one currency into your wallet and make payments in another, transparently. this is currency fluidity in action. a few things to clarify, this is an infrastructure solution, not an app, not a wallet. our early public demonstrations showed potential applications of the underlying technology which at the time was still under development. there will not be a paywith.glass branded wallet, card nor app in the same way you do not find visa or mastercard branded cards. like visa and mastercard, our logo will be a co-brand used to indicate that a product or service is compatible with the paywith.glass network. this is underlying financial infrastructure that will power existing and upcoming mobile applications, pos platforms, hardware devices and solutions/services for global financial transactions. there will be a developer community launched in the coming months to allow fintechs and others to build on this new network but in the meantime, we are conducting pilots with banks, fintechs and other regulated financial institutions. <https://paywith.glass> -hatter
announcing paywith.glass - intelligent transaction infrastructure
galactictalk.org
2020.40
[ { "text": "\n> our native currency is the stellar lumen (xlm) which we call the glasscoin.\n> \n> \n> through blockchain technology, paywith.glass makes banking and payments seamless and extremely convenient regardless of your chosen currency or favourite banking/e-commerce service.\n> \n> \n> all transaction processes are completed quickly, securely and reliably through the stellar network which makes them so transparent, it's like you're paying with magic glass coins, from your own portable bank vault!\n> \n> \n\n\nplease explain how does it work!\n\n", "name": "", "is_accepted": false }, { "text": "\nthanks for the enquiry. in a nutshell, you create an account with our platform and automatically it creates a stellar account for you in the background. unless you choose to view your advanced properties, you won't see your stellar public key and seed or memo fields etc, you will just see the user-interface which keeps things clean and simple.\n\n\nyou can have xlm sent to your account from any other stellar wallet using the federation address and it will appear in your glassvault (our wallet). you can also send btc, nxt, usdt, eurt, eqd and other cryptos to the provided addresses (much like you do on exchanges) and they will appear in your glassvault once the relevant confirmations (i'm looking at you bitcoin) etc have been completed. the same goes for sending from your amazon account using amazon pay or from your bank account using direct deposit or via your debit card.\n\n\nthe glassvault displays your balance in whatever currency you have chosen, whether it's usd, gbp, xlm, eur, btc etc and you can change the currency with a swipe which gives you real-time exchange rates without fees.\n\n\nfrom here you can send money to anyone with a glassvault directly, or to anyone's stellar wallet. we are working on agreements with vendors including larger retailers (the first list will be announced early next year - i was just corrected by head of biz dev) and once they are onboard, you can use the mobile app or just use the web browser app on your tablet, laptop or phone (so long as it has a camera or nfc) to pay at their pos directly from your glassvault.\n\n\nthat swipe to change currency feature really comes in handy when you travel. if you're in the us and your balance in in usd, you won't have to worry about incurring foreign transaction fees when you go to london for example. you just swipe to change your balance to gbp and then paywith.glass and they will get gbp. the only number you need to worry about is the exchange rate.\n\n\nit means that your currency transactions whether crypto or fiat are all transparent and the vendors don't have to care if the money came from your card, bank account, bitcoin wallet or air-miles for that matter. as long as it the asset can be traded and we can find satisfactory support for it, we can add it and you can buy with it, all thanks to stellar's blockchain and market maker capabilities.\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "right, it seems very cool.\n\n\nbut it would be even cooler if i could send money to you and get btc, usdt and usd assets backed by paywith.glass and fully movable and tradeable on the stellar network and later cashed out from you. is that something you plan to do or already support? it doesn't seem hard as soon as people are trusting you with their real-world assets.\n\n\nalso, which fees do you charge? do you have any (beta?) users already?\n\n", "name": "", "is_accepted": false }, { "text": " i believe they're using xlm directly, not a token, and just calling it by other name.\n\n", "name": "", "is_accepted": false }, { "text": "\n[@fiatjaf](https://galactictalk.org/u/fiatjaf) is correct, glasscoin is simply a marketing reference to refer to the lumens used as fees in the underlying technology. as an asset, lumens appear as xlm in your glassvault, we only use the name glasscoin on the site to illustrate that the lumens+stellar blockchain with regards to the way the system works are transparent.\n\n\nwe don't have our own token and there is no purpose for our own token in this network. rest assured that all the standard symbols/currency codes are used for the 29 currencies we support - gbp, xlm, btc, bch, nxt, usd etc etc.\n\n\n\n> right, it seems very cool.\n> \n> \n> but it would be even cooler if i could send money to you and get btc, usdt and usd assets backed by paywith.glass and fully movable and tradeable on the stellar network and later cashed out from you. is that something you plan to do or already support? it doesn't seem hard as soon as people are trusting you with their real-world assets.\n> \n> \n\n\nwe anchor the currencies we support so yes we could issue the assets on the stellar network and make them tradeable on the decentralized exchange. we already unofficially support eqd and eurt that are issued in that manner but we have not decided yet if we will issue assets for those which are already there or just issue new tethers for those that are not yet in the market.\n\n\nwe will gauge market demand after it's been in production for a few months and see which route makes the most sense. options are being discussed internally at the moment but don't worry, we'll meet you half-way 😉\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "just a little update... so we're almost ready for the limited public beta but it seems that someone at google feels a bit uneasy about it.\n\n\nlet me qualify that statement... earlier this year i was recruited by google to build a version of our distributed data centre technology for them. i turned them down to focus on my own startup instead.\n\n\nthey tried again this time offering my choice of cities for re-location among other perks and again i turned them down.\n\n\nthen i noticed something weird, our seo had suddenly become less effective to the extent that some of our brands when searched for on google would yield a result on page 3 or further when the first pages were filled with ads linked products that in some cases didn't even have the same name in their graph. i thought it odd but didn't make a big deal about it.\n\n\nthen this happened this morning: \n\n<https://www.blog.google/topics/shopping-payments/pay-with-google-and-speed-through-checkout/>\n\n\nremember they own the '.google' tld and paywith.google has already passed through dns servers... so of all the things they could have chosen to call it....\n\n\nas i was saying, someone at google feels a bit uneasy about us...\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/9) hey, i think you're a bit delusional, mate 🙂 \n\nthey've announced \"pay with google\" in may on google i/o and i don't see anything wrong with that, logical name after \"log in with google\"\n\n\nwhatever happens i don't think they would retaliate through ranking algorithm, it's not that easy and they don't do that for apple and microsoft, who are you?!\n\n\nanyway, don't give up, you're building a great thing!\n\n", "name": "", "is_accepted": false }, { "text": "[umbrel](https://galactictalk.org/d/490/10)\n\n\nit wasn't branded in may at i/o and they could have called it any number of things.\n\n\non the topic of ranking algorithms, we are not the first to suffer this fate at the hands of google, i can assure you and as for why they won't do it to apple or ms, vs the little guy... i thought that would be obvious. the little guy can't throw a $20m team of lawyers at them.\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "\n> [hatter](https://galactictalk.org/d/490/11) it wasn't branded in may at i/o and they could have called it any number of things.\n> \n> \n\n\nthey did mention \"pay with google\" name.\n\n\n\n> [hatter](https://galactictalk.org/d/490/11) on the topic of ranking algorithms, we are not the first to suffer this fate at the hands of google, i can assure you and as for why they won't do it to apple or ms, vs the little guy... i thought that would be obvious. the little guy can't throw a $20m team of lawyers at them.\n> \n> \n\n\nmaybe you're right, but i usually look at this as another conspiracy theory\n\n", "name": "", "is_accepted": false }, { "text": "[umbrel](https://galactictalk.org/d/490/12)\n\n\n\n> [umbrel](https://galactictalk.org/d/490/12) maybe you're right, but i usually look at this as another conspiracy theory\n> \n> \n\n\nand this is why it continues to happen... rampant dismissal and disbelief before giving it any real though or doing the research is the same as sitting silently by and knowing for a fact that it is happening.\n\n\n\"to sin by silence when they should protest makes cowards of men.\" - abraham lincoln\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "we have added a few features that were originally on the roadmap and planned for later but we realized in the process we could slip them in now.\n\n\nthe result is a slightly less polished ui (a wee bit glitchy) since we have had limited time to test as thoroughly as we would like before the build challenge.\n\n\nnonetheless, we're getting there, so just to let you know what's on the way, here are a few screenshots to whet your appetites:\n\n\n0. before you log in: \n\n![before you log in](https://paywith.glass/images/screenshot00.png)\n1. after you log in: \n\n![after you log in](https://paywith.glass/images/screenshot02.png)\n2. yes there is actually a glassvault... notice the little touch-screen/control panel on the front. what modern vault would be complete without a touch-screen keypad: \n\n![glassvault](https://paywith.glass/images/screenshot05.png)\n3. that little touch panel won't be terribly helpful if you can't see what's on it, so on mouseover, it is zoomed in for your convenience: \n\n![touchpanel zoom](https://paywith.glass/images/screenshot06.png)\n4. this is the dashboard with real-time currency updates. it also displays your total glassvault in a currency you can relate you. you an change the display currency by clicking on that top-line to something you prefer. here it's in gbp because that's the default currency for the uk site: \n\n![dashboard](https://paywith.glass/images/screenshot09.png)\n\n\nalso note that the glassvault has shelves, each with a different volume in a different currency. here is the exchange functionality at work... you can 'trade' by simply changing the currency of a shelf to any one of the 29 supported (including 14 cryptos) at the moment. the display updates in real-time and the currency exchange rates are also real-time. so if the value of the usd on my active shelf changes against my chosen 'display currency' (in this case gbp) the total value displayed will change to reflect that as it happens.\n\n\n5. case in point, this next screenshot. notice the difference in the total value of the glassvault. this is due to the change in exchange rate of the usd on my active shelf relative to my default display currency, gbp: \n\n![menu](https://paywith.glass/images/screenshot17.png)\n\n\nmore to come including the link to try it out. stay tuned...\n\n\n-hatter\n\n\n", "name": "", "is_accepted": false }, { "text": "hi all,\n\n\nwe're very close to a demo release... still working through a few technical glitches in the ui and awaiting a shortlist of what we can legally show in the uk pre-fca approval.\n\n\nin the meantime, here are a few more screenshots to give an idea of what is in store:\n\n\nhere we can see that currency trading method i mentioned before. no charts, no order books, no financial markets knowledge required... this is trading for joe and jenny average who have 'heard about that newfangled bitcoin thing from their nephew junior', want to get in on the action, but know absolutely nothing about trading, forex or crypto.\n\n\n1. select the shelf you want to alter and click the currency code: \n\n![menu](https://paywith.glass/images/screenshot10.png)\n2. choose your desired currency from the list, note the tool-tip (we'll be changing how that's displayed for production): \n\n![menu](https://paywith.glass/images/screenshot11.png)\n3. 29 currencies to choose from with paywith.glass anchor support for them all: \n\n![menu](https://paywith.glass/images/screenshot12.png) \n\n![menu](https://paywith.glass/images/screenshot13.png) \n\n![menu](https://paywith.glass/images/screenshot15.png) \n\n![menu](https://paywith.glass/images/screenshot16.png)\n4. note this also applies to the display currency, so let's go to that for a second: \n\n![menu](https://paywith.glass/images/screenshot17.png)\n5. let's change our display currency to eqd from our good friend's over at [equid](https://equid.co/): \n\n![menu](https://paywith.glass/images/screenshot18.png)\n6. notice that real-time currency update i mentioned before at work in this next screenshot which shows the menu open: \n\n![menu](https://paywith.glass/images/screenshot19.png)\n\n\n...more to come.\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "trading has never been this easy, ever!\n\n\nall i need to do here is change one shelf to bitcoin: \n\n![active shelf](https://paywith.glass/images/screenshot20.png)\n\n\n..or both shelves for maximum effect \n\n![both shelves](https://paywith.glass/images/screenshot21.png)\n\n\n...and just sit back and wait: \n\n![a little while later...](https://paywith.glass/images/screenshot22.png)\n\n\n...and just watch it grow: \n\n![later still...](https://paywith.glass/images/screenshot23.png)\n\n\n...then just change them back when ready: \n\n![later still...](https://paywith.glass/images/screenshot24.png)\n\n\na trading platform for joe & jenny average ...easy peasy!\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "so, how does one get funds into a paywith.glass glassvault?\n\n\n...let us count the ways: \n\n![30 deposit methods](https://paywith.glass/images/screenshot25.png)\n\n\neurt deposit menu, uncluttered, uncomplicated \n\n![eurt deposit](https://paywith.glass/images/screenshot26.png)\n\n\nsimply scan the barcode (stargazer format) \n\n![eurt deposit barcode](https://paywith.glass/images/screenshot27.png)\n\n\nworks with equid deposits too \n\n![eqd deposit 1](https://paywith.glass/images/screenshot28.png)\n\n\n![eqd deposit 2](https://paywith.glass/images/screenshot29.png)\n\n\nwith the barcode \n\n![eqd deposit barcode](https://paywith.glass/images/screenshot30.png)\n\n\ncredit & debit cards accepted \n\n![credit card deposit 1](https://paywith.glass/images/screenshot31.png)\n\n\n![credit deposit 2](https://paywith.glass/images/screenshot32.png)\n\n\n![credit card deposit 3](https://paywith.glass/images/screenshot33.png)\n\n\nand lest we forget about xlm... \n\n![xlm deposit](https://paywith.glass/images/screenshot34.png)\n\n\n![xlm deposit barode](https://paywith.glass/images/screenshot35.png)\n\n\nif you counted 30, then you are correct... \n\n![30 deposit methods](https://paywith.glass/images/screenshot36.png)\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "is this project dead?\n\n", "name": "", "is_accepted": false }, { "text": "[allencarloprondo](https://galactictalk.org/d/490/18)\n\n\nno, not dead, just seeking funding and receiving no help or any actual serious interest from the sdf.\n\n\nthey have seen our deck, they have seen our financials, one member of the sdf's team offered to 'help' by asking for 10% of the company in exchange for 100k xlm (valued at us $29k at the time) which was an unreasonable ask given that we needed to raise about 2m xlm (based on the value at that time) and would still need to have equity available for those bringing much more than 100k xlm to the table, not to mention that this would have invariably valued the entire company and all ip (pre-existing and new) at us $290k.\n\n\nalso, we were disqualified from this particular sbc round for not being 'live' with customers, despite the fact that our system could be demonstrated on the testnet, had been viewed by sdf staffers and to be 'live' within the markets we are in, would be illegal without the require licences which cost money we don't have... bringing me back to the first point.\n\n\n...so that's the non-sugar coated summary of our current state and the why.\n\n", "name": "", "is_accepted": false }, { "text": "\n> [hatter](https://galactictalk.org/d/490/19) one member of the sdf's team offered to 'help' by asking for 10% of the company in exchange for 100k xlm\n> \n> \n\n\ndid he make that offer personally or was it in the name of the sdf?\n\n", "name": "", "is_accepted": false }, { "text": "[cryptobrant](https://galactictalk.org/d/490/20)\n\n\nit was a personal offer but this contact was made via the sdf so still not very professional.\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/21) seriously, this looks indeed very unprofessional :-1\n\n\n", "name": "", "is_accepted": false }, { "text": "just to update everyone, we are still very much alive and even though we have been jerked around by one particular individual within the sdf, this project does not rely on either the sdf's approval nor their support to be realized.\n\n\nwe are in advanced talks with several investors and early stage with a few others and a couple of accelerator programs so either way we will have some word in the coming weeks.\n\n\ni want to make a point even before we officially announce it because of something which was recently brought to my attention. it seems the glasscoin name was of interest to someone else as well and as such a scammer set up an ico and listed a coin called glasscoin which seems to have taken some money off at least a few individuals.\n\n\nwe will be making a press release about this but i'll state it here first:\n\n\n***we are in no way whatsoever affiliated with glasscoin.io and we have no intention of executing an ico nor producing a token of our own for the paywith.glass service.***\n\n\nsuch a token on our platform would serve no utility purpose after it has been issued and would therefore not be of any useful value to investors. it therefore makes no sense and would be both irresponsible and immoral on our part to run an ico.\n\n\nmore details will be published at a later date.\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "[@hatter](https://galactictalk.org/u/hatter)\n\n\nplease don't speak like this about bitcoin network: if it is a dinausor, then it is a **lively** dinausor 🙂\n\n\n(and a true jewel)\n\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/490/24)\n\n\ni apologize if the dino comment may have offended but the reality is that bitcoin's dlt protocol is the generation 1 blockchain with all of the flaws inherent in any first generation design. scp is like generation 5 in comparison. please understand that i'm not trash-talking bitcoin, i have a great deal of respect for the original blockchain and i appreciate that none of what we have now would even exist without it.\n\n\nadditionally, i was a miner of bitcoin back in 2011 and started my first blockchain dev on it. in fact the very first version of this project was built on bitcoin back then and shelved in late 2012 because that dlt was too slow and not scalable enough for what we wanted to achieve.\n\n\nstellar happens to meet all the minimum requirements for this type of project and has even exceed several others, so we restarted the project under the name you see now in 2016, on stellar.\n\n\noddly, although i have said it before, i don't recall making the dinosaur comment on this thread, so just out of curiosity where did you get that?\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/25)\n\n\nin your first post :\n\n\n\n> (eg bitcoin's dinosaur network)\n> \n> \n\n\nyou know, i didn't meant to sound so serious about it. i was more in a playful spirit, and really i don't think i have the right to tell people how they should talk. `kume no sai ^^\"\"\"`.\n\n\nanyway it's interesting to know a bit more about the roots of your project, thank you 🙂\n\n", "name": "", "is_accepted": false }, { "text": "\n> [misterticot](https://galactictalk.org/d/490/26) in your first post :\n> \n> \n> (eg bitcoin's dinosaur network)\n> \n> \n\n\nah yes, there it is. for some reason i missed it on the page. feels like ages since i wrote that.... during the neolithic age i believe 😃\n\n\nno worries at all. we will be announcing more soon, stay tuned 😉\n\n\n-hatter\n\n", "name": "", "is_accepted": false }, { "text": "just a little update for everyone, pre-registration is live on <https://paywith.glass>\n\n\nover the next few weeks we will be integrating a live beta demo into the desktop-browser version of the page, giving a fully functional html5 version of the mobile app for you to play with.\n\n\npre-register now to stay informed.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "a new update on our progress for you all, paywith.glass has just been selected for the startupbootcamp amsterdam commerce class of 2019. congratulations to our product team and development team.\n\n\n<https://twitter.com/sbccommerce/status/1090645904024059905>\n\n\npre-register now to stay informed.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "hi all, just to update you... we are still alive. we have had little press coverage recently from the sdf about the sbc programme: \n\n<https://mailchi.mp/stellar/stellar-roundup-march-2019>\n\n\nto update those still following, we've just completed week 3 and it has been intense but very productive. \n\nstay tuned, more to come.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/30) hi, that's great news! what is a plan for the near future?\n\n", "name": "", "is_accepted": false }, { "text": "[@cryptoplanet](https://galactictalk.org/u/cryptoplanet)\n\n\nso we have pivoted a bit away from the b2c approach to the b2b approach to gain a bit of traction first under the wings of a few much larger institutions who want to test the platform with us through the accelerator.\n\n\nwe are pushing the development of our api tools and some example applications out via the [odyssey hackathon](https://www.odyssey.org/odyssey-hackathon/) in groningen from next week.\n\n\nand we will push on to refine the proposition and to gain pilots and partnerships to push this to the world.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/32) how did it go with the hackathon?\n\n", "name": "", "is_accepted": false }, { "text": "[cryptoplanet](https://galactictalk.org/d/490/33)\n\n\nwe didn't win our category but we have managed to create our public api and are in talks with a few banks in the netherlands about running pilots of the platform this summer.\n\n\nwe were recruited by one incubator after the event and have received an expression of interest from yes! delft so we are following up on these. we are also in discussions with one of the other startups from our track in the hackathon about integrating support for their hardware wallet into our platform through the new api so that is quite exciting.\n\n\nadditionally, we have been accepted into the money20/20 startup academy so will be attending the event in june. \n\nwe also pitch at the holland fintech meetup here in amsterdam on friday so i will update on how that goes.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/34) sounds like a great plan!\n\n ", "name": "", "is_accepted": false }, { "text": "i've sent the request for getting invitation, but still got no answer. is it okay?\n\n ", "name": "", "is_accepted": false }, { "text": "[bitcoingold1234](https://galactictalk.org/d/490/36) have a look at your spam/junk/bulk mail folders just in case. from our end, everything is working just fine afaik.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "we have pitched at the holland fintech event as previously mentioned and we have [won the people's choice award for best pitch](https://twitter.com/hollandfintech/status/1126871003248906246). so i would say it's safe to assume, the fintech scene of the netherlands is now aware of paywith.glass and apparently likes what it sees.\n\n\nup next, our [startupbootcamp demo day](https://www.startupbootcamp.org/accelerator/commerce-amsterdam/) and then the [money20/20 startup academy](https://europe.money2020.com/sponsors/satellite-moving-devices-wireless).\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/38) awesome! i wish you expand your business all over europe \n\ni think money20/20 might be a very promosing event in terms of meeting potential clients\n\n", "name": "", "is_accepted": false }, { "text": "[cryptoplanet](https://galactictalk.org/d/490/40) thanks.\n\n\nthat is our plan. we start in netherlands and expand from there. we are also talking to banks in other countries but will announce that later when those conversations get a bit closer to completion. \n\nin the meantime, this is [the official holland fintech post-event post](https://www.linkedin.com/feed/update/urn:li:activity:6533648078828777472/).\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "so we have had our startupbootcamp demo day which was quite a success. \n\nyou can view the [full video here](https://www.facebook.com/sbcams/videos/607623993050622/).\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "we have published a 3-part series of articles entitled the second financial revolution, which illustrates the vision behind paywith.glass:\n\n\npart1: <https://medium.com/@paywith.glass/the-second-financial-revolution-part-1-b8452329c0e>\n\n\npart2: <https://medium.com/@paywith.glass/the-second-financial-revolution-part-2-7f2ec59e91e4>\n\n\nhave a read, feel free to comment.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "we have produced our first promo video, this is the full length cut and we are fund raising from the end of june 2019.\n\n\nhave a look at the [video here](https://vimeo.com/smdwireless/paywithglass) and let me know your thoughts: \n\nthis is the first cut (full length) and there will be shorter edits for our new site and for other uses.\n\n\nwe are considering the use of a voice actor although early feedback is divided. some believe a voice actor will cost us the emotion that comes with narration by a founder, others think a voice actor brings more professionalism, let me know what you all think.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "hi all, just to update those who are still following our progress, we are hard at work refactoring the core code of paywith.glass and have already implemented a few security enhancements at the design level in the process.\n\n\nthere is more to come including a a few non-blockchain database enhancements that will see improved security and performance of the legacy database that resides under the hood alongside the stellar dlt integration. we will keep everyone posted on the progress and will be making announcements of our first pilot partners in the coming weeks.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "[hatter](https://galactictalk.org/d/490/47) i enjoyed reading your story here. great example of where hard work and determination can lead. keep up the work and please continue to keep us posted. your project sounds promising.\n\n ", "name": "", "is_accepted": false }, { "text": "[samuelconner](https://galactictalk.org/d/490/48) thank you [@samuelconner](https://galactictalk.org/u/samuelconner) .\n\n\nwe are making great progress on this side despite several challenges along the way (par for the course i suppose #startuplife).\n\n\nwe have inked seven (7) letters of intent (lois) so far with financial institutions and a teleco and we go live with our first paid pilot in december 2019. unfortunately, the terms of the lois prohibit us from publicly naming names until such time that we make an official announcement of the commencement of a pilot. what i can say is there is a clearing bank among the list and one of the other institutions has a market of 14m users which we will be serving at the start of that pilot. i can not publicly say any more than than that at present but do keep an eye on this thread for more.\n\n\nin the meantime, we are fundraising via [leapfunder](https://www.leapfunder.com/round/paywithglass-163) so please feel free to register (it's free) and back our project for shares if you are interested. it is all coming together nicely now after a long hard road and we just need funding to get through the next phase. **if anyone at [stellar](https://www.stellar.org) is listening, we could use a little assist. feel free to reach out via pm.**\n\n\ni am not sure if i had already announced this but we are now officially a dutch company - let's hear it for all of the brexit refugees 😀\n\n\nmore information to follow, including new website launches, additional publicly listed paywith.glass validators and the severely delayed launch of our long overdue public api, so stay tuned...\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "hi all, getting a few steps closer to launch.... we have just [posted our round 4 entry for scf](https://galactictalk.org/d/2316-paywithglass-transaction-infrastructure-as-a-service-tiaas). please have a look there for updates.\n\n\n-hatter 🎩\n\n", "name": "", "is_accepted": false }, { "text": "we are out of stealth mode, backed by [nvidia's inception program](https://paywith.glass/press/news/general/2020/05/18/paywith.glass-joins-nvidia-inception/) and [startupbootcamp](https://paywith.glass/press/news/general/2019/01/31/paywith.glass-selected-for-startupbootcamp-commerc/).\n\n\nwelcome to the intelligent future of money! \n\n\n\n\npaywith.glass has also been classified as a viable retail central bank digital currency architecture by the bis.\n\n\n![bis classification paywith.glass](https://paywith.glass/images/bis_cbdc_classification.png)\n\n\nfollow us on [twitter](https://twitter.com/paywith_glass), [facebook](https://www.facebook.com/paywith.glass), [linkedin](https://www.linkedin.com/company/paywithglass/) and [medium](https://medium.com/@paywith.glass).\n\n\njoin the conversation on [telegram](https://t.me/paywithglassannouncements).\n\n\n", "name": "", "is_accepted": false } ]
44609f2939649d2965c9b013c319a4ed
![stellar meetups](https://blueorion.cc/images/stellar-workshop2.png) ### stellar workshops & seminars providing workshops on token creation and smart contracts based on stellar. ### summary based on our stellar meetups in munich and new york the idea evolved to implement meetings with a workshop character and educate everybody on the potential of the stellar ecosystem. we already created a 50 pages tutorial how to create a stellar token using the laboratory. as we got positive feedback we would like to continue and expand the workshops and the tutorial material. all slides will be open source and available to everybody. ### goals our goal is to share our knowledge and educate everybody on the possibilities stellar has. our objectives are: 1. create workshop tutorials with interactive tasks which motivate the students to get the hands dirty by themselves. 2. there will be tutorials on different skill level. a) introduction to stellar b) intermediate tasks c) advanced knowledge d) api and tools from third parties 3. create an ambassador program, so the workshops can be performed by others. 4. create a “certification standard” after the workshop was attended and a test was passed. ### description ##### what does the workshop project enable users to do? after attending the workshops user are able to: * know about the goals and motivation of stellar * use the stellar.org/laboratory and other tools * use stellar wallets and know about the benefits and pitfalls with different wallets * know the basics of stellar * know how to create a token * know about the possibilities of creating smart contracts, using timebound, sequence number, channel accounts, signatures, thresholds and more. ##### why are the workshops project valuable for stellar? because we will educate the attendees about the potential of stellar and also how to start using the ecosystem. ##### how will we spend the funds, if we would be one of the winners? we will cover the costs on creating tutorials, organizing and performing the workshops. ![stellar meetups](https://blueorion.cc/images/meetups.png) ##### links: website: <https://blueorion.cc> workshop tutorial: <https://blueorion.cc/documents/blue-orion-workshop.pdf> [twitter](https://twitter.com/blueorioncc) | [linkedin](https://linkedin.com/company/blueorion) | [meetups munich](https://www.meetup.com/de-de/stellar-org-munich-meetup-group/) | [meetups new york](https://www.meetup.com/de-de/stellar-nyc/) ### voting / nomination if you like our activities and would like to see more workshops happening, we would appreciate your support by giving us a nomination vote. steps are: 1) login on [stellarcommunity.fund](https://stellarcommunity.fund) with your keybase account 2) confirm the user on keybase (see chat msg from the scfbot) 3) give blue orion a nomination-vote and also select 2-7 other projects. ![award nomination](https://blueorion.cc/b_images/scf-workshop.png)
blue orion - stellar workshops & seminars
galactictalk.org
2020.34
[ { "text": "hi all, our next meetup is happening next week on 8th of october in münchen. more details here: <https://www.meetup.com/de-de/stellar-org-munich-meetup-group/events/263337747/>\n\n\nour topics are:\n\n\n1) soneso.com: sto and tokenization, using stellar for sto/icos and the challenges on tokenizing assets in germany. \n\n2) blueorion.cc: introducing a subscription web-plugin based on stellar\n\n\nlooking forward to see you, blue orion\n\n\n", "name": "", "is_accepted": false }, { "text": "hi hans, \n\npleasure writing this reply to you...as always i am seeing the focus with in you....i have nominated blue orion project from my side....hope i will join you guys soon.....thanks a lot..and best wishes from my side... \n\nsekaran, chennai, india\n\n", "name": "", "is_accepted": false } ]
4af57a963fd0bf26bd42e9726eb7af55
whats the status of the network? seems like coinbase and blockchain are still down...
node status
galactictalk.org
2021.17
[ { "text": "there seems to be other disruptions as well. for example, on the sdex, the marketmaking bot for the usdc/xlm pair which was providing much welcome liquidity (and which i assume was maintained by circle) has been down all day, causing the market to be illiquid.\n\n", "name": "", "is_accepted": false }, { "text": "[oelmekki](https://galactictalk.org/d/2681/2) yea, this doesn't look good for a cb or bc cap raise...\n\n", "name": "", "is_accepted": false } ]
b870dfe77f2e128e144a08326cadbbd1
xlm widget ========== ![widget](https://raw.githubusercontent.com/kuyawa/xlmwidget/master/xlm-widget.jpg) xlm widget is a simple way to show the price of xlm in your website with just a couple of lines: ``` <div id="xlm-widget"></div> <script src="xlm-widget.js"></script> ``` the div tag is just a placeholder to show the widget wherever you want it while the script tag will load the code necessary to build it, fetching the latest price from your own server bridging chart data from binance servers due to cors restrictions. in order to fetch data from binance you have to create a simple xlm-fetch.php file with the following code: ``` <?php $url = 'https://api.binance.com/api/v1/klines'; $url.= '?symbol=xlmusdt&interval=30m&limit=48'; echo file_get_contents($url); ?> ``` once you have both files xlm-widget.js and xlm-fetch.php all you have to do is add the div tag wherever you want it on your webpage and that's it, a nice looking widget to amaze your visitors with the latest xlm price. the source code is available on [github](https://github.com/kuyawa/xlmwidget) enjoy!
xlm widget - show the latest xlm price on your website
galactictalk.org
2021.17
[ { "text": "we like to display our own stellar token price. how do we get the token price api from horizon\n\n", "name": "", "is_accepted": false } ]
5f96aae6b1e606cfe63e31edd1db86ed
![](https://cdn-images-1.medium.com/max/936/1*3tkpllf3vzdsexfx7kzf8w.png) summary ------- [equilibre.io](https://equilibre.io) is a portfolio balancer for the stellar decentralized exchange. description ----------- a portfolio balancer is a software in which you can comfortably manage your funds, fiat or crypto, without having to mess with trustlines, orderbooks & price picking. goals ----- * make the algorithms with which i manage my portfolio since a year available to all, in a friendly interface. * positively impact the sdex markets, as the balancer makes gains by providing liquidity where it is needed. * demonstrate how to build wallet independent application for stellar. * develop a lightweight application framework which is xss-resistant & content-security-policy compatible. at the time of this writing, all those goals have been attained. keypoints --------- * **web application** with a wide screen-size & operating system compatibility. * **installable** on your computer or your smartphone. * **well-tested** algorithms that manage thousands of dollars every day. * **stay safe** and never disclose your private key. * **prices in usd** or in your national currency. * **account historical performance**, including daily historical balances & fiat value. * **multi-anchor** support for tethered assets. * **live data** always on sync with the blockchain. * **fast** interface built on top of an optimized framework. * **100% uptime** as equilibre.io runs client-side & only use public apis. * **translatable** interface, with french translation available. * **open source** software, as in trustable & auditable. ### usage log in with your public key or your federated address. then: 1. **select the assets** you want to hold. 2. **set how much**of those you want (i.e.: 50% usd, 25% btc, 25% xlm). 3. **sign a transaction** that passes the required trades. 4. **repeat** regularly (every day, week or month). equilibre.io doesn’t pass trades automatically: you are the only one in control, as it is meant to be. the transaction can be signed with either stellar authenticator, stellar laboratory, ledger wallet or the xdr. the interface provides qr codes for phone signing. equilibre.io is sep-0007 compatible, so incoming sep-0007 wallets such as keybase, lobster & stellar expert id will be supported from day one. ### price picking the magic happens in the price picking algorithm, which is tailored to fit the specificities of stellar decentralized exchange. the algorithm takes a number of parameters into account, such as the global asset price, the order size, orderbook spread & existing offers. it will never trade an asset at a discount, but it will definitely detect opportunities to make a premium. ### anchors aggregation if you hold a tether such as btc on two or more anchors, then it will get aggregated & managed as a unique balance. on top of being convenient, it comes with the following features: * **orderbooks merging**: orders are passed on the anchor offering the best rates. * **risk management**: funds gets evenly spread between anchors. * **easy migration**: add/remove anchors on-the-fly. ### portfolio rebalancing the point of rebalancing a portfolio is to optimize profits while mitigating risks. while you can use equilibre.io to buy/sell fixed amounts, portfolio rebalancing is where it really shines. a portfolio on the stellar dex could be something like 50% lumens, 25% bitcoin, 25% ethereum. by regularly bringing back your funds to that initial balance, you can even your performance and turn volatility into a profit. worth noting: this is is how crypto index funds such as [crypto20](https://crypto20.com/en/) or [cryptomover](https://www.cryptomover.com/) are managed. about this entry ---------------- ### what will the prize used for? first thing first: to pay myself. [coding those apps is my main activity](https://github.com/misterticot) and this contest is the perfect opportunity to reward myself for the work. then, to finance the ongoing development of equilibre.io and other [cosmic.plus](https://cosmic.plus) software. my notebooks are full of awesome features & i'm nowhere near tired yet. finally, i'd like to be able to reward contributors and eventually to welcome a new team member. i think my software could benefit from a talented graphic designer. ### translators are welcome translating equilibre.io is merely a story of editing a text file. you'll find details [there](https://github.com/cosmic-plus/webapp-equilibre-io/blob/master/contribute.md). i'm also looking for a native english speaker who can help me correct my frenchy errors. ### feedbacks are welcome too i'm always happy to hear about your comments & ideas 🙂 links ----- **application:** <https://equilibre.io> *note: you can explore the interface even if you don't have a stellar account by clicking on "demo" in the footer.* organization website: <https://cosmic.plus> update notifications: <https://www.reddit.com/r/cosmic_plus/> source code: <https://github.com/cosmic-plus/webapp-equilibre-io>
equilibre.io ~ a portfolio balancer for stellar
galactictalk.org
2020.29
[ { "text": "thank you for giving me the first vote, [@dzham](https://galactictalk.org/u/dzham).\n\n", "name": "", "is_accepted": false }, { "text": "[misterticot](https://galactictalk.org/d/1969/2)\n\n\ni'll give you more votes later\n\n", "name": "", "is_accepted": false }, { "text": "keep up the good work!\n\n", "name": "", "is_accepted": false }, { "text": "**update 0.9.1:**\n\n\n* theme polishing\n* equilibre.io is protocol 11 ready\n", "name": "", "is_accepted": false }, { "text": "looking good, good luck!\n\n ", "name": "", "is_accepted": false }, { "text": "thank you [kirbyrawr](https://galactictalk.org/d/1969/6) !\n\n", "name": "", "is_accepted": false }, { "text": "frasindo team with its projects which dedicated to help people ($fras, mystellar.org, mibminingpool.com, warnamu.com, and coinvit.com, and mist)\n\n\nwe are supporting and vote for \n\n\"equilibre.io\" \n\nin crypto community we hope to support each other, we wish you to thrive.\n\n", "name": "", "is_accepted": false }, { "text": "thank you very much to each one supporting my entry! <3\n\n\nthis week i focused on writing an account history widget for equilibre.io. it reconstructs the daily historic balances of your account & computes its historic performance from there.\n\n\nthe result is displayed in a chart that shows the account value over time in your selected fiat. the first time, the data takes a little time to fetch but then it gets cached & the chart draws fast enough.\n\n\nthat was challenging to implement. however, having a historical view of the portfolio performance is a must-have. please be curious and take a look at your account history on [equilibre.io](https://equilibre.io). 🙂\n\n\n(*note:* if you already went to equilibre.io you may have to reload the page to get the latest version of the app.)\n\n\nchangelog - 0.10.0\n------------------\n\n\n### added\n\n\n* add the portfolio history chart.\n\n\n### removed\n\n\n* removed pricing in fiat currencies that were not fully supported: bgn, hrk, \n\n isk & ron.\n\n\n### changed\n\n\n* dramatically improve historical prices caching & performance.\n* use highstock for all charts (saves 224kb).\n* automatically reload the application once an update gets installed.\n\n\n### fixed\n\n\n* properly fetch the orderbook for assets with code \"xlm\" which are not native lumens.\n* fix a case in which the price graph printed a value one day in the future.\n", "name": "", "is_accepted": false }, { "text": "update 0.10.1 - 2019-06-17\n--------------------------\n\n\n### fixed\n\n\n* fix an error in fiat historical price refreshing that prevented portfolio \n\n history to get computed in some cases.\n\n\n", "name": "", "is_accepted": false }, { "text": "can definitely see myself using this in the future. best of luck 🙂\n\n", "name": "", "is_accepted": false }, { "text": "thank you!\n\n\nregardless of the result of the contest, i have long-term maintaining plans for this application.\n\n", "name": "", "is_accepted": false }, { "text": "i'd like to take some time to explain how equilibre.io benefits to the stellar dex.\n\n\nthis is a known fact that one can make profit while improving the market balance. in fact, this is what arbitrage & contrarian trading is about.\n\n\n\n\n---\n\n\nwhen rebalancing portfolios, equilibre.io uses limit orders. meaning: it adds new offers into the orderbooks, rather than matching existing ones (aka market order).\n\n\nthe first reason to do that is that most sdex pairs have high spreads (ratio between first selling offer price & first buying offer price). spread is like a fee for taking liquidity out of the market by matching offers. so: if you have a 1% spread on a pair it means you'll pay a 1% fee for using a market order instead of a limit order.\n\n\nthat's why i found more profitable to creates new offers, even while some of them don't get taken. a side-effect of this is, equilibre.io users are constantly bringing liquidity to the market, reducing spread & solidifying pairs they trust into.\n\n\nthe amounts involved are humble, but because volumes are low it can go a long way in improving sdex environment. in quiet market conditions, you can expect about 1% of a portfolio total value to be available as liquidity in the market. in rally/crash conditions - when we need liquidity the most - it can go over 5%.\n\n\nby playing the role of liquidity providers, equilibre.io users receives the spread fee from liquidity consumers. this can be thought of as a reward for improving the market. in current conditions, my estimation is that a portfolio can make over 3%/year this way.\n\n\nanother fact to account for is that, when using multiple anchors for a same asset, equilibre.io will trade the most interesting orderbook. here again, user makes a net profit for bringing balance to the market. it's hard to come with an estimation of how much, though.\n\n\n\n\n---\n\n\nto summarize, equilibre.io implements what i call peer-arbitrage. this could be the foundation of a distributed economy in which we rely on a peer-to-peer solution to stabilize market, rather than on those \"trusted\" third parties who occasionally involve in market manipulation & keep all the profit for themselves.\n\n", "name": "", "is_accepted": false }, { "text": "hey. \n\nreally cool idea. it is surprising that such powerful trading and investment tools are beginning to emerge on stellar. we at [scopuly](https://galactictalk.org/d/1915-scopuly-trading-analysis-platform-for-stellar-network) see a large field for applying equilibre tools. in your project, it amazes how strong the thought becomes when it goes towards stellar! \n\ngood luck in your implementation!\n\n", "name": "", "is_accepted": false }, { "text": "[equilibre.io: in-depth analysis after one year of rebalancing](https://medium.com/cosmic-plus/equilibre-io-in-depth-analysis-after-one-year-of-rebalancing-bdae5de06449)\n\n\nequilibre.io 0.10.0 came with a way to compute the full historical value of any stellar account, in fiats. after entering using the account public key, it is under “portfolio” => “history”. in this article, i’ll use this data to analyze the performance of an account that i rebalanced using equilibre.io’s algorithms since over a year.\n\n", "name": "", "is_accepted": false }, { "text": "update: equilibre.io 0.10.2\n---------------------------\n\n\n### changed\n\n\n* update cosmic-lib to 1.5.1. (security fix)\n\n\n### fixed\n\n\n* fix an error in fiat historical price refreshing that prevented portfolio history to get computed in some cases.\n", "name": "", "is_accepted": false }, { "text": "july updates\n============\n\n\na lot happened since a month, as equilibre.io made its way toward the stable release. i hired a designer & we improved the interface together. a lot of bug fixes & fine-tuning happens.\n\n\nthank you for your support & suggestions, that helped me make my way toward winning that scf prize. i could put a fund aside for long-term maintenance, and pay myself (scarcely, to be honest).\n\n\nin any case, scf was a good opportunity to meet devs, learn about their work, raise awareness around mine and explore the possibilities & the limits of my economic model.\n\n\nabout the future: i have a few options to develop equilibre.io beyond its current set of features. proofs-of-concept are there, so a v2 is definitely possible providing i find a way to make its development sustainable.\n\n\nonce again, thank you to everyone who voted for equilibre.io & took the time to dig into my other soft. more is coming so please stay tuned 🙂\n\n\n1.0.3 - 2019-07-23\n------------------\n\n\n### fixed\n\n\n* workaround an issue introduced in [stellar-sdk](https://github.com/stellar/js-stellar-sdk/blob/master/changelog.md) 2.0.1 that broke portfolio \n\n history retrieval.\n\n\n1.0.2 - 2019-07-22\n------------------\n\n\n### changed\n\n\n* improve mobile display.\n* throw an error when a too low xlm allocation would cause rebalancing to take \n\n more than 20 steps.\n* remove thewwallet.com wsd from anchors choice because it has not enough volume \n\n anymore.\n\n\n### fixed\n\n\n* ensure that outdated offers are replaced before new one are passed. this fixes \n\n cases in which outdated offers prevented to pass new ones due to liability \n\n threshold.\n* fix a case in which clicking \"cancel\" in the target setup dialog would not \n\n reset target setting to the previous state.\n* fix several miscalculations related to balancing assets with multiple anchors \n\n & liquidation. in some cases, those mistakes were preventing trades to be \n\n passed, or were causing trades to be passed with lower amount than expected. \n\n (thanks m4dpr0ph3ss0r)\n\n\n1.0.1 - 2019-07-11\n------------------\n\n\n### fixed\n\n\n* fix a bug that sometime caused rebalancing transactions to be invalid. (thanks \n\n m4dpr0ph3ss0r)\n\n\n1.0.0 - 2019-07-06\n------------------\n\n\n### added\n\n\n* deal with cases where there's not enough xlm to rebalance the portfolio in one \n\n step.\n* lock a minimum xlm balance to pay for network reserve & offers.\n\n\n### changed\n\n\n* theme highstock according to new equilibre.io colors.\n* target configuration form appears in a modal box.\n* add a title to each card.\n* don't raise an error anymore when rebalancing target is over/under portfolio \n\n total value by less than 1‰.\n\n\n### fixed\n\n\n* fixed a bug that could lock the app on very low width display.\n* reduce font size on wider screens. (thanks [@pselden](https://github.com/pselden) & damian)\n* fix a case in which allocation check limits were bypassed.\n\n\n0.11.2 - 2019-06-28\n-------------------\n\n\n### fixed\n\n\n* adjust text size on small screen devices.\n* fix source sans pro font path.\n\n\n0.11.1 - 2019-06-28\n-------------------\n\n\n### changed\n\n\n* complete interface re-design. (thanks alris can)\n* make demo easier to spot.\n\n\n0.11.0 - 2019-06-25\n-------------------\n\n\n### added\n\n\n* legal disclaimer.\n\n\n### changed\n\n\n* rewrite 'welcome' page.\n* easier access to the demo account & the related article.\n* tiny theme tweaks.\n\n\n", "name": "", "is_accepted": false }, { "text": "funding disclosure\n------------------\n\n\nthe 2019-07-16, equilibre.io received 273,556 xlm from scf #1 for the 7th rank. this was $21,290 at transfer time, expected $14,900 after taxes.\n\n\nequilibre.io development took about 8 months of work, mostly concentrated between oct 2018 and jun 2019. the costly areas were:\n\n\n* developing a dedicated application framework. equilibre.io is made of several complex mathematic components that have to dynamically update each other. a dedicated framework has been developed for this purpose. another motivation for developing a new framework rather than using an existing one was to lay down the foundations of a framework better adapted to crypto environments (lightweight, client-side focused, xss-resistant).\n* extended researches about financial concepts and their applications. (see for example the [betterdex proposal](https://github.com/misterticot/better-dex))\n* adapting the concept of portfolio rebalancing to the stellar dex. while the concept of rebalancing is mathematically simple, its complexity quickly explodes at implementation time. when it comes to the sdex, one has to figure out how to build an algorithm that remains safe yet efficient on low-volume/high-spread order books. this non-trivial problem has been solved after one year of experimenting with a broad range of solutions with low-value portfolios.\n* orderbook merging. equilibre.io is the only sdex interface that can merge similar anchors together, such as usd or btc anchors. the trading algorithm takes offers from the more interesting order book - while maintaining a balanced fund (risk) spreading. this tech required a lot of attention & fine-tuning before it became production-ready.\n\n\nonce the funding was received from the scf, it appeared that the project was in the red and had no further opportunity to finance itself. after polishing every detail, i decided to switch to long-term maintaining mode.\n\n\nthe infrastructure behind equilibre.io is low-cost (under $100/year), and maintaining it up-to-date with the stellar network proved to be an easy task so \n\nfar.\n\n\nminimal commitment\n------------------\n\n\nequilibre.io will remain up-to-date and functional as long as this can be achieved with low-commitment attention. considering sdf non-breaking updates \n\npolitic, equilibre.io is likely to stay around for years.\n\n\nthis is a minimal commitment: equilibre.io is still susceptible to receive updates & new features from time to time. for instance, trezor support has been \n\nadded recently added as i developed a [dedicated \n\nlibrary](https://cosmic.plus/#view:js-trezor-wallet).\n\n\nabout\n-----\n\n\nthis disclosure is meant to inform the community about how cosmic.plus is using the funds it receives from the sdf.\n\n", "name": "", "is_accepted": false } ]
270e31d834407d141c54886b876fb9c7
hi guys, maybe you can enlighten me! i just fiddle around with anchors and asset issuing and got stuck at this little problem. i added a toml file to my domain in the .well-known folder, set the cors and set the domain of the issuing account to that domain. then i transfered some of my asset to my desktop wallet ( the official stellar wallet, version 3.3.) after adding a trustline.. that worked.. 2 of my precious token arrived at my wallet. now the problem. i defined a decription, name and image in the toml-file.. but in my wallet it seems that the file isnt used cause it only shows the assetcode and the issuer and not the name or the image instead there is written unknown.. do i have to do anything else ? thx so much!
not reading the toml-file? asset "unknown"..
galactictalk.org
2020.29
[ { "text": "[nick0816](https://galactictalk.org/d/802/1) i think the only exchange which resolves assets from issuer .toml file is <stellarport.io> \n\nfor stellarterm and stellar desktop wallet you probably need to submit a pull request to their repo to add your issuer/asset information\n\n", "name": "", "is_accepted": false }, { "text": "ah ok.. thx for the answer!\n\n", "name": "", "is_accepted": false }, { "text": "mhh ok.. stellarport says \"this asset has not been verified by <mydomain>\"..\n\n\ndo you know what this mean? toml-file not found? or.. mhhh..\n\n ", "name": "", "is_accepted": false }, { "text": "[nick0816](https://galactictalk.org/d/802/4) it probably means that you haven't added the accept all origin header. sorry i'm on my phone so hard to look to it but check out the stellar docs regarding the toml.\n\n", "name": "", "is_accepted": false }, { "text": "mhh yes. i added it to the htaccess-file of the .well-known folder.. \n\ncurl looks fine. thas what they stated on the stellar toml page. cant put it in the apache config.. not my server.. maybe this is the problem?\n\n\ncurl --head ../.well-known/stellar.toml \n\nhttp/1.1 200 ok \n\ncontent-type: text/plain \n\ncontent-length: 342 \n\nconnection: keep-alive \n\nkeep-alive: timeout=15 \n\ndate: thu, 18 jan 2018 13:57:25 gmt \n\nserver: apache \n\nlast-modified: thu, 18 jan 2018 13:53:20 gmt \n\netag: \"156-5630d495d0ea6\" \n\naccept-ranges: bytes \n\naccess-control-allow-origin: *\n\n\n", "name": "", "is_accepted": false }, { "text": "[nick0816](https://galactictalk.org/d/802/6) \n\nlet me check. what is your asset? i'm the main dev behind stellarport\n\n", "name": "", "is_accepted": false }, { "text": "code: atoz \n\nissuer: gazahtx6dktcqcg5q4ekpvixwrwyr4oxpfybnfudz57u74q5jtclkxxm\n\n\nthx\n\n", "name": "", "is_accepted": false }, { "text": "[nick0816](https://galactictalk.org/d/802/8) you need to make the toml file available via https.\n\n", "name": "", "is_accepted": false }, { "text": "ahhh. that's the point.. thanks. i'll figure this out..\n\n ", "name": "", "is_accepted": false }, { "text": "hi,\n\n\ni made .htaccess in .well-known folder with: \n\nheader set access-control-allow-origin \"*\" \n\nbut \"this asset has not been verified by <mydomain>\" on stellarport\n\n\ni added this in .htaccess to force https for the toml file: \n\nrewriteengine on \n\nrewritecond %{server\\_port} 80 \n\nrewritecond %{request\\_uri} .well-known \n\nrewriterule (.*)$ <https://www.mydomain.com/.well-known/$1> [r,l]\n\n\nbut still \"this asset has not been verified by <mydomain>\" ...\n\n\ndo you know what i missed ?\n\n\nthank you !\n\n\n", "name": "", "is_accepted": false }, { "text": "it works with: \n\n<ifmodule mod\\_headers.c> \n \n\n header set access-control-allow-origin * \n\n</ifmodule>\n\n\nbest regards\n\n", "name": "", "is_accepted": false }, { "text": "hello s6nougat\n\n\nthis worked great, used stellarid.io for the fed server, got support from bitbucket.com the link at the bottom of the page on stellarid.io responded to francois after seeing your post\n\n\n\"nathanofzion \n\nhello francois\n\n\nthank you very much for clearing this up, i now verified on the stellerid.io fed server. i was using the .htaccess in the toml fold. i thought i had an issue updating the root .htaccess as its for wp but it seems i can put put code at the end. and it work fine see below e.g.\n\n\n(please note this is for wordpress site, on linux platform running apache) locate root .htaccess code:\n\n\n\n```\n# begin wordpress <ifmodule mod_rewrite.c> rewriteengine on rewritebase // rewriterule ^index.php$ - [l] rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule . index.php [l] </ifmodule>\n\nend wordpress\n<ifmodule mod_headers.c> header set access-control-allow-origin * </ifmodule>\n```\n\nhope this helps someone else too\"\n\n", "name": "", "is_accepted": false }, { "text": "only issue after this still not seeing picture and verified asset statues on stellarports.io.... \n\nis an .htaccess with code: <ifmodule mod\\_headers.c> header set access-control-allow-origin * </ifmodule> required in both root & .well-known fold????? \n\ntesting testing 123\n\n", "name": "", "is_accepted": false }, { "text": "[istrau2](https://galactictalk.org/d/802/9) would you be able to have a look at our token as well?\n\n\n<https://draupnir.tech/.well-known/stellar.toml> \n\n<https://stellar.expert/explorer/public/asset/draupnir-gd5tiyaltxbpthz5at6xozfthiu2ojrgmsjd62tkh5gg7d7vfuyiu6d2>\n\n\n<https://stellar.expert/explorer/public/account/gd5tiyaltxbpthz5at6xozfthiu2ojrgmsjd62tkh5gg7d7vfuyiu6d2>\n\n\neverything seems well, i ran a curl command and the output was as the stellar.org said it should be. \n\nbut it doesn't list as verified.\n\n\nnot sure what is missing atm.\n\n\n", "name": "", "is_accepted": false }, { "text": "[brian](https://galactictalk.org/d/802/15) i would post in this thread: <https://github.com/stellar/go/issues/427> \n\nmaybe bartek can help you there. there is an issue with horizon where it is not picking up your asset issuer's home domain.\n\n", "name": "", "is_accepted": false }, { "text": "[istrau2](https://galactictalk.org/d/802/16) thank you swirly circle with a lightening rod 🙂\n\n", "name": "", "is_accepted": false } ]
057f5a46824ec4f348b3a3c33dac8e48
**project title:** the company name is ternio and the product is a wallet/visa card. **summary:** ternio's payment card platform [blockcard] supports multiple coins and is the only company enabling users to hold crypto until the point of sale. other cards take a user’s crypto, converts to fiat, and places the usd value on a card which is the equivalent of buying a gift card. <https://getblockcard.com/> **goals:** the blockcard currently works worldwide and can be used by united states residents. we will be expanding to 26 european countries in q4 2019. ternio wants to scale the program globally so users in all countries can use blockcard. **description:** ternio's blockcard operates on the visa payment network for united states residents. blockcard accounts support multiple cryptocurrencies including bitcoin (btc), ethereum (eth), bitcoincash (bch), litecoin (ltc), stellar lumens (xlm), basic attention token (bat), ternio (tern) as well as most stable tokens. users holding those cryptocurrencies can deposit them in their blockcard account. users are then able to spend their funds anywhere in the world visa is accepted. <https://finance.yahoo.com/news/ternio-blockcard-function-visa-payment-210000266.html> blockcard uses tern as the default spending mechanism on blockcard. tern is an xlm based asset: <https://stellar.expert/explorer/public/asset/tern-gdgqdvo6xpfsy4nmx75a7aovycf5jygw2shcjjnwcqwidgozb53dgp6c> this means all btc, eth, etc. deposits are converted to tern as a buy order on the stellar decentralized exchange (sdex), bringing more asset holders to the stellar ecosystem. ternio is also working with other companies to use the blockcard platform for their own currencies. this means the stellar development foundation could release a "stellar card" that uses xlm (instead of tern) as the spendable digital asset. we have already done deals like this - the most notable being with litecoin foundation and bibox: <https://litecoin-foundation.org/the-litecoin-foundation-teams-up-with-bibox-and-ternio-on-special-edition-litecoin-blockcard/> **the future:** blockcard already works as a fiat off-ramp for users. they can spend crypto anywhere visa is accepted or go to an atm to withdraw. we are also in process of building a fiat on-ramp that will enable consumers to link their bank accounts directly to the blockcard platform to purchase crypto. 😎 **links:** (company) ternio website: <https://ternio.io/> (product) blockcard website: <https://getblockcard.com/> blockcard being used at starbucks: blockcard account demo: our mission is to bring the next 200 million people across the world into crypto. to do that, we need to make the process of buying, holding, and using crypto much more convenient for the general consumer. we look forward to your questions and appreciate your support! please give us a vote 👍
getblockcard.com - use xlm where visa is accepted (50 million merchants)
galactictalk.org
2020.29
[ { "text": "**physical cards are now available to order!**\n\n\nif you're already using the virtual blockcard, then login to your account and click \"upgrade\" to get the plastic card. note: you will now have both a virtual card and physical card.\n\n\n***if you haven't registered for blockcard before then:*** \n\n1) visit getblockcard.com to create your account. \n\n2) deposit funds in your account (over $150 recommended) \n\n3) click \"spend\" to start the kyc process \n\n4) upon passing kyc you will instantly get the virtual card and have the physical card mailed to you in 7-10 days.\n\n\n😎here is a new promo video for good measure as well!\n\n\n\n", "name": "", "is_accepted": false }, { "text": "here is an example of what the card inserts look like when a user receives their blockcard. these are customized for all our clients. for example: if we did a stellar version, this would have stellar logo, colors, etc (in addition to making xlm the default spendable asset).\n\n\n", "name": "", "is_accepted": false }, { "text": "you can use your blockcard anywhere visa is accepted - including nfl football games to buy a pepsi! 😀\n\n\n", "name": "", "is_accepted": false }, { "text": "here is an update on blockcard. we have done a lot so far, but have even bigger things in the works for the near future.\n\n\n", "name": "", "is_accepted": false }, { "text": "very nice! i'd like to help spread the word!\n\n", "name": "", "is_accepted": false }, { "text": "[donjuanofthedead](https://galactictalk.org/d/2076/8) join us on telegram at <https://t.me/ternio_token>\n\n\nlots of people are receiving their card, but we need our supporters to make blockcard a known product in the crypto community. \n \n\n\n\n", "name": "", "is_accepted": false }, { "text": "you can also use blockcard to withdraw cash at atms!\n\n\n", "name": "", "is_accepted": false }, { "text": "please get the metal card soon, i can't wait to bring it to the bar! little things like that help speed up adoption like crazy.\n\n ", "name": "", "is_accepted": false }, { "text": "[benichmt1](https://galactictalk.org/d/2076/11) hello blockcard team.\n\n\nyou are doing a really great job for making stellar outside of the development sandbox. maybe you are getting few comments here right now, but i’m sure it’s just a matter of time and the belief of many here is that you will get to the end and present really working cards with xlm.\n\n\nin fact, we all are watching your development here, even if this is not happening so publicly .. but at galactictalk, developers primarily discuss the technology layer and it’s not always interesting for everyone to follow real projects that work directly with users.\n\n\nthis does not mean that people here are not happy with your growth. your service is an important part for adopting stellar xlm. although this is not so large-scale, we believe in you! keep moving forward. and good luck with this round. passions run high))\n\n", "name": "", "is_accepted": false }, { "text": "[scopuly](https://galactictalk.org/d/2076/12) to be clear, blockcard is live in the united states today. we have a lot of people posting videos/pictures of them using their card. blockcard will be going live in 31 european countries in q4 2019, and launching globally q1 2020 (with the exception of us/uk sanctioned countries). blockcard is not just an idea, but rather a working product. please see the medium post above for everything we've done to date and what is coming in the next 3-6 months. great things are on the horizon!\n\n", "name": "", "is_accepted": false }, { "text": "thank you everyone who voted for blockcard!! we're honored and thrilled to have your support. we took 3rd and are looking forward to sharing some of the new product features we will be releasing.\n\n\n", "name": "", "is_accepted": false }, { "text": "excuse me for asking this but in some forum they think ternio is a scam my question is are they right or wrong? if they are wrong why are they wrong link you will find below:\n\n\n1. <https://bitcointalk.org/index.php?topic=5120820.0> \n\n???\n", "name": "", "is_accepted": false }, { "text": "the latest blockcard commercial!\n\n\n", "name": "", "is_accepted": false } ]
ebe530f9d80900393fe3a93f858346b1
[![](https://ucarecdn.com/cf318aa8-f5f9-4c26-bb30-9cf60925aecf/ad-1200x630.png)](https://ucarecdn.com/cf318aa8-f5f9-4c26-bb30-9cf60925aecf/ad-1200x630.png) mojoflower provides government issue share-ledgers and share-management tools for smes powered by stellar. the focus is on issuing sme shares and certificates on behalf of governments in tokenized form. the tokenized shares are delivered to shareholders' wallets following a formal application process. we provide shareholders with tools to manage their shares in the tokenized form, increasing usability and enabling them to use smart contracts with ease. secured by stellar, the assets can be managed for the asset's full lifecycle while staying compliant with regulations. you can see our website here. <https://mojoflower.io/> also below are slides from the scf submission and a link to the entry. **dashboard** [![](https://ucarecdn.com/badab401-029c-4522-ba63-73c5d9bdb3fc/main-dashboard.png)](https://ucarecdn.com/badab401-029c-4522-ba63-73c5d9bdb3fc/main-dashboard.png) [![](https://ucarecdn.com/deb57ac3-2b57-47d4-a587-004c8daac20a/contract-multiple-payments.png)](https://ucarecdn.com/deb57ac3-2b57-47d4-a587-004c8daac20a/contract-multiple-payments.png) [![](https://ucarecdn.com/489dc0ed-cb42-499a-a24b-ec0ab6a111c6/contract-collaralized-loan.png)](https://ucarecdn.com/489dc0ed-cb42-499a-a24b-ec0ab6a111c6/contract-collaralized-loan.png) **presentation slides** [![](https://ucarecdn.com/8ae398cf-0ea1-4229-acfc-a7c5d3a47eb1/1-the-problem.png)](https://ucarecdn.com/8ae398cf-0ea1-4229-acfc-a7c5d3a47eb1/1-the-problem.png) [![](https://ucarecdn.com/628ff3fa-9543-4ff6-a0b2-2f7b44cea944/2-solution.png)](https://ucarecdn.com/628ff3fa-9543-4ff6-a0b2-2f7b44cea944/2-solution.png) [![](https://ucarecdn.com/c8e20ad2-77a1-4aca-ae54-a9c23eabd633/3-shareholders.png)](https://ucarecdn.com/c8e20ad2-77a1-4aca-ae54-a9c23eabd633/3-shareholders.png) [![](https://ucarecdn.com/b902afd2-1462-4dbb-a733-f35c649d993b/4-government.png)](https://ucarecdn.com/b902afd2-1462-4dbb-a733-f35c649d993b/4-government.png) [![](https://ucarecdn.com/2e21d731-5604-4291-8a31-bb9e57d9c5e0/5-investors.png)](https://ucarecdn.com/2e21d731-5604-4291-8a31-bb9e57d9c5e0/5-investors.png) [![](https://ucarecdn.com/97dd3753-3f7b-4964-a72e-693df33e8297/6-stellar.png)](https://ucarecdn.com/97dd3753-3f7b-4964-a72e-693df33e8297/6-stellar.png) [![](https://ucarecdn.com/75bf3583-4824-4d2a-b5d9-3b54c4abded1/8-iceland.png)](https://ucarecdn.com/75bf3583-4824-4d2a-b5d9-3b54c4abded1/8-iceland.png) ### introduction share-ledgers record ownership of companies, and most often, companies are legally obliged to keep these share-ledgers readily available to all shareholders and government officials. share-ledgers constitute the highest legal proof of the ownership – if your name is in the newest version, legally, you are the owner. however, the keepers of share-ledger are not required to adhere to a set standard method, and people can use paper, spreadsheet programs, or dedicated services. in some areas, such as the eu, anti money laundering laws have increasingly been put in place to increase transparency and make ownership records public with mandatory registration of beneficial ownership. this registration requires companies to record direct ownership of shares as well as indirect owners, voting rights, and control through related parties. the different methods people use to maintain records make it hard for the government to sustain adequate oversight. governments struggle to keep files up to date and rely on self-reporting from shareholders who see it as tedious and a non-value adding task. the result is a problem that creates inefficiencies that result in both economic and societal costs. these inefficiencies hamper the growth of businesses and make the current system prone to corruption. a share-ledger system built on stellar will allow owners to control their shares while keeping the officials updated in real-time without extra effort and receive benefits from keeping their records neat and tidy. our platform will increase the value and liquidity of shares for the owners and lower government costs. ### background all private limited liability companies (smes) in iceland are required to do the following: register the llc with the government registry and get an official id number. (it's an electronic application process with an electronic id as an authenticator for the individuals. founders are listed, board members, etc.) when the application is approved, the company is required by law to establish a "share-ledger." the share-ledger is a record of shareholders and the number of shares they own. for each newly founded company, the share-ledger includes much of the same information as "1)". the share-ledger constitutes the legal authority on ownership. (majority uses excel. meanwhile, many do not keep one.) llc's are required by law to update and inform the government registry on changes in ownership due to the beneficial ownership legislation under recommendation from fatf and eu legislation. (this is an electronic process, initiated by logging into a government portal with an electronic id) the problem is this. reporting in compliance and personal record-keeping are independent processes. compliance relies on self-reporting and self-verification of ownership that can lead multiple versions of "truths" to co-exist at any given time. focusing on each group independently, government, and shareholders, respectively, we can identify issues better. **the situation facing the government** * the government relies on self-reporting, and legally there is a window of 2 weeks to inform the government of change. documents can easily be backdated and fixed. * the beneficial ownership reporting is time-consuming and takes some effort. as it provides little benefit to companies, other than being compliant, the risk is that records are not kept well and up to date. * the records that the government keep are not the highest authority - it's simply the last known report. it's always the share-ledger that has the final say. ### the situation facing shareholders * the reporting is a non-value adding task and extra work. there is no real benefit to companies other than being compliant. * the share-ledger system is currently "self-verifying." by that, we mean that it's the company's representatives that verify its correctness at any given time, and no external party needs to validate this. * transfer of shares is not transparent – buyers and sellers need to enforce the share-ledger's update and verify the correctness themselves. often this includes going through gatekeepers. * the "self verification" of the share-ledger decreases the value of the company in multiple ways. there are transparency issues and hidden costs, making it harder for financial institutions and investors to engage with the assets actively. the current system increases burdens on good actors and favors bad actors. it's extra work for the diligent one, yet it's easy to maintain sloppy or wrong records on the side. ### the opportunity and vision we at mojoflower believe that blockchain technology can help this situation described above. with new technology and vision, we can unlock value for parties involved, making the whole system more efficient, effective, and valuable. **the new process looks like this** register the company via the electronic process it's currently done. registered data from the government database is ingested into our systems and shares tokenized as verified assets. custody is given to the llc's owners through the platform, enabling them to unlock value at low cost since verified assets are more valuable. the result 1. **for government**, self-reporting becomes automatic reporting and more correct in almost real-time with better results. 2. **for shareholders**, self-verified assets become officially verified and thus more valuable and more tools to harvest that value. 3. **3rd parties, investors, fi, and service providers** can better interact with verified assets and ensure that the underlying asset's process is compliant and transparent. ### smart contracts utilizing stellar's smart contract logic, we can build powerful tools that our users can simply interact with. this is what we mean by saying. "we make smart contracts. simple ". * our smart contracts will enable users to interact with assets more freely and at low costs than before. * our smart contracts include simple transfers, pledging contracts, dividend payments, and more. * we envision our smart contracts being integrated with other wallet and service providers in a reciprocal relationship. ### vision and goals our mission is to enable simple share management for smes and unlock value for companies while staying compliant. our vision is to become the standard for share issuance and share-ledger management and government issue for company share registration. our values * we are inclusive and non-discriminative * we believe in equal pay for equal work and closing the gender gap is our responsibility. * we believe in equal access, fair pricing of products, services. * we believe in reciprocal relationships between suppliers and customers. ### benefits for stellar and the ecosystem we believe that the success of mojoflower can trigger a significant adoption event. stellar has the opportunity to onboard assets and introduce new users to the ecosystem. with new assets secured by the network and new use cases, undiscovered needs will come to light and drive demand. this demand will positively spiral across the ecosystem. in the case of iceland, 40k companies are onboarded. these are all companies where the majority is underserved, yet they are the foundation of the economy. all these companies and their representatives and investors would have direct access to the stellar ledger. what effect might that have? one scenario imaginable is that investors might prefer to invest in companies that pay dividends directly on the network. that would drive demand for anchors and provide foundational support. direct access to the ledger and familiarity with the network increases trust and reduces traditional platforms' switching costs. thus, it becomes easier for product and service providers to introduce their products. we will develop and facilitate the development of stellar tools for an inclusive ecosystem. our tools will include transaction builders, smart contracts, and analytics tools. independent 3rd party developers or companies can easily interact and integrate with our platform. after all, it's built on stellar, and stellar is inclusive! we will foster a competition-friendly marketplace, where the user benefit and security will be the focus. we further see opportunities opening for anchors, wallet providers, financial institutions, traditional csds, or a new type of dsds, b2b payment providers, b2c-pos solutions, analytics providers, contract builders, and more. we believe in the stellar vision, technology, governance, and the sdf's focus on a relationship with regulators. we believe in the project and its ability to be a great business opportunity and positively affect society and other businesses. we believe stellar is the right choice for the future, and we hope the community will choose us. ### the project would utilize 1. stellar 2. existing official electronic id system (kyc) 3. existing government's electronic application process 4. existing banking infrastructure and stellar anchors for the full presentation look here -> <https://communityfund.stellar.org/seed-fund#/entry/43f6419321e61c9abc7c1abe899b62293c1a9fe7c381e5684af091b1de939579>! if you have any questions, please share and we'll respond promptly.
mojoflower | government issue share-ledger and share-management tools for smes.
galactictalk.org
2021.10
[ { "text": "feel free to shoot any questions.\n\n ", "name": "", "is_accepted": false }, { "text": "update progress report: \n\ndiscussions with various stakeholders are ongoing and the need has been established. this includes various meetings with members of parliament, private companies, investors, and special interest groups. unfortunately i cannot share all details publicly but will i will provide the sdf with more details. everyone agrees that there is a need for improvement, and this solution could provide the right incentives for stakeholders to benefit.\n\n\nfurther, we are developing our standard for reporting, and are looking towards www.openownership.org for coordinated standards of reporting to be able to expand and scale more efficiently in the future.\n\n\nplease feel free to ask any questions.\n\n\nbest, \n\noli\n\n ", "name": "", "is_accepted": false } ]
8eb0165e8972ad80cb1ebf99084f76f1
![http://xlmanchor.com/logo2.png](https://xlmanchor.com/logo2.png) **summary:** [xlmanchor](xlmanchor.com) is a self hosted anchor management application you can run to provide an anchor service on the stellar network. **category:** applications, tools & infrastructure **goals:** bootstrapping necessary requirement to launching a stable coin anchor service on stellar. ![http://swplug.com/admin%20xlmanchor.jpeg](http://swplug.com/admin%20xlmanchor.jpeg) **specifics** 1, one-click deployment of the app 2, integrate more local-rails (paypal,mpesa,) 3, agent dashboard 4, api for external app to connect with. **description:** xlmanchor is a self hosted anchor management application you can run to provide an anchor service on the stellar network. we believe by lowering the entry to becoming an anchor and having potential organizations or individual focus on provide liquidity and running the service rather than spending a lot of time on technical and developing an app we will have a real decentralized finance and payment system with more locations popping up. **links:** * [xlmanchor](https://xlmanchor.com/) * [demo access user area](https://xlmanchor.com/en-us/login.php) * [demo access admin area](http://xlmanchor.com/tna) demo user details user : **[[email protected]](mailto:[email protected])** password: **stellar** demo admin details user: **anchor** password: **code** blog post : [what is xlmanchor](https://bit.ly/2yrpt17) [technical details](https://bit.ly/2b6r9xs) [business model](https://bit.ly/3fw2hyp) reddit post [what is xlmanchor](https://www.reddit.com/r/stellar/comments/hf0vho/what_is_xlmanchor/)
xlmanchor : white-label remittance application
galactictalk.org
2020.34
[ { "text": "i want to like this, but as it stands there simply isn't enough detail around how you're accomplishing your promises or what's going on behind the scenes. video/audio walk throughs, a blog post series, way more written technical details here, something. for as high risk and high level a service as you're claiming to provide you're going to need to deliver a lot more here in this entry for the community to be able to accurately asses your service. you're taking kyc data, credit card details, bank information and wallet secret keys. are you licensed to receive, store and handle these types of sensitive information?\n\n\nyou need to sell us right here on what you've built and your technical and legal competence to take on such a project. take a glance through our more technical and high level scf [winners](https://galactictalk.org/t/winners) to get a sense of the level of detail projects are expected to get into.\n\n\nif you can actually prove you're able to pull off what you're claiming great, otherwise we'll have no choice but to pull your entry before the nominations phase.\n\n", "name": "", "is_accepted": false }, { "text": "a better explanation of what we are trying to do with xlmanchor can be found here : <https://bit.ly/2yrpt17> \n\nwe will be posting more on technical and business model soon.\n\n", "name": "", "is_accepted": false }, { "text": "[protocoh](https://galactictalk.org/d/2419/3)\n\n\n\n> [protocoh](https://galactictalk.org/d/2419/3) a better explanation of what we are trying to do with xlmanchor can be found here : <https://bit.ly/2yrpt17> \n> \n> we will be posting more on technical and business model soon.\n> \n> \n\n\ni wonder where in the future you can still consider the technical part in more detail, i was interested in this question.\n\n", "name": "", "is_accepted": false }, { "text": "[walterbeen](https://galactictalk.org/d/2419/4) <https://bit.ly/2b6r9xs>\n\n", "name": "", "is_accepted": false } ]
d964f181297e73dd29387be776b2defd
we are building an sdk for stellar written in rust. all get routes have been implemented and are paired with a working cli to show how they are used. <https://github.com/kbacha/stellar-sdk/> the next step is to add a rust option to the xdrgen repo so that post actions can be made. <https://github.com/kbacha/xdrgen> .
stellar - rust sdk
galactictalk.org
2020.29
[ { "text": "[correlator](https://galactictalk.org/d/1427/1) i don't know if you saw this already, but there is an existing rust sdk: <https://galactictalk.org/d/838-rust-sdk-and-core-libraries>\n\n", "name": "", "is_accepted": false }, { "text": "you are correct that the shuttle sdk was already built and believe me, we studied it closely before getting started. \n\n it is a great library and certainly helped us think through a lot of things. we have also spoken to and worked with francesco on our current implementation (specifically around xdr). there is also another stellar rust sdk that is published on crates.io if you want to check it out here <https://github.com/sphinxc0re/stellar-rs> .\n\n\nwe heavily considered using the shuttle and stellar-rs work as a base, but ultimately decided that there were enough things we wanted to do differently that we would have to rebuild out those other sdks from the ground up. i would like to point out some unique features that we are quite proud of.\n\n\n1. fully implemented get routes from the horizon api (including the new trades for account) <https://docs.rs/stellar-client/0.1.1/stellar_client/endpoint/index.html>\n2. a well-defined interface so we can easily cut over to an async client when tokio and hyper are a little farther along <https://github.com/kbacha/stellar-sdk/tree/master/client/src/client>\n3. straightforward usage of both main and testnet <https://github.com/kbacha/stellar-sdk/blob/master/client/src/client/sync/mod.rs#l67>\n4. a fully functioning (all gets) cli that shows how to use all the routes <https://github.com/kbacha/stellar-sdk/tree/master/cli/src> . seriously git clone ; cargo install -f --path=cli ; stellar --help and you're off to the races with a cli.\n5. full test coverage with almost 300 tests that cover our data structures, etc and also ping the horizon test api. these tests are built into the documentation to ensure the docs are fully up to date and that our code matches the current state of horizon.\n6. six contributors over a 3 month period and a fairly active gitter room.\n7. we are also updating stellar's xdrgen gem so that it can output rust xdr rather than hand converting it as the other libraries do.\n\n\nagain, we certainly did benefit from and are grateful for the previous groundwork that was laid, but ultimately decided a fresh go was the best fit. a lot went into planning this software and we are quite proud of it! i hope you get a chance to check it out. let me know if you have any other questions.\n\n\n[bkolobara](https://galactictalk.org/d/1427/2)\n\n ", "name": "", "is_accepted": false }, { "text": "just an fyi we also updated the xdrgen so we didn't have to hand jam the xdr files. i think that is the best approach, and that was one of the biggest design decisions for us moving forward with our sdk as well.\n\n", "name": "", "is_accepted": false } ]
2388d5633ba807bf0ea9cd9091fe1fa0
[![](https://180nf.io/images/bitcoin.png)](https://180nf.io/images/bitcoin.png) ### project title: 180nf - <https://180nf.io/> ### summary everyone is different and our health and nutrition is dependent on our culture, lifestyles and local environment. so, why is it that nutritional or fitness apps treat everyone like we’re all the same? the reality is, there’s a need for a global app that can adapt and change to wherever you are in the world, not just the us or europe. now there is an app that can work for every person in the world. introducing 180º nutrition and fitness, the first global health app. 180nf gives you a personalized wellness experience, customizing workouts, diets and health recommendations for your specific needs. schedule trainings and personalized exercises whenever it is convenient for you. the app is powered by our own cryptocurrency system, where you can earn tokens by contributing to our nutritional database. by simply scanning in food and entering in corresponding nutritional information, or completing exercise challenges, you can begin earning nf tokens that can be used to place wagers on how well you might complete a certain task or challenge. so, whether you are walking, jogging, cycling or swimming, get involved, compete, wager nf and win! 180nf wager gives you a 100% professional and fitness app anywhere in the world. ### building the largest nutritional database we want to disrupt the fitness and nutritional space. just take a look around, in your supermarket, what are they selling to us, how many chronic disease have they appear, diabetes, obesity and everything starts with what you eat. we live in a world that is divided by nutritional information, all of the nutritional database are control by us or europe, and all of the nutritional or fitness apps uses the same database as reference. but they are incomplete, they aren’t taking into account most of the countries, local food, ethnicity, culture and those apps are obsolete outside the us or europe. we are facing a real problem and thanks to blockchain we can actually solve it by providing the most complete database not only to people or apps but to hospitals and nutritionist from around the world that can’t even evaluate their patience correctly from the lack of nutritional information of what the patient is eating and current apps aren’t helping users. that's why we decided to create the first nutritional database in blockchain maintain by the users. in stage 1, we created a new option in our app so anybody can scan products, contribute and **earn nf tokens.** <https://play.google.com/store/apps/details?id=com.cientochenta.nf_wager> ### challenges we want to motivate users to live a healthy lifestyle. that’s why we created a 6 week challenge, were you can choose between jogging, swimming, walking and cycling and you enter by betting nf token. so lets say you bet 40 nf tokens (each worth 3 usd) and in total 1000 users join the challenge, that’s 40000 nf tokens in the pool (120000 usd). only the users that complete the daily goals and complete the 6 week challenge are eligible to divide the pool money. <https://play.google.com/store/apps/details?id=com.cientochenta.nf_wager> ### timeline we just launch our dapp, you can follow the link bellow and if you leave a review it will help us to get it positioned in the playstore. for now wallet functionalitys are available, once we get more users we will enable the scanner rewards options. <https://play.google.com/store/apps/details?id=com.cientochenta.nf_wager> q2-2020 enable scanner rewards q4-2020 start testing challenges and if everyone goes well enable challenges in the dapp [https://www.youtube.com/watch?v=\_b909\_tp1va](url) ### airdrop we have an on going airdrop, if you download our app, and have at least 30 nf, we will send you 20 nf. 20 million tokens are reserved for this airdrop. ends the 31 of march 2020 ### trading nf token is available in stellarterm against usd (usdanchor). we want to have a stable price for all users and later on enable other pairs. ### links: website - <http://180nf.io/> discord - <https://discord.gg/mqxs4g> twitter - <https://twitter.com/180nf> medium - <https://medium.com/@180nutrifit> steemit - <https://steemit.com/@nf-180nf> instagram - <https://www.instagram.com/180nf/> appstore - <https://play.google.com/store/apps/details?id=com.cientochenta.nf_wager>
180nf - the first global health app
galactictalk.org
2020.29
[ { "text": "why there is no hiking in activities?\n\n", "name": "", "is_accepted": false }, { "text": "[simplepotato](https://galactictalk.org/d/2214/2) one of the features we are working on is elevation. is not the same hiking or walking, the elevation makes the differences. also in cycling, it’s not the same if you ride in a flat terrain than if you do mountain biking. with elevation we will be able to give better rewards and maintain fairness with the users.\n\n\njust in case you didn’t know, our ieo is live at \n\n<https://www.catex.io/ieo/detail/nf>\n\n\nafter the ieo we will list the asset at stellarterm.\n\n\n", "name": "", "is_accepted": false }, { "text": "i bought antminer at asicworlds.com, the quality is very decent, and the prices are not high. delivery is very fast and no problem. everything works just fine.\n\n", "name": "", "is_accepted": false } ]
fade5b54caec53996e4e11bf22fb3357
hi, i am testing the tokens and descentralized exchange in stellar. however, the fake coin that i created doesnt appear in stellar api even if i start giving it fake trading data (not giving a lot of volume because is real money out of my pocket) ? do i need to have a very high volume ? its a must to be verified ? or i'm i missing something. thank you for your help. the token is not verified, maybe its that? hope so
how to appear in the stellartem api ?
galactictalk.org
2021.17
[ { "text": "[dansan](https://galactictalk.org/d/2107/1) maybe you need to configure toml so that the asset becomes visible to all exchanges. <https://www.stellar.org/developers/guides/concepts/stellar-toml.html>\n\n", "name": "", "is_accepted": false }, { "text": "[dansan](https://galactictalk.org/d/2107/1) not to speak on stellarterms behalf but there is a verification process to get listed on there. they look at the project as a whole before it gets added, its really tough. what is much easier to get listed on is stellarport which just requires some basic toml and a little bit of volume.\n\n\ni should add that stellarx is the most exclusive exchange to get listed on. they require full company / project paperwork and an interview with the developers, it also helps to have sdf support as well when applying.\n\n\nit can be very frustrating but think of it all as an immune system against the rampant ico scam mania of 2017. also keep in mind that unlike (another major token platform) it isnt pay to play, they look at a projects merit before listing and you cant just throw a bunch of money at any of them and get listed to start scamming people which is a huge problem on other platform exchanges.\n\n", "name": "", "is_accepted": false }, { "text": "that's a two-edged sword though - under the continuing evolution of the howey test, naming a development team might be considered evidence that there is a central organization responsible for the success of your currency, which automatically makes it a security. cmc no longer requires a team, whitepaper, or anything else that would be considered centralization, for exactly that reason. that is awesome for utility tokens, which are still allowed to have teams (search for and check out the no-action letter for turnkey jets), but pretty much rules out any form of ico or ieo with us participants.\n\n", "name": "", "is_accepted": false }, { "text": "we cannot call stellar term & stellar x decentralised platforms when they have someone or a team deciding who gets in and who don't. hopefully someone come up with a better platform the better for stellar's decentralised future.\n\n", "name": "", "is_accepted": false }, { "text": "[asojan](https://galactictalk.org/d/2107/5) they are apps, the decentralized platform it's already there and is the dex built into the stellar network where everybody can list their tokens... now if you want to be included in one app then you must follow their rules which to me is totally acceptable\n\n", "name": "", "is_accepted": false }, { "text": "ok thank you for the input\n\n", "name": "", "is_accepted": false } ]