update code and include package.json
This commit is contained in:
parent
c1871768f8
commit
1f1ca4f807
|
@ -1,16 +1,20 @@
|
||||||
import { MeshWallet } from '@meshsdk/core';
|
import { MeshWallet } from "@meshsdk/core";
|
||||||
import fs from 'node:fs';
|
import fs from "node:fs";
|
||||||
|
|
||||||
const secret_key = MeshWallet.brew(true) as string;
|
async function main() {
|
||||||
|
const secret_key = MeshWallet.brew(true) as string;
|
||||||
|
|
||||||
fs.writeFileSync('me.sk', secret_key);
|
fs.writeFileSync("me.sk", secret_key);
|
||||||
|
|
||||||
const wallet = new MeshWallet({
|
const wallet = new MeshWallet({
|
||||||
networkId: 0,
|
networkId: 0,
|
||||||
key: {
|
key: {
|
||||||
type: 'root',
|
type: "root",
|
||||||
bech32: secret_key,
|
bech32: secret_key,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
fs.writeFileSync('me.addr', wallet.getUnusedAddresses()[0]);
|
fs.writeFileSync("me.addr", (await wallet.getUnusedAddresses())[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
main();
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"name": "hello_world",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"scripts": {
|
||||||
|
"generate": "npx tsx generate-credentials.ts",
|
||||||
|
"lock": "npx tsx lock.ts"
|
||||||
|
},
|
||||||
|
"author": "jinglescode",
|
||||||
|
"dependencies": {
|
||||||
|
"@meshsdk/core": "^1.8.4",
|
||||||
|
"tsx": "^4.19.2"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue