Skip to content

Commit

Permalink
Fix argument name of additive.
Browse files Browse the repository at this point in the history
  • Loading branch information
hanatyan128 committed Dec 3, 2022
1 parent 2223df0 commit 8aca545
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ const txs = await MetalService.createDestroyTxs(
targetAccount,
targetId,
payload,
additiveBytes,
additive,
metadataPool,
);
```
Expand All @@ -1145,7 +1145,7 @@ const txs = await MetalService.createDestroyTxs(
- `targetAccount: PublicAccount` - メタデータ付与先のアカウント
- `targetId: undefined | MosaicId | NamespaceId` - メタデータ付与先のモザイク/ネームスペースID。アカウントの場合は `undefined`
- `payload: Buffer` - 元ファイルのデータ(バイナリ可)
- `additiveBytes: Uint8Buffer` - Forge 時に添加した Additive(必ず 4 bytes の ascii 文字列であること)
- `additive: Uint8Buffer` - Forge 時に添加した Additive(必ず 4 bytes の ascii 文字列であること)
- `metadataPool?: Metadata[]` - **(Optional)** 取得済みのメタデータプールがあれば渡すことができ、内部で再度取得する無駄を省けます。通常は指定不要

**戻り値**
Expand Down

0 comments on commit 8aca545

Please sign in to comment.