@xandeum/web3.js 1.3.1 → 1.3.3

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/dist/const.d.ts CHANGED
@@ -1,2 +1 @@
1
- export declare const programId = "xSHLJPXU8QW3A9kGiRoL94bksJ7ZZPY4dUwJPAT8CVK";
2
- export declare const stoincProgramId = "EaLDF7m76kzvrpeADHVHPLfk5qpPaPxYUYqYApByLp1S";
1
+ export declare const programId = "EaLDF7m76kzvrpeADHVHPLfk5qpPaPxYUYqYApByLp1S";
package/dist/const.js CHANGED
@@ -1,5 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.stoincProgramId = exports.programId = void 0;
4
- exports.programId = "xSHLJPXU8QW3A9kGiRoL94bksJ7ZZPY4dUwJPAT8CVK";
5
- exports.stoincProgramId = "EaLDF7m76kzvrpeADHVHPLfk5qpPaPxYUYqYApByLp1S";
3
+ exports.programId = void 0;
4
+ exports.programId = "EaLDF7m76kzvrpeADHVHPLfk5qpPaPxYUYqYApByLp1S";
package/dist/helpers.js CHANGED
@@ -75,6 +75,6 @@ function getFeeDistributorPda() {
75
75
  var _a = web3_js_1.PublicKey.findProgramAddressSync([
76
76
  Buffer.from(exports.FEE_DISTRIBUTOR_SEED, 'utf-8'),
77
77
  yugaBuffer
78
- ], new web3_js_1.PublicKey(const_1.stoincProgramId)), pda = _a[0], bump = _a[1];
78
+ ], new web3_js_1.PublicKey(const_1.programId)), pda = _a[0], bump = _a[1];
79
79
  return { pda: pda, bump: bump };
80
80
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xandeum/web3.js",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "Xandeum javascript api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/const.ts CHANGED
@@ -1,3 +1 @@
1
- export const programId="xSHLJPXU8QW3A9kGiRoL94bksJ7ZZPY4dUwJPAT8CVK";
2
-
3
- export const stoincProgramId="EaLDF7m76kzvrpeADHVHPLfk5qpPaPxYUYqYApByLp1S";
1
+ export const programId="EaLDF7m76kzvrpeADHVHPLfk5qpPaPxYUYqYApByLp1S";
package/src/helpers.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { PublicKey } from '@solana/web3.js'
2
- import { stoincProgramId } from './const'
2
+ import { programId } from './const'
3
3
  import BN from 'bn.js'
4
4
 
5
5
  /**
@@ -78,7 +78,7 @@ export function getFeeDistributorPda(): { pda: PublicKey; bump: number } {
78
78
  Buffer.from(FEE_DISTRIBUTOR_SEED, 'utf-8'),
79
79
  yugaBuffer
80
80
  ],
81
- new PublicKey(stoincProgramId)
81
+ new PublicKey(programId)
82
82
  )
83
83
 
84
84
  return { pda, bump }