Modify Records

Modify Record Content

Change the Record's key's value to something.

import { modifyRecordValueByTag } from 'dubnium'
modifyRecordValueByTag("tag", "key", "value")

Overwrite Record Content

Overwrite a Record found by it's tag.

import { overwriteByTag } from 'dubnium'
overwriteByTag("tag",{"data":"here"})

Modify Record's tag

Change a Record's tag found by its current tag.

import { modifyTag } from 'dubnium'
modifyTag("old_tag","new_tag")

Last updated