@lukso/transaction-decoder 1.3.8 → 1.4.1
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/browser.cjs.map +1 -1
- package/dist/browser.js +2 -2
- package/dist/cdn/transaction-decoder.global.js.map +1 -1
- package/dist/{chunk-JP3VO7OF.js → chunk-QKSNFPPP.js} +1 -1
- package/dist/{chunk-JP3VO7OF.js.map → chunk-QKSNFPPP.js.map} +1 -1
- package/dist/{chunk-LZFM5SNN.js → chunk-QRRY6GDQ.js} +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +1 -1
- package/package.json +4 -1
- package/src/shared/addressResolver.ts +2 -2
- /package/dist/{chunk-LZFM5SNN.js.map → chunk-QRRY6GDQ.js.map} +0 -0
package/dist/server.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lukso/transaction-decoder",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Transaction decoder for LUKSO blockchain with reactive state management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
],
|
|
36
36
|
"unpkg": "dist/cdn/transaction-decoder.global.js",
|
|
37
37
|
"jsdelivr": "dist/cdn/transaction-decoder.global.js",
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
},
|
|
38
41
|
"dependencies": {
|
|
39
42
|
"@erc725/erc725.js": "^0.28.2",
|
|
40
43
|
"@lukso/lsp-smart-contracts": "0.16.7",
|
|
@@ -168,7 +168,7 @@ export interface AssetData {
|
|
|
168
168
|
standard?: string
|
|
169
169
|
lsp4TokenName?: string
|
|
170
170
|
lsp4TokenSymbol?: string
|
|
171
|
-
lsp4TokenType?:
|
|
171
|
+
lsp4TokenType?: number
|
|
172
172
|
method?: string
|
|
173
173
|
description?: string
|
|
174
174
|
links?: LinkData[]
|
|
@@ -190,7 +190,7 @@ export interface TokenData {
|
|
|
190
190
|
links?: LinkData[]
|
|
191
191
|
lsp4TokenName?: string
|
|
192
192
|
lsp4TokenSymbol?: string
|
|
193
|
-
lsp4TokenType?:
|
|
193
|
+
lsp4TokenType?: number
|
|
194
194
|
lsp8TokenIdFormat?: string
|
|
195
195
|
formattedTokenId?: string
|
|
196
196
|
baseAsset?: {
|
|
File without changes
|