Snippets

chromawallet Rell.demo

Created by Riccardo Sibani last modified
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
class user_account {
    key tuid;
    index name;
    key login: text;
    key pubkey;
    index created_by: pubkey;
    role: text;
    password_hash: text;
    aux_data: json;
    deleted: boolean;
}

class framework {
    key tuid;
    mutable name: text;
    index issuer: user_account;
    mutable description: text;
    mutable aux_data: json;
    mutable deleted: boolean;
}

class framework_commitment {
    key tuid;
    mutable framework;
    mutable commitment: text;
    mutable aux_data: json;
    mutable deleted: boolean;
}

class framework_category {
    key tuid;
    mutable framework;
    mutable category: text;
    mutable deleted: boolean;
}

class file {
    key tuid;
    name;
    index creator: user_account;
    ext: text;
    mime: text;
    contents: byte_array;
}

class framework_file {
    key tuid; 
    index framework, file;
    mutable deleted: boolean;
}

class pool {
    key tuid;
    key issuer: user_account;
    mutable name;
    mutable deleted: boolean;
}

class bond {
    key tuid, issuer: user_account;
    mutable date_issued: timestamp;
    mutable date_maturity: timestamp;
    mutable volume: integer;
    mutable currency: text;
    mutable framework;
    mutable pool;
    mutable aux_data: json;
    mutable deleted: boolean;
}

class project {
    key tuid;
    key issuer: user_account;
    mutable name;
    mutable description: text;
    mutable region: text;
    mutable amount: integer;
    mutable currency: text;
    mutable framework;
    mutable pool;
    mutable aux_data: json;
    mutable deleted: boolean;
}

class project_file {
    key tuid;
    index project, file;
    mutable deleted: boolean;
}

class report {
    key tuid;
    mutable issuer: user_account;
    mutable validator: user_account;
    mutable project;
    mutable status: integer;
    mutable name;
    mutable description: text;
    mutable date: timestamp;
    mutable report_metadata_json: json;
    mutable report_certification_spec_json: json;
    mutable deleted: boolean;
}

class report_certification {
    key tuid;
    index report;
    report_certification_json: json;
    deleted: boolean; 
}

class report_validator {
    key  report;
    mutable validator: user_account;
    mutable timestamp; 
    mutable deleted: boolean; 
}

function get_signer_issuer(issuer_pubkey: pubkey): user_account {
    require(is_signer(issuer_pubkey));
    return user_account@{pubkey = issuer_pubkey, role="issuer"};
}


function is_issuer(pubkey): boolean {
    return (user_account@*{
        pubkey,
        role = "issuer"
    }).size() == 1;
}

function is_validator(pubkey): boolean {
    return (user_account@*{
        pubkey,
        role = "validator"
    }).size() == 1;
}

operation hello_world(){
    print("HELLO");
}

operation add_user_account (admin_pubkey: pubkey, tuid, name, login: text, pubkey, role: text, password_hash: text, aux_data: text) {
    require(is_signer(admin_pubkey));
    require(admin_pubkey == x"0373599a61cc6b3bc02a78c34313e1737ae9cfd56b9bb24360b437d469efdf3b15");
    
    create user_account(
        tuid,
        name,
        login,
        pubkey = admin_pubkey,
        created_by = admin_pubkey,
        role,
        password_hash,
        aux_data = json(aux_data),
        deleted = false
    );
}


operation add_framework(issuer_pubkey: pubkey, tuid, name, issuer: pubkey, description: text, aux_data: text) {
    require(is_signer(issuer_pubkey));
    require(is_issuer(issuer));
    
    create framework(
        tuid,
        name,
        description,
        issuer = user_account@{pubkey=issuer_pubkey},
        aux_data=json(aux_data),
        deleted= false
    );
}

operation update_framework(issuer_pub: pubkey, tuid, name, description: text, aux_data: text) {
    require(is_signer(issuer_pub));
    require(is_issuer(issuer_pub));
    
    update framework@{
        issuer = user_account@{pubkey = issuer_pub},
        tuid  
    } (name, description, aux_data = json(aux_data));
}

operation remove_framework(pubkey, tuid) {
    require(is_signer(pubkey));
    update framework@{issuer = user_account@{pubkey}, tuid}(deleted = true);
}

operation add_framework_commitment(pubkey, tuid, framework_tuid: tuid, commitment: text, aux_data: text) {
    require(is_signer(pubkey));
    require(is_issuer(pubkey));
    
    create framework_commitment(
        tuid, 
        framework@{
            tuid= framework_tuid, 
            issuer=user_account@{
                pubkey
            }
        }, 
        commitment,
        aux_data = json(aux_data),
        deleted = false
    );
}

operation update_framework_commitment(pubkey, tuid, framework_tuid: tuid, commitment: text, aux_data: text) {
    require(is_signer(pubkey) and is_issuer(pubkey));
    
    update framework_commitment@{
        tuid,
        framework@{ 
            issuer=user_account@{
                pubkey
            }
        }
    }(
        framework@{
            tuid = framework_tuid,
            issuer = user_account@{
                pubkey
            }
        },
        commitment,
        aux_data = json(aux_data)
    );
}


operation remove_framework_commitment(issuer_pub: pubkey, tuid, framework_tuid: tuid) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update framework_commitment@{
        tuid,
        framework@{
            issuer=user_account@{
                pubkey = issuer_pub
            }
        }
    }(deleted = true);
}

operation add_framework_category(issuer_pub: pubkey, tuid, framework_tuid: tuid, category: text) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    create framework_category(
        tuid, 
        framework=framework@{
            tuid = framework_tuid,
            issuer=user_account@{
                pubkey = issuer_pub
            }
        }, 
        category,
        deleted = false
    );
}

operation update_framework_category(issuer_pub: pubkey, tuid, framework_tuid: tuid, category: text) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update framework_category@{
        tuid,
        framework=framework@{
            issuer = user_account@{
                pubkey = issuer_pub
            }
        }
    }(
        category, 
        framework = framework@{
            tuid = framework_tuid,
            issuer=user_account@{
                pubkey=issuer_pub
            }
        }
    );
}

operation remove_framework_category(issuer_pub: pubkey, tuid) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update framework_category@{tuid, framework=framework@{issuer=user_account@{pubkey=issuer_pub}}}(deleted = true);
}

operation add_file(issuer_pub: pubkey, tuid, name, mime: text, ext: text, contents: byte_array) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    create file (
        tuid,
        name,
        mime,
        creator = user_account@{pubkey = issuer_pub},
        ext,
        contents
    );
}

operation remove_file(issuer_pub: pubkey, tuid) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    delete file@{
        tuid,
        creator = user_account@{pubkey=issuer_pub}
    };
}

operation add_framework_file(issuer_pub: pubkey, tuid, framework_tuid: tuid, file_tuid: tuid){
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    create framework_file (
        tuid,
        framework@{tuid=framework_tuid, issuer=user_account@{pubkey=issuer_pub}},
        file@{tuid=file_tuid, creator = user_account@{pubkey=issuer_pub}},
        deleted = false
    );
}

operation remove_framework_file(issuer_pub: pubkey, framework_file_tuid: tuid) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update framework_file@{
        tuid = framework_file_tuid,
        framework@{
            issuer = user_account@{
                pubkey = issuer_pub
            }
        }
    }(deleted = true);
}

operation add_project_file (issuer_pub: pubkey, tuid, project_tuid: tuid, file_tuid: tuid){
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    create project_file (
        tuid,
        project@{issuer=user_account@{pubkey = issuer_pub}, tuid = project_tuid},
        file@{tuid = file_tuid},
        deleted = false
    );
}

operation remove_project_file(issuer_pub: pubkey, tuid) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update project_file@{
        tuid,
        project@{issuer=user_account@{pubkey = issuer_pub}}
    }(
        deleted = true
    );
}

operation add_pool(issuer_pub: pubkey, tuid, name){
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    create pool(
        issuer = user_account@{pubkey=issuer_pub},
        tuid,
        name,
        deleted = false
    );
}

operation update_pool(issuer_pub: pubkey, tuid, name){
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update pool@{tuid, issuer=user_account@{pubkey=issuer_pub}}(
        name
    );
}

operation remove_pool(issuer_pub: pubkey, tuid) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update pool@{tuid, issuer=user_account@{pubkey=issuer_pub}}(deleted = true);
}

operation add_bond(issuer_pub: pubkey, tuid, date_issued: timestamp, date_maturity: timestamp, volume: integer, currency: text, framework_tuid: tuid, pool_tuid: tuid, aux_data: text) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    create bond (
        tuid,
        issuer = user_account@{pubkey = issuer_pub},
        date_issued,
        date_maturity,
        volume,
        currency,
        framework@{tuid = framework_tuid, issuer = user_account@{pubkey=issuer_pub}},
        pool@{tuid = pool_tuid, issuer = user_account@{pubkey=issuer_pub}},
        aux_data = json(aux_data),
        deleted = false
    );
}

operation update_bond(issuer_pub: pubkey, tuid, data_issued: timestamp, date_maturity: timestamp, volume: integer, currency: text, framework_tuid: tuid, pool_tuid: tuid, aux_data: text) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update bond@{
        tuid,
        framework@{
            issuer=user_account@{pubkey=issuer_pub}
        }
    }(
        date_issued,
        date_maturity,
        volume,
        currency,
        framework@{tuid = framework_tuid, issuer = user_account@{pubkey=issuer_pub}},
        pool@{tuid = pool_tuid, issuer = user_account@{pubkey=issuer_pub}},
        aux_data = json(aux_data)
    );
}

operation remove_bond(issuer_pub: pubkey, tuid){
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update bond@{
        tuid,
        framework@{
            issuer=user_account@{pubkey=issuer_pub}
        }
    }(deleted = true);
}

operation add_project(issuer_pub: pubkey, tuid, name, framework_tuid: tuid, pool_tuid: tuid, description: text, region: text, amount: integer, currency: text, aux_data: text){
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    create project(
        tuid,
        name,
        issuer = user_account@{
            pubkey=issuer_pub
        },
        description,
        region,
        amount,
        currency,
        framework@{
            tuid = framework_tuid,
            issuer=user_account@{
                pubkey=issuer_pub
            }
        },
        pool@{
            tuid = pool_tuid,
            issuer = user_account@{
                pubkey = issuer_pub
            }
        },
        aux_data = json(aux_data),
        deleted = false
    );
}

operation update_project(issuer_pub: pubkey, tuid, name, framework_tuid: tuid, pool_tuid: tuid, description: text, region: text, amount: integer, currency: text, aux_data: text) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update project@{
        tuid, 
        framework@{
            issuer=user_account@{
                pubkey=issuer_pub
            }
        }
    } (
        name,
        description,
        region,
        amount,
        currency,
        framework@{
            tuid = framework_tuid,
            issuer=user_account@{
                pubkey=issuer_pub
            }
        },
        pool@{
            tuid = pool_tuid,
            issuer = user_account@{
                pubkey = issuer_pub
            }
        },
        aux_data = json(aux_data)
    );
}

operation remove_project(issuer_pub: pubkey, tuid) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    update project@{
        tuid, 
        framework@{
            issuer=user_account@{
                pubkey=issuer_pub
            }
        }
    } (
        deleted = true
    );
}

operation project_link_pool(issuer_pub: pubkey, tuid, project_tuid: tuid, pool_tuid: tuid) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update project@{
        tuid = project_tuid,
        framework = framework@{
            issuer = user_account@{
                pubkey = issuer_pub
            }
        }
    }(
        pool = pool@{
            tuid = pool_tuid,
            issuer = user_account@{
                pubkey = issuer_pub        
            }
        }
    );
}

operation bond_link_pool(issuer_pub: pubkey, tuid, bond_tuid: tuid, pool_tuid: tuid) {
    require(is_signer(issuer_pub) and is_issuer(issuer_pub));
    
    update bond@{
        tuid = bond_tuid,
        framework = framework@{
            issuer = user_account@{
                pubkey = issuer_pub
            }
        }
    } (
        pool = pool@{
            tuid = pool_tuid,
            issuer = user_account@{
                pubkey = issuer_pub        
            }
        }
    );
}

operation add_report(creator_pubkey: pubkey, tuid, project_tuid: tuid, validator: pubkey, name, description: text,  date: timestamp,  report_metadata_json: text, report_certification_spec_json: text) {
    require(is_signer(creator_pubkey));

    create report (
        tuid,
        issuer = user_account@{pubkey = creator_pubkey},
        project@{tuid = project_tuid},
        validator=user_account@{pubkey = validator, role = "validator"},
        status = 0,
        name,
        description,
        date,
        report_metadata_json=json(report_metadata_json),
        report_certification_spec_json=json(report_certification_spec_json),
        deleted = false
    );
}

operation update_report(creator_pubkey: pubkey, tuid, validator: pubkey, name, description: text, report_metadata_json: text, report_certification_spec_json: text) {
    require(is_signer(creator_pubkey));
    
    update report@{
        tuid,
        issuer = user_account@{pubkey = creator_pubkey}
    }
    (
        validator=user_account@{pubkey = validator},
        name,
        description,
        report_metadata_json=json(report_metadata_json),
        report_certification_spec_json=json(report_certification_spec_json)
    );
}

operation remove_report (creator_pubkey: pubkey, tuid) {
    require(is_signer(creator_pubkey));

    update report@{
        tuid,
        issuer = user_account@{pubkey = creator_pubkey}
    }
    ( deleted = true );
}

operation add_report_validator (creator_pubkey: pubkey, report_tuid: tuid, validator: pubkey, timestamp) {
    require(is_signer(creator_pubkey));
    
    create report_validator (
        report = report@{
            tuid=report_tuid,
            issuer = user_account@{
                pubkey = creator_pubkey
            }
        }, 
        validator = user_account@{
            pubkey = validator
        },
        timestamp,
        deleted = false
    );
}

operation update_report_validator (creator_pubkey: pubkey, report_tuid: tuid, validator: pubkey, timestamp) {
    require(is_signer(creator_pubkey));
    
    update report_validator@{
        report=report@{
            tuid=report_tuid,
            issuer = user_account@{
                pubkey = creator_pubkey
            }
        }
        
    } (
        validator=user_account@{pubkey=validator},
        timestamp
    );
}

operation add_report_certification(validator: pubkey, tuid, report_tuid: tuid, report_certification_json: text) {
    require(is_signer(validator) and is_validator(validator));
    
    create report_certification (
        tuid,
        report@{
            tuid = report_tuid,
            issuer = user_account@{
                pubkey = validator
            }
        },
        report_certification_json=json(report_certification_json),
        deleted = false
    );
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.