librarydjs
Version:
Node JS Module interface to publish messages to the Florincoin Blockchain.
216 lines (211 loc) • 6.06 kB
JavaScript
var LibraryDJS = require('./index.js');
var jsonpack = require('jsonpack/main');
var ldjs = new LibraryDJS({
host: 'localhost',
port: 18322,
username: 'florincoinrpc',
password: 'password'
});
var oip041 = {
"oip-041": {
"artifact": {
"publisher": "FD6qwMcfpnsKmoL2kJSfp1czBMVicmkK1Q",
"timestamp": 1481420000,
"type": "music",
"info": {
"title": "Happy Birthday EP",
"description": "this is the second organically grown, gluten free album released by Adam B. Levine - contact adam@tokenly.com with questions or comments or discuss collaborations.",
"year": "2016",
"extraInfo": {
"artist": "Adam B. Levine",
"company": "",
"composers": [
"Adam B. Levine"
],
"copyright": "",
"usageProhibitions": "",
"usageRights": "",
"tags": []
}
},
"storage":{
"network": "IPFS",
"location": "QmPukCZKeJD4KZFtstpvrguLaq94rsWfBxLU1QoZxvgRxA",
"files": [
{
"dname": "Skipping Stones",
"fame": "1 - Skipping Stones.mp3",
"fsize": 6515667,
"type": "album track",
"duration": 1533.603293,
"sugPlay": 100,
"minPlay": null,
"sugBuy": 750,
"minBuy": 500,
"promo": 10,
"retail": 15,
"ptpFT": 10,
"ptpDT": 20,
"ptpDA": 50
},
{
"dname": "Lessons",
"fame": "2 - Lessons with intro.mp3",
"fsize": 6515667,
"type": "album track",
"duration": 1231.155243,
"disallowPlay": 1,
"sugBuy": 750,
"minBuy": 500,
"promo": 10,
"retail": 15,
"ptpFT": 10,
"ptpDT": 20,
"ptpDA": 50
},
{
"dname": "Born to Roam",
"fame": "3 - Born to Roam.mp3",
"fsize": 6515667,
"type": "album track",
"duration": 2374.550714,
"sugPlay": 100,
"minPlay": 50,
"disallowBuy": 1,
"promo": 10,
"retail": 15,
"ptpFT": 10,
"ptpDT": 20,
"ptpDA": 50
},
{
"dname": "Cover Art",
"fname": "birthdayepFINAL.jpg",
"type": "coverArt",
"disallowBuy": 1
}
]},
"payment": {
"fiat": "USD",
"scale": "1000:1",
"sugTip": [
5,
50,
100
],
"tokens": {
"mtmcollector": "",
"mtmproducer": "",
"happybirthdayep": "",
"early": "",
"ltbcoin": "",
"btc": "1GMMg2J5iUKnDf5PbRr9TcKV3R6KfUiB55"
}
}
}
}
}
var artifactEdit = {
"oip-041": {
"artifact": {
"publisher": "FD6qwMcfpnsKmoL2kJSfp1czBMVicmkK1Q",
"timestamp": 1481420001,
"type": "music",
"info": {
"title": "Happy Birthday",
"description": "this is the second organically grown, gluten free album released by Adam B. Levine - contact adam@tokenly.com with questions or comments or discuss collaborations.",
"year": "2016",
"extraInfo": {
"artist": "Adam B. Levine",
"company": "",
"composers": [
"Adam B. Levine"
],
"copyright": "",
"usageProhibitions": "",
"usageRights": "",
"tags": []
}
},
"storage":{
"network": "IPFS",
"location": "QmPukCZKeJD4KZFtstpvrguLaq94rsWfBxLU1QoZxvgRxA",
"files": [
{
"dname": "Skipping Stones",
"fame": "1 - Skipping Stones.mp3",
"fsize": 6515667,
"type": "album track",
"duration": 1533.603293,
"sugPlay": 100,
"minPlay": null,
"minBuy": 500,
"promo": 10,
"retail": 15,
"ptpFT": 10,
"ptpDT": 20,
"ptpDA": 50
},
{
"dname": "Lessons",
"fame": "2 - Lessons with intro.mp3",
"fsize": 6515667,
"type": "album track",
"duration": 1231.155243,
"disallowPlay": 1,
"sugBuy": 750,
"minBuy": 500,
"promo": 10,
"retail": 15,
"ptpFT": 10,
"ptpDT": 20,
"ptpDA": 50
},
{
"dname": "Born to Roam",
"fame": "3 - Born to Roam.mp3",
"fsize": 6515667,
"type": "album track",
"duration": 2374.550714,
"sugPlay": 100,
"minPlay": 50,
"disallowBuy": 1,
"promo": 10,
"retail": 15,
"ptpFT": 10,
"ptpDT": 20,
"ptpDA": 50
},
{
"dname": "Cover Art 2",
"fname": "birthdayepFirst.jpg",
"type": "coverArt",
"disallowBuy": 1
}
]},
"payment": {
"fiat": "USD",
"scale": "1000:1",
"sugTip": [
5,
50,
100
],
"tokens": {
"mtmcollector": "",
"mtcproducer": "",
"happybirthdayep": "",
"early": "",
"ltbcoin": "",
"btc": "1GMMg2J5iUKnDf5PbRr9TcKV3R6KfUiB55"
}
}
}
}
}
// List your rigs
//ldjs.getArtifact('a449b0f6a601e503e7b4fdc0ada47f55a8b2f98feb2fdb044f7a92d971ff0456', function(response){});
var editDiff = ldjs.generateEditDiff(oip041, artifactEdit);
console.log(editDiff);
//var verify = ldjs.verifyArtifact(artifactEdit);
//console.log(verify);