@stellar/stellar-base 12.1.1 → 13.0.0
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.
- package/CHANGELOG.md +18 -0
- package/dist/stellar-base.js +815 -179
- package/dist/stellar-base.min.js +1 -1
- package/lib/generated/curr_generated.js +728 -103
- package/lib/generated/next_generated.js +793 -107
- package/lib/operation.js +6 -1
- package/lib/operations/invoke_host_function.js +9 -3
- package/package.json +14 -14
- package/types/curr.d.ts +1472 -195
- package/types/index.d.ts +1 -0
- package/types/next.d.ts +1642 -195
package/types/index.d.ts
CHANGED
|
@@ -561,6 +561,7 @@ export namespace OperationOptions {
|
|
|
561
561
|
interface CreateCustomContract extends BaseInvocationOptions {
|
|
562
562
|
address: Address;
|
|
563
563
|
wasmHash: Buffer | Uint8Array;
|
|
564
|
+
constructorArgs?: xdr.ScVal[];
|
|
564
565
|
salt?: Buffer | Uint8Array;
|
|
565
566
|
}
|
|
566
567
|
interface CreateStellarAssetContract extends BaseOptions {
|