@bennyblader/ddk-rn 1.0.0-rc2 → 1.0.0-rc3
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/android/src/main/jniLibs/arm64-v8a/libddk_ffi.so +0 -0
- package/android/src/main/jniLibs/armeabi-v7a/libddk_ffi.so +0 -0
- package/android/src/main/jniLibs/x86/libddk_ffi.so +0 -0
- package/android/src/main/jniLibs/x86_64/libddk_ffi.so +0 -0
- package/ios/DdkRn.xcframework/Info.plist +4 -4
- package/ios/DdkRn.xcframework/ios-arm64/libddk_ffi.a +0 -0
- package/ios/DdkRn.xcframework/ios-arm64-simulator/libddk_ffi.a +0 -0
- package/lib/commonjs/ddk_ffi.js +3 -3
- package/lib/commonjs/ddk_ffi.js.map +1 -1
- package/lib/module/ddk_ffi.js +3 -3
- package/lib/module/ddk_ffi.js.map +1 -1
- package/lib/typescript/commonjs/src/ddk_ffi.d.ts +1 -1
- package/lib/typescript/commonjs/src/ddk_ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/ddk_ffi.d.ts +1 -1
- package/lib/typescript/module/src/ddk_ffi.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/ddk_ffi.ts +4 -4
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<key>BinaryPath</key>
|
|
9
9
|
<string>libddk_ffi.a</string>
|
|
10
10
|
<key>LibraryIdentifier</key>
|
|
11
|
-
<string>ios-arm64</string>
|
|
11
|
+
<string>ios-arm64-simulator</string>
|
|
12
12
|
<key>LibraryPath</key>
|
|
13
13
|
<string>libddk_ffi.a</string>
|
|
14
14
|
<key>SupportedArchitectures</key>
|
|
@@ -17,12 +17,14 @@
|
|
|
17
17
|
</array>
|
|
18
18
|
<key>SupportedPlatform</key>
|
|
19
19
|
<string>ios</string>
|
|
20
|
+
<key>SupportedPlatformVariant</key>
|
|
21
|
+
<string>simulator</string>
|
|
20
22
|
</dict>
|
|
21
23
|
<dict>
|
|
22
24
|
<key>BinaryPath</key>
|
|
23
25
|
<string>libddk_ffi.a</string>
|
|
24
26
|
<key>LibraryIdentifier</key>
|
|
25
|
-
<string>ios-arm64
|
|
27
|
+
<string>ios-arm64</string>
|
|
26
28
|
<key>LibraryPath</key>
|
|
27
29
|
<string>libddk_ffi.a</string>
|
|
28
30
|
<key>SupportedArchitectures</key>
|
|
@@ -31,8 +33,6 @@
|
|
|
31
33
|
</array>
|
|
32
34
|
<key>SupportedPlatform</key>
|
|
33
35
|
<string>ios</string>
|
|
34
|
-
<key>SupportedPlatformVariant</key>
|
|
35
|
-
<string>simulator</string>
|
|
36
36
|
</dict>
|
|
37
37
|
</array>
|
|
38
38
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|
package/lib/commonjs/ddk_ffi.js
CHANGED
|
@@ -1017,17 +1017,17 @@ const FfiConverterTypeDlcTransactions = (() => {
|
|
|
1017
1017
|
fund: FfiConverterTypeTransaction.read(from),
|
|
1018
1018
|
cets: FfiConverterSequenceTypeTransaction.read(from),
|
|
1019
1019
|
refund: FfiConverterTypeTransaction.read(from),
|
|
1020
|
-
|
|
1020
|
+
fundingWitnessScript: _core.FfiConverterUint8Array.read(from)
|
|
1021
1021
|
};
|
|
1022
1022
|
}
|
|
1023
1023
|
write(value, into) {
|
|
1024
1024
|
FfiConverterTypeTransaction.write(value.fund, into);
|
|
1025
1025
|
FfiConverterSequenceTypeTransaction.write(value.cets, into);
|
|
1026
1026
|
FfiConverterTypeTransaction.write(value.refund, into);
|
|
1027
|
-
_core.FfiConverterUint8Array.write(value.
|
|
1027
|
+
_core.FfiConverterUint8Array.write(value.fundingWitnessScript, into);
|
|
1028
1028
|
}
|
|
1029
1029
|
allocationSize(value) {
|
|
1030
|
-
return FfiConverterTypeTransaction.allocationSize(value.fund) + FfiConverterSequenceTypeTransaction.allocationSize(value.cets) + FfiConverterTypeTransaction.allocationSize(value.refund) + _core.FfiConverterUint8Array.allocationSize(value.
|
|
1030
|
+
return FfiConverterTypeTransaction.allocationSize(value.fund) + FfiConverterSequenceTypeTransaction.allocationSize(value.cets) + FfiConverterTypeTransaction.allocationSize(value.refund) + _core.FfiConverterUint8Array.allocationSize(value.fundingWitnessScript);
|
|
1031
1031
|
}
|
|
1032
1032
|
}
|
|
1033
1033
|
return new FFIConverter();
|