___  ___    _ _    _  _ _____   _____
 / __|/ _ \  | | |  | || |_ _\ \ / / __|
| (_ | (_) | |_  _| | __ || | \ V /| _|
 \___|\___/    |_|  |_||_|___| \_/ |___|

 --- A GOPHER-LIKE INTERFACE FOR HIVE BLOCKCHAIN ---

Open sourcing BeeChat Client And Developer Documentation

BY: @reazuliqbal | CREATED: Sept. 29, 2020, 8:55 a.m. | VOTES: 455 | PAYOUT: $98.16 | [ VOTE ]

[IMAGE: https://images.hive.blog/DQmPXwPzSumzBiZzwHopbzUrRSxQ5Gs1o956FdrpxWMVDCh/image.png]

BeeChat is real-time chat service for Hive built by Hive-Engine. You probably have read the announcement post by @aggroed. If you have a Hive account, you can start chatting immediately with other users from the websites which would implement BeeChat in them.

Hive-Engine is open sourcing BeeChat client website which may help other developers to add chat feature in their website or mobile apps.

BeeChat Demo: https://beechat.hive-engine.com/
BeeChat Client: https://github.com/hive-engine/beechat-frontend

Client website is written in Vue JS, the logic for implementation on other frameworks should be similar. In future we will provide a embed-able chat widget code which will make it very easy to add the chat in any website.

BeeChat Developer Documentation

API

Base URL: https://beechat.hive-engine.com/api

GET /users/login

Logs in a user.

Query Parameters

Example Response

```jsonld=
{
"username": "reazuliqbal",
"admin": true,
"ws_token": "01EKC3JVR2D81AM8Z9S3Q0NVAJ"
}


### `GET /users/verify`

Verifies if the current access token is valid. If the access token is not valid and there is a refresh token, then a new access token will be issued.

**Query Parameters**

No parameters are needed.

**Example Response**
```json=
{
  "username": "reazuliqbal",
  "ws_token": "01EKC3JVR2D81AM8Z9S3Q0NVAJ"
}

GET /users/refresh-token

Requests a new access token.

Query Parameters

No parameters are needed.

Example Response
```json=
{
"username": "reazuliqbal",
"ws_token": "01EKC3JVR2D81AM8Z9S3Q0NVAJ"
}


### `GET /users/friends`

Returns user's friends and blocked list.

**Query Parameters**

No parameters are needed.

**Example Response**

```json=
{
    "friends": ["codebull", "bdcommunity", "aggroed"],
    "blocked": ["reazul-dev"]
}

GET /users/friend-requests

Returns an array of user's pending friend requests.

Query Parameters

No parameters are needed.

Example Response

```json=
[{
"id": "01EKC46ZMG111C2HYABE80WE8T",
"username": "reazul-dev"
}]


### `GET /users/settings`

Returns user's settings.

**Query Parameters**

No parameters are needed.

**Example Response**
```json=
{
  "dm": {
    "only_from_friends": false
  }
}

POST /users/settings

Updates the user's settings.

Payload

Example Response
```json=
{
"dm": {
"only_from_friends": false
}
}


### `GET /users/channels`

Returns an array of user-created channels.

**Query Parameters**

No parameters are needed.

**Example Payload**
```json=
[{
  "moderators": [],
  "members": ["reazuliqbal"],
  "blocked": false,
  "type": "channel",
  "name": "BDCommunity Chat",
  "creator": "reazuliqbal",
  "created_at": "2020-09-29T05:17:43.848Z",
  "updated_at": "2020-09-29T05:17:43.848Z",
  "id": "01EKC4Q317YM484Z7BMVG9Y1K0"
},
....
....
]

POST /users/channels

Creates a new channel.

Payload
- name: String

Example Response

```json=
{
"id": "01EKC4Q317YM484Z7BMVG9Y1K0",
"name": "BDCommunity Chat",
"creator": "reazuliqbal"
}


### `GET /users/logout`

Logs out the user.


### `GET /messages/conversations`

Returns an array of user's conversations.

**Query Parameters**

No parameters are needed.

**Example Response**
```json=
[{
  "moderators": [],
  "members": ["codebull", "reazuliqbal"],
  "blocked": false,
  "type": "dm",
  "creator": "reazuliqbal",
  "created_at": "2020-09-29T04:09:31.453Z",
  "updated_at": "2020-09-29T04:09:51.596Z",
  "id": "01EKC0T6HEVRDP0CYGZAE6VVFR"
},
.....
.....
]

GET /messages/conversation

Returns details of a conversation.

Query Parameters
- id: String - ID of a conversation
- ids: String - Comma separated IDs of conversations

Either id, or ids is required.

Example Response
```json=
{
"moderators": [],
"members": ["codebull", "reazuliqbal"],
"blocked": false,
"type": "dm",
"creator": "reazuliqbal",
"created_at": "2020-09-29T04:09:31.453Z",
"updated_at": "2020-09-29T04:09:51.596Z",
"id": "01EKC0T6HEVRDP0CYGZAE6VVFR"
}


### `GET /messages/new`

Return an array of unread messages.

**Query Parameters**

No parameters are needed.

**Example Response**
```json=
[{
  "conversation_id": "01EKC0T6HEVRDP0CYGZAE6VVFR",
  "from": "codebull",
  "to": "reazuliqbal",
  "content": "Whats up?",
  "timestamp": "2020-09-29T05:31:56.399Z",
  "id": "01EKC5H3KFSWN7FE9XT497HGQT"
},
....
....
]

GET /messages/chats

Query Parameters

Example Response
```json=
[{
"conversation_id": "01EKC0T6HEVRDP0CYGZAE6VVFR",
"from": "reazuliqbal",
"to": "codebull",
"content": "Hey, first message from BeeChat",
"timestamp": "2020-09-29T04:09:31.473Z",
"id": "01EKC0T6JHCGEPGPSMRB3X88RR",
"read": true
}, {
"conversation_id": "01EKC0T6HEVRDP0CYGZAE6VVFR",
"from": "codebull",
"to": "reazuliqbal",
"content": "Hey Hey!",
"timestamp": "2020-09-29T04:09:51.617Z",
"id": "01EKC0TT81T2WGRKKYPQRXWGVA",
"read": true
},
....
....
]


## WebSocket

Server: `wss://ws.beechat.hive-engine.com`

A WebSocket server is for two way communication between a server and a user, this facilitates the real-time chatting. As soon as a user connects to the WebSocket server, they should authenticate themselves otherwise the connection will be closed by the server.

The server will only accept JSON message and will also reply in JSON.

**Protocol**

```json=
{
  "type": String,
  "payload": Object
}

Authentication

Authenticate the user with the server.

Message

```json=
{
"type": "authenticate",
"payload": {}
}


**Response**

```json=
{
  "type": "status",
  "payload": {
    "authenticated": true
  }
}

authenticated could be true or false depending on the user's authentication status.

Create Conversation

Creates a DM or group conversation.

Payload

Message
```json=
// DM
{
"type": "create-conversation",
"payload": {
"to": "reazuliqbal",
"message": "Hi"
}
}

// GROUP
{
"type": "create-conversation",
"payload": {
"to": ["codebull", "reazul-dev"],
"message": "This is a group conversation!"
}
}


**Response**

The server will respond with two messages. One for the created conversation and one for the new chat message.

```json=
{
  "type": "conversation-created",
  "payload": {
    "moderators": [],
    "members": ["codebull", "reazul-dev", "reazuliqbal"],
    "blocked": false,
    "type": "group",
    "creator": "reazuliqbal",
    "created_at": "2020-09-29T06:16:25.695Z",
    "updated_at": "2020-09-29T06:16:25.695Z",
    "id": "01EKC82JAMV9JQ1PPG9CNDF3ER"
  }
}

```json=
{"type":"chat-message","payload":{"id":"01EKC82JBDQD25B94NZRSH2FMX","conversation_id":"01EKC82JAMV9JQ1PPG9CNDF3ER","content":"This is a group conversation!","from":"reazuliqbal","to":null,"read":false,"timestamp":"2020-09-29T06:16:25.709Z"}}


### Rename Conversation

Renames a group conversation. Only the creator can rename a conversation.

**Payload**

- `conversation_id`: String - ID of the conversation to be renamed.
- `name`: String - New name

**Message**

```json=
{
  "type": "rename-conversation",
  "payload": {
    "conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
    "name": "The Awesome Group"
  }
}

Response

```json=
{
"type": "conversation-renamed",
"payload": {
"conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
"name": "The Awesome Group"
}
}


### Leave Conversation

Leaves a conversation.

**Payload**

- `conversation_id`: String - ID of the conversation.

**Message**

```json=
{
  "type": "leave-conversation",
  "payload": {
    "conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER"
  }
}

Response

To user:

```json=
{
"type": "conversation-removed",
"payload": {
"id": "01EKC82JAMV9JQ1PPG9CNDF3ER"
}
}


To all members:

```json=
{
  "type": "member-left",
  "payload": {
    "conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
    "member": "codebull"
  }
}

Chat Message

Send a new chat message.

Payload

Message

```json=
// DM
{
"type": "chat-message",
"payload": {
"conversation_id": "01EKC0T6HEVRDP0CYGZAE6VVFR",
"to": "reazuliqbal",
"message": "Hey"
}
}
// GROUP
{
"type": "chat-message",
"payload": {
"conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
"to": null,
"message": "Hey!"
}
}


**Response**

```json=
{
  "type": "chat-message",
  "payload": {
    "id": "01EKCA9BWCJXQEPMVF047QQFXW",
    "conversation_id": "01EKC0T6HEVRDP0CYGZAE6VVFR",
    "content": "Hey",
    "from": "codebull",
    "to": "reazuliqbal",
    "read": false,
    "timestamp": "2020-09-29T06:55:05.613Z"
  }
}

Delete Message

Deletes a message from chat. The sender can delete a message. Creator and Moderators can delete any message from a group chat.

Payload

Message

```json=
{
"type": "delete-message",
"payload": {
"id": "01EKCAE9KSKTQ7SHX0P0PZZ53Z"
}
}

**Response**

```json=
{
  "type": "message-deleted",
  "payload": {
    "id": "01EKCAE9KSKTQ7SHX0P0PZZ53Z"
  }
}

Acknowledgment

Sets a conversation as read.

Payload

Message

```json=
{
"type": "acknowledgment",
"payload": {
"conversation_id": "01EKC0T6HEVRDP0CYGZAE6VVFR"
}
}

**Response**

```json=
{
  "type": "acknowledged",
  "payload": {
    "conversation_id": "01EKC0T6HEVRDP0CYGZAE6VVFR"
  }
}

Add Member

Adds a new member to a group conversation. Creator and Moderators can add a new member.

Payload

Message

```json=
{
"type": "add-member",
"payload": {
"conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
"username": "bdcommunity"
}
}

**Response**
```json=
{
  "type": "member-added",
  "payload": {
    "conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
    "username": "bdcommunity"
  }
}

Remove Member

Removes a member from a group conversation. Creator and Moderators can remove a member.

Payload
- conversation_id: String - ID of the conversation to be renamed.
- username: String - Hive username of the member to be removed.

Message

```json=
{
"type": "remove-member",
"payload": {
"conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
"username": "bdcommunity"
}
}


**Response**
```json=
{
  "type": "member-removed",
  "payload": {
    "conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
    "username": "bdcommunity"
  }
}

Add Moderator

Adds a new moderator for a group conversation.

Payload

Message

```json=
{
"type": "add-moderator",
"payload": {
"conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
"username": "reazul-dev"
}
}


**Response**
```json=
{
  "type": "moderator-added",
  "payload": {
    "conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
    "username": "reazul-dev"
  }
}

Remove Moderator

Removes a moderator. Only the Creator can remove a moderator.

Payload

Message

```json=
{
"type": "remove-moderator",
"payload": {
"conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
"username": "reazul-dev"
}
}


**Response**

```json=
{
  "type": "moderator-removed",
  "payload": {
    "conversation_id": "01EKC82JAMV9JQ1PPG9CNDF3ER",
    "username": "reazul-dev"
  }
}

Request Friendship

Sends a friend request.

Payload

Message

```json=
{
"type": "request-friendship",
"payload": {
"username": "reazuliqbal"
}
}


**Response**

```json=
{
  "type": "friendship-requested",
  "payload": {
    "id": "01EKCB8D4PVDHBQ4MC7T4JFYAB",
    "username": "reazul-dev"
  }
}

Accept Friendship

Accepts a friend request.

Payload

Message

```json=
{
"type": "accept-friendship",
"payload": {
"id": "01EKCB8D4PVDHBQ4MC7T4JFYAB"
}
}


**Response**

```json=
{
  "type": "friendship-accepted",
  "payload": {
    "id": "01EKCB8D4PVDHBQ4MC7T4JFYAB",
    "username": "reazul-dev"
  }
}

Reject Friendship

Rejects a friend request.

Payload

Message

```json=
{
"type": "reject-friendship",
"payload": {
"id": "01EKCBKXX88MANDK8FWNQAG8AB"
}
}


**Response**

```json=
{
  "type": "friendship-rejected",
  "payload": {
    "id": "01EKCBKXX88MANDK8FWNQAG8AB"
  }
}

Remove Friendship

Removes a friend.

Payload

Message

```json=
{
"type": "remove-friendship",
"payload": {
"username": "reazul-dev"
}
}


**Response**

```json=
{
  "type": "friendship-removed",
  "payload": {
    "username": "reazul-dev"
  }
}

Block User

Blocks a user, blocking a user will remove them from the friend list.

Payload

Message

```json=
{
"type": "block-user",
"payload": {
"username": "codebull"
}
}


**Response**

```json=
{
  "type": "user-blocked",
  "payload": {
    "conversation_id": "01EKC0T6HEVRDP0CYGZAE6VVFR",
    "username": "codebull"
  }
}

Unblock User

Unblocks a user.

Payload

Message

```json=
{
"type": "unblock-user",
"payload": {
"username": "codebull"
}
}


**Response**

```json=
{
  "type": "user-unblocked",
  "payload": {
    "username": "codebull",
    "conversation_id": "01EKC0T6HEVRDP0CYGZAE6VVFR"
  }
}

Re-authentication Required

Server will send reauthentication-required message 1 minute before authentication is about to expire. Do listen to those messages for renewing authentication by requesting a new access token from the /users/refresh-token API endpoint.

Response

json= { "type": "reauthentication-required", "payload": { "username": "codebull" } }

Please note that this service is in Beta. If you find any bug, please report them to me @reazuliqbal (reazuliqbal#1149). If you need any help in implementing this chat, feel free to contact me on Discord.

I am running a Hive Witness as @BDCommunity.

Please vote for @BDCommunity as a witness.

TAGS: [ #hive ] [ #chat ] [ #hiveengine ] [ #palnet ] [ #neoxian ]

Replies

@micefy | Sept. 29, 2020, 9:43 a.m. | Votes: 3 | [ VOTE ]

So well documented, really appreciated. A chat option was one of the few missing pieces of a wholesome communication platform. Curiously following the developments.

@reazuliqbal | Sept. 29, 2020, 1:13 p.m. | Votes: 4 | [ VOTE ]

More features to come. Thank you for your comment.

@demo123 | Sept. 29, 2020, 10:53 a.m. | Votes: 1 | [ VOTE ]

Good work, Will you opensource backend as well?

@reazuliqbal | Sept. 29, 2020, 1:14 p.m. | Votes: 2 | [ VOTE ]

Thanks. For the backend we haven't decided yet.

@poshbot | Sept. 29, 2020, 11:35 a.m. | Votes: 0 | [ VOTE ]

https://twitter.com/Bhattg18/status/1310906110388269066

@merajalisdp | Sept. 29, 2020, 12:08 p.m. | Votes: 0 | [ VOTE ]

Nice app

@ciderjunkie | Sept. 29, 2020, 1:50 p.m. | Votes: 2 | [ VOTE ]

there is DISCORD, nobody needs a HIVE Chat :D

@reazuliqbal | Sept. 29, 2020, 3:36 p.m. | Votes: 3 | [ VOTE ]

Discord is super useful, but unfortunately can't be used on websites yet or logged in with hive credentials.

BeeChat is useful where hive users need to communicate on the website they are using without going to a separate app or website. For example the Alpha version of BeeChat is running on https://nftshowroom.com/ to enable quick chat between an artist and a collector.

@magdalena1b | Sept. 29, 2020, 4:01 p.m. | Votes: 1 | [ VOTE ]

i think discord is much better

@steemseph | Sept. 29, 2020, 5:14 p.m. | Votes: 0 | [ VOTE ]

It's different... "is useful where hive users need to communicate on the website they are using without going to a separate app or website. For example the Alpha version of BeeChat is running on https://nftshowroom.com/ to enable quick chat between an artist and a collector"
A slow computer would probably be very happy. :)

@nathanmars | Sept. 29, 2020, 2:34 p.m. | Votes: 2 | [ VOTE ]

ReHIVEed and Shared on Twitter :)

@reazuliqbal | Sept. 29, 2020, 3:36 p.m. | Votes: 2 | [ VOTE ]

Thank you :)

@poshbot | Sept. 29, 2020, 2:34 p.m. | Votes: 0 | [ VOTE ]

https://twitter.com/NathanMars7/status/1310951157305675776

@xawi | Sept. 29, 2020, 3:39 p.m. | Votes: 1 | [ VOTE ]

Noice, We proud of you Rea 😂

@masterthematrix | Sept. 29, 2020, 4:09 p.m. | Votes: 0 | [ VOTE ]

Great development. I don't know much about coding and the technicals, but will it cost Ressource Credits in order to sent message over BeeChat. Are there any costs related to that service?
And I'm also curious what other kind features this tool might bring in the future? Emojis, stickers, nfts, Hive Engine Tokens....probably???
Exciting times, thanks for your great work!

@reazuliqbal | Sept. 29, 2020, 4:47 p.m. | Votes: 1 | [ VOTE ]

No it won't cost you RC, there is also no monetary cost to use the service.

@teknow | Sept. 30, 2020, 3:35 a.m. | Votes: 0 | [ VOTE ]

What about in reverse?
Give a small amount of reward for people to use the service which undoubtedly would gain you uptake.

Personally I think this is too little too late. Steemit needed this before communities or with the launch of communities. So many have left since those days and I would imagine 'lack of social engagement' is high on reasons why.

So if I was a developer here I would most definitely be creating an incentive for people that contribute to engagement to be rewarded incrementally. I would actually be further developing it as a 'mobile Blockchain portal' to Hive and to the world of Blockchain in general. To cater not just to the audience of Hive but the many that do all their chat on discord and other chat clients outside of Blockchains but are essentially 'Blockchain People'. That's a niche which would definitely find a 'crypto chat client' enticing and something that would give Hive and devs on this Blockchain clout.

That's what is missing in this so called "web 3.0" .. ACTUAL SOCIAL tools and engagement. That's why mainstream doesn't care much for what is provided here. When people start to take this seriously and develop for that audience, then, AND ONLY THEN will you get user growth.

@reazuliqbal | Sept. 30, 2020, 3:46 a.m. | Votes: 0 | [ VOTE ]

At its core BeeChat is not a user facing service, it is built to help other Hive developers and service administrators to integrate a communication feature in their apps if there is a need.

For example, in NFT Showroom and similar Hive based websites we are building, we needed a simple chat service where buyers and sellers can communicate without hopping into another app, so we have decided to decouple the chat module and release it for everyone other websites we might need this.

@teknow | Sept. 30, 2020, 4:02 a.m. | Votes: 2 | [ VOTE ]

Yeah I see. So it's not able to exist outside of the Hive system?

That's crazy that it wasn't until NFTshowroom came into existence that developers got that light bulb thought "we need chat." I remember when I joined steemit and realized that to chat to people one needed another service to do it outside of the system so I automatically concluded that blockchain was nowhere near a product ready for market. 3 years on, that assessment hasn't really changed.

I'm not critiquing you personally but what I find foolish here is that people want to onboard masses (hoping token price will benefit) but don't at all want to discuss that the product is too basic. Expecting people to leave the "evil mainstream platforms" without actually having a better service is just never going to be a reality.

@sayee | Sept. 29, 2020, 4:57 p.m. | Votes: 0 | [ VOTE ]

Great Job. Hope this helps to attract more users to Hive. Proud of you, Panda

@bearbear613 | Sept. 29, 2020, 5:09 p.m. | Votes: 1 | [ VOTE ]

howdy ! ;)

@death-and-taxes | Sept. 29, 2020, 6:36 p.m. | Votes: 0 | [ VOTE ]

Would you be willing to implement a method for sending out of band data so that things required for end to end encryption, such as key exchanges, are easier to implement on top of BeeChat?

@reazuliqbal | Sept. 30, 2020, 1:52 a.m. | Votes: 0 | [ VOTE ]

I am not very clear on the end-to-end encryption, so can't comment on that.

@poshbot | Sept. 29, 2020, 6:57 p.m. | Votes: 0 | [ VOTE ]

https://twitter.com/FlagSteem/status/1311017276947066880

@r3dw00l | Sept. 29, 2020, 8:36 p.m. | Votes: 0 | [ VOTE ]

That's nice, good job.

@poshbot | Sept. 30, 2020, 2:05 p.m. | Votes: 0 | [ VOTE ]

https://twitter.com/hive_blockchain/status/1311306236198092800

@hivebuzz | Sept. 30, 2020, 2:19 p.m. | Votes: 0 | [ VOTE ]

Congratulations @reazuliqbal! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) :

Your post got the highest payout of the day

You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

Do not miss the last post from @hivebuzz:

Hive Power Up Day - Introducing the Power Up Helper!Hive Power Up Day - Let's grow together!

@drniche | Sept. 30, 2020, 4 p.m. | Votes: 0 | [ VOTE ]

Great work!!

@bala41288 | Oct. 2, 2020, 6:12 p.m. | Votes: 0 | [ VOTE ]

Great work bro. Nice documentation. I have a small suggestion. Please add a link to this documentation in the github readme. It will be easier to reach here for the developers in the future.

https://github.com/hive-engine/beechat-frontend

Posted via neoxian.city | The City of Neoxian

@solominer | Jan. 25, 2021, 2:24 p.m. | Votes: 0 | [ VOTE ]

Thanks very much for building on Hive.

@reazuliqbal | Jan. 26, 2021, 12:32 a.m. | Votes: 1 | [ VOTE ]

Pleasure is mine :)

@moon32walker | Feb. 26, 2021, 12:47 p.m. | Votes: 0 | [ VOTE ]

I mistakingly sold my Gold Lightning Dragon for 3.199$. It was meant to be 3199$. Are you here? Would you kindly return it, I'll return you your 3.199 and more if you wish. It was a dumb mistake, I don't know how it happened.

@raymondelaparra | May 9, 2021, 11:44 p.m. | Votes: 0 | [ VOTE ]

Interesting

@mers | July 29, 2021, 12:49 p.m. | Votes: 0 | [ VOTE ]

Hello @reazuliqbal ... I do not know how else to contact you. so I am writing you about my POB token that I sold today at Hive-engine, the proceeds of which were transferred to my Hive account @mers... Can you please check on my transaction ID. "b4401600bb2235aab21f92fc1c28bff4563923c0" ? Until now, I haven´t gotten my hive transferred to my account. Kindly check because your name was listed below under BD Community in this transaction. Thank you. @mers

action:"withdraw"
blockNumber:9083795
contract:"hivepegged"
databaseHash:"9c9e912657fdb4667b4d9195d815f512769b8eb40b3d2b2a58ba5fc56f884952"

@logiczombie | Nov. 4, 2021, 3:01 p.m. | Votes: 2 | [ VOTE ]
@anhtai88 | Nov. 22, 2021, 3:53 a.m. | Votes: 0 | [ VOTE ]

I withdraw but three hours not come hive keychain

@demotruk | Dec. 28, 2021, 3:49 p.m. | Votes: 0 | [ VOTE ]

Hi @reazuliqbal, would you have any problem if I fork your old Steem Escrow project and try and update it for Hive?

@reazuliqbal | Dec. 28, 2021, 4:33 p.m. | Votes: 1 | [ VOTE ]

Feel free to fork it for Hive.

@pobscholarship | Jan. 6, 2022, 7:34 a.m. | Votes: 0 | [ VOTE ]

Maybe this should be taken care of on discord @reazuliqbal but can you take a look at the proofofbrain.io NFT market?
https://www.proofofbrain.io/nfts/

I look at the history of transactions and find that the buyer sends money but the artist never receives the money paid.

You can see a trade made today and the artist didn't receive payment.

https://he.dtools.dev/@jaxsonmurph?symbol=POB

Thanks for your attention^^

@reazuliqbal | Jan. 6, 2022, 8:26 a.m. | Votes: 1 | [ VOTE ]

I am not aware of any problem. https://he.dtools.dev/@jaxsonmurph?symbol=POB website doesn't list complete NFT actions. Do not relay on it for the tracking, check the transaction history on the POB website.

@pobscholarship | Jan. 6, 2022, 11:56 a.m. | Votes: 0 | [ VOTE ]

Here I see a transfer but I don't see the POB added to his POB wallet:

https://he.dtools.dev/tx/49decb0490a47002034bf5a31a2e9cdf52e56d9b

[IMAGE: https://images.ecency.com/DQmTuwiMRiQp4eRL3FcHNKxKgHK9FE3gUxy4qQGjj8xD3Ji/image.png]

There should be some notification in his wallet but there is nothing there:

https://www.proofofbrain.io/@jaxsonmurph/wallet

There should also be a notification of something in nft.pob's wallet but there is nothing there

https://www.proofofbrain.io/@nft.pob/wallet

Artists like to see some notification when they are paid.

@mineopoly | Jan. 7, 2022, 8:44 a.m. | Votes: 0 | [ VOTE ]

Please look at the pob transactions in the above comment @reazuliqbal for there is no notification if pob was added to the wallet on the front end.

@cal02 | July 23, 2022, 2:28 p.m. | Votes: 0 | [ VOTE ]

Gracias 😁 por VISITAR nuestro blog y también gracias por tu voto 😊

@aurikan | Nov. 22, 2022, 5:11 p.m. | Votes: 0 | [ VOTE ]

Gracias por tu apoyo
te sigo, VOTO y !PIZZA 😎

@pizzabot | Nov. 22, 2022, 5:12 p.m. | Votes: 0 | [ VOTE ]

PIZZA!

$PIZZA slices delivered:
@sacra97(2/15) tipped @reazuliqbal
aurikan tipped reazuliqbal

@sacra97 | Dec. 1, 2023, 5:01 p.m. | Votes: 0 | [ VOTE ]

!PIZZA

@ctrpch | Feb. 3, 2024, 11:32 a.m. | Votes: 3 | [ VOTE ]

Hi @reazuliqbal, I just wanted to touch base with you to ask for a witness vote, I am a new witness, I own my hardware, hosted here in Adelaide, I have supported your witness for some time also

@frgnholding | June 22, 2024, 6:44 p.m. | Votes: 4 | [ VOTE ]

witness voted

@wizloge | July 6, 2025, 8:14 p.m. | Votes: 0 | [ VOTE ]

@dksart thank you so much for your support on my post

@memess | Aug. 30, 2025, 2:17 p.m. | Votes: 1 | [ VOTE ]

Are you the service owner of hive portfolio ? I can't find the link, may you do a post with links to all the tools you developped hasha ?

@epic-fail | Nov. 12, 2025, 4:43 p.m. | Votes: 0 | [ VOTE ]

please remove your witness vote for BROFUND https://peakd.com/hive-177682/@neoxian/scam-warning-raymondspeaks-and-bro

@reazuliqbal | Nov. 12, 2025, 4:47 p.m. | Votes: 3 | [ VOTE ]

Thank you for bringing it to my attention. I lost a friend. :(

@epic-fail | Nov. 12, 2025, 5:11 p.m. | Votes: 1 | [ VOTE ]

yes, it's a shame

[ BACK TO TRENDING ] [ BACK TO MENU ]
CMD>