0.2.1 • Published 4 years ago

trackweave v0.2.1

Weekly downloads
18
License
MIT
Repository
github
Last release
4 years ago

TrackWeave - Ramifiable and Directed Transactions

TrackWeave is the Ramifiable and Directed Transactions (RDT) data structure, a new and intuitive way to link Arweave transactions through chronology, linked subtrees, and branches.

RDT is a hybrid data structure that aggregates the chronology of a linked list, the ramifiability of tree structures, and the versatility of graph structures. This allows one to traverse along a chronological chain of transactions in a bidirectional manner, while still retaining the successive and directed nature of a blockchain. The RDT data structure also supports branches, which allows, through a simple transaction, the ability to continue a chain independently and then conclude the chain by rejoining it with the origin RDT later. The nature of branches allows one to create cyclic graphs, however, to remain true to the ideals of a directed blockchain, a rejoin can not be associated to a node that existed prior to the creation of a branch. Branches open a myriad of opportunities for your transactions through the relationships that can be expressed with their cyclic ability. In addition to branches, RDT supports "subtrees," which allow you to link an independent RDT to a node that exists elsewhere. What sets apart a subtree from a branch is that an RDT that is referenced by a subtree is oblivious to the subtree in question, however, the subtree can utilise the other RDT that it references as a means to collect further data through traversal. As a result, independent ecosystems can integrate external data into themselves with ease.

RDT Specification

Notes: Terminology relating to tree structures is used in conjunction with graph terminology in this specification. RDT uses nanoids for its random strings.

Key

A new random number is denoted by R.

A number is denoted by N.

Data that is replicated from a previous node at the same tag is prefixed with <-

Tags in the format Tag?: Data represent optional tags.

The root node

To create a RDT structure, a root node must be configured with the following tags:

# An easy way to indicate that this is the root. Useful for ArQL.
RDT-Type: "root"
RDT-Major-Version: [Currently, 0]

# Node metadata.
Root-Id: R
Created-At: [UNIX Timestamp]

# You can initialise your own subtree through this value.
Tail-Node?: <-Head-Node
Head-Node: R

Regular Nodes

Regular transactions that you wish to participate as a node in the RDT are configured with the following tags:

RDT-Type: "node"
RDT-Major-Version: [Currently, 0]

# Node metadata.
Root-Id: <-Root-Id
Created-At: [UNIX Timestamp]

# Edges of nodes.
Tail-Node: <-Head-Node
Head-Node: [R OR See Rejoining a branch]

# Use 0 if the degree of the tree is 0.
Branch-Depth: <-N OR 0 OR <-N + 1
# When a branch is made, the value should be set to Tail-Node
# After that, additional nodes should use the previous Branch-Tail-Node
Branch-Tail-Node?: [<-Branch-Tail-Node OR Value of Tail-Node]

Branches

Branching an RDT is rather trivial, as you just continue the RDT, but you add 1 to the branch depth. Adding or subtracting more than 1 to the branch depth will make it invalid, and the branch will be ignored.

Querying branches

Querying a branch can be achieved by using the following tags:

RDT-Type: "Node"
Root-Id: [Current Root-Id]
Branch-Depth: [Branch-Depth + 1]
Tail-Node: [Current Branch-Head]

Rejoining a branch

To rejoin with the chain of the ancestral origin of a branch, any transaction of that chain that outdates the Branch-Tail-Node or is equal to it needs to be used as the Head-Node. If you attempt to rejoin to a node that predates the Branch-Tail-Node, the rejoin will be ignored by the traversal algorithm.

Querying for rejoins

A rejoin can be queried by using the following tags:

RDT-Type: "Node"
Root-Id: [Current Root-Id]
Branch-Depth: [Branch-Depth + 1]
Branch-Tail-Node: [Branch-Tail]
Head-Node: [Desired Head-Node]

Subtrees

A subtree is similar to a branch, but is useful for different things. A branch allows an insertion of alternative history before potentially migrating to the latest head of the chain of its ancestral origin (rejoining).

A subtree is the same as starting a new RDT, however in reference to a previous node. This is useful if you wish to demonstrate that there is a relationship with a node that exists elsewhere and the genesis of a new RDT.

Creating a subtree is exactly the same as creating a root node, however the Tail-Node tag is utilised in order to make a one way reference to the external RDT structure.

Structural Integrity Checks

Duplicate Nodes

If a node appears with duplicate data, an ArQL query will rank them based on their chronology, thus allowing us to determine that the the proceeding entries are invalid; these entries will be ignored.

Incorrectly configured edges

Say we have tx1 with Tail-Node: foo and Head-Node: bar and tx2 was added after tx1 with Tail-Node: bar and Head-Node: foo. This situation would cause an infinite loop, and such behaviour is only supported in branches although without the deadlocking behaviour. As such, unix time stamps sourced from the Created-At tag are employed to ensure that transactions that are added in the future do not match their Head-Node to an older Tail-Node.

Inspirations

License

The contents of this repository is licensed under the MIT license, the copy of which pertaining to this repository is accessible at ./LICENSE.

0.2.1

4 years ago

0.2.0

4 years ago

0.1.15

4 years ago

0.1.16

4 years ago

0.1.17

4 years ago

0.1.14

4 years ago

0.1.12

4 years ago

0.1.13

4 years ago

0.1.10

4 years ago

0.1.11

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago