Search content
Sort by

Showing 9 of 9 results by artemine
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] Artemine ICO Factory - Create ERC20 Tokens & ICO Smart Contracts - New
by
artemine
on 28/07/2018, 21:53:35 UTC
I want to know if I can edit the parameters and reduce my coins total suply. I made mistake with my calculation and entered 888,000,000 total suply insted of 88,000,000. How do I change this to 88,000,000?

Again, How do I list my coin in exchange after creation with Artemine ICO factory?

Thanks


You can't edit the supply. You would have to create a new token if you want a new supply.

For being added on exchanges it's up to you to contact them and request for listing.
Post
Topic
Board Service Announcements (Altcoins)
[ANN] Artemine ICO Factory - Create ERC20 Tokens & ICO Smart Contracts - New
by
artemine
on 19/06/2018, 16:08:11 UTC


ARTEMINE ICO FACTORY V1.0 - Create your own Ethereum Token and ICO Smart Contract

-> The ICO Factory is an update to the already existing Minereum Token Creation Service: https://bitcointalk.org/index.php?topic=1975550.0 (they are 2 different and independent services)

-> The ICO Factory is exclusive to Artemine (ARTE), no Minereum (MNE) is accepted for this service.

-> ICO Factory website: https://artemine.org/icofactory/

-> For more details about Artemine visit our website https://www.artemine.org/ our main forum https://bitcointalk.org/index.php?topic=2153950.0 or our tutorials page https://www.artemine.org/tutorials

Artemine ICO Factory Service is now live and allows anyone to create fully compatible ERC20 Ethereum Tokens and ICO Smart Contracts with just one Artemine transaction.

Before using the service read carefully this page and take note of the following:

1. Always check this post before making a transaction to the service and follow its steps, the information on this page can change.
2. The ARTE price is dynamic and can be changed, only transactions with the value >= the current price will be valid, always confirm the ARTE price before making a transaction.
3. This is the first basic experimental version released to the public, our team will monitor it and will release updates if required.
4. DO NOT send transactions to the service from exchanges. You will not be able to Setup your token and ICO, transactions should be sent from an address that you have full control.
5. Any tokens sent to the ICO Factory Service Address will be automatically destroyed and cannot be recovered, for this reason refunds are not possible.
6. The use of the Tokens and ICO are of full responsibility of the user of the service, we cannot provide any refunds or undo any settings configured by the user.
7. Do not use this service for any illicit activities such as Scams, Ponzi Schemes or any other crime related activities
8. All tokens generated by the service are 18 decimals

Current Price: 50 ARTE
ICO Factory Service Address: 0xa918185d042016e2d87c5cb0c7d216b062f79559

To Generate your Token and ICO Smart Contract, follow these steps:

1. Send 50 ARTE (or higher) to the address 0xa918185d042016e2d87c5cb0c7d216b062f79559
1.1 If you don't have Artemine you can buy on the exchanges livecoin.net or etherdelta.com under the symbols ARTE/BTC or ARTE/ETH, more information can be found here: https://www.artemine.org/tutorials
1.2 The Address you send the transaction from will be the only address that will be able to configure the Token and ICO, make sure you have full control over it
1.3 If you don't own an Ethereum wallet you can create one easily at https://myetherwallet.com and the Ethereum Address can be used to receive Artemine
 
2. After few seconds you will see your transaction in the website https://artemine.org/icofactory/

3. The transaction will be processed shortly, when all is done the status will be "Done"
3.1 Your Token Address and ICO Address will be visible in the "Contract Address" Column (it's the same address for the Token and ICO, to participate in the ICO users should send their funds to this address).
3.2 Note: Delays may occur due to Ethereum Network issues or if any problem in our server, but in normal conditions the whole process takes less than 5 minutes

After this, you are in full control of your Token.

Source Code: https://pastebin.com/36uHr4uH
Interface/ABI: https://pastebin.com/DDPPi6Te


Next steps are:

4. Summary of what you have to do:
4.1 Setup your token and ICO using the SetupToken function
4.2 Start your ICO by calling the function StartICO
4.3 Stop your ICO by calling the function StopICO (only when the ICO is over)

NOTE: If you just wish to create a Token without ICO: In the SetupToken function set values only on the parameters TokenName, TokenSymbol and ownerICOsupply, the remaining parameters should be left with 0. For this case points 4.2, 4.3, 7 and 8 don't need to be executed


5. To use the functions, add your Token it to your Ethereum Wallet or simply use https://myetherwallet.com to interact with it
5.1 For example using https://myetherwallet.com, access the Contracts Page here: https://www.myetherwallet.com/#contracts
5.2 In the Contract Address field, insert your Contract Address (from https://artemine.org/icofactory/) and the Interface/ABI provided above.

6. After you are able to Interact with the Contract, call the function SetupToken and setup your Token and ICO Settings (Name, Token Symbol, Supply, etc.)
  6.1 Only the Address that submitted the Artemine Transaction will be able to use this function
  6.2 This function can only be used once, so make sure the parameters you enter are correct
  6.3 Read the SetupToken Function Parameters below so you are sure of the information you insert, as stated above this can only be done once and it is irreversible, so make sure you don't make any mistakes.
 
SetupToken Function Parameters
 
tokenName: The desired name of your Token (Example: TEST)
tokenSymbol: The desired symbol of your Token (Example: TST)
oneEtherEqualsInWei:
 
 This parameter is the Exchange Rate that will be used during the ICO.
 
 Since Ethereum is 18 Decimals The value that is inserted in this field should be multiplied by 1000000000000000000 (or simply add 18 zeros to the end of your desired exchange rate).
 
 For example, if your desired exchange rate is 1 ETH = 1000 of your Tokens, then the value inserted here is calculated like this: 1000 * 1000000000000000000 = 1000000000000000000000
 
 The final value to be inserted for this example is 1000000000000000000000
 
maxICOpublicSupply:
 
 This is the available supply for the ICO, if your ICO is not supposed to have a max supply you can leave this field with 0 and the tokens generated during the ICO will have no limit.
 
 The 18 decimals calculations for this field are done automatically so you just need to insert the desired Max ICO Supply (Example 1 Million = 1000000)
 
 If for example 1000000 is inserted in this field, users will only be able to buy up to 1000000 of your Tokens during the ICO.
 
ownerICOsupply:
 
 This field should be used if you wish to have "Pre-mine".
 
 If this field has any value > 0 the address you used to create the Token will receive the specified Tokens amount (The address you used to send ARTE to the ICO Factory Service)
 
 The 18 decimals calculations for this field are done automatically so you just need to insert the desired Owner Supply (Example 1 Million = 1000000)
 
 If you don't want your address to receive any tokens leave this field with 0.
 
remainingTokensReceiverAddress:
 
 This field should be used if you wish the remaining unsold tokens when the ICO is over to be sent to an address.
 
 Example: If you put 1000000 (1 Million) in the maxICOpublicSupply field and if after the ICO only 500,000 tokens were sold, the remaining 500,000 will be sent to the address specified here.
 
 You can use the same address as you used to send the ARTE to the ICO factory service.
 
 If you don't wish to send the remaining tokens to any address leave this field with 0.
 
ICOfundsReceiverAddress:
 
 This field is the address that will receive the ICO funds (ETH funds) from the Smart Contract.

 DO NOT Use an exchange address here, your funds can be lost.
 
 You can use the same address as you used to send the ARTE to the ICO factory service.
 
 If 0 is inserted in this field the address you used to send ARTE to the ICO factory service will be set by default.

 Note: Make sure you don't confuse: The address configured on this field is the address that will receive the ETH funds from the Smart Contract Address when users participate in the ICO. The Token Address / ICO Address is the Smart Contract Address displayed on the ICO Factory Page as explained in the point 3.1.
 
blockICOdatetime:
 
 If you wish to have a block date on your ICO, insert a datetime in unix format in this field.
 
 When this datetime is reached no more ETH Funds will be accepted in the ICO.
 
 Leave this field with 0 if there is no planned ICO end time and it will run until you stop the ICO.
 
7. Once you are ready to go with your ICO call the function StartICO, no input parameters are required.

Note: Once the function StartICO is successfully called the ICO will be active and users that send ETH to your Smart Contract Address will receive tokens in return automatically.

8. Once your ICO is over call the function StopICO

Note: if an address was inserted in the parameter "remainingTokensReceiverAddress" during the setup the remaining tokens will be sent when the StopICO function is executed successfully.

9. If you need to add the Custom Token to your wallet use the following settings:
- Token Address/ICO Smart Contract Address: [YourTokenAddress] (from https://artemine.org/icofactory/)
- Token Symbol: [YourTokenSymbol] (The one used in the setup)
- Token Decimals: 18

You can add it using myetherwallet.com after you open your account.

10. You will automatically have a block explorer available on http://etherscan.io:
https://etherscan.io/token/[YourTokenAddress]

11. If your source code is not automatically verified by etherscan.io follow the steps similar to how is mentioned here: https://bitcointalk.org/index.php?topic=1867535.msg19630037#msg19630037

Use the version v0.4.18 instead of v.0.4.11

12. If you need to update your Information on etherscan.io follow these steps:

https://bitcointalk.org/index.php?topic=3035494.msg36473398#msg36473398

We will update this post along the way with more useful info if necessary.
Post
Topic
Board Tokens (Altcoins)
Re: [ANN] Artemine- First Self Mining Smart Contract 2.0 - New Thread
by
artemine
on 19/06/2018, 15:58:40 UTC
This is the new Artemine thread, old thread: https://bitcointalk.org/index.php?topic=2153950.0
Post
Topic
Board Tokens (Altcoins)
[ANN] Artemine- First Self Mining Smart Contract 2.0 - New Thread
by
artemine
on 19/06/2018, 15:56:23 UTC



Artemine is an independent fork of Minereum, and it's intended to continue the evolution of Smart Contract Mining Technology.

Artemine Crowdsale started on September 14, 2017 and ended on October 14, 2017




Website
http://artemine.org/

Type: Ethereum Token

Symbol: ARTE

Smart Contract Address
0x5f6e7fb7fe92ea7822472bb0e8f1be60d6a4ea50

Decimals: 18

ExchangesInfo & Social
Livecoin Block Explorer
EtherDelta Twitter account
Telegram group
         
Whitepaper
Roadmap

ICO Factory - Create your Ethereum Token ICO Smart Contract:
https://artemine.org/icofactory/

Genesis Addresses Trading Website:
https://artemine.org/GenesisTrading/

Live feeds:
https://bitcointalk.org/index.php?topic=2153950.msg32061859#msg32061859
https://www.worldcoinindex.com/coin/artemine
https://coinlib.io/coin/ARTE/Artemine
https://bitgur.com/coin/ARTE
https://www.blockfolio.com/


How to Tutorials:
https://bitcointalk.org/index.php?topic=2153950.msg23420739#msg23420739
https://www.artemine.org/tutorials

News:
https://www.newsbtc.com/2018/03/14/artemine-releases-long-awaited-ico-factory/
https://cointelegraph.com/news/platform-starts-trading-service-for-self-mining-smart-contract
https://www.ccn.com/artemine-introduces-genesis-addresses-trading-new-market/
https://cointelegraph.com/news/artemine-creates-major-technical-breakthrough-introduces-public-mining
https://cointelegraph.com/news/artemine-ico-strong-intends-to-burn-all-mne-into-token-creation
https://www.huffingtonpost.com/entry/59b81251e4b02c642e4a11bc
http://www.newsbtc.com/2017/08/27/minereum-team-launch-artemine-ico/
http://www.coinnewsasia.com/minereum-team-plans-to-launch-ico-for-artemine-minereum-token-v-2-0/

Minereum ANN Thread:
https://bitcointalk.org/index.php?topic=1867535.0
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] Artemine ICO Factory - Create your own ERC20 Token & ICO Smart Contract
by
artemine
on 06/05/2018, 11:56:00 UTC
Updating Information on Etherscan.io

Etherscan.io recently changed the process to Update Token Information on their page, they now require signed messages to update the Information on this page: https://etherscan.io/tokenupdate

To do this you need to sign a message from the address that you used to create your token (the address in the From column in the ICO Factory page) and send it us, follow these steps:

1. Go to https://www.myetherwallet.com/signmsg.html

2. In the field Message insert this text without the quotes:

"I verify that I created the contract with Artemine ICO Factory Service: [YourContractAddress]"

The [YourContractAddress] should be your Contract address from column "Smart Contract Address" in the ICO Factory page.

3. Sign the message with the address that you used to create your token (the address in the From column in the ICO Factory page)

The result should be something like this example:

{"address": "0xdecaf9cd2367cdbb726e904cd6397edfcae6068d","msg": "I verify that I created the contract with Artemine ICO Factory Service: 0x7bcD1e1CD0ABB53411f0A5a8F3751fEd3a36D82e","sig": "0xe26ce7ae8b04a20dbdd32de82bf16c4b7a367312341eef6761208bcf8bc518021b8ec354eae8a f54ad8190bef6bf8337eacafe3ce9710fe9c7f28596f1daaf631b","version": "2"}

4. Send an e-mail to contact@artemine.org with the subject Contract Signature Request and provide in the content the following Information:

- The result from Step 3

- The Message to be signed from etherscan.io

(make sure you send both informations otherwise your request will not be processed)

5. If all information is correct we will provide you the Message signature hash so you can proceed with the token information update on etherscan.io
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] Artemine ICO Factory - Create your own ERC20 Token & ICO Smart Contract
by
artemine
on 28/03/2018, 03:44:43 UTC
Hello, should people send funds to the ETH address specified in this parameter: ICOfundsReceiverAddress or to the Smart Contract Address?

The Smart Contract Address is the address of the token and the ICO address.

The ICOfundsReceiverAddress is the configuration of the addresss to where the funds received by the Smart Contract will be sent
Post
Topic
Board Service Announcements (Altcoins)
Merits 9 from 2 users
Topic OP
[ANN] Artemine ICO Factory - Create your own ERC20 Token & ICO Smart Contract
by
artemine
on 28/02/2018, 01:42:29 UTC
⭐ Merited by minereum (6) ,devlin (3)
This thread is now archived, new thread can be found here: https://bitcointalk.org/index.php?topic=4496313



ARTEMINE ICO FACTORY V1.0 - Create your own Ethereum Token and ICO Smart Contract

-> The ICO Factory is an update to the already existing Minereum Token Creation Service: https://bitcointalk.org/index.php?topic=1975550.0 (they are 2 different and independent services)

-> The ICO Factory is exclusive to Artemine (ARTE), no Minereum (MNE) is accepted for this service.

-> ICO Factory website: https://artemine.org/icofactory/

-> For more details about Artemine visit our website https://www.artemine.org/ our main forum https://bitcointalk.org/index.php?topic=2153950.0 or our tutorials page https://www.artemine.org/tutorials

Artemine ICO Factory Service is now live and allows anyone to create fully compatible ERC20 Ethereum Tokens and ICO Smart Contracts with just one Artemine transaction.

Before using the service read carefully this page and take note of the following:

1. Always check this post before making a transaction to the service and follow its steps, the information on this page can change.
2. The ARTE price is dynamic and can be changed, only transactions with the value >= the current price will be valid, always confirm the ARTE price before making a transaction.
3. This is the first basic experimental version released to the public, our team will monitor it and will release updates if required.
4. DO NOT send transactions to the service from exchanges. You will not be able to Setup your token and ICO, transactions should be sent from an address that you have full control.
5. Any tokens sent to the ICO Factory Service Address will be automatically destroyed and cannot be recovered, for this reason refunds are not possible.
6. The use of the Tokens and ICO are of full responsibility of the user of the service, we cannot provide any refunds or undo any settings configured by the user.
7. Do not use this service for any illicit activities such as Scams, Ponzi Schemes or any other crime related activities
8. All tokens generated by the service are 18 decimals

Current Price: 50 ARTE
ICO Factory Service Address: 0xa918185d042016e2d87c5cb0c7d216b062f79559

To Generate your Token and ICO Smart Contract, follow these steps:

1. Send 50 ARTE (or higher) to the address 0xa918185d042016e2d87c5cb0c7d216b062f79559
1.1 If you don't have Artemine you can buy on the exchanges livecoin.net or etherdelta.com under the symbols ARTE/BTC or ARTE/ETH, more information can be found here: https://www.artemine.org/tutorials
1.2 The Address you send the transaction from will be the only address that will be able to configure the Token and ICO, make sure you have full control over it
1.3 If you don't own an Ethereum wallet you can create one easily at https://myetherwallet.com and the Ethereum Address can be used to receive Artemine
 
2. After few seconds you will see your transaction in the website https://artemine.org/icofactory/

3. The transaction will be processed shortly, when all is done the status will be "Done"
3.1 Your Token Address and ICO Address will be visible in the "Contract Address" Column (it's the same address for the Token and ICO, to participate in the ICO users should send their funds to this address).
3.2 Note: Delays may occur due to Ethereum Network issues or if any problem in our server, but in normal conditions the whole process takes less than 5 minutes

After this, you are in full control of your Token.

Source Code: https://pastebin.com/36uHr4uH
Interface/ABI: https://pastebin.com/DDPPi6Te


Next steps are:

4. Summary of what you have to do:
4.1 Setup your token and ICO using the SetupToken function
4.2 Start your ICO by calling the function StartICO
4.3 Stop your ICO by calling the function StopICO (only when the ICO is over)

NOTE: If you just wish to create a Token without ICO: In the SetupToken function set values only on the parameters TokenName, TokenSymbol and ownerICOsupply, the remaining parameters should be left with 0. For this case points 4.2, 4.3, 7 and 8 don't need to be executed


5. To use the functions, add your Token it to your Ethereum Wallet or simply use https://myetherwallet.com to interact with it
5.1 For example using https://myetherwallet.com, access the Contracts Page here: https://www.myetherwallet.com/#contracts
5.2 In the Contract Address field, insert your Contract Address (from https://artemine.org/icofactory/) and the Interface/ABI provided above.

6. After you are able to Interact with the Contract, call the function SetupToken and setup your Token and ICO Settings (Name, Token Symbol, Supply, etc.)
 6.1 Only the Address that submitted the Artemine Transaction will be able to use this function
 6.2 This function can only be used once, so make sure the parameters you enter are correct
 6.3 Read the SetupToken Function Parameters below so you are sure of the information you insert, as stated above this can only be done once and it is irreversible, so make sure you don't make any mistakes.
  
SetupToken Function Parameters
 
tokenName: The desired name of your Token (Example: TEST)
tokenSymbol: The desired symbol of your Token (Example: TST)
oneEtherEqualsInWei:
 
 This parameter is the Exchange Rate that will be used during the ICO.
 
 Since Ethereum is 18 Decimals The value that is inserted in this field should be multiplied by 1000000000000000000 (or simply add 18 zeros to the end of your desired exchange rate).
 
 For example, if your desired exchange rate is 1 ETH = 1000 of your Tokens, then the value inserted here is calculated like this: 1000 * 1000000000000000000 = 1000000000000000000000
 
 The final value to be inserted for this example is 1000000000000000000000
 
maxICOpublicSupply:
 
 This is the available supply for the ICO, if your ICO is not supposed to have a max supply you can leave this field with 0 and the tokens generated during the ICO will have no limit.
 
 The 18 decimals calculations for this field are done automatically so you just need to insert the desired Max ICO Supply (Example 1 Million = 1000000)
 
 If for example 1000000 is inserted in this field, users will only be able to buy up to 1000000 of your Tokens during the ICO.
 
ownerICOsupply:
 
 This field should be used if you wish to have "Pre-mine".
 
 If this field has any value > 0 the address you used to create the Token will receive the specified Tokens amount (The address you used to send ARTE to the ICO Factory Service)
 
 The 18 decimals calculations for this field are done automatically so you just need to insert the desired Owner Supply (Example 1 Million = 1000000)
 
 If you don't want your address to receive any tokens leave this field with 0.
 
remainingTokensReceiverAddress:
 
 This field should be used if you wish the remaining unsold tokens when the ICO is over to be sent to an address.
 
 Example: If you put 1000000 (1 Million) in the maxICOpublicSupply field and if after the ICO only 500,000 tokens were sold, the remaining 500,000 will be sent to the address specified here.
 
 You can use the same address as you used to send the ARTE to the ICO factory service.
 
 If you don't wish to send the remaining tokens to any address leave this field with 0.
 
ICOfundsReceiverAddress:
 
 This field is the address that will receive the ICO funds (ETH funds) from the Smart Contract.

 DO NOT Use an exchange address here, your funds can be lost.
 
 You can use the same address as you used to send the ARTE to the ICO factory service.
 
 If 0 is inserted in this field the address you used to send ARTE to the ICO factory service will be set by default.

 Note: Make sure you don't confuse: The address configured on this field is the address that will receive the ETH funds from the Smart Contract Address when users participate in the ICO. The Token Address / ICO Address is the Smart Contract Address displayed on the ICO Factory Page as explained in the point 3.1.
 
blockICOdatetime:
 
 If you wish to have a block date on your ICO, insert a datetime in unix format in this field.
 
 When this datetime is reached no more ETH Funds will be accepted in the ICO.
 
 Leave this field with 0 if there is no planned ICO end time and it will run until you stop the ICO.
 
7. Once you are ready to go with your ICO call the function StartICO, no input parameters are required.

Note: Once the function StartICO is successfully called the ICO will be active and users that send ETH to your Smart Contract Address will receive tokens in return automatically.

8. Once your ICO is over call the function StopICO

Note: if an address was inserted in the parameter "remainingTokensReceiverAddress" during the setup the remaining tokens will be sent when the StopICO function is executed successfully.

9. If you need to add the Custom Token to your wallet use the following settings:
- Token Address/ICO Smart Contract Address: [YourTokenAddress] (from https://artemine.org/icofactory/)
- Token Symbol: [YourTokenSymbol] (The one used in the setup)
- Token Decimals: 18

You can add it using myetherwallet.com after you open your account.

10. You will automatically have a block explorer available on http://etherscan.io:
https://etherscan.io/token/[YourTokenAddress]

11. If your source code is not automatically verified by etherscan.io follow the steps similar to how is mentioned here: https://bitcointalk.org/index.php?topic=1867535.msg19630037#msg19630037

Use the version v0.4.18 instead of v.0.4.11

12. If you need to update your Information on etherscan.io follow these steps:

https://bitcointalk.org/index.php?topic=3035494.msg36473398#msg36473398

We will update this post along the way with more useful info if necessary.
Post
Topic
Board Marketplace (Altcoins)
Re: [ANN] Artemine Genesis Addresses Trading Thread
by
artemine
on 23/10/2017, 17:02:24 UTC
1000 ARTE address. 1 ETH. Pm.

I am selling 28,000 Artemine for 30 ETH, pm me for info.

You don't really need anyone to PM you, all you have to do is to set the buy price on the Genesis Address as explained here:

https://artemine.org/tutorials#sell-genesis

Second, post your address on this thread with the price info.

Any interested buyer can then buy your address as explained here:

https://www.artemine.org/tutorials#buy-genesis



Post
Topic
Board Marketplace (Altcoins)
[ANN] Artemine Genesis Addresses Trading Thread
by
artemine
on 23/10/2017, 15:39:06 UTC
Genesis Addresses Trading website is now live: https://artemine.org/genesistrading/

This thread is used to BUY and SELL Artemine Genesis Addresses.

It can be used by users while the Genesis Address Trading Website is under development.


The Genesis Addresses can be traded safely by using Artemine Smart Contract Functions without the need of any kind of escrow.

Artemine ANN: https://bitcointalk.org/index.php?topic=2153950

Artemine Tutorials: https://artemine.org/tutorials

Safely trade Artemine Genesis Addresses using the Smart Contract:

Sell
https://artemine.org/tutorials#sell-genesis

Buy
https://artemine.org/tutorials#buy-genesis