-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
src/core/index.ts
Current
public createAssetTransferOutput(params: {
recipient: AssetTransferAddress | string;
assetType: H256 | string;
amount: number;
}): AssetTransferOutput
Patch
public createAssetTransferOutput(params: {
recipient: AssetTransferAddress | string;
assetType: H256 | string;
amount: number;
} | {
lockScriptHash: H256 | string;
parameters: Buffer[];
assetType: H256 | string;
amount: number;
}): AssetTransferOutput
The constructor of AssetTransferOutput already supports it.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers