Skip to content

v0.4.7

Compare
Choose a tag to compare
@github-actions github-actions released this 16 Sep 11:15
· 18 commits to master since this release
24b6a96
  • Added basic Dev Mode
    • Can be activated using the config flag dev_mode: true
    • If activated, it's possible to fetch a full JSON Bill Chain by ID with the bill data decrypted for debugging
      • Endpoint: dev_mode_get_full_bill_chain(bill_id: string): Promise<string[]> on Bill api
      • The resulting nested list of JSON strings can be consumed like this:
      await billApi.dev_mode_get_full_bill_chain(bill_id).map((b) => {
        const block = JSON.parse(b);
        return { ...block, data: JSON.parse(block.data) };
      })

Version: v0.4.7