@xandeum/web3.js 1.3.10 → 1.3.11

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/poke.js CHANGED
@@ -83,14 +83,14 @@ function poke(fsid, path, position, wallet, dataKey) {
83
83
  isWritable: true
84
84
  },
85
85
  {
86
- pubkey: dataKey,
86
+ pubkey: feeDistributorPda.pda,
87
87
  isSigner: false,
88
- isWritable: false
88
+ isWritable: true
89
89
  },
90
90
  {
91
- pubkey: feeDistributorPda.pda,
91
+ pubkey: dataKey,
92
92
  isSigner: false,
93
- isWritable: true
93
+ isWritable: false
94
94
  },
95
95
  {
96
96
  pubkey: payerAta.ata,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xandeum/web3.js",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "description": "Xandeum javascript api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/poke.ts CHANGED
@@ -53,14 +53,14 @@ export async function poke (
53
53
  isWritable: true
54
54
  },
55
55
  {
56
- pubkey: dataKey,
56
+ pubkey: feeDistributorPda.pda,
57
57
  isSigner: false,
58
- isWritable: false
58
+ isWritable: true
59
59
  },
60
60
  {
61
- pubkey: feeDistributorPda.pda,
61
+ pubkey: dataKey,
62
62
  isSigner: false,
63
- isWritable: true
63
+ isWritable: false
64
64
  },
65
65
  {
66
66
  pubkey: payerAta.ata,