@pioneer-platform/solana-network 8.11.17 → 8.15.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 +24 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +6 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @pioneer-platform/solana-network
|
|
2
2
|
|
|
3
|
+
## 8.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- chore: chore: chore: feat(pioneer): implement end-to-end Solana transaction signing
|
|
8
|
+
|
|
9
|
+
## 8.14.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- chore: chore: feat(pioneer): implement end-to-end Solana transaction signing
|
|
14
|
+
|
|
15
|
+
## 8.13.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- chore: feat(pioneer): implement end-to-end Solana transaction signing
|
|
20
|
+
|
|
21
|
+
## 8.12.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- feat(pioneer): implement end-to-end Solana transaction signing
|
|
26
|
+
|
|
3
27
|
## 8.11.17
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Provides connectivity to the Solana blockchain network.
|
|
6
6
|
|
|
7
|
-
Network ID: solana:
|
|
7
|
+
Network ID: solana:5eykt4usfv8p8njdtrepy1vzqkqzkvdp
|
|
8
8
|
SLIP44: 501
|
|
9
9
|
Decimals: 9 (lamports)
|
|
10
10
|
|
|
@@ -69,7 +69,7 @@ var DEFAULT_RPC_URL = NOWNODES_API_KEY
|
|
|
69
69
|
? "https://sol.nownodes.io/".concat(NOWNODES_API_KEY)
|
|
70
70
|
: "https://api.mainnet-beta.solana.com";
|
|
71
71
|
// Network constants
|
|
72
|
-
exports.NETWORK_ID = 'solana:
|
|
72
|
+
exports.NETWORK_ID = 'solana:5eykt4usfv8p8njdtrepy1vzqkqzkvdp';
|
|
73
73
|
exports.CHAIN_SYMBOL = 'SOL';
|
|
74
74
|
exports.DECIMALS = 9;
|
|
75
75
|
// Create axios instance for RPC calls
|
|
@@ -367,7 +367,10 @@ function broadcast_transaction(tx) {
|
|
|
367
367
|
"method": "sendTransaction",
|
|
368
368
|
"params": [
|
|
369
369
|
tx,
|
|
370
|
-
{
|
|
370
|
+
{
|
|
371
|
+
"encoding": "base64",
|
|
372
|
+
"skipPreflight": true // Skip simulation to avoid blockhash expiration during user confirmation
|
|
373
|
+
}
|
|
371
374
|
]
|
|
372
375
|
}
|
|
373
376
|
})];
|