# Create a relationship with a user
Rewards
Upon completing this challenge, you will be rewarded 25 Desmos Tokens.
Please note that in order to prevent spam, you will receive the reward just for the first relationship you create. No tokens will be awarded for later relationships.
With version v0.12.0
we've implemented the function that allows you to create a relationship with other users in order to represent a "follow" of such user.
# Creating your first relationship
Requirements
To create a relationship with a user, you will need their address.
To create a relationship, you have to use the following command:
desmoscli tx relationships create <Desmos address of receiver> <Subspace> \
--from <your-key-name> --yes \
--chain-id <chain-id>
2
3
Here's an example of such command:
desmoscli tx relationships create \
desmos1j2hyp3mzrxfhdkxzyvyqw9atu2s3smt89mklxs \
4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e \
--from jack --yes \
--chain-id morpheus-10000
2
3
4
5
Once you run that command you will be asked to type the password you've chosen during the setup and after having inserted it properly you should see something like this:
height: 0
txhash: E4920B61BFCFB935124FFC22BC04C1D5619943B138C87913E6EBCF2B5E892290
codespace: ""
code: 0
data: ""
rawlog: '[]'
logs: []
info: ""
gaswanted: 0
gasused: 0
tx: null
timestamp: ""
2
3
4
5
6
7
8
9
10
11
12
To make sure the transaction has been processed successfully, you can query it using the following command:
desmoscli query tx <hash> --trust-node --output json
# Example
# desmoscli query tx E4920B61BFCFB935124FFC22BC04C1D5619943B138C87913E6EBCF2B5E892290 \
--trust-node --output json
2
3
4
5
This will return you the JSON representation of the transaction itself.
# Getting the reward
After you've created the relationship, to make sure you receive your reward please follow this procedure:
Create a fork of this repo inside your private GitHub profile.
If you do not know how to do it, follow the GitHub fork guide.Pull the fork locally:
git clone https://github.com/<your-name>/primer.git ~/desmos-primer cd ~/desmos-primer
1
2Make sure your fork is up to date with the Primer repository:
git remote add upstream https://github.com/desmos-labs/primer.git git fetch upstream git rebase upstream/master
1
2
3Create a file named after your GitHub username containing the transaction hash:
echo "<tx-hash>" >> ./phase-6/submissions/create-relationship/<your-github-name> # Example # echo "E4920B61BFCFB935124FFC22BC04C1D5619943B138C87913E6EBCF2B5E892290" >> ./phase-6/submissions/create-relationship/RiccardoM
1
2
3
4Commit the changes, push them to your forked repo and create a pull request. If you do not know how to create one, refer to the GitHub Pull Requests guide.