@soltracer/nft-staking 0.6.0 → 0.6.2
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/client.d.ts +21 -0
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +101 -0
- package/dist/client.js.map +1 -1
- package/dist/idl.d.ts +45 -15
- package/dist/idl.d.ts.map +1 -1
- package/dist/idl.json +26 -0
- package/package.json +3 -3
package/dist/idl.json
CHANGED
|
@@ -6151,6 +6151,21 @@
|
|
|
6151
6151
|
"writable": true,
|
|
6152
6152
|
"optional": true
|
|
6153
6153
|
},
|
|
6154
|
+
{
|
|
6155
|
+
"name": "authorization_rules_program",
|
|
6156
|
+
"docs": [
|
|
6157
|
+
"ruleset attached (`programmable_config.rule_set` is Some). Address is",
|
|
6158
|
+
"validated against the well-known mpl-token-auth-rules program."
|
|
6159
|
+
],
|
|
6160
|
+
"optional": true
|
|
6161
|
+
},
|
|
6162
|
+
{
|
|
6163
|
+
"name": "authorization_rules",
|
|
6164
|
+
"docs": [
|
|
6165
|
+
"has a ruleset attached. The Token Metadata program reads & validates it."
|
|
6166
|
+
],
|
|
6167
|
+
"optional": true
|
|
6168
|
+
},
|
|
6154
6169
|
{
|
|
6155
6170
|
"name": "staker",
|
|
6156
6171
|
"writable": true,
|
|
@@ -7428,6 +7443,17 @@
|
|
|
7428
7443
|
"writable": true,
|
|
7429
7444
|
"optional": true
|
|
7430
7445
|
},
|
|
7446
|
+
{
|
|
7447
|
+
"name": "authorization_rules_program",
|
|
7448
|
+
"docs": [
|
|
7449
|
+
"ruleset attached. Address pinned to the well-known mpl-token-auth-rules program."
|
|
7450
|
+
],
|
|
7451
|
+
"optional": true
|
|
7452
|
+
},
|
|
7453
|
+
{
|
|
7454
|
+
"name": "authorization_rules",
|
|
7455
|
+
"optional": true
|
|
7456
|
+
},
|
|
7431
7457
|
{
|
|
7432
7458
|
"name": "staker",
|
|
7433
7459
|
"writable": true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soltracer/nft-staking",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@noble/hashes": "^1.8.0",
|
|
15
|
-
"@soltracer/
|
|
16
|
-
"@soltracer/
|
|
15
|
+
"@soltracer/cpi-accounts": "0.2.0",
|
|
16
|
+
"@soltracer/core": "0.5.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"typescript": "^5.7.0"
|