Bitcoin Forum
July 01, 2024, 06:04:05 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 »
241  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: June 16, 2015, 10:24:33 AM
It would be nice if the FIM wallet was a bit more streamlined (it's kind of clunky and slow) and easy to use... also would be good to stop brandishing the silly mofowallet name.

I agree to that.  Except for the slow part (do you mean the page takes a long time to load initially?). The focus of mofowallet has been mostly at the platform level (translation mechanism, provider mechanism, websockets, live feedback everywhere, modular UI approach - basically doing it the proper angular way).
I'm no UI designer we will hire one when the time is ready but for any UI designer to do anything he needs something he/she can work on, the Angular approach and the strict MVC design allow a designer to basically work on the HTML only. All the javascript (and it's a lot) can stay as is because of the strict separation of the model, view and controller parts.

Edit: Where are you situated if I might ask? In my country even on mobiles 4G/3G the hosted version loads in a few seconds and when all the JS was loaded subsequent loads are almost instant. Are in China by any chance? If so I might have an idea what is causing this.

242  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: June 16, 2015, 10:14:22 AM
About the Private Assets (short descr)

A private asset is an asset designed for use in financial institutions. The control of who can buy. sell, transfer or receive the asset is with the asset issuer. The asset issuer can at any time add or remove accounts to the list of 'allowed' accounts. The fee paid for placing orders and for each trade can be set by the asset issuer as a percentage of the order or trade sum and this fee will be paid to the asset issuer.
243  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: June 16, 2015, 09:54:01 AM
Hi,

Short status update, been a while I know..

When is MoFo going to update for NXT 1.5.x? Running anything before that at this point might put you on a fork, and probably eventually be locked out.

Our NXT+ product (the made ready for mofowallet version of NXT) has been on 1.5 since before the hard fork. Otherwise no-one could have used NXT since then. So unless you want to run the NXT server yourself locally from within the client, all should work.

The one-click exe version does not allow copy and paste, which makes working with large secure password a pain.
Saving password in the wallet also is not a very secure option for me.

I've had some reports of the copying issue. Thats OSX right?
For the upcoming release I've changed the way keys are stored.
Instead of in the encrypted wallet file they will live (encrypted) in your browser localStorage (your client side db, all browsers have that and it is very secure).
But the main method of login will consist of secret URL's that embed the encrypted passphrase in the url, so you'll need to place that url on your toolbar or something or save it somewhere. You basically only need to visit that url once since visiting it will store the wallet in the browser db, you then need to provide the wallet password each time you do a transaction.

Until we get the proper tools in place for 2FA this will remain a weak spot but it's the same with all other brainwallet coins.

--------

We have completed the Private Assets feature which has been running on testnet for a while now. It has been used for demoing purposes by Eliphaz his banking contacts.
For the purpose of these demos we also reskinned the AE UI.



To get rid of the slowness of the AE (the need to wait for blocks) we developed the Virtual Exchange layer.
This turned out to be a pretty difficult task but as always all turned out well in the end (thanks to our new testing tools).

What the virtual exchange does is exactly as it says provide an exchange but a virtual one.
While in the normal AE orders are matched (and balances are updated etc ..) when a new block comes in, in the virtual exchange orders are matched the millisecond an unconfirmed transaction hits the network. So basically instant. The fun thing now is when you place an order you'll see in realtime (all over the world basically) what the consequences of that action are (your balance will change immediately as will you see all trades that happen from that order as well see all partially matched orders have their remaining amounts updated).
This layer of course had to made fully aware of when new blocks come or blocks are popped. Since you cannot know for sure the order in which transactions are finally placed in the block by the forger the layer (which works like a event system over websockets) had to also be made aware of this and be able to correct it on the clients.

Currently we are finalizing the new identifier mechanism, the goal is to do away with all FIM-XXX addresses, while they are miles better than the old numeric addresses they still don't allow for easy adoption. The system being tested now will offer two types of ID's. There are your free name@fimk.fi names available to anyone (for free through our faucet) and then there are the verified addresses name@gmail.com for instance. If you want one of those you'll have to go through our verification process where you verify (all done using cryptographic methods) that you own that address. Then in a later stadium those verified addresses will become part of the platform in even more integrated ways.

The FIM-XXX address will probably remain working forever but all new things we do will focus on the new identifiers. In the current implementation you can have multiple identifiers point to a single account.

To make all these big and complex changes to the core possible and stay compatible with the upstream NXT critical security releases we now also developed our very own blockchain testing tool suite. While I don't mind writing Java, I like writing Javascript a lot more, mostly since you can so much more with much less code. After writing some tests in Java I figured since FIMK is on Java 8 now, why not make use of the new built-in Nashorn js engine to write tests in javascript instead ?
The result has given me joy and speed ever since, writing tests has become a breeze now, the suite (at least the parts released) can be seen here https://github.com/fimkrypto/fimk/tree/master/src/test/resources.


Dirk
244  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: May 14, 2015, 12:36:40 PM
I am wondering how mofo wallet works and whether my passphrase is safe. I have no access to my local installed Nxt client at the moment. So I am considering to type in my passphrase on mofowallet but I am not sure if is safe enough.

Mofowallet  does not send your key over the network, all calculations and cryptographic signatures are done client side (this is done in javascript - not sure if that interests you).

That said, there of course is the risk that the hosted mofowallet (https://mofowallet.com/launch.html) has been tampered with without our knowledge. But this risk is no different then using the wallet on a site like blockchain.info or paypall for instance.

When dealing with large transactions and you don't like the risk described you could download the desktop version and verify it's PGP signature, we use the same mechanism as NXT does which has a description of how to do that here. For FIMK you of course use our own download site https://github.com/fimkrypto/mofowallet/releases.

One of the reasons we made mofowallet was to do away with the pointless requirement of always providing your secret phrase, mofowallet does not need your secret phrase if all you want to do is check your balance or transactions, use the blockexplorer, checkout assets on the AE etc.. (since version 1.5 NXT has copied this feature).

If you are in a hurry (meaning you don't have a couple of hours to download the blockchain) mofowallet desktop version is the perfect fit. It uses a technique similar to the Electrum bitcoin wallet meaning when you start it, it works instantly. No need to download the blockchain (you can still do that though, but you don't need to).

This technique is called lite wallet and offers all benefits of the hosted version but with the added security of you being able to verify the code has not been tampered with.

Finally mofowallet supports both NXT and FIMK.

Note! If you are adding a new NXT account.. Don't provide your passphrase in the Add New Account dialog.
Instead just enter your account number, entering your passphrase will change the account in in the text field into a FIM-*** account, this is a bug that we need to fix.

Good luck!
245  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: May 14, 2015, 08:42:33 AM
which version could I use to forge? TKS Tongue

The latest downloadable desktop versions are listed on the client site https://mofowallet.com.

If you are looking for the server edition look here https://github.com/fimkrypto/fimk/releases.
The server editions include a UI that displays in your browser at http://localhost:7886, the server version UI does not include NXT support and is not instant on (blockchain download is not optional).

The hosted wallet is at https://mofowallet.com/launch.html
246  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: May 13, 2015, 06:01:42 PM

I see, my apologies to you since that seems to be not functioning properly.
I'll pass it on that it should be reset.
247  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: May 13, 2015, 05:56:23 PM
How do you check that.. Seems it's there.

https://www.mofowallet.com/launch.html#/accounts/FIM-XZ37-DJLE-6EMD-E7TBX/activity/latest

Balance: 133,044.8
Forged: 1,800
248  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: May 13, 2015, 05:53:36 PM
Could someone tell me where the hell my currency is?
I haven't checked my account for months and now it appears to be gone.
I enter my passphrase and it does NOT match my account any more - it used to.
What happened?!?!

What is your account id? And how do you check that it's there?
249  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 29, 2015, 11:07:10 AM
Forging feedback bugfix ..

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

 /$$$$$$$$ /$$$$$$ /$$      /$$          Release : 0.4.4         
| $$_____/|_  $$_/| $$$    /$$$          Date    : 2015-04-29         
| $$        | $$  | $$$$  /$$$$                 
| $$$$$     | $$  | $$ $$/$$ $$          http://fimk.fi       
| $$__/     | $$  | $$  $$$| $$          http://mofowallet.com
| $$        | $$  | $$\  $ | $$          http://forum.fimk.fi         
| $$       /$$$$$$| $$ \/  | $$          https://github.com/fimkrypto/mofowallet
|__/      |______/|__/     |__/                 
                     /$$                                       /$$             
                    | $$                                      | $$             
                    | $$   /$$  /$$$$$$  /$$   /$$  /$$$$$$  /$$$$$$    /$$$$$$
                    | $$  /$$/ /$$__  $$| $$  | $$ /$$__  $$|_  $$_/   /$$__  $$
                    | $$$$$$/ | $$  \__/| $$  | $$| $$  \ $$  | $$    | $$  \ $$
                    | $$_  $$ | $$      | $$  | $$| $$  | $$  | $$ /$$| $$  | $$
                    | $$ \  $$| $$      |  $$$$$$$| $$$$$$$/  |  $$$$/|  $$$$$$/
                    |__/  \__/|__/       \____  $$| $$____/    \___/   \______/
                                         /$$  | $$| $$                         
                                        |  $$$$$$/| $$                         
                                         \______/ |__/           


                                presents:


             /$$      /$$            /$$$$$$                               
            | $$$    /$$$           /$$__  $$                             
            | $$$$  /$$$$  /$$$$$$ | $$  \__//$$$$$$                       
            | $$ $$/$$ $$ /$$__  $$| $$$$   /$$__  $$                     
            | $$  $$$| $$| $$  \ $$| $$_/  | $$  \ $$                     
            | $$\  $ | $$| $$  | $$| $$    | $$  | $$                     
            | $$ \/  | $$|  $$$$$$/| $$    |  $$$$$$/                     
            |__/     |__/ \______/ |__/     \______/                       



                         /$$      /$$           /$$ /$$             /$$   
                        | $$  /$ | $$          | $$| $$            | $$   
                        | $$ /$$$| $$  /$$$$$$ | $$| $$  /$$$$$$  /$$$$$$ 
                        | $$/$$ $$ $$ |____  $$| $$| $$ /$$__  $$|_  $$_/ 
                        | $$$$_  $$$$  /$$$$$$$| $$| $$| $$$$$$$$  | $$   
                        | $$$/ \  $$$ /$$__  $$| $$| $$| $$_____/  | $$ /$$
                        | $$/   \  $$|  $$$$$$$| $$| $$|  $$$$$$$  |  $$$$/
                        |__/     \__/ \_______/|__/|__/ \_______/   \___/ 

Contains FIMK server 0.4.2 and NXT+ based of 1.4.17

Fixes a bug where forging feeback was not properly displayed in the UI.



                             ~~~ DOWNLOAD ~~~

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.4/mofowallet.win32-0.4.4.zip

SHA256 a28feba0a280d40d3d08822a6198137aa72da3f02fc1abc598936f477b2bcb03
MD5    c1a96aa3f9020ec6b0a9d15399dbd1d8

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.4/mofowallet.win64-0.4.4.zip

SHA256 02e3a19f459dc9386ef65603438ea572963f22237071bc09eaa672c5195d947b
MD5    d7e0dc19bb556641cf3b84bb1d8464fd

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.4/mofowallet.osx32-0.4.4.zip

SHA256 5b0ac253954b43dd20c9a5c01e9cad006a91cd81031e26e26604faad69639c9e
MD5    04cc534e33f9c313c9845ba220e5459b

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.4/mofowallet.osx64-0.4.4.zip

SHA256 b79f2d3fb89a67489c3e08ee664b944a8e28d63b84c2b33fdffa35983cc85e6e
MD5    ca45343e4bf6b2dbf84dc8ab951dd22d

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.4/mofowallet.linux32-0.4.4.zip

SHA256 76ad1cf857f6fa5819ca78996c258b15bd66aba7b0a3cd5d24433cc1a839e480
MD5    9078f1815e469b893ccaa1fb25430415

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.4/mofowallet.linux64-0.4.4.zip

SHA256 7e7d1cd8919e9c1ce6825b6ee7098f51cb2c472372950c2ebd4889d140ce0bb9
MD5    2e78a7a709d040e3293bdba9bbc80cca

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQEcBAEBAgAGBQJVQLdcAAoJEP9gzPcARnvnbosIAKT3EvcHIVxNAR79FNZRaf3j
byB7msbGEEetu7lak1URI1zQ4pOjNXl8ZJv//G48jsddMsAo/UpQLm945mUUTevv
L9a9vMcfuagbgLOdbpbxi0me+KszGSjo9pnjqdTC1+1lO9eLXg2oh/2AFKXmLqgj
FQWGzwpDMuWwOPNMsq5XDlpMOxjGLtnv2AO+YqM6/NJGmCHmpb1yRzuYpc3MzREL
4HixyKLz3/WVwznqNCAS4Px5oUnwoqP42wJ+HcCkIv8x/gMmxVeHsbOihWWSCvHl
/nvb4JiBsZGrFvrghrqhTwAP5g6cu6S0ttC7x8HMNOLSd/wL5ka4HJHHtfGnRRk=
=nylO
-----END PGP SIGNATURE-----
250  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 29, 2015, 10:11:24 AM
Hi!
Can anyone tell where to trade fimk?

There is https://www.ccedk.com/fimk-btc and occasionally people buying and selling on http://forum.fimk.fi/index.php
251  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 28, 2015, 03:32:06 PM
All the work starting from the big rewrite at the end of december and that continued to the early days of february made us temporarily stop posting updates to github, until now.
I've cleaned up the Mofowallet source repository and committed all work done. All work done from now on will be (almost) immediately shared on github.
Please do fork the code (it's open source software after all) patches are more than welcome, let's make it better together!

If anyone has any questions feel free to ask them here or on our forum.

Road to the repo ---------> https://github.com/fimkrypto/mofowallet

252  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 28, 2015, 03:19:51 PM
New server version


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

 /$$$$$$$$ /$$$$$$ /$$      /$$          Release : 0.4.2         
| $$_____/|_  $$_/| $$$    /$$$          Date    : 2015-04-28         
| $$        | $$  | $$$$  /$$$$                 
| $$$$$     | $$  | $$ $$/$$ $$          http://fimk.fi
| $$__/     | $$  | $$  $$$| $$          http://mofowallet.com
| $$        | $$  | $$\  $ | $$          http://forum.fimk.fi
| $$       /$$$$$$| $$ \/  | $$          https://github.com/fimkrypto/fimk
|__/      |______/|__/     |__/                 
                     /$$                                       /$$             
                    | $$                                      | $$             
                    | $$   /$$  /$$$$$$  /$$   /$$  /$$$$$$  /$$$$$$    /$$$$$$
                    | $$  /$$/ /$$__  $$| $$  | $$ /$$__  $$|_  $$_/   /$$__  $$
                    | $$$$$$/ | $$  \__/| $$  | $$| $$  \ $$  | $$    | $$  \ $$
                    | $$_  $$ | $$      | $$  | $$| $$  | $$  | $$ /$$| $$  | $$
                    | $$ \  $$| $$      |  $$$$$$$| $$$$$$$/  |  $$$$/|  $$$$$$/
                    |__/  \__/|__/       \____  $$| $$____/    \___/   \______/
                                         /$$  | $$| $$                         
                                        |  $$$$$$/| $$                         
                                         \______/ |__/ 

NXT 1.4.17 upstream changes:
  This is a critical bugfix release. Everyone is required to update.
  Fixed validation of asset exchange order cancellations.
  Fixed excessive memory usage in unconfirmed transaction processing.

FIMK 0.4.2 changes:

  - Removed the lucene index on the account name and account description
    tables. this temporarily removes the search by account name functionality
    but i expect to re-introduce that in a future release.
    This change will dramatically increase the speed with wihch blocks can
    be processed while downloading.

  - Removed the alias dependency for the public key hard fork change.
    From now on not requiring the public key is hardcoded in the source code.

  - Redone the build system that integrates and tunes mofowallet for use in
    FIMK server. This is not immediately visible to end users.

                             ~~~ DOWNLOAD ~~~

https://github.com/fimkrypto/fimk/releases/download/v0.4.2/fim-0.4.2.zip

SHA256 727d7e45d35f5f5501ad8dc3c111a67316e7051a60e31208e3e53ad3b6e4c56a
MD5    96c021b942be7de3a5da8251b022de56

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQEcBAEBAgAGBQJVP2UWAAoJEP9gzPcARnvnJ84H/1bOjcbEGlC2e562YqX957kV
N+xgXh28TFIn3a9lxynWy/YlVkecvNyNJ/tR+eFRhrBdtn+XIV5VozTu8Hx2QOZt
Cas6amVfccdjH56ZyyUNKs+IrPK2A+FYlW5GK0k4Uc6kqUSI5ZeKy9ytkm2hzv30
qh1VtZ8WQc3WlCw9fwMqH3MTNBBdCmC7Nwo/G5tWkyUUZWj4PW2qJkmucBs7gBj9
k7FJzjiE4Xqn/PiIYCuK2zkDPGu8qkRT8XAGqsuhMjFlsL8htExRf+QTSaUScnRS
SahQ8nzXhRd7MyNFs8hNRxE4JaYfGNEUlpopfXW1pN5UrPkw81z7UEGtbBYTE9Q=
=LNE6
-----END PGP SIGNATURE-----
253  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 28, 2015, 03:19:06 PM
New desktop version..


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

 /$$$$$$$$ /$$$$$$ /$$      /$$          Release : 0.4.3         
| $$_____/|_  $$_/| $$$    /$$$          Date    : 2015-04-28         
| $$        | $$  | $$$$  /$$$$                 
| $$$$$     | $$  | $$ $$/$$ $$          http://fimk.fi       
| $$__/     | $$  | $$  $$$| $$          http://mofowallet.com
| $$        | $$  | $$\  $ | $$          http://forum.fimk.fi         
| $$       /$$$$$$| $$ \/  | $$          https://github.com/fimkrypto/mofowallet
|__/      |______/|__/     |__/                 
                     /$$                                       /$$             
                    | $$                                      | $$             
                    | $$   /$$  /$$$$$$  /$$   /$$  /$$$$$$  /$$$$$$    /$$$$$$
                    | $$  /$$/ /$$__  $$| $$  | $$ /$$__  $$|_  $$_/   /$$__  $$
                    | $$$$$$/ | $$  \__/| $$  | $$| $$  \ $$  | $$    | $$  \ $$
                    | $$_  $$ | $$      | $$  | $$| $$  | $$  | $$ /$$| $$  | $$
                    | $$ \  $$| $$      |  $$$$$$$| $$$$$$$/  |  $$$$/|  $$$$$$/
                    |__/  \__/|__/       \____  $$| $$____/    \___/   \______/
                                         /$$  | $$| $$                         
                                        |  $$$$$$/| $$                         
                                         \______/ |__/           


                                presents:


             /$$      /$$            /$$$$$$                               
            | $$$    /$$$           /$$__  $$                             
            | $$$$  /$$$$  /$$$$$$ | $$  \__//$$$$$$                       
            | $$ $$/$$ $$ /$$__  $$| $$$$   /$$__  $$                     
            | $$  $$$| $$| $$  \ $$| $$_/  | $$  \ $$                     
            | $$\  $ | $$| $$  | $$| $$    | $$  | $$                     
            | $$ \/  | $$|  $$$$$$/| $$    |  $$$$$$/                     
            |__/     |__/ \______/ |__/     \______/                       



                         /$$      /$$           /$$ /$$             /$$   
                        | $$  /$ | $$          | $$| $$            | $$   
                        | $$ /$$$| $$  /$$$$$$ | $$| $$  /$$$$$$  /$$$$$$ 
                        | $$/$$ $$ $$ |____  $$| $$| $$ /$$__  $$|_  $$_/ 
                        | $$$$_  $$$$  /$$$$$$$| $$| $$| $$$$$$$$  | $$   
                        | $$$/ \  $$$ /$$__  $$| $$| $$| $$_____/  | $$ /$$
                        | $$/   \  $$|  $$$$$$$| $$| $$|  $$$$$$$  |  $$$$/
                        |__/     \__/ \_______/|__/|__/ \_______/   \___/ 

Embeds FIMK server 0.4.2 and NXT+ which was based off 1.4.17

Adds Namespaced Alias edit, update functionality.

Numerous bug fixes.

Updated Finnish and Polish translations.

Code cleanup completed open sourcing the new mofowallet with this release.



                             ~~~ DOWNLOAD ~~~

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.3/mofowallet.win32-0.4.3.zip

SHA256 74b7dd61f7ccf197585489ea32c32df2e5071f2aacd5b0cb8226ed986ac29c3f
MD5    7f4dedd4328d5b36e5a7946f8f890ea9

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.3/mofowallet.win64-0.4.3.zip

SHA256 17403f786fe1ba6f6bd6de19821ab34220dc8e4bfdc3b4905a219aa136d20660
MD5    48952deac56a7f3558c1e8b1a95c0a5a

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.3/mofowallet.osx32-0.4.3.zip

SHA256 499202588613148f7046d666e589cfe9299baf432789cf52fb6fe70ebf799309
MD5    217b2bc985a6341421cd109a30424065

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.3/mofowallet.osx64-0.4.3.zip

SHA256 8a6eb4c3e072995a05ad1e76ee3cd37f3276bb883c5a5b088357a30bc6c220f4
MD5    134affe77db26bebaf47c77f01c5a8ac

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.3/mofowallet.linux32-0.4.3.zip

SHA256 a82eed20434c1e65398ccb9edab9adb0123edb539b66386afc67747ea3b08954
MD5    36b88c9af77394d3443fe24ea670c117

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.3/mofowallet.linux64-0.4.3.zip

SHA256 377dd3174ddf236b22b6f7a2651d64868ae28077fca4e28bf12c53796f7c612d
MD5    9dd215870dfc6eb3394f9d57db6f790e

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQEcBAEBAgAGBQJVP5s3AAoJEP9gzPcARnvnjOoH/1z6B0w0XZgRRD8vbRURu6OK
HmQjqTkiz5I97RtQPjWC3TXk7FuAGYYpqR2H5wBqGCIFExz+K1O9cswG+R0XpwjB
Y+IMlwYn7lVczo+zCCMfgMtI38NkXYv5P+lsqYywducEHey9IZv/h3IPdpyEKgTH
l9dIxNsjOqvTk2K8lpnPfWGEeAS+JnHgaUN/O6Re5hQAZHjeyRR9OVzcWBcW5fiJ
ydBtucDlRYe7eAdqMsSEdpQylB2r/Qj+guFU78TNQ/kFByCcMtue1rSfd0syzeLh
3ExKrjcDtT8aZef4SACuGtcGdHQP5GQmfPZB6TC+E0Ea2dA1Zhysu3eeeT7fcPg=
=kC1q
-----END PGP SIGNATURE-----
254  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 28, 2015, 02:42:03 PM
OK thanks for the update.
The current windows version is slow when syncing, while the previous one was really fast (but I couldn't forge with the previous one).
Can you please check it since you plan an update soon?

This has been fixed in FIMK server 0.4.2.
Cause was the lucene (full text search) index put on the accounts table.

Thanks for reporting.
255  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 19, 2015, 08:29:28 PM
The NXT project has released a critical bug fix with their 1.4.17 release.
While I understand why NXT calls this a critical fix for FIMK (since it's relatively low transaction volume) this is not nearly as critical.

I've gone ahead and pulled in the fix to the FIMK server code which will give us FIMK server 0.4.2, this code is ready and available on github https://github.com/fimkrypto/fimk/commits/master.

Since I don't see a reason to rush this I will release a public release tomorrow.
256  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 19, 2015, 07:06:03 PM
How do I transfer FIMK from DGEX to a new wallet when the faucet is offline? I think I need to publish my public key somehow?

The part about DGEX I'm not sure off, best to contact DGEX I suppose.
But publishing your public key is not needed anymore, any new FIMK account number can receive funds, public key publishing is no longer necessary.
257  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 17, 2015, 08:33:55 AM
MofoWallet now supports 64 languages.

Read more about it on our blog.

Checkout the announcement and details on our forum:

Quote
Please have a look at our post detailing the translation status.
If you want to help out with the translations that can be done on hosted mofowallet now to0.
Desktop mofowallet 0.4.2 will be released tomorrow probably.

Hosted Crowd Translator tool:
https://www.mofowallet.com/launch.html#/translation/en


There is an email address in the client to send translation to but since these are just files they can be provided through other means to (forum with public link for instance).

Have fun!
258  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 17, 2015, 08:27:25 AM

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

 /$$$$$$$$ /$$$$$$ /$$      /$$          Release : 0.4.2         
| $$_____/|_  $$_/| $$$    /$$$          Date    : 2015-04-13         
| $$        | $$  | $$$$  /$$$$                 
| $$$$$     | $$  | $$ $$/$$ $$          http://fimk.fi       
| $$__/     | $$  | $$  $$$| $$          http://mofowallet.com
| $$        | $$  | $$\  $ | $$          http://forum.fimk.fi         
| $$       /$$$$$$| $$ \/  | $$          https://github.com/fimkrypto/mofowallet
|__/      |______/|__/     |__/                 
                     /$$                                       /$$             
                    | $$                                      | $$             
                    | $$   /$$  /$$$$$$  /$$   /$$  /$$$$$$  /$$$$$$    /$$$$$$
                    | $$  /$$/ /$$__  $$| $$  | $$ /$$__  $$|_  $$_/   /$$__  $$
                    | $$$$$$/ | $$  \__/| $$  | $$| $$  \ $$  | $$    | $$  \ $$
                    | $$_  $$ | $$      | $$  | $$| $$  | $$  | $$ /$$| $$  | $$
                    | $$ \  $$| $$      |  $$$$$$$| $$$$$$$/  |  $$$$/|  $$$$$$/
                    |__/  \__/|__/       \____  $$| $$____/    \___/   \______/
                                         /$$  | $$| $$                         
                                        |  $$$$$$/| $$                         
                                         \______/ |__/           


                                presents:


             /$$      /$$            /$$$$$$                               
            | $$$    /$$$           /$$__  $$                             
            | $$$$  /$$$$  /$$$$$$ | $$  \__//$$$$$$                       
            | $$ $$/$$ $$ /$$__  $$| $$$$   /$$__  $$                     
            | $$  $$$| $$| $$  \ $$| $$_/  | $$  \ $$                     
            | $$\  $ | $$| $$  | $$| $$    | $$  | $$                     
            | $$ \/  | $$|  $$$$$$/| $$    |  $$$$$$/                     
            |__/     |__/ \______/ |__/     \______/                       



                         /$$      /$$           /$$ /$$             /$$   
                        | $$  /$ | $$          | $$| $$            | $$   
                        | $$ /$$$| $$  /$$$$$$ | $$| $$  /$$$$$$  /$$$$$$ 
                        | $$/$$ $$ $$ |____  $$| $$| $$ /$$__  $$|_  $$_/ 
                        | $$$$_  $$$$  /$$$$$$$| $$| $$| $$$$$$$$  | $$   
                        | $$$/ \  $$$ /$$__  $$| $$| $$| $$_____/  | $$ /$$
                        | $$/   \  $$|  $$$$$$$| $$| $$|  $$$$$$$  |  $$$$/
                        |__/     \__/ \_______/|__/|__/ \_______/   \___/ 

Contains FIMK Server 0.4.1 and NXT+ Server based on NXT 1.4.16

Lots of bug fixes in both client and server.

Freetext blockchain search with instant results as you type.

MofoWallet is now available in 64 languages.



                             ~~~ DOWNLOAD ~~~

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.2/mofowallet.win32-0.4.2.zip

SHA256 c9084059fec5c463b267f63bf36ee4b6a0f00c9e859c6a80ef903869bdec3098
MD5    1e2e4f88c5ba14cd5196b420de64a499

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.2/mofowallet.win64-0.4.2.zip

SHA256 d43f411443986d06193777c9252ff656e08eebc43b3606346f992e4ef776c6cf
MD5    b184bfe54806f9d08a3ae0fc512b93eb

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.2/mofowallet.osx32-0.4.2.zip

SHA256 f510f87c390ff225680f30964ce68513c6595d4a32019f32ba07bb1cb0e18a7a
MD5    e9f4f031c60a0b8c7a69126487c20404

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.2/mofowallet.osx64-0.4.2.zip

SHA256 ea4b039a06fdfba379c76b844ad14144243aa592f7c97152a4321070cc3f057f
MD5    b31d91ebf1f3a35e4c47f669977e5255

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.2/mofowallet.linux32-0.4.2.zip

SHA256 5ec16e1dc8f4d026ef3342faa2d7c16f8ba79977fbc0744c8a2cf2479fd0626c
MD5    66951503b4b2139ae7530ada6cfd31e1

https://github.com/fimkrypto/mofowallet/releases/download/v0.4.2/mofowallet.linux64-0.4.2.zip

SHA256 92e644052502a68b192ded27743952decbe481c42b073a46ebe5fd239699f9f2
MD5    4b15fd21dccd678e15d950ba656d52e5

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQEcBAEBAgAGBQJVK6bSAAoJEP9gzPcARnvnnRgH/2wEzkUcHJBoU7UJnx6bp61u
IeN5NAf7YJiKoU7E9K3ajlGlFNNDu3qDK9piBlL3zppoC0wallXbL2pvpbYIQvss
nHvTwDnmr8+oObzx4LROtldoDaz4Ri8Vv5DGpi781IEvlYGMjBGsumFsiX0A9Lsk
rGo3GZHETNjFEPAvA7OvSbfVnzOQ4+ViSVyMUiY3apBKy9Z/05hXAotpgnWKNFwc
NdzcqZ4rxrTCSi7Eaa0tY0cEpmvU11f61Dty+2Nz+WLjd8+9WixbXT5DddOY0UFB
FuVDOjkuQztlabekyOWhAP7ZH5XgmXLHAIcgf2tgpxmn3WwxjOowYukOBptGI9w=
=isNY
-----END PGP SIGNATURE-----
259  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 17, 2015, 08:26:49 AM

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

 /$$$$$$$$ /$$$$$$ /$$      /$$          Release : 0.4.1         
| $$_____/|_  $$_/| $$$    /$$$          Date    : 2015-04-12         
| $$        | $$  | $$$$  /$$$$                 
| $$$$$     | $$  | $$ $$/$$ $$          http://fimk.fi       
| $$__/     | $$  | $$  $$$| $$          http://mofowallet.com
| $$        | $$  | $$\  $ | $$          http://forum.fimk.fi         
| $$       /$$$$$$| $$ \/  | $$          https://github.com/fimkrypto/mofowallet
|__/      |______/|__/     |__/                 
                     /$$                                       /$$             
                    | $$                                      | $$             
                    | $$   /$$  /$$$$$$  /$$   /$$  /$$$$$$  /$$$$$$    /$$$$$$
                    | $$  /$$/ /$$__  $$| $$  | $$ /$$__  $$|_  $$_/   /$$__  $$
                    | $$$$$$/ | $$  \__/| $$  | $$| $$  \ $$  | $$    | $$  \ $$
                    | $$_  $$ | $$      | $$  | $$| $$  | $$  | $$ /$$| $$  | $$
                    | $$ \  $$| $$      |  $$$$$$$| $$$$$$$/  |  $$$$/|  $$$$$$/
                    |__/  \__/|__/       \____  $$| $$____/    \___/   \______/
                                         /$$  | $$| $$                         
                                        |  $$$$$$/| $$                         
                                         \______/ |__/ 

This is the FIMK server package, while you can run this on your computer it's
not intended as such. Users of the FIMK server package generally install it
on a server.

For people looking for the installable FIMK client please check out our
desktop client dubbed MofoWallet which can be found at our github repo which
is here https://github.com/fimkrypto/mofowallet/releases.

http://fimkchat.com/2015/04/fimk-server-0-4-1-available-in-64-languages-baby/


FIMK 0.4.1 is based on NXT 1.4.13 (plus the critical parts of 1.4.16)

This release contains many bug fixes in both client and server.

1. Many bugs fixed
2. Free text (instant) blockchain search
3. Client translated in 64 languages
4. Built into the client crowd-translator tool
5. New Payments module that allows for sending many payments at once
  (basic income, dividends etc..)

                             ~~~ DOWNLOAD ~~~

https://github.com/fimkrypto/fimk/releases/download/v0.4.1/fim-0.4.1.zip

SHA256 8ff9982bd28d516e6454f260e3503314032ee3d57366c2580687671093b39624
MD5    09917bc677449ee2b3ae31bad6bc5bf9

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQEcBAEBAgAGBQJVKpWCAAoJEP9gzPcARnvnTMIIALzs27v1y9oTM9po30+K4TXK
cwvpBTC421Xi4LOflYh8cH4FECNKLfJmmSp4hkv6/Pu8JUNWVOUvCV/JAW3dAs9q
HcHBGSACMGLrVlScHu1DqAlY4ujdcV+AyMK4HOtly7X8oJlHBe9fKdqnpIwxo7AG
fY2+jy+U1bmRfB76DaQgER9RNkkVxEYuwDmvRo86Bj1J7D9Ab4CR/RdLIdHoNisK
X3pDHQkN+mEkZwj1NLR/8OglnZ1raTXGf3u4Exc58r5msrMNK19DqSDJWF444zvU
DTdHCRT7MxfWHeisgNikXCczfIdsJ7wP/UakPW44qygeOwFTtmjlvL1FZe1HrKM=
=A/N8
-----END PGP SIGNATURE-----
260  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FIMKrypto: NXT spinoff 30s blocks, POW-like rewards, national income *FIMK on: April 04, 2015, 07:51:28 PM
So, still haven't forged since switching to mofo.
Also, the server keeps showing this:

{"cause":"unknown","error":"Your peer is blacklisted"}, request was: {"shareAddress":true,"platform":"PC","protocol":1,"application":"FIMK","requestType":"getInfo","nxtversion":"1.4.13","version":"0.4.1"}, disconnecting

So, any ideas?

Havent forged a block or can 't start forging?
You can be forging while not yet having forged a block.

The error message you mention is harmless btw, the new code is just  a little more vocal about things that used to go unnoticed before.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!