Generator
Init
Create a starter payload schema file.
Use init to create a starter payload definition.
npx @blueshift-gg/doppler-cli initArguments
| Argument / Flag | Required | Default | Description |
|---|---|---|---|
--out <file> | No | payload.ts | Writes the starter schema file to this path. |
init writes only the payload schema. It does not create keypairs or manifest.json. Use generate for deployment metadata and keypair generation.
Choose an Output Path
npx @blueshift-gg/doppler-cli init --out ./feeds/payload.tsStarter Schema
The generated file contains only the payload object:
export default {
payload: {
price: "u64",
},
} as const;Edit the payload object before running generate.