Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 3.72 KB

README.md

File metadata and controls

37 lines (27 loc) · 3.72 KB

Lisk-sprinkler

lisk-sprinkler is a faucet transaction with username registration.

Custom badge

Blockchain application installation

npm install @moosty/lisk-sprinkler

In your application file change the module order for lisk-sprinkler to work:

import {SprinklerModule} from "@moosty/lisk-sprinkler"

const app = new Application(genesisBlockDevnet, appConfig);

app._registerModule(SprinklerModule, false);
app._registerModule(TokenModule, false);
app._registerModule(SequenceModule, false);
app._registerModule(KeysModule, false);
app._registerModule(DPoSModule, false);

The sprinkler transactions could be made with the following params:

ModuleID: 6666
AssetID: 100
Asset: {
  username: string
}

Change logs

June 13th, 2021: Upgraded to sdk v5.1.1

May 7th, 2021: Upgraded to sdk v5.0.4

May 7th, 2020: Created initial release