-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from eosio-enterprise/feature/maps
Transitioned to map[string][]byte for all messages and blockchain tra…
- Loading branch information
Showing
14 changed files
with
175 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
IPFS: | ||
Endpoint: ec2-3-232-158-110.compute-1.amazonaws.com:5001 | ||
Endpoint: ipfs.digscar.com:5001 | ||
Eosio: | ||
Endpoint: https://kylin.eosusa.news | ||
PublishAccount: messengerbus | ||
PublishPrivateKey: 5KAP1zytghuvowgprSPLNasajibZcxf4KMgdgNbrNj98xhcGAUa | ||
Dfuse: | ||
Protocol: GraphQL # WebSocket will use WSEndpoint; else it defaults to GraphQL | ||
WSEndpoint: wss://kylin.eos.dfuse.io/v1/stream | ||
Protocol: GraphQL # only GraphQL supported now # WebSocket will use WSEndpoint; else it defaults to GraphQL | ||
WSEndpoint: wss://kylin.eos.dfuse.io/v1/stream # only GraphQL supported now | ||
Origin: github.com/eosio-enterprise/chappe | ||
ApiKey: <<insert dfuse api key here>> | ||
GraphQLEndpoint: kylin.eos.dfuse.io:443 | ||
KeyDirectory: channels/ | ||
PublishInterval: 5s # Go Duration object | ||
PublishInterval: 5s # Go Duration object | ||
DeviceRSAPrivateKey: mykey # uniquely represents the device (used for receipts) | ||
|
||
# coming soon | ||
RevealMessage: true | ||
RevealDelay: 60s # Time to wait before revealing the message |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#include <messenger.hpp> | ||
ACTION messenger::pub( string ipfs_hash, string memo) {} | ||
ACTION messenger::pubmap ( std::map<string, string> payload) {} | ||
ACTION messenger::pubmap ( std::map<string, string> payload) {} | ||
// ACTION messenger::pubbytesmap ( std::map<string, byte[]> payload) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.