mirror of
https://github.com/fluencelabs/trust-graph
synced 2024-12-04 07:10:21 +00:00
feat(trust-graph): Update aqua code (#141)
* Update aqua * Update aqua-lib * Update admin aqua * Remove aqua dep * Update example aqua * Fix package.json * Update admin/package.json Co-authored-by: Aleksey Proshutinskiy <justprosh@users.noreply.github.com> * Update aqua/package.json Co-authored-by: Aleksey Proshutinskiy <justprosh@users.noreply.github.com> * Update example/package.json Co-authored-by: Aleksey Proshutinskiy <justprosh@users.noreply.github.com> * Setup fluence in CI --------- Co-authored-by: Aleksey Proshutinskiy <justprosh@users.noreply.github.com>
This commit is contained in:
parent
34cbc3126c
commit
175e51d5db
11
.github/workflows/tests.yml
vendored
11
.github/workflows/tests.yml
vendored
@ -2,6 +2,11 @@ name: Run tests with workflow_call
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
fcli-version:
|
||||||
|
description: "@fluencelabs/cli version"
|
||||||
|
type: string
|
||||||
|
default: "main"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
trust-graph:
|
trust-graph:
|
||||||
@ -51,6 +56,12 @@ jobs:
|
|||||||
cache-dependency-path: "aqua/package-lock.json"
|
cache-dependency-path: "aqua/package-lock.json"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
|
|
||||||
|
- name: Setup fcli
|
||||||
|
uses: fluencelabs/setup-fluence@v1
|
||||||
|
with:
|
||||||
|
artifact: fcli
|
||||||
|
version: ${{ inputs.fcli-version }}
|
||||||
|
|
||||||
- run: npm i
|
- run: npm i
|
||||||
working-directory: aqua
|
working-directory: aqua
|
||||||
|
|
||||||
|
@ -1,19 +1,25 @@
|
|||||||
import "@fluencelabs/trust-graph/trust-graph.aqua"
|
aqua Admin
|
||||||
|
|
||||||
|
export timestamp_sec, get_trust_bytes, issue_trust
|
||||||
export get_trust_bytes, issue_trust
|
export get_trust_bytes, issue_trust
|
||||||
|
|
||||||
|
import "@fluencelabs/trust-graph/trust-graph.aqua"
|
||||||
import "@fluencelabs/aqua-lib/builtin.aqua"
|
import "@fluencelabs/aqua-lib/builtin.aqua"
|
||||||
|
|
||||||
func timestamp_sec(node: string) -> u64:
|
func timestamp_sec(node: string) -> u64:
|
||||||
on node:
|
on node:
|
||||||
result <- Peer.timestamp_sec()
|
result <- Peer.timestamp_sec()
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
|
||||||
func get_trust_bytes(node: string, issued_for_peer_id: string, expires_at_sec: u64, issued_at_sec: u64) -> GetTrustBytesResult:
|
func get_trust_bytes(node: string, issued_for_peer_id: string, expires_at_sec: u64, issued_at_sec: u64) -> GetTrustBytesResult:
|
||||||
on node:
|
on node:
|
||||||
result <- TrustGraph.get_trust_bytes(issued_for_peer_id, expires_at_sec, issued_at_sec)
|
result <- TrustGraph.get_trust_bytes(issued_for_peer_id, expires_at_sec, issued_at_sec)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
|
||||||
func issue_trust(node: string, issued_for_peer_id: string, expires_at_sec: u64, issued_at_sec: u64, trust_bytes: []u8) ->IssueTrustResult:
|
func issue_trust(node: string, issued_for_peer_id: string, expires_at_sec: u64, issued_at_sec: u64, trust_bytes: []u8) ->IssueTrustResult:
|
||||||
on node:
|
on node:
|
||||||
result <- TrustGraph.issue_trust(issued_for_peer_id, expires_at_sec, issued_at_sec, trust_bytes)
|
result <- TrustGraph.issue_trust(issued_for_peer_id, expires_at_sec, issued_at_sec, trust_bytes)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
1179
admin/package-lock.json
generated
1179
admin/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -4,7 +4,7 @@
|
|||||||
"description": "A simple example of how to use trust-graph in TS",
|
"description": "A simple example of how to use trust-graph in TS",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"compile-aqua": "aqua -i aqua -o generated",
|
"compile-aqua": "fluence aqua -i aqua -o generated",
|
||||||
"prebuild": "npm run compile-aqua",
|
"prebuild": "npm run compile-aqua",
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"start": "node dist/index.js",
|
"start": "node dist/index.js",
|
||||||
@ -13,8 +13,7 @@
|
|||||||
"author": "Fluence Labs",
|
"author": "Fluence Labs",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fluencelabs/aqua": "^0.10.0",
|
"@fluencelabs/aqua-lib": "^0.9.0",
|
||||||
"@fluencelabs/aqua-lib": "^0.6.0",
|
|
||||||
"@fluencelabs/fluence": "^0.27.5",
|
"@fluencelabs/fluence": "^0.27.5",
|
||||||
"@fluencelabs/fluence-network-environment": "^1.1.2",
|
"@fluencelabs/fluence-network-environment": "^1.1.2",
|
||||||
"@fluencelabs/trust-graph": "file:../aqua",
|
"@fluencelabs/trust-graph": "file:../aqua",
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
aqua Labelling declares *
|
||||||
|
|
||||||
|
export isFluencePeer
|
||||||
|
|
||||||
import "misc.aqua"
|
import "misc.aqua"
|
||||||
import get_host_certs_from from "trust-graph-api.aqua"
|
import get_host_certs_from from "trust-graph-api.aqua"
|
||||||
|
|
||||||
@ -20,7 +24,7 @@ func isFluencePeer() -> ?bool, ?Error:
|
|||||||
fluence_root_peer_id = "12D3KooWNbZKaPWRZ8wgjGvrxdJFz9Fq5uVwkR6ERV1f74HhPdyB"
|
fluence_root_peer_id = "12D3KooWNbZKaPWRZ8wgjGvrxdJFz9Fq5uVwkR6ERV1f74HhPdyB"
|
||||||
label_peer_id = "12D3KooWM45u7AQxsb4MuQJNYT3NWHHMLU7JTbBV66RTfF3KSzdR"
|
label_peer_id = "12D3KooWM45u7AQxsb4MuQJNYT3NWHHMLU7JTbBV66RTfF3KSzdR"
|
||||||
|
|
||||||
result: ?bool
|
result: *bool
|
||||||
error: *Error
|
error: *Error
|
||||||
-- get all certs issued by `label_peer_id` to current host
|
-- get all certs issued by `label_peer_id` to current host
|
||||||
certs_result <- get_host_certs_from(label_peer_id)
|
certs_result <- get_host_certs_from(label_peer_id)
|
||||||
@ -32,8 +36,9 @@ func isFluencePeer() -> ?bool, ?Error:
|
|||||||
if cert.chain!0.issued_for == fluence_root_peer_id:
|
if cert.chain!0.issued_for == fluence_root_peer_id:
|
||||||
if cert.chain!1.issued_for == label_peer_id:
|
if cert.chain!1.issued_for == label_peer_id:
|
||||||
result <<- true
|
result <<- true
|
||||||
if result == nil:
|
if result == []:
|
||||||
result <<- false
|
result <<- false
|
||||||
else:
|
else:
|
||||||
error <<- certs_result.error
|
error <<- certs_result.error
|
||||||
|
|
||||||
<- result, error
|
<- result, error
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
aqua Misc declares *
|
||||||
|
|
||||||
import "trust-graph.aqua"
|
import "trust-graph.aqua"
|
||||||
|
|
||||||
alias Error: string
|
alias Error: string
|
||||||
|
14681
aqua/package-lock.json
generated
14681
aqua/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -6,11 +6,11 @@
|
|||||||
"*.aqua"
|
"*.aqua"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fluencelabs/aqua-lib": "^0.7.0"
|
"@fluencelabs/aqua-lib": "^0.9.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"generate-aqua": "../service/build.sh",
|
"generate-aqua": "../service/build.sh",
|
||||||
"compile-aqua": "aqua -i . -o ./target/typescript",
|
"compile-aqua": "fluence aqua -i . -o ./target/typescript",
|
||||||
"build": "npm run compile-aqua"
|
"build": "npm run compile-aqua"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
@ -29,8 +29,5 @@
|
|||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/fluencelabs/trust-graph/issues"
|
"url": "https://github.com/fluencelabs/trust-graph/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/fluencelabs/trust-graph#readme",
|
"homepage": "https://github.com/fluencelabs/trust-graph#readme"
|
||||||
"devDependencies": {
|
|
||||||
"@fluencelabs/aqua": "^0.10.3"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
aqua TrustGraphApi declares *
|
||||||
|
|
||||||
|
export set_root, issue_trust, import_trust
|
||||||
|
export add_trust, add_root_trust, verify_trust
|
||||||
|
export get_weight, get_weight_from, issue_revocation
|
||||||
|
export import_revocation, revoke, get_host_certs_from
|
||||||
|
export get_all_certs, get_all_certs_from, get_host_certs
|
||||||
|
export insert_cert
|
||||||
|
|
||||||
import Sig, Peer, PeerId from "@fluencelabs/aqua-lib/builtin.aqua"
|
import Sig, Peer, PeerId from "@fluencelabs/aqua-lib/builtin.aqua"
|
||||||
import "misc.aqua"
|
import "misc.aqua"
|
||||||
import "trust-graph.aqua"
|
import "trust-graph.aqua"
|
||||||
@ -24,7 +33,7 @@ func issue_trust(issuer: PeerId, issued_for: PeerId, expires_at_sec: u64) -> ?Tr
|
|||||||
issued_at_sec <- Peer.timestamp_sec()
|
issued_at_sec <- Peer.timestamp_sec()
|
||||||
bytes <- TrustGraph.get_trust_bytes(issued_for, expires_at_sec, issued_at_sec)
|
bytes <- TrustGraph.get_trust_bytes(issued_for, expires_at_sec, issued_at_sec)
|
||||||
|
|
||||||
result: ?Trust
|
result: *Trust
|
||||||
error: *Error
|
error: *Error
|
||||||
if bytes.success:
|
if bytes.success:
|
||||||
Sig issuer
|
Sig issuer
|
||||||
@ -41,6 +50,7 @@ func issue_trust(issuer: PeerId, issued_for: PeerId, expires_at_sec: u64) -> ?Tr
|
|||||||
error <<- sig_res.error!
|
error <<- sig_res.error!
|
||||||
else:
|
else:
|
||||||
error <<- bytes.error
|
error <<- bytes.error
|
||||||
|
|
||||||
<- result, error
|
<- result, error
|
||||||
|
|
||||||
-- Call context: any node with registered `trust-graph` service
|
-- Call context: any node with registered `trust-graph` service
|
||||||
@ -51,8 +61,9 @@ func import_trust(trust: Trust, issuer: PeerId) -> ?Error:
|
|||||||
error: *Error
|
error: *Error
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
add_result <- TrustGraph.add_trust(trust, issuer, timestamp_sec)
|
add_result <- TrustGraph.add_trust(trust, issuer, timestamp_sec)
|
||||||
if add_result.success != true:
|
if !add_result.success:
|
||||||
error <<- add_result.error
|
error <<- add_result.error
|
||||||
|
|
||||||
<- error
|
<- error
|
||||||
|
|
||||||
-- Call context: %init_peer_id%
|
-- Call context: %init_peer_id%
|
||||||
@ -70,6 +81,7 @@ func add_trust(node: PeerId, issuer: PeerId, issued_for: PeerId, expires_at_sec:
|
|||||||
on node:
|
on node:
|
||||||
import_error <- import_trust(trust!, issuer)
|
import_error <- import_trust(trust!, issuer)
|
||||||
append_error(error, import_error)
|
append_error(error, import_error)
|
||||||
|
|
||||||
<- error
|
<- error
|
||||||
|
|
||||||
-- Call context: %init_peer_id%
|
-- Call context: %init_peer_id%
|
||||||
@ -99,6 +111,7 @@ func add_root_trust(node: PeerId, peer_id: PeerId, max_chain_len: u32, expires_a
|
|||||||
func verify_trust(trust: Trust, issuer: PeerId) -> VerifyTrustResult:
|
func verify_trust(trust: Trust, issuer: PeerId) -> VerifyTrustResult:
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
result <- TrustGraph.verify_trust(trust, issuer, timestamp_sec)
|
result <- TrustGraph.verify_trust(trust, issuer, timestamp_sec)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
|
||||||
-- Call context: any node with registered `trust-graph` service
|
-- Call context: any node with registered `trust-graph` service
|
||||||
@ -107,6 +120,7 @@ func verify_trust(trust: Trust, issuer: PeerId) -> VerifyTrustResult:
|
|||||||
func get_weight(peer_id: PeerId) -> WeightResult:
|
func get_weight(peer_id: PeerId) -> WeightResult:
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
result <- TrustGraph.get_weight(peer_id, timestamp_sec)
|
result <- TrustGraph.get_weight(peer_id, timestamp_sec)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
|
||||||
-- Call context: any node with registered `trust-graph` service
|
-- Call context: any node with registered `trust-graph` service
|
||||||
@ -114,6 +128,7 @@ func get_weight(peer_id: PeerId) -> WeightResult:
|
|||||||
func get_weight_from(peer_id: PeerId, issuer: PeerId) -> WeightResult:
|
func get_weight_from(peer_id: PeerId, issuer: PeerId) -> WeightResult:
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
result <- TrustGraph.get_weight_from(peer_id, issuer, timestamp_sec)
|
result <- TrustGraph.get_weight_from(peer_id, issuer, timestamp_sec)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
|
||||||
-- Call context: %init_peer_id%
|
-- Call context: %init_peer_id%
|
||||||
@ -127,7 +142,7 @@ func issue_revocation(revoked_by: PeerId, revoked: PeerId) -> ?Revocation, ?Erro
|
|||||||
issued_at_sec <- Peer.timestamp_sec()
|
issued_at_sec <- Peer.timestamp_sec()
|
||||||
bytes <- TrustGraph.get_revocation_bytes(revoked, issued_at_sec)
|
bytes <- TrustGraph.get_revocation_bytes(revoked, issued_at_sec)
|
||||||
|
|
||||||
result: ?Revocation
|
result: *Revocation
|
||||||
error: *Error
|
error: *Error
|
||||||
if bytes.success:
|
if bytes.success:
|
||||||
Sig revoked_by
|
Sig revoked_by
|
||||||
@ -145,6 +160,7 @@ func issue_revocation(revoked_by: PeerId, revoked: PeerId) -> ?Revocation, ?Erro
|
|||||||
error <<- sig_res.error!
|
error <<- sig_res.error!
|
||||||
else:
|
else:
|
||||||
error <<- bytes.error
|
error <<- bytes.error
|
||||||
|
|
||||||
<- result, error
|
<- result, error
|
||||||
|
|
||||||
-- Call context: any node with registered `trust-graph` service
|
-- Call context: any node with registered `trust-graph` service
|
||||||
@ -155,7 +171,7 @@ func import_revocation(revocation: Revocation) -> ?Error:
|
|||||||
error: *Error
|
error: *Error
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
add_result <- TrustGraph.revoke(revocation, timestamp_sec)
|
add_result <- TrustGraph.revoke(revocation, timestamp_sec)
|
||||||
if add_result.success != true:
|
if !add_result.success:
|
||||||
error <<- add_result.error
|
error <<- add_result.error
|
||||||
|
|
||||||
<- error
|
<- error
|
||||||
@ -176,6 +192,7 @@ func revoke(node: PeerId, revoked_by: PeerId, revoked: PeerId) -> ?Error:
|
|||||||
on node:
|
on node:
|
||||||
import_error <- import_revocation(revocation!)
|
import_error <- import_revocation(revocation!)
|
||||||
append_error(error, import_error)
|
append_error(error, import_error)
|
||||||
|
|
||||||
<- error
|
<- error
|
||||||
|
|
||||||
-- Call context: any node with registered `trust-graph` service
|
-- Call context: any node with registered `trust-graph` service
|
||||||
@ -183,6 +200,7 @@ func revoke(node: PeerId, revoked_by: PeerId, revoked: PeerId) -> ?Error:
|
|||||||
func get_host_certs_from(issuer: PeerId) -> AllCertsResult:
|
func get_host_certs_from(issuer: PeerId) -> AllCertsResult:
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
result <- TrustGraph.get_host_certs_from(issuer, timestamp_sec)
|
result <- TrustGraph.get_host_certs_from(issuer, timestamp_sec)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
|
||||||
-- Call context: any node with registered `trust-graph` service
|
-- Call context: any node with registered `trust-graph` service
|
||||||
@ -190,6 +208,7 @@ func get_host_certs_from(issuer: PeerId) -> AllCertsResult:
|
|||||||
func get_all_certs(issued_for: PeerId) -> AllCertsResult:
|
func get_all_certs(issued_for: PeerId) -> AllCertsResult:
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
result <- TrustGraph.get_all_certs(issued_for, timestamp_sec)
|
result <- TrustGraph.get_all_certs(issued_for, timestamp_sec)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
|
||||||
-- Call context: any node with registered `trust-graph` service
|
-- Call context: any node with registered `trust-graph` service
|
||||||
@ -197,6 +216,7 @@ func get_all_certs(issued_for: PeerId) -> AllCertsResult:
|
|||||||
func get_all_certs_from(issued_for: PeerId, issuer: PeerId) -> AllCertsResult:
|
func get_all_certs_from(issued_for: PeerId, issuer: PeerId) -> AllCertsResult:
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
result <- TrustGraph.get_all_certs_from(issued_for, issuer, timestamp_sec)
|
result <- TrustGraph.get_all_certs_from(issued_for, issuer, timestamp_sec)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
|
||||||
-- Call context: any node with registered `trust-graph` service
|
-- Call context: any node with registered `trust-graph` service
|
||||||
@ -204,6 +224,7 @@ func get_all_certs_from(issued_for: PeerId, issuer: PeerId) -> AllCertsResult:
|
|||||||
func get_host_certs() -> AllCertsResult:
|
func get_host_certs() -> AllCertsResult:
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
result <- TrustGraph.get_host_certs(timestamp_sec)
|
result <- TrustGraph.get_host_certs(timestamp_sec)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
|
||||||
-- Call context: any node with registered `trust-graph` service
|
-- Call context: any node with registered `trust-graph` service
|
||||||
@ -211,4 +232,5 @@ func get_host_certs() -> AllCertsResult:
|
|||||||
func insert_cert(certificate: Certificate) -> InsertResult:
|
func insert_cert(certificate: Certificate) -> InsertResult:
|
||||||
timestamp_sec <- Peer.timestamp_sec()
|
timestamp_sec <- Peer.timestamp_sec()
|
||||||
result <- TrustGraph.insert_cert(certificate, timestamp_sec)
|
result <- TrustGraph.insert_cert(certificate, timestamp_sec)
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
module TrustGraph declares *
|
aqua TrustGraph declares *
|
||||||
|
|
||||||
data AddTrustResult:
|
data AddTrustResult:
|
||||||
success: bool
|
success: bool
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
aqua Computation
|
||||||
|
|
||||||
import "@fluencelabs/trust-graph/trust-graph-api.aqua"
|
import "@fluencelabs/trust-graph/trust-graph-api.aqua"
|
||||||
import "@fluencelabs/trust-graph/trust-graph.aqua"
|
import "@fluencelabs/trust-graph/trust-graph.aqua"
|
||||||
@ -12,20 +13,21 @@ service TrustedComputation("op"):
|
|||||||
identity(s: u64) -> u64
|
identity(s: u64) -> u64
|
||||||
|
|
||||||
func trusted_computation(node: string) -> ?u64, ?string:
|
func trusted_computation(node: string) -> ?u64, ?string:
|
||||||
result: ?u64
|
result: *u64
|
||||||
error: ?string
|
error: *string
|
||||||
-- on our trusted relay
|
-- on our trusted relay
|
||||||
on HOST_PEER_ID:
|
on HOST_PEER_ID:
|
||||||
-- get all certificates issued for given node by our client's peer id
|
-- get all certificates issued for given node by our client's peer id
|
||||||
certs_result <- get_all_certs_from(node, %init_peer_id%)
|
certs_result <- get_all_certs_from(node, INIT_PEER_ID)
|
||||||
if certs_result.success:
|
if certs_result.success:
|
||||||
len <- CertOp.array_length(certs_result.certificates)
|
len <- CertOp.array_length(certs_result.certificates)
|
||||||
-- if there is any certificate node is trusted and computation is possible
|
-- if there is any certificate node is trusted and computation is possible
|
||||||
if len != 0:
|
if len != 0:
|
||||||
on node:
|
on node:
|
||||||
result <- TrustedComputation.identity(5)
|
result <- TrustedComputation.identity(5)
|
||||||
else:
|
else:
|
||||||
error <<- "there is no certs for this peer"
|
error <<- "there is no certs for this peer"
|
||||||
else:
|
else:
|
||||||
error <<- certs_result.error
|
error <<- certs_result.error
|
||||||
|
|
||||||
<- result, error
|
<- result, error
|
||||||
|
@ -1,11 +1,14 @@
|
|||||||
module Export
|
aqua Export
|
||||||
|
|
||||||
import add_root_trust, add_trust, revoke from "@fluencelabs/trust-graph/trust-graph-api.aqua"
|
import add_root_trust, add_trust, revoke from "@fluencelabs/trust-graph/trust-graph-api.aqua"
|
||||||
export add_root_trust, add_trust, revoke, timestamp_sec
|
|
||||||
import Peer from "@fluencelabs/aqua-lib/builtin.aqua"
|
import Peer from "@fluencelabs/aqua-lib/builtin.aqua"
|
||||||
|
|
||||||
|
export add_root_trust, add_trust, revoke, timestamp_sec
|
||||||
|
|
||||||
alias PeerId: string
|
alias PeerId: string
|
||||||
|
|
||||||
func timestamp_sec() -> u64:
|
func timestamp_sec() -> u64:
|
||||||
on HOST_PEER_ID:
|
on HOST_PEER_ID:
|
||||||
result <- Peer.timestamp_sec()
|
result <- Peer.timestamp_sec()
|
||||||
|
|
||||||
<- result
|
<- result
|
||||||
|
14
example/package-lock.json
generated
14
example/package-lock.json
generated
@ -9,7 +9,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fluencelabs/aqua-lib": "^0.6.0",
|
"@fluencelabs/aqua-lib": "^0.9.0",
|
||||||
"@fluencelabs/fluence": "^0.23.0",
|
"@fluencelabs/fluence": "^0.23.0",
|
||||||
"@fluencelabs/fluence-network-environment": "^1.1.2",
|
"@fluencelabs/fluence-network-environment": "^1.1.2",
|
||||||
"@fluencelabs/trust-graph": "3.1.2",
|
"@fluencelabs/trust-graph": "3.1.2",
|
||||||
@ -759,9 +759,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/@fluencelabs/aqua-lib": {
|
"node_modules/@fluencelabs/aqua-lib": {
|
||||||
"version": "0.6.0",
|
"version": "0.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/@fluencelabs/aqua-lib/-/aqua-lib-0.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/@fluencelabs/aqua-lib/-/aqua-lib-0.9.0.tgz",
|
||||||
"integrity": "sha512-ifjtCM93KO3LhzPkMxqmXhwLmrg/scjOiyTihEVg7ns5N+BVzaK1eWzdOdqGdl9ZVoah43pdlQUepEo7VdRmsw=="
|
"integrity": "sha512-V0xhc0UXBF6kjfL9Y/agWGQuW+ie2zckj37KWv8Dq4teYuo9N94O4Ynm7XULWHaaWtbWvzFcDcc6nc9qG7gxcQ=="
|
||||||
},
|
},
|
||||||
"node_modules/@fluencelabs/aqua/node_modules/@fluencelabs/aqua-lib": {
|
"node_modules/@fluencelabs/aqua/node_modules/@fluencelabs/aqua-lib": {
|
||||||
"version": "0.6.0",
|
"version": "0.6.0",
|
||||||
@ -9775,9 +9775,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@fluencelabs/aqua-lib": {
|
"@fluencelabs/aqua-lib": {
|
||||||
"version": "0.6.0",
|
"version": "0.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/@fluencelabs/aqua-lib/-/aqua-lib-0.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/@fluencelabs/aqua-lib/-/aqua-lib-0.9.0.tgz",
|
||||||
"integrity": "sha512-ifjtCM93KO3LhzPkMxqmXhwLmrg/scjOiyTihEVg7ns5N+BVzaK1eWzdOdqGdl9ZVoah43pdlQUepEo7VdRmsw=="
|
"integrity": "sha512-V0xhc0UXBF6kjfL9Y/agWGQuW+ie2zckj37KWv8Dq4teYuo9N94O4Ynm7XULWHaaWtbWvzFcDcc6nc9qG7gxcQ=="
|
||||||
},
|
},
|
||||||
"@fluencelabs/avm": {
|
"@fluencelabs/avm": {
|
||||||
"version": "0.24.2",
|
"version": "0.24.2",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"description": "A simple example of how to use trust-graph in TS",
|
"description": "A simple example of how to use trust-graph in TS",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"compile-aqua": "aqua -i aqua -o generated",
|
"compile-aqua": "fluence aqua -i aqua -o generated",
|
||||||
"prebuild": "npm run compile-aqua",
|
"prebuild": "npm run compile-aqua",
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"start": "node dist/index.js",
|
"start": "node dist/index.js",
|
||||||
@ -13,7 +13,7 @@
|
|||||||
"author": "Fluence Labs",
|
"author": "Fluence Labs",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fluencelabs/aqua-lib": "^0.6.0",
|
"@fluencelabs/aqua-lib": "^0.9.0",
|
||||||
"@fluencelabs/fluence": "^0.23.0",
|
"@fluencelabs/fluence": "^0.23.0",
|
||||||
"@fluencelabs/fluence-network-environment": "^1.1.2",
|
"@fluencelabs/fluence-network-environment": "^1.1.2",
|
||||||
"@fluencelabs/trust-graph": "3.1.2",
|
"@fluencelabs/trust-graph": "3.1.2",
|
||||||
|
Loading…
Reference in New Issue
Block a user