pod
pod copied to clipboard
Go implementation of Centrifuge POD (Private Off-chain Data) node
I used the latest centrifuge binary in a subfolder. ## Reproduce Create Config Command ```bash ./myfolder/centrifuge createconfig -z "ABSOLUTE KEYSTORE PATH" -e "MY INFURA LINK"-n russianhill -t myfolder/ -a 8082...
I would like to take out all account information from the config file, and simplify it with the minimum data needed for the node to start up. Sample: ``` accounts:...
It will help on creating arbitrary number of hosts in testworld without manual timeouts as well as healthcheck indicator for deployments. #### Testing Good test to verify: https://github.com/centrifuge/go-centrifuge/blob/ac541f2e6b980ebc4643153572f06ea0c4868cb5/testworld/park_test.go#L40
Given the following scenario: ``` Doc1: Node A: v0 | v1 | v2 | v3 Node B: v0 | | | ? ``` When `B` requests the latest versions (only...
Once the node has ran once, we will not update any changed properties relative to accounts in the DB. Let's fix that here: https://github.com/centrifuge/go-centrifuge/blob/c672bd1d43fa7690008de7cf89ed602c10e1c578/config/configstore/bootstrapper.go#L55-L63
Currently, the command `centrifuge createconfig` expects the wallet in JSON Keystore format. It would be great to have the ability to import (and then convert) a raw private key as...
If the execute contract call fails an error should be thrown. ### Problem Example: `minterJob` in NFT mint. ```golang // to common.Address, tokenId *big.Int, tokenURI string, anchorId *big.Int, properties [][]byte,...
This should include at least the steps: 1. migrate the contracts using the `./build/scripts/migrate.sh` 2. find the contract addresses for the IdentityFactory, AnchorRepository, InvoiceUnpaid contracts and set them as environmental...
@vedhavyas has brought up that we should consider fetching the Entity document from a peer first through the Entity Relationship flow before falling back to our locally stored version (in...