@exodus/solana-lib 1.6.9 → 1.6.10
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-lib",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.10",
|
|
4
4
|
"description": "Exodus internal Solana low-level library",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -26,5 +26,6 @@
|
|
|
26
26
|
"create-hash": "^1.1.3",
|
|
27
27
|
"lodash": "^4.17.11",
|
|
28
28
|
"tweetnacl": "^1.0.3"
|
|
29
|
-
}
|
|
29
|
+
},
|
|
30
|
+
"gitHead": "1210a44d1b6a8fc0375589f7e2439aa3fd0f6b01"
|
|
30
31
|
}
|
|
@@ -76,7 +76,7 @@ export class TransactionInstruction {
|
|
|
76
76
|
*/
|
|
77
77
|
data = Buffer.alloc(0)
|
|
78
78
|
|
|
79
|
-
constructor(opts
|
|
79
|
+
constructor(opts) {
|
|
80
80
|
opts && Object.assign(this, opts)
|
|
81
81
|
}
|
|
82
82
|
}
|
|
@@ -156,7 +156,7 @@ export class Transaction {
|
|
|
156
156
|
/**
|
|
157
157
|
* Construct an empty Transaction
|
|
158
158
|
*/
|
|
159
|
-
constructor(opts
|
|
159
|
+
constructor(opts) {
|
|
160
160
|
opts && Object.assign(this, opts)
|
|
161
161
|
}
|
|
162
162
|
/**
|
|
@@ -478,7 +478,7 @@ export class Transaction {
|
|
|
478
478
|
/**
|
|
479
479
|
* Serialize the Transaction in the wire format.
|
|
480
480
|
*/
|
|
481
|
-
serialize(config
|
|
481
|
+
serialize(config) {
|
|
482
482
|
const { requireAllSignatures, verifySignatures } = Object.assign(
|
|
483
483
|
{ requireAllSignatures: true, verifySignatures: true },
|
|
484
484
|
config
|