Author

Topic: [ANN] Oceans | For Nightlife, the United Kingdom, Farms and Boats. (Read 1019 times)

full member
Activity: 215
Merit: 252
Discord Server Up!

https://discord.gg/Ug4wVfSvFH

Thank you for joining if you still believe in this coin.
full member
Activity: 215
Merit: 252
For the future:

I recommend that you never put your .dat in some new fork of this blockchain.
They are all useless, if not scams in preparation.
full member
Activity: 215
Merit: 252
Please, contact the excellent https://support.walletbuilders.com/
if you want to pay for 1 month of node hosting there (0.0014BTC).
full member
Activity: 215
Merit: 252
but why should u solo cpu mine a sha256 asic coin? Tongue

Because everybody still can.

member
Activity: 571
Merit: 18
but why should u solo cpu mine a sha256 asic coin? Tongue
full member
Activity: 215
Merit: 252
Node up and running for 1 month:

Code:
addnode node1.walletbuilders.com add

Thank you for posting here your IP, especially if you mine, so we fill up this .conf.

Here's mine too:

Code:
addnode 109.19.151.209 add
full member
Activity: 215
Merit: 252
full member
Activity: 215
Merit: 252
full member
Activity: 215
Merit: 252
Not very familiar. No project information? What can be discussed here? No information about the team? I would like to see more information link to the site?

Project information is: For nightlife, the United Kingdom, farms and boats.

Next blockchain, Zone Euro | For Europe, the Russian Commonwealth and, the Middle-East,
is that it's the project for politics in those three zones, to united them, politically first,
by creating the possibility to exchange, even secret information, via this wallet (Sign/Verify messages).
See here for the date of release: https://bitcointalksearch.org/topic/ann-om-micro-currency-for-christianity-and-all-arts-1688319

Here, you can discuss about everything related to this blockchain and, meet with business partners, if
you sell any sort of bottles (for nightlife) for example, or are a fisherman yourself, since this blockchain
is made for all the little boats as well or, their suppliers if they are a cruising company (the United Kingdom at large).

Information about the team is here: https://omthepage.blogspot.com

Thank you for asking.
full member
Activity: 215
Merit: 252
The project look promising, but still I need to learn more about it to get better understanding about this project.
But one thing I need to mentioned right now is the allocation for the bounties is just 1% out of the total supply, I think that one is small amount for it, usually it is allocated at least 2% for the bounty.

There are no bounties.
I said no premine, read well.
It's a fair launch, I do not even own the genesis block myself.
newbie
Activity: 216
Merit: 0
The project look promising, but still I need to learn more about it to get better understanding about this project.
But one thing I need to mentioned right now is the allocation for the bounties is just 1% out of the total supply, I think that one is small amount for it, usually it is allocated at least 2% for the bounty.
newbie
Activity: 108
Merit: 0
create a discord platform.we are doing  discord advertisement we have a lot of member .you can contact with us.i hope it hale you https://discord.gg/vJJJZqp
full member
Activity: 602
Merit: 110
Not very familiar. No project information? What can be discussed here? No information about the team? I would like to see more information link to the site?
full member
Activity: 215
Merit: 252
I just submitted our Oceans for listing to NovaExchange.
full member
Activity: 215
Merit: 252
Is there any other OS version? Hope for the success.

Yes, Linux download here:

https://github.com/DavidSantamaria/Oceans

And the Raspberry Pi wallet should be available in the coming month.
full member
Activity: 215
Merit: 252
For he who needs it, I re-uploaded the Windows wallet including both cli and tx.exe files:

https://1drv.ms/u/s!AnfxPZJvnghviP4Utnj9sci2yltbFA
newbie
Activity: 24
Merit: 4
For anyone who is interested to mine as well. I used the following cpuminer: https://github.com/pooler/cpuminer/releases

Here is a step by step tutorial how to get it up and running (assuming that you have your wallet set and rpc server is active)

Step 1
Download the latest release which is currently v2.5.0
If your OS is 32bits use the “pooler-cpuminer-2.5.0-win32.zip” file
If it’s not use “pooler-cpuminer-2.5.0-win64.zip”

Step 2
Extract the archive where it’s convenient for you

Step 3
Create a .bat file where the extracted files are located, we will use “ocean.bat” in this example.
Paste the following code:

Code:
#ocean.bat for minerd
minerd -a sha256d -o 127.0.0.1:4699 --no-getwork --no-longpoll -u rpc_oceans -p 42f2a0be5caae9449f5e2f795 -t nthreads --no-stratum --coinbase-addr myaddress  --coinbase-sig mysig --scantime 1800
PAUSE

Step 4
Impotant! make sure to make the following changes:
nthreads to the number of threads if your cpu has 8 threads try “–t 7”
myaddress  to your address
mysig to any value, basically it will appear as the coinbase signature in the blockchain


Recommandation
depending on how fast your cpu try to play with –scantime value try values between 300 and 1800


In order to check how it is going see the example below, your balance should be updated if your block was accepted.

Rejected block
[2018-12-25 16:25:37] thread 2: 89695456 hashes, 13292 khash/s
[2018-12-25 16:25:37] accepted: 22/25 (88.00%), 53574 khash/s (booooo)

Accepted block
[2018-12-25 16:28:36] thread 2: 426710624 hashes, 13442 khash/s
[2018-12-25 16:28:36] accepted: 23/26 (88.46%), 53774 khash/s (yay!!!)


Couple of tips:
Make sure –t argument has a slightly lower value than the number of cores/ threads that you have
I do not recommend mining on a laptop for long sessions. Make sure that CPU temperature is less than 65° to avoid damaging your hardware. You can check that with speccy.




Wow. Thank you!

Glad that I could help. I did a slight change in the code just in the beginning of the first line. I might do further changes in the future.

If anyone has a question or facing issues please feel free to share it in this thread.
newbie
Activity: 24
Merit: 4
For anyone who is interested to mine as well. I used the following cpuminer: https://github.com/pooler/cpuminer/releases

Here is a step by step tutorial how to get it up and running (assuming that you have your wallet set and rpc server is active)

Step 1
Download the latest release which is currently v2.5.0
If your OS is 32bits use the “pooler-cpuminer-2.5.0-win32.zip” file
If it’s not use “pooler-cpuminer-2.5.0-win64.zip”

Step 2
Extract the archive where it’s convenient for you

Step 3
Create a .bat file where the extracted files are located, we will use “ocean.bat” in this example.
Paste the following code:

Code:
REM ocean.bat for minerd
minerd -a sha256d -o 127.0.0.1:4699 --no-getwork --no-longpoll -u rpc_oceans -p 42f2a0be5caae9449f5e2f795 -t nthreads --no-stratum --coinbase-addr myaddress  --coinbase-sig mysig --scantime 1800
PAUSE

Step 4
Impotant! make sure to make the following changes:
nthreads to the number of threads if your cpu has 8 threads try “–t 7”
myaddress  to your address
mysig to any value, basically it will appear as the coinbase signature in the blockchain


Recommandation
depending on how fast your cpu try to play with –scantime value try values between 300 and 1800


In order to check how it is going see the example below, your balance should be updated if your block was accepted.

Rejected block
[2018-12-25 16:25:37] thread 2: 89695456 hashes, 13292 khash/s
[2018-12-25 16:25:37] accepted: 22/25 (88.00%), 53574 khash/s (booooo)

Accepted block
[2018-12-25 16:28:36] thread 2: 426710624 hashes, 13442 khash/s
[2018-12-25 16:28:36] accepted: 23/26 (88.46%), 53774 khash/s (yay!!!)


Couple of tips:
Make sure –t argument has a slightly lower value than the number of cores/ threads that you have
I do not recommend mining on a laptop for long sessions. Make sure that CPU temperature is less than 65° to avoid damaging your hardware. You can check that with speccy.


newbie
Activity: 24
Merit: 4
I tried to mine a couple of blocks Grin. It seems to work with the bash script but I noticed an issue. When I try to mine with "generatetoaddress" my balance doesn't change when a block is generated.
Also same thing with cpuminer. Blocks were mined and accepted but my balance hasn't been updated yet on the wallet, I don't know why  Huh

I used the following command line to run cpuminer:

Code:
cpuminer -a sha256d -o 127.0.0.1:4699 --no-getwork --no-longpoll -u user -p pwd -t 6 --no-stratum --coinbase-addr=myadr

Sorry, I do not code yet. If you did generated an address before you actually started to mine, thing this new Core version
does not provide like previous ones when you install the wallet, I cannot help you.

All I know is that, contrarily to older ones like Om (launched in 2016), it is now better, if not mandatory, to be mined in pools.
Maybe ask to someone there.

Friendly: David.

Thanks for the reply David. I tried an older version of cpuminer (minerd) and it worked without any issues  Smiley
full member
Activity: 215
Merit: 252
I tried to mine a couple of blocks Grin. It seems to work with the bash script but I noticed an issue. When I try to mine with "generatetoaddress" my balance doesn't change when a block is generated.
Also same thing with cpuminer. Blocks were mined and accepted but my balance hasn't been updated yet on the wallet, I don't know why  Huh

I used the following command line to run cpuminer:

Code:
cpuminer -a sha256d -o 127.0.0.1:4699 --no-getwork --no-longpoll -u user -p pwd -t 6 --no-stratum --coinbase-addr=myadr

Sorry, I do not code yet. If you did generated an address before you actually started to mine, thing this new Core version
does not provide like previous ones when you install the wallet, I cannot help you.

All I know is that, contrarily to older ones like Om (launched in 2016), it is now better, if not mandatory, to be mined in pools.
Maybe ask to someone there.

Friendly: David.
newbie
Activity: 24
Merit: 4
I tried to mine a couple of blocks Grin. It seems to work with the bash script but I noticed an issue. When I try to mine with "generatetoaddress" my balance doesn't change when a block is generated.
Also same thing with cpuminer. Blocks were mined and accepted but my balance hasn't been updated yet on the wallet, I don't know why  Huh

I used the following command line to run cpuminer:

Code:
cpuminer -a sha256d -o 127.0.0.1:4699 --no-getwork --no-longpoll -u user -p pwd -t 6 --no-stratum --coinbase-addr=myadr
full member
Activity: 215
Merit: 252
are you planning to listing ocean on exchange? where is your site or whitepaper, so we can fully understand this project.

I plan to do not pay for node hosting, an explorer or even to be listed ever again.

I will let the community do. Not pseudo coders destroying mass adoptions.
Think mining used to be as easy as typing setgenerate true 1 in your wallet...

If you want to exchange Oceans, do it from man to man first.
It's for big companies, industries. Serious encryption.
You can meet here and talk.

Same with the source code, I intend to upload nothing on Github this time.
Contact me if you are an exchange, a block explorer or an app maker, who wants to integrate us.
We will discuss about your credentials first, then, I might give you what you need.

Voila, thank you for asking.
sr. member
Activity: 630
Merit: 251
are you planning to listing ocean on exchange? where is your site or whitepaper, so we can fully understand this project.
copper member
Activity: 560
Merit: 46
Id Telegram : @dam_six
Like Coin Oceans, we still need development and we need people who are experts in making Coins.
I don't know, I don't know how to do it because I'm just a Youtuber. LOL

full member
Activity: 516
Merit: 100
Hei everybody
Is there any other OS version? Hope for the success.
full member
Activity: 215
Merit: 252


The Wallet
For Windows



Table of Conversion

1 Boat                = 0,00000001 OKD
10 Boats             = 0,00000010 OKD
100 Boats            = 0,00000100 OKD
1,000 Boats         = 0,00001000 OKD
10,000 Boats       = 0,00010000 OKD
100,000 Boats     = 0,00100000 OKD
1 Captain            = 0,01000000 OKD
10 Captains         = 0,10000000 OKD
100 Captains       = 1,00000000 OKD
or '1 Ocean'.



Symbol
Đ
Unicode: 00D0





Specifications
Algorithm  SHA256
Total coin supply  21,000,000
Block halving  210,000
Block reward  50
Coinbase maturity  20
Target timespan in minutes  10
Number of confirmations  6
Target spacing in minutes  5
Fair launch; no premine.

RPC port  4699
P2P port  4700



Github & Linux
https://github.com/DavidSantamaria/Oceans



How to Help
Code:
addnode ???.??.???.??? add



How to mine
Open your wallet, and make sure your wallet is connected with a node.
Your wallet is connected when you see the icon in the lower right corner of your wallet.
 
Close your wallet and create the file oceans.conf in the folder “%APPDATA%\oceans\”.
 
Paste the following text into oceans.conf and save the file.
 
Code:
rpcuser=rpc_oceans
rpcpassword=f534a3c8211636a82754a5630
rpcallowip=127.0.0.1
rpcport=4699
listen=1
server=1

 
Open your wallet.
 
Create a .bat file named mine.bat in the same folder where you extracted oceans-cli.exe and paste the following text into mine.bat.
 
Code:
@echo off
set SCRIPT_PATH=%cd%
cd %SCRIPT_PATH%
echo Press [CTRL+C] to stop mining.
:begin
 oceans-cli.exe generate 1 1000000000
goto begin

Save the file.
 
Execute mine.bat to start mining your first block.

It works when the miner's output says:
Code:
[
]

Wait about +/- 30 minutes to mine your first block, depending on your computer hardware.




Om the Blockchains™



Made With

https://www.walletbuilders.com/




Om Micro Currency

For Christianity, And All Arts.
https://bitcointalksearch.org/topic/ann-om-micro-currency-for-christianity-and-all-arts-1688319


Americom
For Antarctica, Aerospace, America.
https://bitcointalksearch.org/topic/ann-americom-for-antarctica-aerospace-america-5091836
Jump to: