@@ -49,6 +49,44 @@ export const sTokensAbi = [
4949 name : 'ApprovalForAll' ,
5050 type : 'event' ,
5151 } ,
52+ {
53+ anonymous : false ,
54+ inputs : [
55+ {
56+ indexed : false ,
57+ internalType : 'uint256' ,
58+ name : 'tokenId' ,
59+ type : 'uint256' ,
60+ } ,
61+ {
62+ indexed : false ,
63+ internalType : 'address' ,
64+ name : 'freezingUser' ,
65+ type : 'address' ,
66+ } ,
67+ ] ,
68+ name : 'Freezed' ,
69+ type : 'event' ,
70+ } ,
71+ {
72+ anonymous : false ,
73+ inputs : [
74+ {
75+ indexed : false ,
76+ internalType : 'uint256' ,
77+ name : 'tokenId' ,
78+ type : 'uint256' ,
79+ } ,
80+ {
81+ indexed : false ,
82+ internalType : 'address' ,
83+ name : 'meltingUser' ,
84+ type : 'address' ,
85+ } ,
86+ ] ,
87+ name : 'Melted' ,
88+ type : 'event' ,
89+ } ,
5290 {
5391 anonymous : false ,
5492 inputs : [
@@ -86,6 +124,31 @@ export const sTokensAbi = [
86124 name : 'Minted' ,
87125 type : 'event' ,
88126 } ,
127+ {
128+ anonymous : false ,
129+ inputs : [
130+ {
131+ indexed : false ,
132+ internalType : 'uint256' ,
133+ name : 'tokenId' ,
134+ type : 'uint256' ,
135+ } ,
136+ {
137+ indexed : false ,
138+ internalType : 'address' ,
139+ name : 'author' ,
140+ type : 'address' ,
141+ } ,
142+ {
143+ indexed : false ,
144+ internalType : 'string' ,
145+ name : 'data' ,
146+ type : 'string' ,
147+ } ,
148+ ] ,
149+ name : 'SetTokenUri' ,
150+ type : 'event' ,
151+ } ,
89152 {
90153 anonymous : false ,
91154 inputs : [
@@ -198,6 +261,61 @@ export const sTokensAbi = [
198261 stateMutability : 'view' ,
199262 type : 'function' ,
200263 } ,
264+ {
265+ inputs : [ ] ,
266+ name : 'descriptorAddress' ,
267+ outputs : [
268+ {
269+ internalType : 'address' ,
270+ name : '' ,
271+ type : 'address' ,
272+ } ,
273+ ] ,
274+ stateMutability : 'view' ,
275+ type : 'function' ,
276+ } ,
277+ {
278+ inputs : [
279+ {
280+ internalType : 'uint256' ,
281+ name : '_tokenId' ,
282+ type : 'uint256' ,
283+ } ,
284+ ] ,
285+ name : 'descriptors' ,
286+ outputs : [
287+ {
288+ internalType : 'bool' ,
289+ name : '' ,
290+ type : 'bool' ,
291+ } ,
292+ {
293+ internalType : 'address' ,
294+ name : '' ,
295+ type : 'address' ,
296+ } ,
297+ {
298+ internalType : 'string' ,
299+ name : '' ,
300+ type : 'string' ,
301+ } ,
302+ ] ,
303+ stateMutability : 'view' ,
304+ type : 'function' ,
305+ } ,
306+ {
307+ inputs : [
308+ {
309+ internalType : 'uint256' ,
310+ name : '_tokenId' ,
311+ type : 'uint256' ,
312+ } ,
313+ ] ,
314+ name : 'freezeTokenURI' ,
315+ outputs : [ ] ,
316+ stateMutability : 'nonpayable' ,
317+ type : 'function' ,
318+ } ,
201319 {
202320 inputs : [
203321 {
@@ -254,6 +372,19 @@ export const sTokensAbi = [
254372 stateMutability : 'view' ,
255373 type : 'function' ,
256374 } ,
375+ {
376+ inputs : [
377+ {
378+ internalType : 'uint256' ,
379+ name : '_tokenId' ,
380+ type : 'uint256' ,
381+ } ,
382+ ] ,
383+ name : 'meltTokenURI' ,
384+ outputs : [ ] ,
385+ stateMutability : 'nonpayable' ,
386+ type : 'function' ,
387+ } ,
257388 {
258389 inputs : [
259390 {
@@ -495,6 +626,37 @@ export const sTokensAbi = [
495626 stateMutability : 'nonpayable' ,
496627 type : 'function' ,
497628 } ,
629+ {
630+ inputs : [
631+ {
632+ internalType : 'address' ,
633+ name : '_descriptor' ,
634+ type : 'address' ,
635+ } ,
636+ ] ,
637+ name : 'setDescriptor' ,
638+ outputs : [ ] ,
639+ stateMutability : 'nonpayable' ,
640+ type : 'function' ,
641+ } ,
642+ {
643+ inputs : [
644+ {
645+ internalType : 'uint256' ,
646+ name : '_tokenId' ,
647+ type : 'uint256' ,
648+ } ,
649+ {
650+ internalType : 'string' ,
651+ name : '_data' ,
652+ type : 'string' ,
653+ } ,
654+ ] ,
655+ name : 'setTokenURIImage' ,
656+ outputs : [ ] ,
657+ stateMutability : 'nonpayable' ,
658+ type : 'function' ,
659+ } ,
498660 {
499661 inputs : [
500662 {
0 commit comments