@alephium/web3 0.35.0 → 0.35.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -774,6 +774,7 @@ class Contract extends Artifact {
|
|
|
774
774
|
bytecode: bytecode,
|
|
775
775
|
initialAttoAlphAmount: params?.initialAttoAlphAmount,
|
|
776
776
|
issueTokenAmount: params?.issueTokenAmount,
|
|
777
|
+
issueTokenTo: params?.issueTokenTo,
|
|
777
778
|
initialTokenAmounts: params?.initialTokenAmounts,
|
|
778
779
|
gasAmount: params?.gasAmount,
|
|
779
780
|
gasPrice: params?.gasPrice
|
package/package.json
CHANGED
package/src/contract/contract.ts
CHANGED
|
@@ -1133,6 +1133,7 @@ export class Contract extends Artifact {
|
|
|
1133
1133
|
bytecode: bytecode,
|
|
1134
1134
|
initialAttoAlphAmount: params?.initialAttoAlphAmount,
|
|
1135
1135
|
issueTokenAmount: params?.issueTokenAmount,
|
|
1136
|
+
issueTokenTo: params?.issueTokenTo,
|
|
1136
1137
|
initialTokenAmounts: params?.initialTokenAmounts,
|
|
1137
1138
|
gasAmount: params?.gasAmount,
|
|
1138
1139
|
gasPrice: params?.gasPrice
|