@pioneer-platform/solana-network 8.11.16 → 8.13.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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @pioneer-platform/solana-network
2
2
 
3
+ ## 8.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - chore: feat(pioneer): implement end-to-end Solana transaction signing
8
+
9
+ ## 8.12.0
10
+
11
+ ### Minor Changes
12
+
13
+ - feat(pioneer): implement end-to-end Solana transaction signing
14
+
15
+ ## 8.11.17
16
+
17
+ ### Patch Changes
18
+
19
+ - chore: chore: chore: chore: chore: chore: chore: chore: chore: chore: chore: chore: chore: fix: move @types/pdfkit to dependencies for Docker --production build
20
+
3
21
  ## 8.11.16
4
22
 
5
23
  ### Patch Changes
package/lib/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export declare const NETWORK_ID = "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp";
1
+ export declare const NETWORK_ID = "solana:5eykt4usfv8p8njdtrepy1vzqkqzkvdp";
2
2
  export declare const CHAIN_SYMBOL = "SOL";
3
3
  export declare const DECIMALS = 9;
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:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
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:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp';
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
- { "encoding": "base64" }
370
+ {
371
+ "encoding": "base64",
372
+ "skipPreflight": true // Skip simulation to avoid blockhash expiration during user confirmation
373
+ }
371
374
  ]
372
375
  }
373
376
  })];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/solana-network",
3
- "version": "8.11.16",
3
+ "version": "8.13.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "description": "Pioneer Platform Solana Network module",