Bitcoin Forum
April 27, 2024, 01:07:15 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Economy / Digital goods / Re: i buy 1 merit point. offers ? on: May 12, 2022, 10:58:20 PM

i don't give a hoot. you guys are just circle jerking each other for a number in a database

A number in a database which you tried to buy with real world money just few moments ago :I

because i need 1 point as there is a restriction on the website to display images. without display restriction the merit system is the perfect definition of circle jerking.
2  Economy / Digital goods / Re: i buy 1 merit point. offers ? on: May 12, 2022, 08:59:47 PM
it's fucking impossible to get 1 merit on this website. it looks like a circle jerk.

Quote
it is literally impossible to get 1 merit point on this website.

I think you messed things up just because you didn't read the forum rules, so now instead of merits you have a few negative feedbacks. In addition, plagiarism on this forum is punishable by a permanent ban (in most cases), which means that any new account you create is considered ban evasion.

i don't give a hoot. you guys are just circle jerking each other for a number in a database
3  Other / Archival / Re: [Merit] Help newbies and those who have a little left to the next rank on: May 12, 2022, 12:09:35 PM
Rank: newbie
Amount of merit: 0
Profile link: https://bitcointalk.org/index.php?action=profile;u=3465982;sa=summary

i would like to get to the next level to post images for tutorials.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][UPPOS] Pandora Cash fork of PandoraPay on: May 11, 2022, 09:52:47 PM

I just joined the discord group. Maybe you should create some animations or video tutorials of how to use the web wallet.

this is really good idea. we will ask some community members to do some explanatory videos. the videos will explain how the web wallet works and how privacy is guaranteed against chain analysis.
5  Economy / Digital goods / Re: i buy 1 merit point. offers ? on: May 11, 2022, 09:35:09 AM
i buy 1 merit point. offers ?

Merit is not allowed to be sold.  Additionally, it isn't worth anything so you shouldn't be willing to buy it.  There are plenty of opportunities to earn merit for free by doing small things.  Use the search function or ask around in the beginner section.  Offering to buy it isn't the way.  Good luck!

it is literally impossible to get 1 merit point on this website.
6  Alternate cryptocurrencies / Altcoin Discussion / Re: create your own erc20 cryptocurrency - full guide on: May 11, 2022, 02:27:49 AM
should i do a tutorial how to create an ico token next time ?

I do not know how it will be useful for newbies or general users. Because everybody doesn't need to create an erc20 token. It is not something that you eat or need for any purpose if you are not starting a project. But every project hires a developer to create their token and smart contract because it's not that expensive for a project that is aiming for millions of dollars in market cap. Also, it can also be found on google so few will be interested.



my intention is to use my knowledge to help other newbies on the forum
7  Alternate cryptocurrencies / Altcoin Discussion / Re: create your own erc20 cryptocurrency - full guide on: May 11, 2022, 01:58:39 AM
should i do a tutorial how to create an ico token next time ?
8  Alternate cryptocurrencies / Altcoin Discussion / create your own erc20 cryptocurrency - full guide on: May 11, 2022, 01:50:39 AM
here i come with a new tutoral. how to create an erc20 cryptocurrency. it took me a while to write it.

How to create your own cryptocurrency simply?

 The goal of this article is to show how to create an ERC20-like cryptocurrency in as little time as possible.

Let's start with the basics: what is an ERC20 token? In recent years, the ERC20 token specification has become the de facto standard for Ethereum tokens (or Ethereum-derived blockchains). In other words, most of the Ethereum contracts available today are ERC20 compliant.

This guide details how you can create your own ERC20-like token on the Ethereum blockchain, but before we get started, let's take a closer look at the ERC20 standard.


What makes ERC20 tokens so attractive and successful?

There are several factors at play: ERC20 tokens are simple and easy to deploy, as you will see in this tutorial.

The ERC20 standard solves an important problem, as blockchain-based markets and crypto-wallets need a single, standardized set of commands to communicate with the range of tokens they manage. This includes the rules of interaction between the different tokens, as well as the rules of token exchanges.


It was the first popular specification to propose the standardization of tokens on the Ethereum blockchain. It was by no means the first, but thanks to its popularity, it quickly became the industry standard. Just like other Ethereum tokens, ERC20 tokens are implemented as smart contracts and run on the Ethereum virtual machine (EVM) in a decentralized manner (on the blockchain). Solidity: the programming language of "Smart Contract" or Smart Contracts Ethereum smart contracts are written in Solidity. Although there are alternative languages, almost no one uses them for this purpose. Solidity is similar to JavaScript, so if you have some knowledge of JavaScript, or even Java and other C-type languages, you shouldn't have a hard time understanding what a piece of code in Solidity does, even before you master Solidity enough to use it.


This is where the fun begins, as you should be able to start creating a simple ERC20 contract in no time. This is a simple task, simple enough for this article to explain how to write and deploy an ERC20 token in less than an hour. The token we will create in this demonstration will be a simple ERC20 implementation, without too many bells and whistles. However, I have seen many similar simple tokens in the real world, and they tend to work well.


Presentation of the ERC20 token standard What is an ERC20? Simply put, the ERC20 standard defines a set of functions to be implemented by all ERC20 tokens in order to allow integration with other contracts, wallets or cryptocurrency markets. This set of functions is rather short and basic.

Code:
function totalSupply() public view returns (uint256);

function balanceOf(address tokenOwner) public view returns (uint);

function allowance(address tokenOwner, address spender) public view returns (uint);

function transfer(address to, uint tokens) public returns (bool);

function approve(address spender, uint tokens)  public returns (bool);

function transferFrom(address from, address to, uint tokens) public returns (bool);


The functions of ERC20 tokens allow an external user, for example a crypto-wallet application, to know a user's balance and transfer funds from one user to another with appropriate authorization. The smart contract defines two specifically defined events:



Code:
event Approval(address indexed tokenOwner, address indexed spender,
 uint tokens);

event Transfer(address indexed from, address indexed to,
 uint tokens);

 
 These events will be invoked or issued when an account is granted the right to withdraw tokens from an account, and after the tokens are actually transferred. In addition to the functions of standard ERC20 tokens, many ERC20 tokens also have additional fields and some have become a de facto part of the ERC20 standard, if not in writing, in practice. Here are some examples of these fields.
 

Code:
string public constant name;

string public constant symbol;

uint8 public constant decimals;

Here are some points about ERC20 and Solidity: A public function is accessible outside the contract itself, view means essentially constant, that is, the internal state of the contract will not be modified by the function. An Event is how Solidity allows customers, e.g. your app, to be notified of specific events in the contract. Most Solidity language constructs should be clear if you already possess the essential Java/JavaScript skills.


Write an ERC20 token in Solidity Now that we've outlined the basics and explained what it takes to create an ERC20 token, it's time to start writing logic. First, we need to define two mapping objects. Here is the notion of Solidity for an associative or key / value array:


Code:
mapping(address => uint256) balances;

mapping(address => mapping (address => uint256)) allowed;

Write an ERC20 token in Solidity Now that we've outlined the basics and explained what it takes to create an ERC20 token, it's time to start writing logic. First, we need to define two mapping objects. Here is the notion of Solidity for an associative or key / value array:


As you can see, the value field of the authorized mapping is in itself a mapping of the tracing account address with its approved withdrawal sum. These mappings as well as all other contract fields will be stored in the blockchain and will be exploited, which will cause the changes to spread to all user nodes in the network. Blockchain storage is expensive and the users of your contract will have to pay, one way or another. Therefore, you should always try to minimize the storage size and writes in the blockchain. Now that we have the required data structures in place, we can start writing the ERC20 logic in the appropriate functions.
9  Other / Off-topic / Re: What is the last movie you watched? on: May 11, 2022, 01:30:06 AM
Was actually some time ago, but:
Dunkirk 9/10 - it's hard to even rate by regular movie standards. Different from any war movie ever, different from any movie ever period. Another argument to my list of proof that Christopher Nolan is a genius.
The Last Jedi 9/10 - pls no shitstorm here, long story short: it's quite different and has a ton of twists and surprises, but still very much Star Wars and I dig it a lot.
Murder On The Orient Express 9.5/10 - may be "just" an ordinary remake of a classic novel, but everything about it is excellent, especially the acting. And the morale of the story is such a breath of fresh air, as it seems a lot of people these days think that a crime/detective story has to be uberdark, graphically violent and depressing in every way.

So yeah, some great movies last year, imo. I don't actually always rate everything so high. Cheesy
10  Economy / Digital goods / i buy 1 merit point. offers ? on: May 11, 2022, 01:10:17 AM
i buy 1 merit point. offers ?
11  Other / Off-topic / Re: Do you Smoke? on: May 11, 2022, 12:58:13 AM
What do you think are the long term consequences of smoking Cigg or Weed.

Other than cancer.

Do it! No matter how ugly, messy, and hard it is. Quitting smoking is the best thing I have ever done for myself. You will not understand it until later in your quit and it happens at a different time for everyone, but quitting smoking is freedom. One day it will dawn on you that you are not answering to or consulting with your nicotine cravings for permission to live your life and that day will be the day that you are free indeed!
12  Other / Off-topic / Re: What's Next!?!? on: May 11, 2022, 12:25:24 AM
anonymous cryptocurrencies.
13  Other / Off-topic / Re: favourite movie on: May 10, 2022, 11:12:40 PM
I honestly watch old spaghetti westerns and mob films so I don’t really enjoy newer movies but last year had some great movies.

1: No Way Home.
2: Let There Be Carnage.
3: tick, tick… BOOM!
4: The Harder They Fall.
5: The Suicide Squad.
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][UPPOS] Pandora Cash fork of PandoraPay on: May 10, 2022, 10:22:11 PM
yes.

discord: discord.com/invite/Fndv63dejC
telegam: t.me/PandoraCashOfficial/
15  Other / Beginners & Help / Re: how can we get merit points? on: May 08, 2022, 08:37:57 PM
Then chill out and we see if the forum admin will ban you for not buying Copper membership. Nobody is forcing you  Roll Eyes

no problem, mate. i will make 50 new accounts until i will hit 1 merit point.


50 new accounts do not mean that you will still get some merit. here in a couple of posts, you have already shown that you are very far from earning the first merit. From begging to buying, you finished on multi-accounting. Everything that you think is wrong.
take a closer look at the suggestions you have already received and try to fit them into the recommended norms of behavior on the forum. although I would say this is not your first account here and you already know how things work here.

paying with bitcoin i lose personal privacy
sharing too much i lose personal privacy

i just need 1 single point so i can share images.  the bitcointalk merit system is the perfect example of a religious cult.
16  Other / Beginners & Help / Re: how can we get merit points? on: May 08, 2022, 07:57:22 PM
Then chill out and we see if the forum admin will ban you for not buying Copper membership. Nobody is forcing you  Roll Eyes

no problem, mate. i will make 50 new accounts until i will hit 1 merit point.

omg. 1 merit so i can post images.
Even if you got 1 merit now, you would still not be able to post images anyway as you lack activity points. So why is it a big deal to get 1 merit today?

Quote
if you would be able to sell your merit points, you would have dumped most (if not all) by now.  Roll Eyes

Fortunately, not everyone is greedy here like you think.


fortunately, there is no option to sell merit points for you all.
17  Other / Beginners & Help / Re: how can we get merit points? on: May 08, 2022, 07:42:46 PM
<…>
If you post something decent enough, you’d postulate for being merited. Then you’ll see how things work properly …

By the way, as mentioned before, if you want it to be able to post images on your Ann thread (for which you’d both need to meet the required Activity and Merit requirements for Jr. Member), the Pandora whatever should at least be able to rollout a few sats to aquire a Copper Membership and accelerate the process.


cuz bitcoin is traceable... i will never use bitcoin. the forum is just forcing me to pay and lose my privacy...



It depends how you perform you address management. You could always mix some for privacy purposes.

no thanks. bitcoin is that bad in terms of privacy.
18  Other / Beginners & Help / Re: how can we get merit points? on: May 08, 2022, 07:39:02 PM
omg. 1 merit so i can post images. if you would be able to sell your merit points, you would have dumped most (if not all) by now.  Roll Eyes
19  Other / Beginners & Help / Re: how can we get merit points? on: May 08, 2022, 07:19:16 PM
how can we get merit points ?  Smiley
To get Merits in this forum you have to contribute by helping others, have to follow forum rules and should share proper knowledge with everyone. When you will share or help someone forum Members will appreciate your contribution by sending merits. So it's really very easy to get merits but you have to be on the right way.
My suggestion is that don't focus on merit earning just write constructive and high quality posts and try to help others as much as you can the you will obviously be appreciated by a lot of merits.
Don't abuse merit system by trading or begging then you will be red tagged.

very insightful information.

This would be helpful, read in details and understand

Merit & new rank requirements

To earn merit, make quality post. To make quality posts, read than you are posting, especially read what quality posters' topics and replies.

i understand now.

can i get just one merit to see how this thing works ?
20  Other / Beginners & Help / how can we get merit points? on: May 08, 2022, 07:01:00 PM
how can we get merit points ?  Smiley
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!