@xandeum/web3.js 1.3.11 → 1.3.13-trynet

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.
@@ -76,6 +76,11 @@ function armageddon(fsid, wallet) {
76
76
  isSigner: false,
77
77
  isWritable: true
78
78
  },
79
+ {
80
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
81
+ isSigner: false,
82
+ isWritable: false
83
+ },
79
84
  {
80
85
  pubkey: payerAta.ata,
81
86
  isSigner: false,
@@ -80,6 +80,11 @@ function assignCoowner(fsid, path, coowner, wallet) {
80
80
  isSigner: false,
81
81
  isWritable: true
82
82
  },
83
+ {
84
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
85
+ isSigner: false,
86
+ isWritable: false
87
+ },
83
88
  {
84
89
  pubkey: payerAta.ata,
85
90
  isSigner: false,
package/dist/bigbang.js CHANGED
@@ -68,6 +68,11 @@ function bigbang(replicaCount, wallet) {
68
68
  isSigner: false,
69
69
  isWritable: true,
70
70
  },
71
+ {
72
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
73
+ isSigner: false,
74
+ isWritable: false,
75
+ },
71
76
  {
72
77
  pubkey: payerAta.ata,
73
78
  isSigner: false,
package/dist/copyPath.js CHANGED
@@ -85,6 +85,11 @@ function copyPath(fsid, srcPath, destPath, wallet) {
85
85
  isSigner: false,
86
86
  isWritable: true
87
87
  },
88
+ {
89
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
90
+ isSigner: false,
91
+ isWritable: false
92
+ },
88
93
  {
89
94
  pubkey: payerAta.ata,
90
95
  isSigner: false,
@@ -83,6 +83,11 @@ function createDirectory(fsid, path, name, wallet) {
83
83
  isSigner: false,
84
84
  isWritable: true
85
85
  },
86
+ {
87
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
88
+ isSigner: false,
89
+ isWritable: false
90
+ },
86
91
  {
87
92
  pubkey: payerAta.ata,
88
93
  isSigner: false,
@@ -84,6 +84,11 @@ function createFile(fsid, path, name, wallet) {
84
84
  isSigner: false,
85
85
  isWritable: true
86
86
  },
87
+ {
88
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
89
+ isSigner: false,
90
+ isWritable: false
91
+ },
87
92
  {
88
93
  pubkey: payerAta.ata,
89
94
  isSigner: false,
package/dist/move.js CHANGED
@@ -87,6 +87,11 @@ function move(fsid, srcPath, destPath, name, wallet) {
87
87
  isSigner: false,
88
88
  isWritable: true
89
89
  },
90
+ {
91
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
92
+ isSigner: false,
93
+ isWritable: false
94
+ },
90
95
  {
91
96
  pubkey: payerAta.ata,
92
97
  isSigner: false,
package/dist/peek.js CHANGED
@@ -87,6 +87,11 @@ function peek(fsid, path, startPosition, endPosition, wallet) {
87
87
  isSigner: false,
88
88
  isWritable: true
89
89
  },
90
+ {
91
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
92
+ isSigner: false,
93
+ isWritable: false
94
+ },
90
95
  {
91
96
  pubkey: payerAta.ata,
92
97
  isSigner: false,
@@ -81,6 +81,11 @@ function removeDirectory(fsid, path, wallet) {
81
81
  isSigner: false,
82
82
  isWritable: true
83
83
  },
84
+ {
85
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
86
+ isSigner: false,
87
+ isWritable: false
88
+ },
84
89
  {
85
90
  pubkey: payerAta.ata,
86
91
  isSigner: false,
@@ -81,6 +81,11 @@ function removeFile(fsid, path, wallet) {
81
81
  isSigner: false,
82
82
  isWritable: true
83
83
  },
84
+ {
85
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
86
+ isSigner: false,
87
+ isWritable: false
88
+ },
84
89
  {
85
90
  pubkey: payerAta.ata,
86
91
  isSigner: false,
@@ -84,6 +84,11 @@ function renamePath(fsid, oldPath, name, wallet) {
84
84
  isSigner: false,
85
85
  isWritable: true
86
86
  },
87
+ {
88
+ pubkey: new web3_js_1.PublicKey("11111111111111111111111111111111"),
89
+ isSigner: false,
90
+ isWritable: false
91
+ },
87
92
  {
88
93
  pubkey: payerAta.ata,
89
94
  isSigner: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xandeum/web3.js",
3
- "version": "1.3.11",
3
+ "version": "1.3.13-trynet",
4
4
  "description": "Xandeum javascript api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/armageddon.ts CHANGED
@@ -38,6 +38,11 @@ export async function armageddon (
38
38
  isSigner: false,
39
39
  isWritable: true
40
40
  },
41
+ {
42
+ pubkey: new PublicKey("11111111111111111111111111111111"),
43
+ isSigner: false,
44
+ isWritable: false
45
+ },
41
46
  {
42
47
  pubkey: payerAta.ata,
43
48
  isSigner: false,
@@ -45,6 +45,11 @@ export async function assignCoowner (
45
45
  isSigner: false,
46
46
  isWritable: true
47
47
  },
48
+ {
49
+ pubkey: new PublicKey("11111111111111111111111111111111"),
50
+ isSigner: false,
51
+ isWritable: false
52
+ },
48
53
  {
49
54
  pubkey: payerAta.ata,
50
55
  isSigner: false,
package/src/bigbang.ts CHANGED
@@ -28,6 +28,11 @@ export async function bigbang(replicaCount: number, wallet: PublicKey): Promise<
28
28
  isSigner: false,
29
29
  isWritable: true,
30
30
  },
31
+ {
32
+ pubkey: new PublicKey("11111111111111111111111111111111"),
33
+ isSigner: false,
34
+ isWritable: false,
35
+ },
31
36
  {
32
37
  pubkey: payerAta.ata,
33
38
  isSigner: false,
package/src/copyPath.ts CHANGED
@@ -53,6 +53,11 @@ export async function copyPath (
53
53
  isSigner: false,
54
54
  isWritable: true
55
55
  },
56
+ {
57
+ pubkey: new PublicKey("11111111111111111111111111111111"),
58
+ isSigner: false,
59
+ isWritable: false
60
+ },
56
61
  {
57
62
  pubkey: payerAta.ata,
58
63
  isSigner: false,
@@ -50,6 +50,11 @@ export async function createDirectory (
50
50
  isSigner: false,
51
51
  isWritable: true
52
52
  },
53
+ {
54
+ pubkey: new PublicKey("11111111111111111111111111111111"),
55
+ isSigner: false,
56
+ isWritable: false
57
+ },
53
58
  {
54
59
  pubkey: payerAta.ata,
55
60
  isSigner: false,
package/src/createFile.ts CHANGED
@@ -50,6 +50,11 @@ export async function createFile (
50
50
  isSigner: false,
51
51
  isWritable: true
52
52
  },
53
+ {
54
+ pubkey: new PublicKey("11111111111111111111111111111111"),
55
+ isSigner: false,
56
+ isWritable: false
57
+ },
53
58
  {
54
59
  pubkey: payerAta.ata,
55
60
  isSigner: false,
package/src/move.ts CHANGED
@@ -57,6 +57,11 @@ export async function move (
57
57
  isSigner: false,
58
58
  isWritable: true
59
59
  },
60
+ {
61
+ pubkey: new PublicKey("11111111111111111111111111111111"),
62
+ isSigner: false,
63
+ isWritable: false
64
+ },
60
65
  {
61
66
  pubkey: payerAta.ata,
62
67
  isSigner: false,
package/src/peek.ts CHANGED
@@ -55,6 +55,11 @@ export async function peek (
55
55
  isSigner: false,
56
56
  isWritable: true
57
57
  },
58
+ {
59
+ pubkey: new PublicKey("11111111111111111111111111111111"),
60
+ isSigner: false,
61
+ isWritable: false
62
+ },
58
63
  {
59
64
  pubkey: payerAta.ata,
60
65
  isSigner: false,
@@ -45,6 +45,11 @@ export async function removeDirectory (
45
45
  isSigner: false,
46
46
  isWritable: true
47
47
  },
48
+ {
49
+ pubkey: new PublicKey("11111111111111111111111111111111"),
50
+ isSigner: false,
51
+ isWritable: false
52
+ },
48
53
  {
49
54
  pubkey: payerAta.ata,
50
55
  isSigner: false,
package/src/removeFile.ts CHANGED
@@ -46,6 +46,11 @@ export async function removeFile (
46
46
  isSigner: false,
47
47
  isWritable: true
48
48
  },
49
+ {
50
+ pubkey: new PublicKey("11111111111111111111111111111111"),
51
+ isSigner: false,
52
+ isWritable: false
53
+ },
49
54
  {
50
55
  pubkey: payerAta.ata,
51
56
  isSigner: false,
package/src/renamePath.ts CHANGED
@@ -52,6 +52,11 @@ export async function renamePath (
52
52
  isSigner: false,
53
53
  isWritable: true
54
54
  },
55
+ {
56
+ pubkey: new PublicKey("11111111111111111111111111111111"),
57
+ isSigner: false,
58
+ isWritable: false
59
+ },
55
60
  {
56
61
  pubkey: payerAta.ata,
57
62
  isSigner: false,