| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319 |
- lockfileVersion: '9.0'
- settings:
- autoInstallPeers: true
- excludeLinksFromLockfile: false
- importers:
- .:
- dependencies:
- '@iconify/vue':
- specifier: ^5.0.0
- version: 5.0.1(vue@3.5.34(typescript@5.9.3))
- '@vueuse/core':
- specifier: ^14.2.1
- version: 14.3.0(vue@3.5.34(typescript@5.9.3))
- '@vueuse/motion':
- specifier: ^3.0.3
- version: 3.0.3(vue@3.5.34(typescript@5.9.3))
- '@walletconnect/ethereum-provider':
- specifier: ^2.21.10
- version: 2.23.9(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
- '@walletconnect/modal':
- specifier: ^2.7.0
- version: 2.7.0(@types/react@19.2.15)(react@18.3.1)
- '@walletconnect/universal-provider':
- specifier: ^2.23.9
- version: 2.23.9(typescript@5.9.3)(zod@4.4.3)
- axios:
- specifier: ^1.13.6
- version: 1.16.0
- buffer:
- specifier: ^6.0.3
- version: 6.0.3
- dayjs:
- specifier: ^1.11.20
- version: 1.11.20
- klinecharts:
- specifier: ^10.0.0-beta1
- version: 10.0.0-beta1
- lightweight-charts:
- specifier: ^5.1.0
- version: 5.2.0
- pinia:
- specifier: ^2.1.7
- version: 2.3.1(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3))
- qrcode:
- specifier: ^1.5.4
- version: 1.5.4
- tronweb:
- specifier: ^6.3.0
- version: 6.3.0
- vee-validate:
- specifier: ^4.15.1
- version: 4.15.1(vue@3.5.34(typescript@5.9.3))
- viem:
- specifier: ^2.31.0
- version: 2.51.2(typescript@5.9.3)(zod@4.4.3)
- vue:
- specifier: ^3.4.0
- version: 3.5.34(typescript@5.9.3)
- vue-i18n:
- specifier: ^11.4.2
- version: 11.4.4(vue@3.5.34(typescript@5.9.3))
- vue-router:
- specifier: ^4.3.0
- version: 4.6.4(vue@3.5.34(typescript@5.9.3))
- zod:
- specifier: ^4.3.6
- version: 4.4.3
- devDependencies:
- '@types/qrcode':
- specifier: ^1.5.6
- version: 1.5.6
- '@vitejs/plugin-vue':
- specifier: ^5.0.0
- version: 5.2.4(vite@5.4.21(@types/node@25.6.2))(vue@3.5.34(typescript@5.9.3))
- typescript:
- specifier: ^5.3.0
- version: 5.9.3
- vite:
- specifier: ^5.1.0
- version: 5.4.21(@types/node@25.6.2)
- vue-tsc:
- specifier: ^2.0.0
- version: 2.2.12(typescript@5.9.3)
- packages:
- '@adraffy/ens-normalize@1.10.1':
- resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
- '@adraffy/ens-normalize@1.11.1':
- resolution: {integrity: sha512-nhCBV3quEgesuf7c7KYfperqSS14T8bYuvJ8PcLJp6znkZpFc0AuW4qBtr8eKVyPPe/8RSr7sglCWPU5eaxwKQ==}
- '@babel/helper-string-parser@7.27.1':
- resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
- engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.28.5':
- resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
- engines: {node: '>=6.9.0'}
- '@babel/parser@7.29.3':
- resolution: {integrity: sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- '@babel/runtime@7.26.10':
- resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==}
- engines: {node: '>=6.9.0'}
- '@babel/types@7.29.0':
- resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
- engines: {node: '>=6.9.0'}
- '@base-org/account@2.4.0':
- resolution: {integrity: sha512-A4Umpi8B9/pqR78D1Yoze4xHyQaujioVRqqO3d6xuDFw9VRtjg6tK3bPlwE0aW+nVH/ntllCpPa2PbI8Rnjcug==}
- '@coinbase/cdp-sdk@1.50.0':
- resolution: {integrity: sha512-lKK6aC2z8q8C3IA39unNuWc8lgM0hU9mSqkdd7Bncf5xvT28f8G6upexFtJweNwxkeAJwiLSgBkwOhqMK2/OGQ==}
- '@esbuild/aix-ppc64@0.21.5':
- resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
- '@esbuild/android-arm64@0.21.5':
- resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- '@esbuild/android-arm@0.21.5':
- resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- '@esbuild/android-x64@0.21.5':
- resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- '@esbuild/darwin-arm64@0.21.5':
- resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- '@esbuild/darwin-x64@0.21.5':
- resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- '@esbuild/freebsd-arm64@0.21.5':
- resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- '@esbuild/freebsd-x64@0.21.5':
- resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- '@esbuild/linux-arm64@0.21.5':
- resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- '@esbuild/linux-arm@0.21.5':
- resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- '@esbuild/linux-ia32@0.21.5':
- resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- '@esbuild/linux-loong64@0.21.5':
- resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- '@esbuild/linux-mips64el@0.21.5':
- resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- '@esbuild/linux-ppc64@0.21.5':
- resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- '@esbuild/linux-riscv64@0.21.5':
- resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- '@esbuild/linux-s390x@0.21.5':
- resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- '@esbuild/linux-x64@0.21.5':
- resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- '@esbuild/netbsd-x64@0.21.5':
- resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- '@esbuild/openbsd-x64@0.21.5':
- resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- '@esbuild/sunos-x64@0.21.5':
- resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- '@esbuild/win32-arm64@0.21.5':
- resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- '@esbuild/win32-ia32@0.21.5':
- resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- '@esbuild/win32-x64@0.21.5':
- resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- '@iconify/types@2.0.0':
- resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- '@iconify/vue@5.0.1':
- resolution: {integrity: sha512-aumwwooJlFJ5H5qYWB6ZTAyM0C8hpfcSVLB9/a3qnH1GGvIJ+FEbpEs4s/HfErYe/M5qZeLjwmESR5fFm3lXEw==}
- peerDependencies:
- vue: '>=3.0.0'
- '@intlify/core-base@11.4.4':
- resolution: {integrity: sha512-w/vItlylrAmhebkIbVl5YY8XMCtj8Mb2g70ttxktMYuf5AuRahgEHL2iLgLIsZBIbTSgs4hkUo7ucCL0uTJvOg==}
- engines: {node: '>= 22'}
- '@intlify/devtools-types@11.4.4':
- resolution: {integrity: sha512-PcBLmGmDQsTSVV911P8upzpcLJO1CNVYi/IH6bGnLR2nA+0L963+kXN1ZrisTEnbtw2ewN6HMMSldqzjronA0Q==}
- engines: {node: '>= 22'}
- '@intlify/message-compiler@11.4.4':
- resolution: {integrity: sha512-vn0OAV9pYkJlPPmgnsSm5eAG3mL0+9C/oaded2JY9jmxBbhmUXT3TcAUY8WRgLY9Hte7lkUJKpXrVlYjMXBD2w==}
- engines: {node: '>= 22'}
- '@intlify/shared@11.4.4':
- resolution: {integrity: sha512-QRUCHqda1U6aR14FR0vvXD4+4gj6+fm0AhAozvSuRCw0fCvrmCugWpgiR4xH2NI6s8am6N9p5OhirplsX8ZS3g==}
- engines: {node: '>= 22'}
- '@jridgewell/gen-mapping@0.3.13':
- resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
- '@jridgewell/remapping@2.3.5':
- resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
- '@jridgewell/resolve-uri@3.1.2':
- resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
- engines: {node: '>=6.0.0'}
- '@jridgewell/sourcemap-codec@1.5.5':
- resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
- '@jridgewell/trace-mapping@0.3.31':
- resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
- '@lit-labs/ssr-dom-shim@1.6.0':
- resolution: {integrity: sha512-VHb0ALPMTlgKjM6yIxxoQNnpKyUKLD04VzeQdsiXkMqkvYlAHxq9glGLmgbb889/1GsohSOAjvQYoiBppXFqrQ==}
- '@lit/react@1.0.8':
- resolution: {integrity: sha512-p2+YcF+JE67SRX3mMlJ1TKCSTsgyOVdAwd/nxp3NuV1+Cb6MWALbN6nT7Ld4tpmYofcE5kcaSY1YBB9erY+6fw==}
- peerDependencies:
- '@types/react': 17 || 18 || 19
- '@lit/reactive-element@1.6.3':
- resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==}
- '@lit/reactive-element@2.1.2':
- resolution: {integrity: sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A==}
- '@motionone/animation@10.18.0':
- resolution: {integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==}
- '@motionone/dom@10.18.0':
- resolution: {integrity: sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==}
- '@motionone/easing@10.18.0':
- resolution: {integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==}
- '@motionone/generators@10.18.0':
- resolution: {integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==}
- '@motionone/svelte@10.16.4':
- resolution: {integrity: sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==}
- '@motionone/types@10.17.1':
- resolution: {integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==}
- '@motionone/utils@10.18.0':
- resolution: {integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==}
- '@motionone/vue@10.16.4':
- resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==}
- deprecated: Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion
- '@msgpack/msgpack@3.1.2':
- resolution: {integrity: sha512-JEW4DEtBzfe8HvUYecLU9e6+XJnKDlUAIve8FvPzF3Kzs6Xo/KuZkZJsDH0wJXl/qEZbeeE7edxDNY3kMs39hQ==}
- engines: {node: '>= 18'}
- '@msgpack/msgpack@3.1.3':
- resolution: {integrity: sha512-47XIizs9XZXvuJgoaJUIE2lFoID8ugvc0jzSHP+Ptfk8nTbnR8g788wv48N03Kx0UkAv559HWRQ3yzOgzlRNUA==}
- engines: {node: '>= 18'}
- '@noble/ciphers@1.3.0':
- resolution: {integrity: sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==}
- engines: {node: ^14.21.3 || >=16}
- '@noble/curves@1.2.0':
- resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==}
- '@noble/curves@1.4.2':
- resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==}
- '@noble/curves@1.8.0':
- resolution: {integrity: sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==}
- engines: {node: ^14.21.3 || >=16}
- '@noble/curves@1.9.1':
- resolution: {integrity: sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==}
- engines: {node: ^14.21.3 || >=16}
- '@noble/curves@1.9.7':
- resolution: {integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==}
- engines: {node: ^14.21.3 || >=16}
- '@noble/hashes@1.3.2':
- resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==}
- engines: {node: '>= 16'}
- '@noble/hashes@1.4.0':
- resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==}
- engines: {node: '>= 16'}
- '@noble/hashes@1.7.0':
- resolution: {integrity: sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==}
- engines: {node: ^14.21.3 || >=16}
- '@noble/hashes@1.8.0':
- resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==}
- engines: {node: ^14.21.3 || >=16}
- '@nuxt/kit@3.21.4':
- resolution: {integrity: sha512-XDWhQJsA5hpdFpVSmImQIVXcsANJI07TjT1LZC/AUKJxl/dcM52Rq4uU+b3uqyVl4LZR1fODSDEzLxcdXq4Rmg==}
- engines: {node: '>=18.12.0'}
- '@phosphor-icons/webcomponents@2.1.5':
- resolution: {integrity: sha512-JcvQkZxvcX2jK+QCclm8+e8HXqtdFW9xV4/kk2aL9Y3dJA2oQVt+pzbv1orkumz3rfx4K9mn9fDoMr1He1yr7Q==}
- '@reown/appkit-common@1.8.17-wc-circular-dependencies-fix.0':
- resolution: {integrity: sha512-wf53EzDmCJ5ICtDY5B1MddVeCwoqDGPVmaxD4wQJLR9uanhBXfKq1sJou+Uj8lZCyI72Z+r9YlsePOlYH2Ge3A==}
- '@reown/appkit-controllers@1.8.17-wc-circular-dependencies-fix.0':
- resolution: {integrity: sha512-wY5yvMB0o2AwitwDHHO0u2tmqR+n3Crv0AHjIcY037PC3mhF9TPEUKqE9vlrFImQWQRxl0WRfuKfzmUAPxZExw==}
- '@reown/appkit-pay@1.8.17-wc-circular-dependencies-fix.0':
- resolution: {integrity: sha512-sVE8UT7CDA8zsg3opvbGjSZHSnohOVPF77vP6Ln4G0+vfoiXNhZaZa89Pg0MDjh+KGy0OulWVUdXuZ9jJQFvPg==}
- '@reown/appkit-polyfills@1.8.17-wc-circular-dependencies-fix.0':
- resolution: {integrity: sha512-OyYavslCegfUlKu8Ah6BZhbqQrK7bImvUm+EKjjvnfNN9J0F9uWMFwbTpZxenBcfAI6cyaD9aTTUunMn5no1Og==}
- '@reown/appkit-scaffold-ui@1.8.17-wc-circular-dependencies-fix.0':
- resolution: {integrity: sha512-f+SYFGDy+uY1EAvWcH6vZgga1bOuzBvYSKYiRX2QQy8INtZqwwiLLvS4cgm5Yp1WvYRal5RdfZkKl5qha498gw==}
- '@reown/appkit-ui@1.8.17-wc-circular-dependencies-fix.0':
- resolution: {integrity: sha512-E1u2ZVZV0iFDSgrgtdQTZAXNbI+Lakj8E8V+jJQ47JaEVKv9SROvPu2fVqfIrqHQF68NmAk1dnbYi4luOiM0Fg==}
- '@reown/appkit-utils@1.8.17-wc-circular-dependencies-fix.0':
- resolution: {integrity: sha512-9El8sYbXDaMYxg4R6LujA965yYQGjNcPMXqympLtzNl1es5qkniW7eAdEpLmZrsaqNrfTaHT1G65wYy7sA595w==}
- peerDependencies:
- valtio: 2.1.7
- '@reown/appkit-wallet@1.8.17-wc-circular-dependencies-fix.0':
- resolution: {integrity: sha512-s0RTVNtgPtXGs+eZELVvTu1FRLuN15MyhVS//3/4XafVQkBBJarciXk9pFP71xeSHRzjYR1lXHnVw28687cUvQ==}
- '@reown/appkit@1.8.17-wc-circular-dependencies-fix.0':
- resolution: {integrity: sha512-7JjEp+JNxRUDOa7CxOCbUbG8uYVo38ojc9FN/fuzJuJADUzKDaH287MLV9qI1ZyQyXA8qXvhXRqjtw+3xo2/7A==}
- '@rollup/rollup-android-arm-eabi@4.60.3':
- resolution: {integrity: sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==}
- cpu: [arm]
- os: [android]
- '@rollup/rollup-android-arm64@4.60.3':
- resolution: {integrity: sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==}
- cpu: [arm64]
- os: [android]
- '@rollup/rollup-darwin-arm64@4.60.3':
- resolution: {integrity: sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==}
- cpu: [arm64]
- os: [darwin]
- '@rollup/rollup-darwin-x64@4.60.3':
- resolution: {integrity: sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==}
- cpu: [x64]
- os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.60.3':
- resolution: {integrity: sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==}
- cpu: [arm64]
- os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.60.3':
- resolution: {integrity: sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==}
- cpu: [x64]
- os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.60.3':
- resolution: {integrity: sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==}
- cpu: [arm]
- os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.60.3':
- resolution: {integrity: sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==}
- cpu: [arm]
- os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.60.3':
- resolution: {integrity: sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==}
- cpu: [arm64]
- os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.60.3':
- resolution: {integrity: sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==}
- cpu: [arm64]
- os: [linux]
- '@rollup/rollup-linux-loong64-gnu@4.60.3':
- resolution: {integrity: sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==}
- cpu: [loong64]
- os: [linux]
- '@rollup/rollup-linux-loong64-musl@4.60.3':
- resolution: {integrity: sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==}
- cpu: [loong64]
- os: [linux]
- '@rollup/rollup-linux-ppc64-gnu@4.60.3':
- resolution: {integrity: sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==}
- cpu: [ppc64]
- os: [linux]
- '@rollup/rollup-linux-ppc64-musl@4.60.3':
- resolution: {integrity: sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==}
- cpu: [ppc64]
- os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.60.3':
- resolution: {integrity: sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==}
- cpu: [riscv64]
- os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.60.3':
- resolution: {integrity: sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==}
- cpu: [riscv64]
- os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.60.3':
- resolution: {integrity: sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==}
- cpu: [s390x]
- os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.60.3':
- resolution: {integrity: sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==}
- cpu: [x64]
- os: [linux]
- '@rollup/rollup-linux-x64-musl@4.60.3':
- resolution: {integrity: sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==}
- cpu: [x64]
- os: [linux]
- '@rollup/rollup-openbsd-x64@4.60.3':
- resolution: {integrity: sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==}
- cpu: [x64]
- os: [openbsd]
- '@rollup/rollup-openharmony-arm64@4.60.3':
- resolution: {integrity: sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==}
- cpu: [arm64]
- os: [openharmony]
- '@rollup/rollup-win32-arm64-msvc@4.60.3':
- resolution: {integrity: sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==}
- cpu: [arm64]
- os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.60.3':
- resolution: {integrity: sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==}
- cpu: [ia32]
- os: [win32]
- '@rollup/rollup-win32-x64-gnu@4.60.3':
- resolution: {integrity: sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==}
- cpu: [x64]
- os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.60.3':
- resolution: {integrity: sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==}
- cpu: [x64]
- os: [win32]
- '@safe-global/safe-apps-provider@0.18.6':
- resolution: {integrity: sha512-4LhMmjPWlIO8TTDC2AwLk44XKXaK6hfBTWyljDm0HQ6TWlOEijVWNrt2s3OCVMSxlXAcEzYfqyu1daHZooTC2Q==}
- '@safe-global/safe-apps-sdk@9.1.0':
- resolution: {integrity: sha512-N5p/ulfnnA2Pi2M3YeWjULeWbjo7ei22JwU/IXnhoHzKq3pYCN6ynL9mJBOlvDVv892EgLPCWCOwQk/uBT2v0Q==}
- '@safe-global/safe-gateway-typescript-sdk@3.23.1':
- resolution: {integrity: sha512-6ORQfwtEJYpalCeVO21L4XXGSdbEMfyp2hEv6cP82afKXSwvse6d3sdelgaPWUxHIsFRkWvHDdzh8IyyKHZKxw==}
- engines: {node: '>=16'}
- deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
- '@scure/base@1.1.9':
- resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==}
- '@scure/base@1.2.6':
- resolution: {integrity: sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==}
- '@scure/bip32@1.4.0':
- resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==}
- '@scure/bip32@1.7.0':
- resolution: {integrity: sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==}
- '@scure/bip39@1.3.0':
- resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==}
- '@scure/bip39@1.6.0':
- resolution: {integrity: sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==}
- '@solana-program/system@0.10.0':
- resolution: {integrity: sha512-Go+LOEZmqmNlfr+Gjy5ZWAdY5HbYzk2RBewD9QinEU/bBSzpFfzqDRT55JjFRBGJUvMgf3C2vfXEGT4i8DSI4g==}
- peerDependencies:
- '@solana/kit': ^5.0
- '@solana-program/token@0.9.0':
- resolution: {integrity: sha512-vnZxndd4ED4Fc56sw93cWZ2djEeeOFxtaPS8SPf5+a+JZjKA/EnKqzbE1y04FuMhIVrLERQ8uR8H2h72eZzlsA==}
- peerDependencies:
- '@solana/kit': ^5.0
- '@solana/accounts@5.5.1':
- resolution: {integrity: sha512-TfOY9xixg5rizABuLVuZ9XI2x2tmWUC/OoN556xwfDlhBHBjKfszicYYOyD6nbFmwTGYarCmyGIdteXxTXIdhQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/addresses@5.5.1':
- resolution: {integrity: sha512-5xoah3Q9G30HQghu/9BiHLb5pzlPKRC3zydQDmE3O9H//WfayxTFppsUDCL6FjYUHqj/wzK6CWHySglc2RkpdA==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/assertions@5.5.1':
- resolution: {integrity: sha512-YTCSWAlGwSlVPnWtWLm3ukz81wH4j2YaCveK+TjpvUU88hTy6fmUqxi0+hvAMAe4zKXpJyj3Az7BrLJRxbIm4Q==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/codecs-core@5.5.1':
- resolution: {integrity: sha512-TgBt//bbKBct0t6/MpA8ElaOA3sa8eYVvR7LGslCZ84WiAwwjCY0lW/lOYsFHJQzwREMdUyuEyy5YWBKtdh8Rw==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/codecs-data-structures@5.5.1':
- resolution: {integrity: sha512-97bJWGyUY9WvBz3mX1UV3YPWGDTez6btCfD0ip3UVEXJbItVuUiOkzcO5iFDUtQT5riKT6xC+Mzl+0nO76gd0w==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/codecs-numbers@5.5.1':
- resolution: {integrity: sha512-rllMIZAHqmtvC0HO/dc/21wDuWaD0B8Ryv8o+YtsICQBuiL/0U4AGwH7Pi5GNFySYk0/crSuwfIqQFtmxNSPFw==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/codecs-strings@5.5.1':
- resolution: {integrity: sha512-7klX4AhfHYA+uKKC/nxRGP2MntbYQCR3N6+v7bk1W/rSxYuhNmt+FN8aoThSZtWIKwN6BEyR1167ka8Co1+E7A==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- fastestsmallesttextencoderdecoder: ^1.0.22
- typescript: ^5.0.0
- peerDependenciesMeta:
- fastestsmallesttextencoderdecoder:
- optional: true
- typescript:
- optional: true
- '@solana/codecs@5.5.1':
- resolution: {integrity: sha512-Vea29nJub/bXjfzEV7ZZQ/PWr1pYLZo3z0qW0LQL37uKKVzVFRQlwetd7INk3YtTD3xm9WUYr7bCvYUk3uKy2g==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/errors@5.5.1':
- resolution: {integrity: sha512-vFO3p+S7HoyyrcAectnXbdsMfwUzY2zYFUc2DEe5BwpiE9J1IAxPBGjOWO6hL1bbYdBrlmjNx8DXCslqS+Kcmg==}
- engines: {node: '>=20.18.0'}
- hasBin: true
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/fast-stable-stringify@5.5.1':
- resolution: {integrity: sha512-Ni7s2FN33zTzhTFgRjEbOVFO+UAmK8qi3Iu0/GRFYK4jN696OjKHnboSQH/EacQ+yGqS54bfxf409wU5dsLLCw==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/functional@5.5.1':
- resolution: {integrity: sha512-tTHoJcEQq3gQx5qsdsDJ0LEJeFzwNpXD80xApW9o/PPoCNimI3SALkZl+zNW8VnxRrV3l3yYvfHWBKe/X3WG3w==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/instruction-plans@5.5.1':
- resolution: {integrity: sha512-7z3CB7YMcFKuVvgcnNY8bY6IsZ8LG61Iytbz7HpNVGX2u1RthOs1tRW8luTzSG1MPL0Ox7afyAVMYeFqSPHnaQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/instructions@5.5.1':
- resolution: {integrity: sha512-h0G1CG6S+gUUSt0eo6rOtsaXRBwCq1+Js2a+Ps9Bzk9q7YHNFA75/X0NWugWLgC92waRp66hrjMTiYYnLBoWOQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/keys@5.5.1':
- resolution: {integrity: sha512-KRD61cL7CRL+b4r/eB9dEoVxIf/2EJ1Pm1DmRYhtSUAJD2dJ5Xw8QFuehobOGm9URqQ7gaQl+Fkc1qvDlsWqKg==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/kit@5.5.1':
- resolution: {integrity: sha512-irKUGiV2yRoyf+4eGQ/ZeCRxa43yjFEL1DUI5B0DkcfZw3cr0VJtVJnrG8OtVF01vT0OUfYOcUn6zJW5TROHvQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/nominal-types@5.5.1':
- resolution: {integrity: sha512-I1ImR+kfrLFxN5z22UDiTWLdRZeKtU0J/pkWkO8qm/8WxveiwdIv4hooi8pb6JnlR4mSrWhq0pCIOxDYrL9GIQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/offchain-messages@5.5.1':
- resolution: {integrity: sha512-g+xHH95prTU+KujtbOzj8wn+C7ZNoiLhf3hj6nYq3MTyxOXtBEysguc97jJveUZG0K97aIKG6xVUlMutg5yxhw==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/options@5.5.1':
- resolution: {integrity: sha512-eo971c9iLNLmk+yOFyo7yKIJzJ/zou6uKpy6mBuyb/thKtS/haiKIc3VLhyTXty3OH2PW8yOlORJnv4DexJB8A==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/plugin-core@5.5.1':
- resolution: {integrity: sha512-VUZl30lDQFJeiSyNfzU1EjYt2QZvoBFKEwjn1lilUJw7KgqD5z7mbV7diJhT+dLFs36i0OsjXvq5kSygn8YJ3A==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/programs@5.5.1':
- resolution: {integrity: sha512-7U9kn0Jsx1NuBLn5HRTFYh78MV4XN145Yc3WP/q5BlqAVNlMoU9coG5IUTJIG847TUqC1lRto3Dnpwm6T4YRpA==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/promises@5.5.1':
- resolution: {integrity: sha512-T9lfuUYkGykJmppEcssNiCf6yiYQxJkhiLPP+pyAc2z84/7r3UVIb2tNJk4A9sucS66pzJnVHZKcZVGUUp6wzA==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-api@5.5.1':
- resolution: {integrity: sha512-XWOQQPhKl06Vj0xi3RYHAc6oEQd8B82okYJ04K7N0Vvy3J4PN2cxeK7klwkjgavdcN9EVkYCChm2ADAtnztKnA==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-parsed-types@5.5.1':
- resolution: {integrity: sha512-HEi3G2nZqGEsa3vX6U0FrXLaqnUCg4SKIUrOe8CezD+cSFbRTOn3rCLrUmJrhVyXlHoQVaRO9mmeovk31jWxJg==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-spec-types@5.5.1':
- resolution: {integrity: sha512-6OFKtRpIEJQs8Jb2C4OO8KyP2h2Hy1MFhatMAoXA+0Ik8S3H+CicIuMZvGZ91mIu/tXicuOOsNNLu3HAkrakrw==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-spec@5.5.1':
- resolution: {integrity: sha512-m3LX2bChm3E3by4mQrH4YwCAFY57QBzuUSWqlUw7ChuZ+oLLOq7b2czi4i6L4Vna67j3eCmB3e+4tqy1j5wy7Q==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-subscriptions-api@5.5.1':
- resolution: {integrity: sha512-5Oi7k+GdeS8xR2ly1iuSFkAv6CZqwG0Z6b1QZKbEgxadE1XGSDrhM2cn59l+bqCozUWCqh4c/A2znU/qQjROlw==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-subscriptions-channel-websocket@5.5.1':
- resolution: {integrity: sha512-7tGfBBrYY8TrngOyxSHoCU5shy86iA9SRMRrPSyBhEaZRAk6dnbdpmUTez7gtdVo0BCvh9nzQtUycKWSS7PnFQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-subscriptions-spec@5.5.1':
- resolution: {integrity: sha512-iq+rGq5fMKP3/mKHPNB6MC8IbVW41KGZg83Us/+LE3AWOTWV1WT20KT2iH1F1ik9roi42COv/TpoZZvhKj45XQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-subscriptions@5.5.1':
- resolution: {integrity: sha512-CTMy5bt/6mDh4tc6vUJms9EcuZj3xvK0/xq8IQ90rhkpYvate91RjBP+egvjgSayUg9yucU9vNuUpEjz4spM7w==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-transformers@5.5.1':
- resolution: {integrity: sha512-OsWqLCQdcrRJKvHiMmwFhp9noNZ4FARuMkHT5us3ustDLXaxOjF0gfqZLnMkulSLcKt7TGXqMhBV+HCo7z5M8Q==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-transport-http@5.5.1':
- resolution: {integrity: sha512-yv8GoVSHqEV0kUJEIhkdOVkR2SvJ6yoWC51cJn2rSV7plr6huLGe0JgujCmB7uZhhaLbcbP3zxXxu9sOjsi7Fg==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc-types@5.5.1':
- resolution: {integrity: sha512-bibTFQ7PbHJJjGJPmfYC2I+/5CRFS4O2p9WwbFraX1Keeel+nRrt/NBXIy8veP5AEn2sVJIyJPpWBRpCx1oATA==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/rpc@5.5.1':
- resolution: {integrity: sha512-ku8zTUMrkCWci66PRIBC+1mXepEnZH/q1f3ck0kJZ95a06bOTl5KU7HeXWtskkyefzARJ5zvCs54AD5nxjQJ+A==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/signers@5.5.1':
- resolution: {integrity: sha512-FY0IVaBT2kCAze55vEieR6hag4coqcuJ31Aw3hqRH7mv6sV8oqwuJmUrx+uFwOp1gwd5OEAzlv6N4hOOple4sQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/subscribable@5.5.1':
- resolution: {integrity: sha512-9K0PsynFq0CsmK1CDi5Y2vUIJpCqkgSS5yfDN0eKPgHqEptLEaia09Kaxc90cSZDZU5mKY/zv1NBmB6Aro9zQQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/sysvars@5.5.1':
- resolution: {integrity: sha512-k3Quq87Mm+geGUu1GWv6knPk0ALsfY6EKSJGw9xUJDHzY/RkYSBnh0RiOrUhtFm2TDNjOailg8/m0VHmi3reFA==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/transaction-confirmation@5.5.1':
- resolution: {integrity: sha512-j4mKlYPHEyu+OD7MBt3jRoX4ScFgkhZC6H65on4Fux6LMScgivPJlwnKoZMnsgxFgWds0pl+BYzSiALDsXlYtw==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/transaction-messages@5.5.1':
- resolution: {integrity: sha512-aXyhMCEaAp3M/4fP0akwBBQkFPr4pfwoC5CLDq999r/FUwDax2RE/h4Ic7h2Xk+JdcUwsb+rLq85Y52hq84XvQ==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@solana/transactions@5.5.1':
- resolution: {integrity: sha512-8hHtDxtqalZ157pnx6p8k10D7J/KY/biLzfgh9R09VNLLY3Fqi7kJvJCr7M2ik3oRll56pxhraAGCC9yIT6eOA==}
- engines: {node: '>=20.18.0'}
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- '@types/estree@1.0.8':
- resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
- '@types/estree@1.0.9':
- resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
- '@types/node@22.7.5':
- resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==}
- '@types/node@25.6.2':
- resolution: {integrity: sha512-sokuT28dxf9JT5Kady1fsXOvI4HVpjZa95NKT5y9PNTIrs2AsobR4GFAA90ZG8M+nxVRLysCXsVj6eGC7Vbrlw==}
- '@types/qrcode@1.5.6':
- resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==}
- '@types/react@19.2.15':
- resolution: {integrity: sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==}
- '@types/trusted-types@2.0.7':
- resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
- '@types/web-bluetooth@0.0.21':
- resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
- '@vitejs/plugin-vue@5.2.4':
- resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- peerDependencies:
- vite: ^5.0.0 || ^6.0.0
- vue: ^3.2.25
- '@volar/language-core@2.4.15':
- resolution: {integrity: sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==}
- '@volar/source-map@2.4.15':
- resolution: {integrity: sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==}
- '@volar/typescript@2.4.15':
- resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==}
- '@vue/compiler-core@3.5.34':
- resolution: {integrity: sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==}
- '@vue/compiler-dom@3.5.34':
- resolution: {integrity: sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==}
- '@vue/compiler-sfc@3.5.34':
- resolution: {integrity: sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==}
- '@vue/compiler-ssr@3.5.34':
- resolution: {integrity: sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==}
- '@vue/compiler-vue2@2.7.16':
- resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
- '@vue/devtools-api@6.6.4':
- resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/devtools-api@7.7.9':
- resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
- '@vue/devtools-kit@7.7.9':
- resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
- '@vue/devtools-shared@7.7.9':
- resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
- '@vue/language-core@2.2.12':
- resolution: {integrity: sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- '@vue/reactivity@3.5.34':
- resolution: {integrity: sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==}
- '@vue/runtime-core@3.5.34':
- resolution: {integrity: sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==}
- '@vue/runtime-dom@3.5.34':
- resolution: {integrity: sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==}
- '@vue/server-renderer@3.5.34':
- resolution: {integrity: sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==}
- peerDependencies:
- vue: 3.5.34
- '@vue/shared@3.5.34':
- resolution: {integrity: sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==}
- '@vueuse/core@13.9.0':
- resolution: {integrity: sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==}
- peerDependencies:
- vue: ^3.5.0
- '@vueuse/core@14.3.0':
- resolution: {integrity: sha512-aHfz47g0ZhMtTVHmIzMVpJy8ePhhOy68GY5bv110+5DVtZ+W7BsOx+m61UNQqfrWyPztIHIanWa3E2tib3NFIw==}
- peerDependencies:
- vue: ^3.5.0
- '@vueuse/metadata@13.9.0':
- resolution: {integrity: sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==}
- '@vueuse/metadata@14.3.0':
- resolution: {integrity: sha512-BwxmbAzwAVF50+MW57GXOUEV61nFBGnlBvrTqj49PqWJu3uw7hdu72ztXeZ33RdZtDY6kO+bfCAE1PCn88Tktw==}
- '@vueuse/motion@3.0.3':
- resolution: {integrity: sha512-4B+ITsxCI9cojikvrpaJcLXyq0spj3sdlzXjzesWdMRd99hhtFI6OJ/1JsqwtF73YooLe0hUn/xDR6qCtmn5GQ==}
- peerDependencies:
- vue: '>=3.0.0'
- '@vueuse/shared@13.9.0':
- resolution: {integrity: sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==}
- peerDependencies:
- vue: ^3.5.0
- '@vueuse/shared@14.3.0':
- resolution: {integrity: sha512-bZpge9eSXwa4ToSiqJ7j6KRwhAsneMFoSz3LMWKQDkqimm3D/tbFlrklrs/IOqC8tEcYmXQZJ6N0UrjhBirVCg==}
- peerDependencies:
- vue: ^3.5.0
- '@wallet-standard/base@1.1.0':
- resolution: {integrity: sha512-DJDQhjKmSNVLKWItoKThJS+CsJQjR9AOBOirBVT1F9YpRyC9oYHE+ZnSf8y8bxUphtKqdQMPVQ2mHohYdRvDVQ==}
- engines: {node: '>=16'}
- '@wallet-standard/wallet@1.1.0':
- resolution: {integrity: sha512-Gt8TnSlDZpAl+RWOOAB/kuvC7RpcdWAlFbHNoi4gsXsfaWa1QCT6LBcfIYTPdOZC9OVZUDwqGuGAcqZejDmHjg==}
- engines: {node: '>=16'}
- '@walletconnect/core@2.23.2':
- resolution: {integrity: sha512-KkaTELRu8t/mt3J9doCQ1fBGCbYsCNfpo2JpKdCwKQR7PVjVKeVpYQK/blVkA5m6uLPpBtVRbOMKjnHW1m7JLw==}
- engines: {node: '>=18.20.8'}
- '@walletconnect/core@2.23.9':
- resolution: {integrity: sha512-ws4WG8LeagUo2ERRo02HryXRcpwIRmCQ3pHLW5gWbVReLXXIpgk6ZAfID3fEGHevIwwnHSGww+nNhNpdXyiq0g==}
- engines: {node: '>=18.20.8'}
- '@walletconnect/environment@1.0.1':
- resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==}
- '@walletconnect/ethereum-provider@2.23.9':
- resolution: {integrity: sha512-Cb72KWl9S6mMs+c1MVGlSx07Dap1LFznYyWrg/XT5B8VtBKaH9Sw2lAvAL0ajGet6J5sq8sUx1pkg68tZwkqmA==}
- '@walletconnect/events@1.0.1':
- resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==}
- '@walletconnect/heartbeat@1.2.2':
- resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==}
- '@walletconnect/jsonrpc-http-connection@1.0.8':
- resolution: {integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==}
- '@walletconnect/jsonrpc-provider@1.0.14':
- resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==}
- '@walletconnect/jsonrpc-types@1.0.4':
- resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==}
- '@walletconnect/jsonrpc-utils@1.0.8':
- resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==}
- '@walletconnect/jsonrpc-ws-connection@1.0.16':
- resolution: {integrity: sha512-G81JmsMqh5nJheE1mPst1W0WfVv0SG3N7JggwLLGnI7iuDZJq8cRJvQwLGKHn5H1WTW7DEPCo00zz5w62AbL3Q==}
- '@walletconnect/keyvaluestorage@1.1.1':
- resolution: {integrity: sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==}
- peerDependencies:
- '@react-native-async-storage/async-storage': 1.x
- peerDependenciesMeta:
- '@react-native-async-storage/async-storage':
- optional: true
- '@walletconnect/logger@3.0.2':
- resolution: {integrity: sha512-7wR3wAwJTOmX4gbcUZcFMov8fjftY05+5cO/d4cpDD8wDzJ+cIlKdYOXaXfxHLSYeDazMXIsxMYjHYVDfkx+nA==}
- '@walletconnect/modal-core@2.7.0':
- resolution: {integrity: sha512-oyMIfdlNdpyKF2kTJowTixZSo0PGlCJRdssUN/EZdA6H6v03hZnf09JnwpljZNfir2M65Dvjm/15nGrDQnlxSA==}
- '@walletconnect/modal-ui@2.7.0':
- resolution: {integrity: sha512-gERYvU7D7K1ANCN/8vUgsE0d2hnRemfAFZ2novm9aZBg7TEd/4EgB+AqbJ+1dc7GhOL6dazckVq78TgccHb7mQ==}
- '@walletconnect/modal@2.7.0':
- resolution: {integrity: sha512-RQVt58oJ+rwqnPcIvRFeMGKuXb9qkgSmwz4noF8JZGUym3gUAzVs+uW2NQ1Owm9XOJAV+sANrtJ+VoVq1ftElw==}
- deprecated: Please follow the migration guide on https://docs.reown.com/appkit/upgrade/wcm
- '@walletconnect/relay-api@1.0.11':
- resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==}
- '@walletconnect/relay-auth@1.1.0':
- resolution: {integrity: sha512-qFw+a9uRz26jRCDgL7Q5TA9qYIgcNY8jpJzI1zAWNZ8i7mQjaijRnWFKsCHAU9CyGjvt6RKrRXyFtFOpWTVmCQ==}
- '@walletconnect/safe-json@1.0.2':
- resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==}
- '@walletconnect/sign-client@2.23.2':
- resolution: {integrity: sha512-LL5KgmJHvY5NqQn+ZHQJLia1p6fpUWXHtiG97S5rNfyuPx6gT/Jkkwqc2LwdmAjFkr61t8zTagHC9ETq203mNA==}
- '@walletconnect/sign-client@2.23.9':
- resolution: {integrity: sha512-Xj+hw4E6mGRyhCdVOT/RMgnG+up/Y3v0ho5PlkVozvXWeVSqHNh9DmjLuU97a7OACoGd/oHBF6g3NVqD7MgCMQ==}
- '@walletconnect/time@1.0.2':
- resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==}
- '@walletconnect/types@2.23.2':
- resolution: {integrity: sha512-5dxBCdUM+4Dqe1/A7uqkm2tWPXce4UUGSr+ImfI0YjwEExQS8+TzdOlhMt3n32ncnBCllU5paG+fsndT06R0iw==}
- '@walletconnect/types@2.23.9':
- resolution: {integrity: sha512-IUl1PpD/Dig8IE2OZ9XtjbPohEyOZJ73xs92EDUzoIyzRtfm36g2D340pY3iu3AAdLv1yFiaZafB8Hf8RFze8A==}
- '@walletconnect/universal-provider@2.23.2':
- resolution: {integrity: sha512-vs9iorPUAiVesFJ95O6XvLjmRgF+B2TspxJNL90ZULbrkRw4JFsmaRdb965PZKc+s182k1MkS/MQ0o964xRcEw==}
- '@walletconnect/universal-provider@2.23.9':
- resolution: {integrity: sha512-dNk6X1USUcIX1nx3H61V3pO15E/2ejyeBsKLBOo8YXrnYCrKGG/KB1LIqJXHpQlXT+9bJE9cOnn61ETdCXgkPw==}
- '@walletconnect/utils@2.23.2':
- resolution: {integrity: sha512-ReSjU3kX+3i3tYJQZbVfetY5SSUL+iM6uiIVVD1PJalePa/5A40VgLVRTF7sDCJTIFfpf3Mt4bFjeaYuoxWtIw==}
- '@walletconnect/utils@2.23.9':
- resolution: {integrity: sha512-C5TltCs8UPypNiteYnKSv8+ZDK2EjVDyXCxN6kA9bkA+j6KGsNIV7l9MUA8WBAvE5Gi5EcBdhD3R9Hpo/1HHqQ==}
- '@walletconnect/window-getters@1.0.1':
- resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==}
- '@walletconnect/window-metadata@1.0.1':
- resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==}
- abitype@1.0.6:
- resolution: {integrity: sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A==}
- peerDependencies:
- typescript: '>=5.0.4'
- zod: ^3 >=3.22.0
- peerDependenciesMeta:
- typescript:
- optional: true
- zod:
- optional: true
- abitype@1.2.3:
- resolution: {integrity: sha512-Ofer5QUnuUdTFsBRwARMoWKOH1ND5ehwYhJ3OJ/BQO+StkwQjHw0XyVh4vDttzHB7QOFhPHa/o413PJ82gU/Tg==}
- peerDependencies:
- typescript: '>=5.0.4'
- zod: ^3.22.0 || ^4.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- zod:
- optional: true
- abitype@1.2.4:
- resolution: {integrity: sha512-dpKH+N27vRjarMVTFFkeY445VTKftzGWpL0FiT7xmVmzQRKazZexzC5uHG0f6XKsVLAuUlndnbGau6lRejClxg==}
- peerDependencies:
- typescript: '>=5.0.4'
- zod: ^3.22.0 || ^4.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- zod:
- optional: true
- acorn@8.16.0:
- resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
- aes-js@4.0.0-beta.5:
- resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==}
- alien-signals@1.0.13:
- resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
- ansi-regex@5.0.1:
- resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
- engines: {node: '>=8'}
- ansi-styles@4.3.0:
- resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
- engines: {node: '>=8'}
- anymatch@3.1.3:
- resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
- engines: {node: '>= 8'}
- asynckit@0.4.0:
- resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- atomic-sleep@1.0.0:
- resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
- engines: {node: '>=8.0.0'}
- axios-retry@4.5.0:
- resolution: {integrity: sha512-aR99oXhpEDGo0UuAlYcn2iGRds30k366Zfa05XWScR9QaQD4JYiP3/1Qt1u7YlefUOK+cn0CcwoL1oefavQUlQ==}
- peerDependencies:
- axios: 0.x || 1.x
- axios@1.15.0:
- resolution: {integrity: sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==}
- axios@1.16.0:
- resolution: {integrity: sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==}
- balanced-match@1.0.2:
- resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- base-x@5.0.1:
- resolution: {integrity: sha512-M7uio8Zt++eg3jPj+rHMfCC+IuygQHHCOU+IYsVtik6FWjuYpVt/+MRKcgsAMHh8mMFAwnB+Bs+mTrFiXjMzKg==}
- base64-js@1.5.1:
- resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- big.js@6.2.2:
- resolution: {integrity: sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==}
- bignumber.js@9.1.2:
- resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
- birpc@2.9.0:
- resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
- blakejs@1.2.1:
- resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==}
- brace-expansion@2.1.0:
- resolution: {integrity: sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==}
- bs58@6.0.0:
- resolution: {integrity: sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==}
- buffer@6.0.3:
- resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
- c12@3.3.4:
- resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==}
- peerDependencies:
- magicast: '*'
- peerDependenciesMeta:
- magicast:
- optional: true
- call-bind-apply-helpers@1.0.2:
- resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
- engines: {node: '>= 0.4'}
- camelcase@5.3.1:
- resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
- engines: {node: '>=6'}
- chalk@5.6.2:
- resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
- engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
- charenc@0.0.2:
- resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
- chokidar@5.0.0:
- resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
- engines: {node: '>= 20.19.0'}
- citty@0.1.6:
- resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- cliui@6.0.0:
- resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
- clsx@1.2.1:
- resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
- engines: {node: '>=6'}
- color-convert@2.0.1:
- resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
- engines: {node: '>=7.0.0'}
- color-name@1.1.4:
- resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- combined-stream@1.0.8:
- resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
- engines: {node: '>= 0.8'}
- commander@14.0.2:
- resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
- engines: {node: '>=20'}
- confbox@0.1.8:
- resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
- confbox@0.2.4:
- resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
- consola@3.4.2:
- resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
- engines: {node: ^14.18.0 || >=16.10.0}
- cookie-es@1.2.3:
- resolution: {integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==}
- copy-anything@4.0.5:
- resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
- engines: {node: '>=18'}
- cross-fetch@3.2.0:
- resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==}
- crossws@0.3.5:
- resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==}
- crypt@0.0.2:
- resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
- csstype@3.2.3:
- resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
- dayjs@1.11.13:
- resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
- dayjs@1.11.20:
- resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
- de-indent@1.0.2:
- resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
- decamelize@1.2.0:
- resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
- engines: {node: '>=0.10.0'}
- defu@6.1.7:
- resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
- delayed-stream@1.0.0:
- resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
- engines: {node: '>=0.4.0'}
- destr@2.0.5:
- resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
- detect-browser@5.3.0:
- resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==}
- dijkstrajs@1.0.3:
- resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
- dotenv@17.4.2:
- resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
- engines: {node: '>=12'}
- dunder-proto@1.0.1:
- resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
- engines: {node: '>= 0.4'}
- emoji-regex@8.0.0:
- resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- encode-utf8@1.0.3:
- resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==}
- entities@7.0.1:
- resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
- engines: {node: '>=0.12'}
- errx@0.1.0:
- resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
- es-define-property@1.0.1:
- resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
- engines: {node: '>= 0.4'}
- es-errors@1.3.0:
- resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
- engines: {node: '>= 0.4'}
- es-object-atoms@1.1.1:
- resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
- engines: {node: '>= 0.4'}
- es-set-tostringtag@2.1.0:
- resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
- engines: {node: '>= 0.4'}
- es-toolkit@1.39.3:
- resolution: {integrity: sha512-Qb/TCFCldgOy8lZ5uC7nLGdqJwSabkQiYQShmw4jyiPk1pZzaYWTwaYKYP7EgLccWYgZocMrtItrwh683voaww==}
- es-toolkit@1.44.0:
- resolution: {integrity: sha512-6penXeZalaV88MM3cGkFZZfOoLGWshWWfdy0tWw/RlVVyhvMaWSBTOvXNeiW3e5FwdS5ePW0LGEu17zT139ktg==}
- esbuild@0.21.5:
- resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
- engines: {node: '>=12'}
- hasBin: true
- estree-walker@2.0.2:
- resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
- estree-walker@3.0.3:
- resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
- ethereum-cryptography@2.2.1:
- resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==}
- ethers@6.13.5:
- resolution: {integrity: sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ==}
- engines: {node: '>=14.0.0'}
- eventemitter3@5.0.1:
- resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
- events@3.3.0:
- resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
- engines: {node: '>=0.8.x'}
- exsolve@1.0.8:
- resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
- fancy-canvas@2.1.0:
- resolution: {integrity: sha512-nifxXJ95JNLFR2NgRV4/MxVP45G9909wJTEKz5fg/TZS20JJZA6hfgRVh/bC9bwl2zBtBNcYPjiBE4njQHVBwQ==}
- fdir@6.5.0:
- resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- picomatch: ^3 || ^4
- peerDependenciesMeta:
- picomatch:
- optional: true
- find-up@4.1.0:
- resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
- engines: {node: '>=8'}
- follow-redirects@1.16.0:
- resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- form-data@4.0.5:
- resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
- engines: {node: '>= 6'}
- framesync@6.1.2:
- resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==}
- fsevents@2.3.3:
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
- os: [darwin]
- function-bind@1.1.2:
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- get-caller-file@2.0.5:
- resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
- engines: {node: 6.* || 8.* || >= 10.*}
- get-intrinsic@1.3.0:
- resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
- engines: {node: '>= 0.4'}
- get-proto@1.0.1:
- resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
- engines: {node: '>= 0.4'}
- giget@3.2.0:
- resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==}
- hasBin: true
- google-protobuf@3.21.4:
- resolution: {integrity: sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==}
- gopd@1.2.0:
- resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
- engines: {node: '>= 0.4'}
- h3@1.15.11:
- resolution: {integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==}
- has-symbols@1.1.0:
- resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
- engines: {node: '>= 0.4'}
- has-tostringtag@1.0.2:
- resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
- engines: {node: '>= 0.4'}
- hasown@2.0.3:
- resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==}
- engines: {node: '>= 0.4'}
- he@1.2.0:
- resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
- hasBin: true
- hey-listen@1.0.8:
- resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
- hookable@5.5.3:
- resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- idb-keyval@6.2.1:
- resolution: {integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==}
- idb-keyval@6.2.4:
- resolution: {integrity: sha512-D/NzHWUmYJGXi++z67aMSrnisb9A3621CyRK5G89JyTlN13C8xf0g04DLxUKMufPem3e3L2JAXR6Z00OWy183Q==}
- ieee754@1.2.1:
- resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore@7.0.5:
- resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
- engines: {node: '>= 4'}
- iron-webcrypto@1.2.1:
- resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
- is-buffer@1.1.6:
- resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- is-fullwidth-code-point@3.0.0:
- resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
- engines: {node: '>=8'}
- is-retry-allowed@2.2.0:
- resolution: {integrity: sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==}
- engines: {node: '>=10'}
- is-what@5.5.0:
- resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
- engines: {node: '>=18'}
- isows@1.0.7:
- resolution: {integrity: sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==}
- peerDependencies:
- ws: '*'
- jiti@2.7.0:
- resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
- hasBin: true
- jose@6.2.3:
- resolution: {integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==}
- js-tokens@4.0.0:
- resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- keyvaluestorage-interface@1.0.0:
- resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==}
- klinecharts@10.0.0-beta1:
- resolution: {integrity: sha512-5ZxFGjJeZqt9+q45lZDhApC3kdgrk51i27uSpIELgXJLNgfSc0anlb8XkU+52LVrBYnTv9dFr8/Q7lG81vIV1w==}
- klona@2.0.6:
- resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
- engines: {node: '>= 8'}
- knitwork@1.3.0:
- resolution: {integrity: sha512-4LqMNoONzR43B1W0ek0fhXMsDNW/zxa1NdFAVMY+k28pgZLovR4G3PB5MrpTxCy1QaZCqNoiaKPr5w5qZHfSNw==}
- lightweight-charts@5.2.0:
- resolution: {integrity: sha512-ey3Vas8UhV06ni+LT9TA1nEe4y8So4Mi6CL/oarNHFMyTktz/xy8e8+oh04Q//eO3t6etvFXgayz2fClyFQb5w==}
- lit-element@3.3.3:
- resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==}
- lit-element@4.2.2:
- resolution: {integrity: sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w==}
- lit-html@2.8.0:
- resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==}
- lit-html@3.3.3:
- resolution: {integrity: sha512-el8M6jK2o3RXBnrSHX3ZKrsN8zEV63pSExTO1wYJz7QndGYZ8353e2a5PPX+qHe2aGayfnchQmkAojaWAREOIA==}
- lit@2.8.0:
- resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==}
- lit@3.3.0:
- resolution: {integrity: sha512-DGVsqsOIHBww2DqnuZzW7QsuCdahp50ojuDaBPC7jUDRpYoH0z7kHBBYZewRzer75FwtrkmkKk7iOAwSaWdBmw==}
- locate-path@5.0.0:
- resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
- engines: {node: '>=8'}
- loose-envify@1.4.0:
- resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
- hasBin: true
- lru-cache@11.5.0:
- resolution: {integrity: sha512-5YgH9UJd7wVb9hIouI2adWpgqrrICkt070Dnj8EUY1+B4B2P9eRLPAkAAo6NICA7CEhOIeBHl46u9zSNpNu7zA==}
- engines: {node: 20 || >=22}
- magic-string@0.30.21:
- resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
- math-intrinsics@1.1.0:
- resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
- engines: {node: '>= 0.4'}
- md5@2.3.0:
- resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
- mime-db@1.52.0:
- resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
- engines: {node: '>= 0.6'}
- mime-types@2.1.35:
- resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
- engines: {node: '>= 0.6'}
- minimatch@9.0.9:
- resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
- engines: {node: '>=16 || 14 >=14.17'}
- mitt@3.0.1:
- resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
- mlly@1.8.2:
- resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==}
- motion@10.16.2:
- resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==}
- muggle-string@0.4.1:
- resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
- multiformats@9.9.0:
- resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==}
- nanoid@3.3.12:
- resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
- node-fetch-native@1.6.7:
- resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
- node-fetch@2.7.0:
- resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- node-mock-http@1.0.4:
- resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==}
- normalize-path@3.0.0:
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
- engines: {node: '>=0.10.0'}
- ofetch@1.5.1:
- resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
- ohash@2.0.11:
- resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
- on-exit-leak-free@2.1.2:
- resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
- engines: {node: '>=14.0.0'}
- ox@0.14.25:
- resolution: {integrity: sha512-8DoibKtxE8yw63Y2jjMhlbjaURev6WCx4QR4MWLusl2/qIaeTzMJMBIYIDl1KOF45+8H1Ur6eLTdPlUoO8PlRw==}
- peerDependencies:
- typescript: '>=5.4.0'
- peerDependenciesMeta:
- typescript:
- optional: true
- ox@0.6.9:
- resolution: {integrity: sha512-wi5ShvzE4eOcTwQVsIPdFr+8ycyX+5le/96iAJutaZAvCes1J0+RvpEPg5QDPDiaR0XQQAvZVl7AwqQcINuUug==}
- peerDependencies:
- typescript: '>=5.4.0'
- peerDependenciesMeta:
- typescript:
- optional: true
- ox@0.9.3:
- resolution: {integrity: sha512-KzyJP+fPV4uhuuqrTZyok4DC7vFzi7HLUFiUNEmpbyh59htKWkOC98IONC1zgXJPbHAhQgqs6B0Z6StCGhmQvg==}
- peerDependencies:
- typescript: '>=5.4.0'
- peerDependenciesMeta:
- typescript:
- optional: true
- p-limit@2.3.0:
- resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
- engines: {node: '>=6'}
- p-locate@4.1.0:
- resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
- engines: {node: '>=8'}
- p-try@2.2.0:
- resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
- engines: {node: '>=6'}
- path-browserify@1.0.1:
- resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- path-exists@4.0.0:
- resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
- engines: {node: '>=8'}
- pathe@2.0.3:
- resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
- perfect-debounce@1.0.0:
- resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
- perfect-debounce@2.1.0:
- resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
- picocolors@1.1.1:
- resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
- picomatch@2.3.2:
- resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
- engines: {node: '>=8.6'}
- picomatch@4.0.4:
- resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
- engines: {node: '>=12'}
- pinia@2.3.1:
- resolution: {integrity: sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==}
- peerDependencies:
- typescript: '>=4.4.4'
- vue: ^2.7.0 || ^3.5.11
- peerDependenciesMeta:
- typescript:
- optional: true
- pino-abstract-transport@2.0.0:
- resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==}
- pino-std-serializers@7.1.0:
- resolution: {integrity: sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==}
- pino@10.0.0:
- resolution: {integrity: sha512-eI9pKwWEix40kfvSzqEP6ldqOoBIN7dwD/o91TY5z8vQI12sAffpR/pOqAD1IVVwIVHDpHjkq0joBPdJD0rafA==}
- hasBin: true
- pkg-types@1.3.1:
- resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
- pkg-types@2.3.1:
- resolution: {integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==}
- pngjs@5.0.0:
- resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
- engines: {node: '>=10.13.0'}
- popmotion@11.0.5:
- resolution: {integrity: sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==}
- postcss@8.5.14:
- resolution: {integrity: sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==}
- engines: {node: ^10 || ^12 || >=14}
- preact@10.24.2:
- resolution: {integrity: sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==}
- process-warning@5.0.0:
- resolution: {integrity: sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==}
- proxy-compare@2.5.1:
- resolution: {integrity: sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==}
- proxy-compare@3.0.1:
- resolution: {integrity: sha512-V9plBAt3qjMlS1+nC8771KNf6oJ12gExvaxnNzN/9yVRLdTv/lc+oJlnSzrdYDAvBfTStPCoiaCOTmTs0adv7Q==}
- proxy-from-env@2.1.0:
- resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==}
- engines: {node: '>=10'}
- qrcode@1.5.3:
- resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- qrcode@1.5.4:
- resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- quick-format-unescaped@4.0.4:
- resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
- radix3@1.1.2:
- resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
- rc9@3.0.1:
- resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==}
- react@18.3.1:
- resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
- engines: {node: '>=0.10.0'}
- readdirp@5.0.0:
- resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
- engines: {node: '>= 20.19.0'}
- real-require@0.2.0:
- resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
- engines: {node: '>= 12.13.0'}
- regenerator-runtime@0.14.1:
- resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- require-directory@2.1.1:
- resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
- engines: {node: '>=0.10.0'}
- require-main-filename@2.0.0:
- resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
- rfdc@1.4.1:
- resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rollup@4.60.3:
- resolution: {integrity: sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
- safe-stable-stringify@2.5.0:
- resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
- engines: {node: '>=10'}
- scule@1.3.0:
- resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
- semver@7.7.1:
- resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
- engines: {node: '>=10'}
- hasBin: true
- semver@7.7.2:
- resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
- engines: {node: '>=10'}
- hasBin: true
- semver@7.7.4:
- resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
- engines: {node: '>=10'}
- hasBin: true
- set-blocking@2.0.0:
- resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
- slow-redact@0.3.2:
- resolution: {integrity: sha512-MseHyi2+E/hBRqdOi5COy6wZ7j7DxXRz9NkseavNYSvvWC06D8a5cidVZX3tcG5eCW3NIyVU4zT63hw0Q486jw==}
- sonic-boom@4.2.1:
- resolution: {integrity: sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==}
- source-map-js@1.2.1:
- resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
- engines: {node: '>=0.10.0'}
- speakingurl@14.0.1:
- resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
- engines: {node: '>=0.10.0'}
- split2@4.2.0:
- resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
- engines: {node: '>= 10.x'}
- string-width@4.2.3:
- resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
- engines: {node: '>=8'}
- strip-ansi@6.0.1:
- resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
- engines: {node: '>=8'}
- style-value-types@5.1.2:
- resolution: {integrity: sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==}
- superjson@2.2.6:
- resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==}
- engines: {node: '>=16'}
- thread-stream@3.1.0:
- resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==}
- tinyglobby@0.2.16:
- resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
- engines: {node: '>=12.0.0'}
- tr46@0.0.3:
- resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- tronweb@6.3.0:
- resolution: {integrity: sha512-5CAjDO4/KfymgjKFgnXgfKKQp0xgOn8otCBYjgYAEIpLZDKNAk14Z0dDeg0UqYuceCiyMHjW7a19Rsz8EmhAOw==}
- tslib@1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- tslib@2.4.0:
- resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
- tslib@2.7.0:
- resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
- type-fest@4.41.0:
- resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
- engines: {node: '>=16'}
- typescript@5.9.3:
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
- engines: {node: '>=14.17'}
- hasBin: true
- ufo@1.6.4:
- resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==}
- uint8arrays@3.1.1:
- resolution: {integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==}
- uncrypto@0.1.3:
- resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
- unctx@2.5.0:
- resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==}
- undici-types@6.19.8:
- resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
- undici-types@7.19.2:
- resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
- unplugin@2.3.11:
- resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
- engines: {node: '>=18.12.0'}
- unstorage@1.17.5:
- resolution: {integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==}
- peerDependencies:
- '@azure/app-configuration': ^1.8.0
- '@azure/cosmos': ^4.2.0
- '@azure/data-tables': ^13.3.0
- '@azure/identity': ^4.6.0
- '@azure/keyvault-secrets': ^4.9.0
- '@azure/storage-blob': ^12.26.0
- '@capacitor/preferences': ^6 || ^7 || ^8
- '@deno/kv': '>=0.9.0'
- '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0
- '@planetscale/database': ^1.19.0
- '@upstash/redis': ^1.34.3
- '@vercel/blob': '>=0.27.1'
- '@vercel/functions': ^2.2.12 || ^3.0.0
- '@vercel/kv': ^1 || ^2 || ^3
- aws4fetch: ^1.0.20
- db0: '>=0.2.1'
- idb-keyval: ^6.2.1
- ioredis: ^5.4.2
- uploadthing: ^7.4.4
- peerDependenciesMeta:
- '@azure/app-configuration':
- optional: true
- '@azure/cosmos':
- optional: true
- '@azure/data-tables':
- optional: true
- '@azure/identity':
- optional: true
- '@azure/keyvault-secrets':
- optional: true
- '@azure/storage-blob':
- optional: true
- '@capacitor/preferences':
- optional: true
- '@deno/kv':
- optional: true
- '@netlify/blobs':
- optional: true
- '@planetscale/database':
- optional: true
- '@upstash/redis':
- optional: true
- '@vercel/blob':
- optional: true
- '@vercel/functions':
- optional: true
- '@vercel/kv':
- optional: true
- aws4fetch:
- optional: true
- db0:
- optional: true
- idb-keyval:
- optional: true
- ioredis:
- optional: true
- uploadthing:
- optional: true
- untyped@2.0.0:
- resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==}
- hasBin: true
- use-sync-external-store@1.2.0:
- resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- validator@13.15.23:
- resolution: {integrity: sha512-4yoz1kEWqUjzi5zsPbAS/903QXSYp0UOtHsPpp7p9rHAw/W+dkInskAE386Fat3oKRROwO98d9ZB0G4cObgUyw==}
- engines: {node: '>= 0.10'}
- valtio@1.11.2:
- resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==}
- engines: {node: '>=12.20.0'}
- peerDependencies:
- '@types/react': '>=16.8'
- react: '>=16.8'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- react:
- optional: true
- valtio@2.1.7:
- resolution: {integrity: sha512-DwJhCDpujuQuKdJ2H84VbTjEJJteaSmqsuUltsfbfdbotVfNeTE4K/qc/Wi57I9x8/2ed4JNdjEna7O6PfavRg==}
- engines: {node: '>=12.20.0'}
- peerDependencies:
- '@types/react': '>=18.0.0'
- react: '>=18.0.0'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- react:
- optional: true
- vee-validate@4.15.1:
- resolution: {integrity: sha512-DkFsiTwEKau8VIxyZBGdO6tOudD+QoUBPuHj3e6QFqmbfCRj1ArmYWue9lEp6jLSWBIw4XPlDLjFIZNLdRAMSg==}
- peerDependencies:
- vue: ^3.4.26
- viem@2.51.2:
- resolution: {integrity: sha512-2x4YAtr3PUPIW++Ov96clnWtRsyqMfpFfooQRIxCpAMsTgxioJTdIQ0ywbjhlHDCUJEGM6M8q8ILOeaPRViH9w==}
- peerDependencies:
- typescript: '>=5.0.4'
- peerDependenciesMeta:
- typescript:
- optional: true
- vite@5.4.21:
- resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- vscode-uri@3.1.0:
- resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
- vue-demi@0.14.10:
- resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
- engines: {node: '>=12'}
- hasBin: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.0.0-0 || ^2.6.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
- vue-i18n@11.4.4:
- resolution: {integrity: sha512-gIbXVSFQV4jcSJxfwdZ5zSZmZ+12CnX0K3vBkRSd6Zn+HSzCp+QwUgPwpD/uN0oKNKI9RzlUXPKVedEuMgNG0A==}
- engines: {node: '>= 22'}
- peerDependencies:
- vue: ^3.0.0
- vue-router@4.6.4:
- resolution: {integrity: sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==}
- peerDependencies:
- vue: ^3.5.0
- vue-tsc@2.2.12:
- resolution: {integrity: sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==}
- hasBin: true
- peerDependencies:
- typescript: '>=5.0.0'
- vue@3.5.34:
- resolution: {integrity: sha512-WdLBG9gm02OgJIG9axd5Hpx0TFLdzVgfG2evFFu8Rur5O/IoGc5cMjnjh3tPL6GnRGsYvUhBSKVPYVcxRKpMCA==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- webidl-conversions@3.0.1:
- resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- webpack-virtual-modules@0.6.2:
- resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- whatwg-url@5.0.0:
- resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
- which-module@2.0.1:
- resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- wrap-ansi@6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
- ws@7.5.11:
- resolution: {integrity: sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==}
- engines: {node: '>=8.3.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- ws@8.17.1:
- resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- ws@8.20.1:
- resolution: {integrity: sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- ws@8.21.0:
- resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- y18n@4.0.3:
- resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
- yargs-parser@18.1.3:
- resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
- engines: {node: '>=6'}
- yargs@15.4.1:
- resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
- engines: {node: '>=8'}
- zod@3.22.4:
- resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
- zod@3.25.76:
- resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
- zod@4.4.3:
- resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
- zustand@5.0.3:
- resolution: {integrity: sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==}
- engines: {node: '>=12.20.0'}
- peerDependencies:
- '@types/react': '>=18.0.0'
- immer: '>=9.0.6'
- react: '>=18.0.0'
- use-sync-external-store: '>=1.2.0'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- immer:
- optional: true
- react:
- optional: true
- use-sync-external-store:
- optional: true
- snapshots:
- '@adraffy/ens-normalize@1.10.1': {}
- '@adraffy/ens-normalize@1.11.1': {}
- '@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.28.5': {}
- '@babel/parser@7.29.3':
- dependencies:
- '@babel/types': 7.29.0
- '@babel/runtime@7.26.10':
- dependencies:
- regenerator-runtime: 0.14.1
- '@babel/types@7.29.0':
- dependencies:
- '@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@base-org/account@2.4.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)':
- dependencies:
- '@coinbase/cdp-sdk': 1.50.0(typescript@5.9.3)
- '@noble/hashes': 1.4.0
- clsx: 1.2.1
- eventemitter3: 5.0.1
- idb-keyval: 6.2.1
- ox: 0.6.9(typescript@5.9.3)(zod@4.4.3)
- preact: 10.24.2
- viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
- zustand: 5.0.3(@types/react@19.2.15)(react@18.3.1)(use-sync-external-store@1.2.0(react@18.3.1))
- transitivePeerDependencies:
- - '@types/react'
- - bufferutil
- - debug
- - fastestsmallesttextencoderdecoder
- - immer
- - react
- - typescript
- - use-sync-external-store
- - utf-8-validate
- - zod
- optional: true
- '@coinbase/cdp-sdk@1.50.0(typescript@5.9.3)':
- dependencies:
- '@solana-program/system': 0.10.0(@solana/kit@5.5.1(typescript@5.9.3))
- '@solana-program/token': 0.9.0(@solana/kit@5.5.1(typescript@5.9.3))
- '@solana/kit': 5.5.1(typescript@5.9.3)
- abitype: 1.0.6(typescript@5.9.3)(zod@3.25.76)
- axios: 1.16.0
- axios-retry: 4.5.0(axios@1.16.0)
- bs58: 6.0.0
- jose: 6.2.3
- md5: 2.3.0
- uncrypto: 0.1.3
- viem: 2.51.2(typescript@5.9.3)(zod@3.25.76)
- zod: 3.25.76
- transitivePeerDependencies:
- - bufferutil
- - debug
- - fastestsmallesttextencoderdecoder
- - typescript
- - utf-8-validate
- optional: true
- '@esbuild/aix-ppc64@0.21.5':
- optional: true
- '@esbuild/android-arm64@0.21.5':
- optional: true
- '@esbuild/android-arm@0.21.5':
- optional: true
- '@esbuild/android-x64@0.21.5':
- optional: true
- '@esbuild/darwin-arm64@0.21.5':
- optional: true
- '@esbuild/darwin-x64@0.21.5':
- optional: true
- '@esbuild/freebsd-arm64@0.21.5':
- optional: true
- '@esbuild/freebsd-x64@0.21.5':
- optional: true
- '@esbuild/linux-arm64@0.21.5':
- optional: true
- '@esbuild/linux-arm@0.21.5':
- optional: true
- '@esbuild/linux-ia32@0.21.5':
- optional: true
- '@esbuild/linux-loong64@0.21.5':
- optional: true
- '@esbuild/linux-mips64el@0.21.5':
- optional: true
- '@esbuild/linux-ppc64@0.21.5':
- optional: true
- '@esbuild/linux-riscv64@0.21.5':
- optional: true
- '@esbuild/linux-s390x@0.21.5':
- optional: true
- '@esbuild/linux-x64@0.21.5':
- optional: true
- '@esbuild/netbsd-x64@0.21.5':
- optional: true
- '@esbuild/openbsd-x64@0.21.5':
- optional: true
- '@esbuild/sunos-x64@0.21.5':
- optional: true
- '@esbuild/win32-arm64@0.21.5':
- optional: true
- '@esbuild/win32-ia32@0.21.5':
- optional: true
- '@esbuild/win32-x64@0.21.5':
- optional: true
- '@iconify/types@2.0.0': {}
- '@iconify/vue@5.0.1(vue@3.5.34(typescript@5.9.3))':
- dependencies:
- '@iconify/types': 2.0.0
- vue: 3.5.34(typescript@5.9.3)
- '@intlify/core-base@11.4.4':
- dependencies:
- '@intlify/devtools-types': 11.4.4
- '@intlify/message-compiler': 11.4.4
- '@intlify/shared': 11.4.4
- '@intlify/devtools-types@11.4.4':
- dependencies:
- '@intlify/core-base': 11.4.4
- '@intlify/shared': 11.4.4
- '@intlify/message-compiler@11.4.4':
- dependencies:
- '@intlify/shared': 11.4.4
- source-map-js: 1.2.1
- '@intlify/shared@11.4.4': {}
- '@jridgewell/gen-mapping@0.3.13':
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
- '@jridgewell/trace-mapping': 0.3.31
- optional: true
- '@jridgewell/remapping@2.3.5':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.31
- optional: true
- '@jridgewell/resolve-uri@3.1.2':
- optional: true
- '@jridgewell/sourcemap-codec@1.5.5': {}
- '@jridgewell/trace-mapping@0.3.31':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.5
- optional: true
- '@lit-labs/ssr-dom-shim@1.6.0': {}
- '@lit/react@1.0.8(@types/react@19.2.15)':
- dependencies:
- '@types/react': 19.2.15
- optional: true
- '@lit/reactive-element@1.6.3':
- dependencies:
- '@lit-labs/ssr-dom-shim': 1.6.0
- '@lit/reactive-element@2.1.2':
- dependencies:
- '@lit-labs/ssr-dom-shim': 1.6.0
- '@motionone/animation@10.18.0':
- dependencies:
- '@motionone/easing': 10.18.0
- '@motionone/types': 10.17.1
- '@motionone/utils': 10.18.0
- tslib: 2.4.0
- '@motionone/dom@10.18.0':
- dependencies:
- '@motionone/animation': 10.18.0
- '@motionone/generators': 10.18.0
- '@motionone/types': 10.17.1
- '@motionone/utils': 10.18.0
- hey-listen: 1.0.8
- tslib: 2.4.0
- '@motionone/easing@10.18.0':
- dependencies:
- '@motionone/utils': 10.18.0
- tslib: 2.4.0
- '@motionone/generators@10.18.0':
- dependencies:
- '@motionone/types': 10.17.1
- '@motionone/utils': 10.18.0
- tslib: 2.4.0
- '@motionone/svelte@10.16.4':
- dependencies:
- '@motionone/dom': 10.18.0
- tslib: 2.4.0
- '@motionone/types@10.17.1': {}
- '@motionone/utils@10.18.0':
- dependencies:
- '@motionone/types': 10.17.1
- hey-listen: 1.0.8
- tslib: 2.4.0
- '@motionone/vue@10.16.4':
- dependencies:
- '@motionone/dom': 10.18.0
- tslib: 2.4.0
- '@msgpack/msgpack@3.1.2': {}
- '@msgpack/msgpack@3.1.3': {}
- '@noble/ciphers@1.3.0': {}
- '@noble/curves@1.2.0':
- dependencies:
- '@noble/hashes': 1.3.2
- '@noble/curves@1.4.2':
- dependencies:
- '@noble/hashes': 1.4.0
- '@noble/curves@1.8.0':
- dependencies:
- '@noble/hashes': 1.7.0
- '@noble/curves@1.9.1':
- dependencies:
- '@noble/hashes': 1.8.0
- '@noble/curves@1.9.7':
- dependencies:
- '@noble/hashes': 1.8.0
- '@noble/hashes@1.3.2': {}
- '@noble/hashes@1.4.0': {}
- '@noble/hashes@1.7.0': {}
- '@noble/hashes@1.8.0': {}
- '@nuxt/kit@3.21.4':
- dependencies:
- c12: 3.3.4
- consola: 3.4.2
- defu: 6.1.7
- destr: 2.0.5
- errx: 0.1.0
- exsolve: 1.0.8
- ignore: 7.0.5
- jiti: 2.7.0
- klona: 2.0.6
- knitwork: 1.3.0
- mlly: 1.8.2
- ohash: 2.0.11
- pathe: 2.0.3
- pkg-types: 2.3.1
- rc9: 3.0.1
- scule: 1.3.0
- semver: 7.7.4
- tinyglobby: 0.2.16
- ufo: 1.6.4
- unctx: 2.5.0
- untyped: 2.0.0
- transitivePeerDependencies:
- - magicast
- optional: true
- '@phosphor-icons/webcomponents@2.1.5':
- dependencies:
- lit: 3.3.0
- '@reown/appkit-common@1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@3.22.4)':
- dependencies:
- big.js: 6.2.2
- dayjs: 1.11.13
- viem: 2.51.2(typescript@5.9.3)(zod@3.22.4)
- transitivePeerDependencies:
- - bufferutil
- - typescript
- - utf-8-validate
- - zod
- '@reown/appkit-common@1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- big.js: 6.2.2
- dayjs: 1.11.13
- viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
- transitivePeerDependencies:
- - bufferutil
- - typescript
- - utf-8-validate
- - zod
- '@reown/appkit-controllers@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
- '@walletconnect/universal-provider': 2.23.2(typescript@5.9.3)(zod@4.4.3)
- valtio: 2.1.7(@types/react@19.2.15)(react@18.3.1)
- viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@types/react'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - encoding
- - ioredis
- - react
- - typescript
- - uploadthing
- - utf-8-validate
- - zod
- '@reown/appkit-pay@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)':
- dependencies:
- '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-ui': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-utils': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)
- lit: 3.3.0
- valtio: 2.1.7(@types/react@19.2.15)(react@18.3.1)
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@types/react'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - debug
- - encoding
- - fastestsmallesttextencoderdecoder
- - immer
- - ioredis
- - react
- - typescript
- - uploadthing
- - use-sync-external-store
- - utf-8-validate
- - zod
- '@reown/appkit-polyfills@1.8.17-wc-circular-dependencies-fix.0':
- dependencies:
- buffer: 6.0.3
- '@reown/appkit-scaffold-ui@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)':
- dependencies:
- '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-pay': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
- '@reown/appkit-ui': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-utils': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)
- '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
- lit: 3.3.0
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@types/react'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - debug
- - encoding
- - fastestsmallesttextencoderdecoder
- - immer
- - ioredis
- - react
- - typescript
- - uploadthing
- - use-sync-external-store
- - utf-8-validate
- - valtio
- - zod
- '@reown/appkit-ui@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@phosphor-icons/webcomponents': 2.1.5
- '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
- lit: 3.3.0
- qrcode: 1.5.3
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@types/react'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - encoding
- - ioredis
- - react
- - typescript
- - uploadthing
- - utf-8-validate
- - zod
- '@reown/appkit-utils@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)':
- dependencies:
- '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-polyfills': 1.8.17-wc-circular-dependencies-fix.0
- '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
- '@wallet-standard/wallet': 1.1.0
- '@walletconnect/logger': 3.0.2
- '@walletconnect/universal-provider': 2.23.2(typescript@5.9.3)(zod@4.4.3)
- valtio: 2.1.7(@types/react@19.2.15)(react@18.3.1)
- viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
- optionalDependencies:
- '@base-org/account': 2.4.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
- '@safe-global/safe-apps-provider': 0.18.6(typescript@5.9.3)(zod@4.4.3)
- '@safe-global/safe-apps-sdk': 9.1.0(typescript@5.9.3)(zod@4.4.3)
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@types/react'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - debug
- - encoding
- - fastestsmallesttextencoderdecoder
- - immer
- - ioredis
- - react
- - typescript
- - uploadthing
- - use-sync-external-store
- - utf-8-validate
- - zod
- '@reown/appkit-wallet@1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)':
- dependencies:
- '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@3.22.4)
- '@reown/appkit-polyfills': 1.8.17-wc-circular-dependencies-fix.0
- '@walletconnect/logger': 3.0.2
- zod: 3.22.4
- transitivePeerDependencies:
- - bufferutil
- - typescript
- - utf-8-validate
- '@reown/appkit@1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)':
- dependencies:
- '@reown/appkit-common': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-controllers': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-pay': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
- '@reown/appkit-polyfills': 1.8.17-wc-circular-dependencies-fix.0
- '@reown/appkit-scaffold-ui': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)
- '@reown/appkit-ui': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(zod@4.4.3)
- '@reown/appkit-utils': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(valtio@2.1.7(@types/react@19.2.15)(react@18.3.1))(zod@4.4.3)
- '@reown/appkit-wallet': 1.8.17-wc-circular-dependencies-fix.0(typescript@5.9.3)
- '@walletconnect/universal-provider': 2.23.2(typescript@5.9.3)(zod@4.4.3)
- bs58: 6.0.0
- semver: 7.7.2
- valtio: 2.1.7(@types/react@19.2.15)(react@18.3.1)
- viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
- optionalDependencies:
- '@lit/react': 1.0.8(@types/react@19.2.15)
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@types/react'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - debug
- - encoding
- - fastestsmallesttextencoderdecoder
- - immer
- - ioredis
- - react
- - typescript
- - uploadthing
- - use-sync-external-store
- - utf-8-validate
- - zod
- '@rollup/rollup-android-arm-eabi@4.60.3':
- optional: true
- '@rollup/rollup-android-arm64@4.60.3':
- optional: true
- '@rollup/rollup-darwin-arm64@4.60.3':
- optional: true
- '@rollup/rollup-darwin-x64@4.60.3':
- optional: true
- '@rollup/rollup-freebsd-arm64@4.60.3':
- optional: true
- '@rollup/rollup-freebsd-x64@4.60.3':
- optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.60.3':
- optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.60.3':
- optional: true
- '@rollup/rollup-linux-arm64-gnu@4.60.3':
- optional: true
- '@rollup/rollup-linux-arm64-musl@4.60.3':
- optional: true
- '@rollup/rollup-linux-loong64-gnu@4.60.3':
- optional: true
- '@rollup/rollup-linux-loong64-musl@4.60.3':
- optional: true
- '@rollup/rollup-linux-ppc64-gnu@4.60.3':
- optional: true
- '@rollup/rollup-linux-ppc64-musl@4.60.3':
- optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.60.3':
- optional: true
- '@rollup/rollup-linux-riscv64-musl@4.60.3':
- optional: true
- '@rollup/rollup-linux-s390x-gnu@4.60.3':
- optional: true
- '@rollup/rollup-linux-x64-gnu@4.60.3':
- optional: true
- '@rollup/rollup-linux-x64-musl@4.60.3':
- optional: true
- '@rollup/rollup-openbsd-x64@4.60.3':
- optional: true
- '@rollup/rollup-openharmony-arm64@4.60.3':
- optional: true
- '@rollup/rollup-win32-arm64-msvc@4.60.3':
- optional: true
- '@rollup/rollup-win32-ia32-msvc@4.60.3':
- optional: true
- '@rollup/rollup-win32-x64-gnu@4.60.3':
- optional: true
- '@rollup/rollup-win32-x64-msvc@4.60.3':
- optional: true
- '@safe-global/safe-apps-provider@0.18.6(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@safe-global/safe-apps-sdk': 9.1.0(typescript@5.9.3)(zod@4.4.3)
- events: 3.3.0
- transitivePeerDependencies:
- - bufferutil
- - typescript
- - utf-8-validate
- - zod
- optional: true
- '@safe-global/safe-apps-sdk@9.1.0(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@safe-global/safe-gateway-typescript-sdk': 3.23.1
- viem: 2.51.2(typescript@5.9.3)(zod@4.4.3)
- transitivePeerDependencies:
- - bufferutil
- - typescript
- - utf-8-validate
- - zod
- optional: true
- '@safe-global/safe-gateway-typescript-sdk@3.23.1':
- optional: true
- '@scure/base@1.1.9': {}
- '@scure/base@1.2.6': {}
- '@scure/bip32@1.4.0':
- dependencies:
- '@noble/curves': 1.4.2
- '@noble/hashes': 1.4.0
- '@scure/base': 1.1.9
- '@scure/bip32@1.7.0':
- dependencies:
- '@noble/curves': 1.9.1
- '@noble/hashes': 1.8.0
- '@scure/base': 1.2.6
- '@scure/bip39@1.3.0':
- dependencies:
- '@noble/hashes': 1.4.0
- '@scure/base': 1.1.9
- '@scure/bip39@1.6.0':
- dependencies:
- '@noble/hashes': 1.8.0
- '@scure/base': 1.2.6
- '@solana-program/system@0.10.0(@solana/kit@5.5.1(typescript@5.9.3))':
- dependencies:
- '@solana/kit': 5.5.1(typescript@5.9.3)
- optional: true
- '@solana-program/token@0.9.0(@solana/kit@5.5.1(typescript@5.9.3))':
- dependencies:
- '@solana/kit': 5.5.1(typescript@5.9.3)
- optional: true
- '@solana/accounts@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/addresses@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/assertions': 5.5.1(typescript@5.9.3)
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/nominal-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/assertions@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/codecs-core@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/codecs-data-structures@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/codecs-numbers@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/codecs-strings@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/codecs@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
- '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/options': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/errors@5.5.1(typescript@5.9.3)':
- dependencies:
- chalk: 5.6.2
- commander: 14.0.2
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/fast-stable-stringify@5.5.1(typescript@5.9.3)':
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/functional@5.5.1(typescript@5.9.3)':
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/instruction-plans@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/instructions': 5.5.1(typescript@5.9.3)
- '@solana/keys': 5.5.1(typescript@5.9.3)
- '@solana/promises': 5.5.1(typescript@5.9.3)
- '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
- '@solana/transactions': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/instructions@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/keys@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/assertions': 5.5.1(typescript@5.9.3)
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/nominal-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/kit@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/accounts': 5.5.1(typescript@5.9.3)
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/codecs': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/functional': 5.5.1(typescript@5.9.3)
- '@solana/instruction-plans': 5.5.1(typescript@5.9.3)
- '@solana/instructions': 5.5.1(typescript@5.9.3)
- '@solana/keys': 5.5.1(typescript@5.9.3)
- '@solana/offchain-messages': 5.5.1(typescript@5.9.3)
- '@solana/plugin-core': 5.5.1(typescript@5.9.3)
- '@solana/programs': 5.5.1(typescript@5.9.3)
- '@solana/rpc': 5.5.1(typescript@5.9.3)
- '@solana/rpc-api': 5.5.1(typescript@5.9.3)
- '@solana/rpc-parsed-types': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
- '@solana/rpc-subscriptions': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- '@solana/signers': 5.5.1(typescript@5.9.3)
- '@solana/sysvars': 5.5.1(typescript@5.9.3)
- '@solana/transaction-confirmation': 5.5.1(typescript@5.9.3)
- '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
- '@solana/transactions': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - bufferutil
- - fastestsmallesttextencoderdecoder
- - utf-8-validate
- optional: true
- '@solana/nominal-types@5.5.1(typescript@5.9.3)':
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/offchain-messages@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
- '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/keys': 5.5.1(typescript@5.9.3)
- '@solana/nominal-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/options@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
- '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/plugin-core@5.5.1(typescript@5.9.3)':
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/programs@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/promises@5.5.1(typescript@5.9.3)':
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/rpc-api@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/keys': 5.5.1(typescript@5.9.3)
- '@solana/rpc-parsed-types': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec': 5.5.1(typescript@5.9.3)
- '@solana/rpc-transformers': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
- '@solana/transactions': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/rpc-parsed-types@5.5.1(typescript@5.9.3)':
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/rpc-spec-types@5.5.1(typescript@5.9.3)':
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/rpc-spec@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/rpc-subscriptions-api@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/keys': 5.5.1(typescript@5.9.3)
- '@solana/rpc-subscriptions-spec': 5.5.1(typescript@5.9.3)
- '@solana/rpc-transformers': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
- '@solana/transactions': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/rpc-subscriptions-channel-websocket@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/functional': 5.5.1(typescript@5.9.3)
- '@solana/rpc-subscriptions-spec': 5.5.1(typescript@5.9.3)
- '@solana/subscribable': 5.5.1(typescript@5.9.3)
- ws: 8.21.0
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- optional: true
- '@solana/rpc-subscriptions-spec@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/promises': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
- '@solana/subscribable': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/rpc-subscriptions@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/fast-stable-stringify': 5.5.1(typescript@5.9.3)
- '@solana/functional': 5.5.1(typescript@5.9.3)
- '@solana/promises': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
- '@solana/rpc-subscriptions-api': 5.5.1(typescript@5.9.3)
- '@solana/rpc-subscriptions-channel-websocket': 5.5.1(typescript@5.9.3)
- '@solana/rpc-subscriptions-spec': 5.5.1(typescript@5.9.3)
- '@solana/rpc-transformers': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- '@solana/subscribable': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - bufferutil
- - fastestsmallesttextencoderdecoder
- - utf-8-validate
- optional: true
- '@solana/rpc-transformers@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/functional': 5.5.1(typescript@5.9.3)
- '@solana/nominal-types': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/rpc-transport-http@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
- undici-types: 7.19.2
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/rpc-types@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/nominal-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/rpc@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/fast-stable-stringify': 5.5.1(typescript@5.9.3)
- '@solana/functional': 5.5.1(typescript@5.9.3)
- '@solana/rpc-api': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec': 5.5.1(typescript@5.9.3)
- '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3)
- '@solana/rpc-transformers': 5.5.1(typescript@5.9.3)
- '@solana/rpc-transport-http': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/signers@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/instructions': 5.5.1(typescript@5.9.3)
- '@solana/keys': 5.5.1(typescript@5.9.3)
- '@solana/nominal-types': 5.5.1(typescript@5.9.3)
- '@solana/offchain-messages': 5.5.1(typescript@5.9.3)
- '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
- '@solana/transactions': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/subscribable@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/errors': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- optional: true
- '@solana/sysvars@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/accounts': 5.5.1(typescript@5.9.3)
- '@solana/codecs': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/transaction-confirmation@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/keys': 5.5.1(typescript@5.9.3)
- '@solana/promises': 5.5.1(typescript@5.9.3)
- '@solana/rpc': 5.5.1(typescript@5.9.3)
- '@solana/rpc-subscriptions': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
- '@solana/transactions': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - bufferutil
- - fastestsmallesttextencoderdecoder
- - utf-8-validate
- optional: true
- '@solana/transaction-messages@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
- '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/functional': 5.5.1(typescript@5.9.3)
- '@solana/instructions': 5.5.1(typescript@5.9.3)
- '@solana/nominal-types': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@solana/transactions@5.5.1(typescript@5.9.3)':
- dependencies:
- '@solana/addresses': 5.5.1(typescript@5.9.3)
- '@solana/codecs-core': 5.5.1(typescript@5.9.3)
- '@solana/codecs-data-structures': 5.5.1(typescript@5.9.3)
- '@solana/codecs-numbers': 5.5.1(typescript@5.9.3)
- '@solana/codecs-strings': 5.5.1(typescript@5.9.3)
- '@solana/errors': 5.5.1(typescript@5.9.3)
- '@solana/functional': 5.5.1(typescript@5.9.3)
- '@solana/instructions': 5.5.1(typescript@5.9.3)
- '@solana/keys': 5.5.1(typescript@5.9.3)
- '@solana/nominal-types': 5.5.1(typescript@5.9.3)
- '@solana/rpc-types': 5.5.1(typescript@5.9.3)
- '@solana/transaction-messages': 5.5.1(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- optional: true
- '@types/estree@1.0.8': {}
- '@types/estree@1.0.9':
- optional: true
- '@types/node@22.7.5':
- dependencies:
- undici-types: 6.19.8
- '@types/node@25.6.2':
- dependencies:
- undici-types: 7.19.2
- '@types/qrcode@1.5.6':
- dependencies:
- '@types/node': 25.6.2
- '@types/react@19.2.15':
- dependencies:
- csstype: 3.2.3
- optional: true
- '@types/trusted-types@2.0.7': {}
- '@types/web-bluetooth@0.0.21': {}
- '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.6.2))(vue@3.5.34(typescript@5.9.3))':
- dependencies:
- vite: 5.4.21(@types/node@25.6.2)
- vue: 3.5.34(typescript@5.9.3)
- '@volar/language-core@2.4.15':
- dependencies:
- '@volar/source-map': 2.4.15
- '@volar/source-map@2.4.15': {}
- '@volar/typescript@2.4.15':
- dependencies:
- '@volar/language-core': 2.4.15
- path-browserify: 1.0.1
- vscode-uri: 3.1.0
- '@vue/compiler-core@3.5.34':
- dependencies:
- '@babel/parser': 7.29.3
- '@vue/shared': 3.5.34
- entities: 7.0.1
- estree-walker: 2.0.2
- source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.34':
- dependencies:
- '@vue/compiler-core': 3.5.34
- '@vue/shared': 3.5.34
- '@vue/compiler-sfc@3.5.34':
- dependencies:
- '@babel/parser': 7.29.3
- '@vue/compiler-core': 3.5.34
- '@vue/compiler-dom': 3.5.34
- '@vue/compiler-ssr': 3.5.34
- '@vue/shared': 3.5.34
- estree-walker: 2.0.2
- magic-string: 0.30.21
- postcss: 8.5.14
- source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.34':
- dependencies:
- '@vue/compiler-dom': 3.5.34
- '@vue/shared': 3.5.34
- '@vue/compiler-vue2@2.7.16':
- dependencies:
- de-indent: 1.0.2
- he: 1.2.0
- '@vue/devtools-api@6.6.4': {}
- '@vue/devtools-api@7.7.9':
- dependencies:
- '@vue/devtools-kit': 7.7.9
- '@vue/devtools-kit@7.7.9':
- dependencies:
- '@vue/devtools-shared': 7.7.9
- birpc: 2.9.0
- hookable: 5.5.3
- mitt: 3.0.1
- perfect-debounce: 1.0.0
- speakingurl: 14.0.1
- superjson: 2.2.6
- '@vue/devtools-shared@7.7.9':
- dependencies:
- rfdc: 1.4.1
- '@vue/language-core@2.2.12(typescript@5.9.3)':
- dependencies:
- '@volar/language-core': 2.4.15
- '@vue/compiler-dom': 3.5.34
- '@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.34
- alien-signals: 1.0.13
- minimatch: 9.0.9
- muggle-string: 0.4.1
- path-browserify: 1.0.1
- optionalDependencies:
- typescript: 5.9.3
- '@vue/reactivity@3.5.34':
- dependencies:
- '@vue/shared': 3.5.34
- '@vue/runtime-core@3.5.34':
- dependencies:
- '@vue/reactivity': 3.5.34
- '@vue/shared': 3.5.34
- '@vue/runtime-dom@3.5.34':
- dependencies:
- '@vue/reactivity': 3.5.34
- '@vue/runtime-core': 3.5.34
- '@vue/shared': 3.5.34
- csstype: 3.2.3
- '@vue/server-renderer@3.5.34(vue@3.5.34(typescript@5.9.3))':
- dependencies:
- '@vue/compiler-ssr': 3.5.34
- '@vue/shared': 3.5.34
- vue: 3.5.34(typescript@5.9.3)
- '@vue/shared@3.5.34': {}
- '@vueuse/core@13.9.0(vue@3.5.34(typescript@5.9.3))':
- dependencies:
- '@types/web-bluetooth': 0.0.21
- '@vueuse/metadata': 13.9.0
- '@vueuse/shared': 13.9.0(vue@3.5.34(typescript@5.9.3))
- vue: 3.5.34(typescript@5.9.3)
- '@vueuse/core@14.3.0(vue@3.5.34(typescript@5.9.3))':
- dependencies:
- '@types/web-bluetooth': 0.0.21
- '@vueuse/metadata': 14.3.0
- '@vueuse/shared': 14.3.0(vue@3.5.34(typescript@5.9.3))
- vue: 3.5.34(typescript@5.9.3)
- '@vueuse/metadata@13.9.0': {}
- '@vueuse/metadata@14.3.0': {}
- '@vueuse/motion@3.0.3(vue@3.5.34(typescript@5.9.3))':
- dependencies:
- '@vueuse/core': 13.9.0(vue@3.5.34(typescript@5.9.3))
- '@vueuse/shared': 13.9.0(vue@3.5.34(typescript@5.9.3))
- defu: 6.1.7
- framesync: 6.1.2
- popmotion: 11.0.5
- style-value-types: 5.1.2
- vue: 3.5.34(typescript@5.9.3)
- optionalDependencies:
- '@nuxt/kit': 3.21.4
- transitivePeerDependencies:
- - magicast
- '@vueuse/shared@13.9.0(vue@3.5.34(typescript@5.9.3))':
- dependencies:
- vue: 3.5.34(typescript@5.9.3)
- '@vueuse/shared@14.3.0(vue@3.5.34(typescript@5.9.3))':
- dependencies:
- vue: 3.5.34(typescript@5.9.3)
- '@wallet-standard/base@1.1.0': {}
- '@wallet-standard/wallet@1.1.0':
- dependencies:
- '@wallet-standard/base': 1.1.0
- '@walletconnect/core@2.23.2(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@walletconnect/heartbeat': 1.2.2
- '@walletconnect/jsonrpc-provider': 1.0.14
- '@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/jsonrpc-ws-connection': 1.0.16
- '@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 3.0.2
- '@walletconnect/relay-api': 1.0.11
- '@walletconnect/relay-auth': 1.1.0
- '@walletconnect/safe-json': 1.0.2
- '@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.23.2
- '@walletconnect/utils': 2.23.2(typescript@5.9.3)(zod@4.4.3)
- '@walletconnect/window-getters': 1.0.1
- es-toolkit: 1.39.3
- events: 3.3.0
- uint8arrays: 3.1.1
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - ioredis
- - typescript
- - uploadthing
- - utf-8-validate
- - zod
- '@walletconnect/core@2.23.9(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@walletconnect/heartbeat': 1.2.2
- '@walletconnect/jsonrpc-provider': 1.0.14
- '@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/jsonrpc-ws-connection': 1.0.16
- '@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 3.0.2
- '@walletconnect/relay-api': 1.0.11
- '@walletconnect/relay-auth': 1.1.0
- '@walletconnect/safe-json': 1.0.2
- '@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.23.9
- '@walletconnect/utils': 2.23.9(typescript@5.9.3)(zod@4.4.3)
- '@walletconnect/window-getters': 1.0.1
- es-toolkit: 1.44.0
- events: 3.3.0
- uint8arrays: 3.1.1
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - ioredis
- - typescript
- - uploadthing
- - utf-8-validate
- - zod
- '@walletconnect/environment@1.0.1':
- dependencies:
- tslib: 1.14.1
- '@walletconnect/ethereum-provider@2.23.9(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)':
- dependencies:
- '@reown/appkit': 1.8.17-wc-circular-dependencies-fix.0(@types/react@19.2.15)(react@18.3.1)(typescript@5.9.3)(use-sync-external-store@1.2.0(react@18.3.1))(zod@4.4.3)
- '@walletconnect/jsonrpc-http-connection': 1.0.8
- '@walletconnect/jsonrpc-provider': 1.0.14
- '@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 3.0.2
- '@walletconnect/sign-client': 2.23.9(typescript@5.9.3)(zod@4.4.3)
- '@walletconnect/types': 2.23.9
- '@walletconnect/universal-provider': 2.23.9(typescript@5.9.3)(zod@4.4.3)
- '@walletconnect/utils': 2.23.9(typescript@5.9.3)(zod@4.4.3)
- events: 3.3.0
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@types/react'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - debug
- - encoding
- - fastestsmallesttextencoderdecoder
- - immer
- - ioredis
- - react
- - typescript
- - uploadthing
- - use-sync-external-store
- - utf-8-validate
- - zod
- '@walletconnect/events@1.0.1':
- dependencies:
- keyvaluestorage-interface: 1.0.0
- tslib: 1.14.1
- '@walletconnect/heartbeat@1.2.2':
- dependencies:
- '@walletconnect/events': 1.0.1
- '@walletconnect/time': 1.0.2
- events: 3.3.0
- '@walletconnect/jsonrpc-http-connection@1.0.8':
- dependencies:
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/safe-json': 1.0.2
- cross-fetch: 3.2.0
- events: 3.3.0
- transitivePeerDependencies:
- - encoding
- '@walletconnect/jsonrpc-provider@1.0.14':
- dependencies:
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/safe-json': 1.0.2
- events: 3.3.0
- '@walletconnect/jsonrpc-types@1.0.4':
- dependencies:
- events: 3.3.0
- keyvaluestorage-interface: 1.0.0
- '@walletconnect/jsonrpc-utils@1.0.8':
- dependencies:
- '@walletconnect/environment': 1.0.1
- '@walletconnect/jsonrpc-types': 1.0.4
- tslib: 1.14.1
- '@walletconnect/jsonrpc-ws-connection@1.0.16':
- dependencies:
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/safe-json': 1.0.2
- events: 3.3.0
- ws: 7.5.11
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- '@walletconnect/keyvaluestorage@1.1.1':
- dependencies:
- '@walletconnect/safe-json': 1.0.2
- idb-keyval: 6.2.4
- unstorage: 1.17.5(idb-keyval@6.2.4)
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - db0
- - ioredis
- - uploadthing
- '@walletconnect/logger@3.0.2':
- dependencies:
- '@walletconnect/safe-json': 1.0.2
- pino: 10.0.0
- '@walletconnect/modal-core@2.7.0(@types/react@19.2.15)(react@18.3.1)':
- dependencies:
- valtio: 1.11.2(@types/react@19.2.15)(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - react
- '@walletconnect/modal-ui@2.7.0(@types/react@19.2.15)(react@18.3.1)':
- dependencies:
- '@walletconnect/modal-core': 2.7.0(@types/react@19.2.15)(react@18.3.1)
- lit: 2.8.0
- motion: 10.16.2
- qrcode: 1.5.3
- transitivePeerDependencies:
- - '@types/react'
- - react
- '@walletconnect/modal@2.7.0(@types/react@19.2.15)(react@18.3.1)':
- dependencies:
- '@walletconnect/modal-core': 2.7.0(@types/react@19.2.15)(react@18.3.1)
- '@walletconnect/modal-ui': 2.7.0(@types/react@19.2.15)(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - react
- '@walletconnect/relay-api@1.0.11':
- dependencies:
- '@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/relay-auth@1.1.0':
- dependencies:
- '@noble/curves': 1.8.0
- '@noble/hashes': 1.7.0
- '@walletconnect/safe-json': 1.0.2
- '@walletconnect/time': 1.0.2
- uint8arrays: 3.1.1
- '@walletconnect/safe-json@1.0.2':
- dependencies:
- tslib: 1.14.1
- '@walletconnect/sign-client@2.23.2(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@walletconnect/core': 2.23.2(typescript@5.9.3)(zod@4.4.3)
- '@walletconnect/events': 1.0.1
- '@walletconnect/heartbeat': 1.2.2
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/logger': 3.0.2
- '@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.23.2
- '@walletconnect/utils': 2.23.2(typescript@5.9.3)(zod@4.4.3)
- events: 3.3.0
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - ioredis
- - typescript
- - uploadthing
- - utf-8-validate
- - zod
- '@walletconnect/sign-client@2.23.9(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@walletconnect/core': 2.23.9(typescript@5.9.3)(zod@4.4.3)
- '@walletconnect/events': 1.0.1
- '@walletconnect/heartbeat': 1.2.2
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/logger': 3.0.2
- '@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.23.9
- '@walletconnect/utils': 2.23.9(typescript@5.9.3)(zod@4.4.3)
- events: 3.3.0
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - ioredis
- - typescript
- - uploadthing
- - utf-8-validate
- - zod
- '@walletconnect/time@1.0.2':
- dependencies:
- tslib: 1.14.1
- '@walletconnect/types@2.23.2':
- dependencies:
- '@walletconnect/events': 1.0.1
- '@walletconnect/heartbeat': 1.2.2
- '@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 3.0.2
- events: 3.3.0
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - db0
- - ioredis
- - uploadthing
- '@walletconnect/types@2.23.9':
- dependencies:
- '@walletconnect/events': 1.0.1
- '@walletconnect/heartbeat': 1.2.2
- '@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 3.0.2
- events: 3.3.0
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - db0
- - ioredis
- - uploadthing
- '@walletconnect/universal-provider@2.23.2(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@walletconnect/events': 1.0.1
- '@walletconnect/jsonrpc-http-connection': 1.0.8
- '@walletconnect/jsonrpc-provider': 1.0.14
- '@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 3.0.2
- '@walletconnect/sign-client': 2.23.2(typescript@5.9.3)(zod@4.4.3)
- '@walletconnect/types': 2.23.2
- '@walletconnect/utils': 2.23.2(typescript@5.9.3)(zod@4.4.3)
- es-toolkit: 1.39.3
- events: 3.3.0
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - encoding
- - ioredis
- - typescript
- - uploadthing
- - utf-8-validate
- - zod
- '@walletconnect/universal-provider@2.23.9(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@walletconnect/events': 1.0.1
- '@walletconnect/jsonrpc-http-connection': 1.0.8
- '@walletconnect/jsonrpc-provider': 1.0.14
- '@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 3.0.2
- '@walletconnect/sign-client': 2.23.9(typescript@5.9.3)(zod@4.4.3)
- '@walletconnect/types': 2.23.9
- '@walletconnect/utils': 2.23.9(typescript@5.9.3)(zod@4.4.3)
- es-toolkit: 1.44.0
- events: 3.3.0
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - bufferutil
- - db0
- - encoding
- - ioredis
- - typescript
- - uploadthing
- - utf-8-validate
- - zod
- '@walletconnect/utils@2.23.2(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@msgpack/msgpack': 3.1.2
- '@noble/ciphers': 1.3.0
- '@noble/curves': 1.9.7
- '@noble/hashes': 1.8.0
- '@scure/base': 1.2.6
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 3.0.2
- '@walletconnect/relay-api': 1.0.11
- '@walletconnect/relay-auth': 1.1.0
- '@walletconnect/safe-json': 1.0.2
- '@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.23.2
- '@walletconnect/window-getters': 1.0.1
- '@walletconnect/window-metadata': 1.0.1
- blakejs: 1.2.1
- bs58: 6.0.0
- detect-browser: 5.3.0
- ox: 0.9.3(typescript@5.9.3)(zod@4.4.3)
- uint8arrays: 3.1.1
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - db0
- - ioredis
- - typescript
- - uploadthing
- - zod
- '@walletconnect/utils@2.23.9(typescript@5.9.3)(zod@4.4.3)':
- dependencies:
- '@msgpack/msgpack': 3.1.3
- '@noble/ciphers': 1.3.0
- '@noble/curves': 1.9.7
- '@noble/hashes': 1.8.0
- '@scure/base': 1.2.6
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 3.0.2
- '@walletconnect/relay-api': 1.0.11
- '@walletconnect/relay-auth': 1.1.0
- '@walletconnect/safe-json': 1.0.2
- '@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.23.9
- '@walletconnect/window-getters': 1.0.1
- '@walletconnect/window-metadata': 1.0.1
- blakejs: 1.2.1
- detect-browser: 5.3.0
- ox: 0.9.3(typescript@5.9.3)(zod@4.4.3)
- uint8arrays: 3.1.1
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - db0
- - ioredis
- - typescript
- - uploadthing
- - zod
- '@walletconnect/window-getters@1.0.1':
- dependencies:
- tslib: 1.14.1
- '@walletconnect/window-metadata@1.0.1':
- dependencies:
- '@walletconnect/window-getters': 1.0.1
- tslib: 1.14.1
- abitype@1.0.6(typescript@5.9.3)(zod@3.25.76):
- optionalDependencies:
- typescript: 5.9.3
- zod: 3.25.76
- optional: true
- abitype@1.2.3(typescript@5.9.3)(zod@3.22.4):
- optionalDependencies:
- typescript: 5.9.3
- zod: 3.22.4
- abitype@1.2.3(typescript@5.9.3)(zod@3.25.76):
- optionalDependencies:
- typescript: 5.9.3
- zod: 3.25.76
- optional: true
- abitype@1.2.3(typescript@5.9.3)(zod@4.4.3):
- optionalDependencies:
- typescript: 5.9.3
- zod: 4.4.3
- abitype@1.2.4(typescript@5.9.3)(zod@4.4.3):
- optionalDependencies:
- typescript: 5.9.3
- zod: 4.4.3
- acorn@8.16.0:
- optional: true
- aes-js@4.0.0-beta.5: {}
- alien-signals@1.0.13: {}
- ansi-regex@5.0.1: {}
- ansi-styles@4.3.0:
- dependencies:
- color-convert: 2.0.1
- anymatch@3.1.3:
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.2
- asynckit@0.4.0: {}
- atomic-sleep@1.0.0: {}
- axios-retry@4.5.0(axios@1.16.0):
- dependencies:
- axios: 1.16.0
- is-retry-allowed: 2.2.0
- optional: true
- axios@1.15.0:
- dependencies:
- follow-redirects: 1.16.0
- form-data: 4.0.5
- proxy-from-env: 2.1.0
- transitivePeerDependencies:
- - debug
- axios@1.16.0:
- dependencies:
- follow-redirects: 1.16.0
- form-data: 4.0.5
- proxy-from-env: 2.1.0
- transitivePeerDependencies:
- - debug
- balanced-match@1.0.2: {}
- base-x@5.0.1: {}
- base64-js@1.5.1: {}
- big.js@6.2.2: {}
- bignumber.js@9.1.2: {}
- birpc@2.9.0: {}
- blakejs@1.2.1: {}
- brace-expansion@2.1.0:
- dependencies:
- balanced-match: 1.0.2
- bs58@6.0.0:
- dependencies:
- base-x: 5.0.1
- buffer@6.0.3:
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
- c12@3.3.4:
- dependencies:
- chokidar: 5.0.0
- confbox: 0.2.4
- defu: 6.1.7
- dotenv: 17.4.2
- exsolve: 1.0.8
- giget: 3.2.0
- jiti: 2.7.0
- ohash: 2.0.11
- pathe: 2.0.3
- perfect-debounce: 2.1.0
- pkg-types: 2.3.1
- rc9: 3.0.1
- optional: true
- call-bind-apply-helpers@1.0.2:
- dependencies:
- es-errors: 1.3.0
- function-bind: 1.1.2
- camelcase@5.3.1: {}
- chalk@5.6.2:
- optional: true
- charenc@0.0.2:
- optional: true
- chokidar@5.0.0:
- dependencies:
- readdirp: 5.0.0
- citty@0.1.6:
- dependencies:
- consola: 3.4.2
- optional: true
- cliui@6.0.0:
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 6.2.0
- clsx@1.2.1:
- optional: true
- color-convert@2.0.1:
- dependencies:
- color-name: 1.1.4
- color-name@1.1.4: {}
- combined-stream@1.0.8:
- dependencies:
- delayed-stream: 1.0.0
- commander@14.0.2:
- optional: true
- confbox@0.1.8:
- optional: true
- confbox@0.2.4:
- optional: true
- consola@3.4.2:
- optional: true
- cookie-es@1.2.3: {}
- copy-anything@4.0.5:
- dependencies:
- is-what: 5.5.0
- cross-fetch@3.2.0:
- dependencies:
- node-fetch: 2.7.0
- transitivePeerDependencies:
- - encoding
- crossws@0.3.5:
- dependencies:
- uncrypto: 0.1.3
- crypt@0.0.2:
- optional: true
- csstype@3.2.3: {}
- dayjs@1.11.13: {}
- dayjs@1.11.20: {}
- de-indent@1.0.2: {}
- decamelize@1.2.0: {}
- defu@6.1.7: {}
- delayed-stream@1.0.0: {}
- destr@2.0.5: {}
- detect-browser@5.3.0: {}
- dijkstrajs@1.0.3: {}
- dotenv@17.4.2:
- optional: true
- dunder-proto@1.0.1:
- dependencies:
- call-bind-apply-helpers: 1.0.2
- es-errors: 1.3.0
- gopd: 1.2.0
- emoji-regex@8.0.0: {}
- encode-utf8@1.0.3: {}
- entities@7.0.1: {}
- errx@0.1.0:
- optional: true
- es-define-property@1.0.1: {}
- es-errors@1.3.0: {}
- es-object-atoms@1.1.1:
- dependencies:
- es-errors: 1.3.0
- es-set-tostringtag@2.1.0:
- dependencies:
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- has-tostringtag: 1.0.2
- hasown: 2.0.3
- es-toolkit@1.39.3: {}
- es-toolkit@1.44.0: {}
- esbuild@0.21.5:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.21.5
- '@esbuild/android-arm': 0.21.5
- '@esbuild/android-arm64': 0.21.5
- '@esbuild/android-x64': 0.21.5
- '@esbuild/darwin-arm64': 0.21.5
- '@esbuild/darwin-x64': 0.21.5
- '@esbuild/freebsd-arm64': 0.21.5
- '@esbuild/freebsd-x64': 0.21.5
- '@esbuild/linux-arm': 0.21.5
- '@esbuild/linux-arm64': 0.21.5
- '@esbuild/linux-ia32': 0.21.5
- '@esbuild/linux-loong64': 0.21.5
- '@esbuild/linux-mips64el': 0.21.5
- '@esbuild/linux-ppc64': 0.21.5
- '@esbuild/linux-riscv64': 0.21.5
- '@esbuild/linux-s390x': 0.21.5
- '@esbuild/linux-x64': 0.21.5
- '@esbuild/netbsd-x64': 0.21.5
- '@esbuild/openbsd-x64': 0.21.5
- '@esbuild/sunos-x64': 0.21.5
- '@esbuild/win32-arm64': 0.21.5
- '@esbuild/win32-ia32': 0.21.5
- '@esbuild/win32-x64': 0.21.5
- estree-walker@2.0.2: {}
- estree-walker@3.0.3:
- dependencies:
- '@types/estree': 1.0.9
- optional: true
- ethereum-cryptography@2.2.1:
- dependencies:
- '@noble/curves': 1.4.2
- '@noble/hashes': 1.4.0
- '@scure/bip32': 1.4.0
- '@scure/bip39': 1.3.0
- ethers@6.13.5:
- dependencies:
- '@adraffy/ens-normalize': 1.10.1
- '@noble/curves': 1.2.0
- '@noble/hashes': 1.3.2
- '@types/node': 22.7.5
- aes-js: 4.0.0-beta.5
- tslib: 2.7.0
- ws: 8.17.1
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- eventemitter3@5.0.1: {}
- events@3.3.0: {}
- exsolve@1.0.8:
- optional: true
- fancy-canvas@2.1.0: {}
- fdir@6.5.0(picomatch@4.0.4):
- optionalDependencies:
- picomatch: 4.0.4
- optional: true
- find-up@4.1.0:
- dependencies:
- locate-path: 5.0.0
- path-exists: 4.0.0
- follow-redirects@1.16.0: {}
- form-data@4.0.5:
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- es-set-tostringtag: 2.1.0
- hasown: 2.0.3
- mime-types: 2.1.35
- framesync@6.1.2:
- dependencies:
- tslib: 2.4.0
- fsevents@2.3.3:
- optional: true
- function-bind@1.1.2: {}
- get-caller-file@2.0.5: {}
- get-intrinsic@1.3.0:
- dependencies:
- call-bind-apply-helpers: 1.0.2
- es-define-property: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- function-bind: 1.1.2
- get-proto: 1.0.1
- gopd: 1.2.0
- has-symbols: 1.1.0
- hasown: 2.0.3
- math-intrinsics: 1.1.0
- get-proto@1.0.1:
- dependencies:
- dunder-proto: 1.0.1
- es-object-atoms: 1.1.1
- giget@3.2.0:
- optional: true
- google-protobuf@3.21.4: {}
- gopd@1.2.0: {}
- h3@1.15.11:
- dependencies:
- cookie-es: 1.2.3
- crossws: 0.3.5
- defu: 6.1.7
- destr: 2.0.5
- iron-webcrypto: 1.2.1
- node-mock-http: 1.0.4
- radix3: 1.1.2
- ufo: 1.6.4
- uncrypto: 0.1.3
- has-symbols@1.1.0: {}
- has-tostringtag@1.0.2:
- dependencies:
- has-symbols: 1.1.0
- hasown@2.0.3:
- dependencies:
- function-bind: 1.1.2
- he@1.2.0: {}
- hey-listen@1.0.8: {}
- hookable@5.5.3: {}
- idb-keyval@6.2.1:
- optional: true
- idb-keyval@6.2.4: {}
- ieee754@1.2.1: {}
- ignore@7.0.5:
- optional: true
- iron-webcrypto@1.2.1: {}
- is-buffer@1.1.6:
- optional: true
- is-fullwidth-code-point@3.0.0: {}
- is-retry-allowed@2.2.0:
- optional: true
- is-what@5.5.0: {}
- isows@1.0.7(ws@8.20.1):
- dependencies:
- ws: 8.20.1
- jiti@2.7.0:
- optional: true
- jose@6.2.3:
- optional: true
- js-tokens@4.0.0: {}
- keyvaluestorage-interface@1.0.0: {}
- klinecharts@10.0.0-beta1: {}
- klona@2.0.6:
- optional: true
- knitwork@1.3.0:
- optional: true
- lightweight-charts@5.2.0:
- dependencies:
- fancy-canvas: 2.1.0
- lit-element@3.3.3:
- dependencies:
- '@lit-labs/ssr-dom-shim': 1.6.0
- '@lit/reactive-element': 1.6.3
- lit-html: 2.8.0
- lit-element@4.2.2:
- dependencies:
- '@lit-labs/ssr-dom-shim': 1.6.0
- '@lit/reactive-element': 2.1.2
- lit-html: 3.3.3
- lit-html@2.8.0:
- dependencies:
- '@types/trusted-types': 2.0.7
- lit-html@3.3.3:
- dependencies:
- '@types/trusted-types': 2.0.7
- lit@2.8.0:
- dependencies:
- '@lit/reactive-element': 1.6.3
- lit-element: 3.3.3
- lit-html: 2.8.0
- lit@3.3.0:
- dependencies:
- '@lit/reactive-element': 2.1.2
- lit-element: 4.2.2
- lit-html: 3.3.3
- locate-path@5.0.0:
- dependencies:
- p-locate: 4.1.0
- loose-envify@1.4.0:
- dependencies:
- js-tokens: 4.0.0
- lru-cache@11.5.0: {}
- magic-string@0.30.21:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
- math-intrinsics@1.1.0: {}
- md5@2.3.0:
- dependencies:
- charenc: 0.0.2
- crypt: 0.0.2
- is-buffer: 1.1.6
- optional: true
- mime-db@1.52.0: {}
- mime-types@2.1.35:
- dependencies:
- mime-db: 1.52.0
- minimatch@9.0.9:
- dependencies:
- brace-expansion: 2.1.0
- mitt@3.0.1: {}
- mlly@1.8.2:
- dependencies:
- acorn: 8.16.0
- pathe: 2.0.3
- pkg-types: 1.3.1
- ufo: 1.6.4
- optional: true
- motion@10.16.2:
- dependencies:
- '@motionone/animation': 10.18.0
- '@motionone/dom': 10.18.0
- '@motionone/svelte': 10.16.4
- '@motionone/types': 10.17.1
- '@motionone/utils': 10.18.0
- '@motionone/vue': 10.16.4
- muggle-string@0.4.1: {}
- multiformats@9.9.0: {}
- nanoid@3.3.12: {}
- node-fetch-native@1.6.7: {}
- node-fetch@2.7.0:
- dependencies:
- whatwg-url: 5.0.0
- node-mock-http@1.0.4: {}
- normalize-path@3.0.0: {}
- ofetch@1.5.1:
- dependencies:
- destr: 2.0.5
- node-fetch-native: 1.6.7
- ufo: 1.6.4
- ohash@2.0.11:
- optional: true
- on-exit-leak-free@2.1.2: {}
- ox@0.14.25(typescript@5.9.3)(zod@3.22.4):
- dependencies:
- '@adraffy/ens-normalize': 1.11.1
- '@noble/ciphers': 1.3.0
- '@noble/curves': 1.9.1
- '@noble/hashes': 1.8.0
- '@scure/bip32': 1.7.0
- '@scure/bip39': 1.6.0
- abitype: 1.2.3(typescript@5.9.3)(zod@3.22.4)
- eventemitter3: 5.0.1
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - zod
- ox@0.14.25(typescript@5.9.3)(zod@3.25.76):
- dependencies:
- '@adraffy/ens-normalize': 1.11.1
- '@noble/ciphers': 1.3.0
- '@noble/curves': 1.9.1
- '@noble/hashes': 1.8.0
- '@scure/bip32': 1.7.0
- '@scure/bip39': 1.6.0
- abitype: 1.2.3(typescript@5.9.3)(zod@3.25.76)
- eventemitter3: 5.0.1
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - zod
- optional: true
- ox@0.14.25(typescript@5.9.3)(zod@4.4.3):
- dependencies:
- '@adraffy/ens-normalize': 1.11.1
- '@noble/ciphers': 1.3.0
- '@noble/curves': 1.9.1
- '@noble/hashes': 1.8.0
- '@scure/bip32': 1.7.0
- '@scure/bip39': 1.6.0
- abitype: 1.2.3(typescript@5.9.3)(zod@4.4.3)
- eventemitter3: 5.0.1
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - zod
- ox@0.6.9(typescript@5.9.3)(zod@4.4.3):
- dependencies:
- '@adraffy/ens-normalize': 1.11.1
- '@noble/curves': 1.9.7
- '@noble/hashes': 1.8.0
- '@scure/bip32': 1.7.0
- '@scure/bip39': 1.6.0
- abitype: 1.2.4(typescript@5.9.3)(zod@4.4.3)
- eventemitter3: 5.0.1
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - zod
- optional: true
- ox@0.9.3(typescript@5.9.3)(zod@4.4.3):
- dependencies:
- '@adraffy/ens-normalize': 1.11.1
- '@noble/ciphers': 1.3.0
- '@noble/curves': 1.9.1
- '@noble/hashes': 1.8.0
- '@scure/bip32': 1.7.0
- '@scure/bip39': 1.6.0
- abitype: 1.2.4(typescript@5.9.3)(zod@4.4.3)
- eventemitter3: 5.0.1
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - zod
- p-limit@2.3.0:
- dependencies:
- p-try: 2.2.0
- p-locate@4.1.0:
- dependencies:
- p-limit: 2.3.0
- p-try@2.2.0: {}
- path-browserify@1.0.1: {}
- path-exists@4.0.0: {}
- pathe@2.0.3:
- optional: true
- perfect-debounce@1.0.0: {}
- perfect-debounce@2.1.0:
- optional: true
- picocolors@1.1.1: {}
- picomatch@2.3.2: {}
- picomatch@4.0.4:
- optional: true
- pinia@2.3.1(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3)):
- dependencies:
- '@vue/devtools-api': 6.6.4
- vue: 3.5.34(typescript@5.9.3)
- vue-demi: 0.14.10(vue@3.5.34(typescript@5.9.3))
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - '@vue/composition-api'
- pino-abstract-transport@2.0.0:
- dependencies:
- split2: 4.2.0
- pino-std-serializers@7.1.0: {}
- pino@10.0.0:
- dependencies:
- atomic-sleep: 1.0.0
- on-exit-leak-free: 2.1.2
- pino-abstract-transport: 2.0.0
- pino-std-serializers: 7.1.0
- process-warning: 5.0.0
- quick-format-unescaped: 4.0.4
- real-require: 0.2.0
- safe-stable-stringify: 2.5.0
- slow-redact: 0.3.2
- sonic-boom: 4.2.1
- thread-stream: 3.1.0
- pkg-types@1.3.1:
- dependencies:
- confbox: 0.1.8
- mlly: 1.8.2
- pathe: 2.0.3
- optional: true
- pkg-types@2.3.1:
- dependencies:
- confbox: 0.2.4
- exsolve: 1.0.8
- pathe: 2.0.3
- optional: true
- pngjs@5.0.0: {}
- popmotion@11.0.5:
- dependencies:
- framesync: 6.1.2
- hey-listen: 1.0.8
- style-value-types: 5.1.2
- tslib: 2.4.0
- postcss@8.5.14:
- dependencies:
- nanoid: 3.3.12
- picocolors: 1.1.1
- source-map-js: 1.2.1
- preact@10.24.2:
- optional: true
- process-warning@5.0.0: {}
- proxy-compare@2.5.1: {}
- proxy-compare@3.0.1: {}
- proxy-from-env@2.1.0: {}
- qrcode@1.5.3:
- dependencies:
- dijkstrajs: 1.0.3
- encode-utf8: 1.0.3
- pngjs: 5.0.0
- yargs: 15.4.1
- qrcode@1.5.4:
- dependencies:
- dijkstrajs: 1.0.3
- pngjs: 5.0.0
- yargs: 15.4.1
- quick-format-unescaped@4.0.4: {}
- radix3@1.1.2: {}
- rc9@3.0.1:
- dependencies:
- defu: 6.1.7
- destr: 2.0.5
- optional: true
- react@18.3.1:
- dependencies:
- loose-envify: 1.4.0
- readdirp@5.0.0: {}
- real-require@0.2.0: {}
- regenerator-runtime@0.14.1: {}
- require-directory@2.1.1: {}
- require-main-filename@2.0.0: {}
- rfdc@1.4.1: {}
- rollup@4.60.3:
- dependencies:
- '@types/estree': 1.0.8
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.60.3
- '@rollup/rollup-android-arm64': 4.60.3
- '@rollup/rollup-darwin-arm64': 4.60.3
- '@rollup/rollup-darwin-x64': 4.60.3
- '@rollup/rollup-freebsd-arm64': 4.60.3
- '@rollup/rollup-freebsd-x64': 4.60.3
- '@rollup/rollup-linux-arm-gnueabihf': 4.60.3
- '@rollup/rollup-linux-arm-musleabihf': 4.60.3
- '@rollup/rollup-linux-arm64-gnu': 4.60.3
- '@rollup/rollup-linux-arm64-musl': 4.60.3
- '@rollup/rollup-linux-loong64-gnu': 4.60.3
- '@rollup/rollup-linux-loong64-musl': 4.60.3
- '@rollup/rollup-linux-ppc64-gnu': 4.60.3
- '@rollup/rollup-linux-ppc64-musl': 4.60.3
- '@rollup/rollup-linux-riscv64-gnu': 4.60.3
- '@rollup/rollup-linux-riscv64-musl': 4.60.3
- '@rollup/rollup-linux-s390x-gnu': 4.60.3
- '@rollup/rollup-linux-x64-gnu': 4.60.3
- '@rollup/rollup-linux-x64-musl': 4.60.3
- '@rollup/rollup-openbsd-x64': 4.60.3
- '@rollup/rollup-openharmony-arm64': 4.60.3
- '@rollup/rollup-win32-arm64-msvc': 4.60.3
- '@rollup/rollup-win32-ia32-msvc': 4.60.3
- '@rollup/rollup-win32-x64-gnu': 4.60.3
- '@rollup/rollup-win32-x64-msvc': 4.60.3
- fsevents: 2.3.3
- safe-stable-stringify@2.5.0: {}
- scule@1.3.0:
- optional: true
- semver@7.7.1: {}
- semver@7.7.2: {}
- semver@7.7.4:
- optional: true
- set-blocking@2.0.0: {}
- slow-redact@0.3.2: {}
- sonic-boom@4.2.1:
- dependencies:
- atomic-sleep: 1.0.0
- source-map-js@1.2.1: {}
- speakingurl@14.0.1: {}
- split2@4.2.0: {}
- string-width@4.2.3:
- dependencies:
- emoji-regex: 8.0.0
- is-fullwidth-code-point: 3.0.0
- strip-ansi: 6.0.1
- strip-ansi@6.0.1:
- dependencies:
- ansi-regex: 5.0.1
- style-value-types@5.1.2:
- dependencies:
- hey-listen: 1.0.8
- tslib: 2.4.0
- superjson@2.2.6:
- dependencies:
- copy-anything: 4.0.5
- thread-stream@3.1.0:
- dependencies:
- real-require: 0.2.0
- tinyglobby@0.2.16:
- dependencies:
- fdir: 6.5.0(picomatch@4.0.4)
- picomatch: 4.0.4
- optional: true
- tr46@0.0.3: {}
- tronweb@6.3.0:
- dependencies:
- '@babel/runtime': 7.26.10
- axios: 1.15.0
- bignumber.js: 9.1.2
- ethereum-cryptography: 2.2.1
- ethers: 6.13.5
- eventemitter3: 5.0.1
- google-protobuf: 3.21.4
- semver: 7.7.1
- validator: 13.15.23
- transitivePeerDependencies:
- - bufferutil
- - debug
- - utf-8-validate
- tslib@1.14.1: {}
- tslib@2.4.0: {}
- tslib@2.7.0: {}
- type-fest@4.41.0: {}
- typescript@5.9.3: {}
- ufo@1.6.4: {}
- uint8arrays@3.1.1:
- dependencies:
- multiformats: 9.9.0
- uncrypto@0.1.3: {}
- unctx@2.5.0:
- dependencies:
- acorn: 8.16.0
- estree-walker: 3.0.3
- magic-string: 0.30.21
- unplugin: 2.3.11
- optional: true
- undici-types@6.19.8: {}
- undici-types@7.19.2: {}
- unplugin@2.3.11:
- dependencies:
- '@jridgewell/remapping': 2.3.5
- acorn: 8.16.0
- picomatch: 4.0.4
- webpack-virtual-modules: 0.6.2
- optional: true
- unstorage@1.17.5(idb-keyval@6.2.4):
- dependencies:
- anymatch: 3.1.3
- chokidar: 5.0.0
- destr: 2.0.5
- h3: 1.15.11
- lru-cache: 11.5.0
- node-fetch-native: 1.6.7
- ofetch: 1.5.1
- ufo: 1.6.4
- optionalDependencies:
- idb-keyval: 6.2.4
- untyped@2.0.0:
- dependencies:
- citty: 0.1.6
- defu: 6.1.7
- jiti: 2.7.0
- knitwork: 1.3.0
- scule: 1.3.0
- optional: true
- use-sync-external-store@1.2.0(react@18.3.1):
- dependencies:
- react: 18.3.1
- validator@13.15.23: {}
- valtio@1.11.2(@types/react@19.2.15)(react@18.3.1):
- dependencies:
- proxy-compare: 2.5.1
- use-sync-external-store: 1.2.0(react@18.3.1)
- optionalDependencies:
- '@types/react': 19.2.15
- react: 18.3.1
- valtio@2.1.7(@types/react@19.2.15)(react@18.3.1):
- dependencies:
- proxy-compare: 3.0.1
- optionalDependencies:
- '@types/react': 19.2.15
- react: 18.3.1
- vee-validate@4.15.1(vue@3.5.34(typescript@5.9.3)):
- dependencies:
- '@vue/devtools-api': 7.7.9
- type-fest: 4.41.0
- vue: 3.5.34(typescript@5.9.3)
- viem@2.51.2(typescript@5.9.3)(zod@3.22.4):
- dependencies:
- '@noble/curves': 1.9.1
- '@noble/hashes': 1.8.0
- '@scure/bip32': 1.7.0
- '@scure/bip39': 1.6.0
- abitype: 1.2.3(typescript@5.9.3)(zod@3.22.4)
- isows: 1.0.7(ws@8.20.1)
- ox: 0.14.25(typescript@5.9.3)(zod@3.22.4)
- ws: 8.20.1
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- - zod
- viem@2.51.2(typescript@5.9.3)(zod@3.25.76):
- dependencies:
- '@noble/curves': 1.9.1
- '@noble/hashes': 1.8.0
- '@scure/bip32': 1.7.0
- '@scure/bip39': 1.6.0
- abitype: 1.2.3(typescript@5.9.3)(zod@3.25.76)
- isows: 1.0.7(ws@8.20.1)
- ox: 0.14.25(typescript@5.9.3)(zod@3.25.76)
- ws: 8.20.1
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- - zod
- optional: true
- viem@2.51.2(typescript@5.9.3)(zod@4.4.3):
- dependencies:
- '@noble/curves': 1.9.1
- '@noble/hashes': 1.8.0
- '@scure/bip32': 1.7.0
- '@scure/bip39': 1.6.0
- abitype: 1.2.3(typescript@5.9.3)(zod@4.4.3)
- isows: 1.0.7(ws@8.20.1)
- ox: 0.14.25(typescript@5.9.3)(zod@4.4.3)
- ws: 8.20.1
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- - zod
- vite@5.4.21(@types/node@25.6.2):
- dependencies:
- esbuild: 0.21.5
- postcss: 8.5.14
- rollup: 4.60.3
- optionalDependencies:
- '@types/node': 25.6.2
- fsevents: 2.3.3
- vscode-uri@3.1.0: {}
- vue-demi@0.14.10(vue@3.5.34(typescript@5.9.3)):
- dependencies:
- vue: 3.5.34(typescript@5.9.3)
- vue-i18n@11.4.4(vue@3.5.34(typescript@5.9.3)):
- dependencies:
- '@intlify/core-base': 11.4.4
- '@intlify/devtools-types': 11.4.4
- '@intlify/shared': 11.4.4
- '@vue/devtools-api': 6.6.4
- vue: 3.5.34(typescript@5.9.3)
- vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)):
- dependencies:
- '@vue/devtools-api': 6.6.4
- vue: 3.5.34(typescript@5.9.3)
- vue-tsc@2.2.12(typescript@5.9.3):
- dependencies:
- '@volar/typescript': 2.4.15
- '@vue/language-core': 2.2.12(typescript@5.9.3)
- typescript: 5.9.3
- vue@3.5.34(typescript@5.9.3):
- dependencies:
- '@vue/compiler-dom': 3.5.34
- '@vue/compiler-sfc': 3.5.34
- '@vue/runtime-dom': 3.5.34
- '@vue/server-renderer': 3.5.34(vue@3.5.34(typescript@5.9.3))
- '@vue/shared': 3.5.34
- optionalDependencies:
- typescript: 5.9.3
- webidl-conversions@3.0.1: {}
- webpack-virtual-modules@0.6.2:
- optional: true
- whatwg-url@5.0.0:
- dependencies:
- tr46: 0.0.3
- webidl-conversions: 3.0.1
- which-module@2.0.1: {}
- wrap-ansi@6.2.0:
- dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
- ws@7.5.11: {}
- ws@8.17.1: {}
- ws@8.20.1: {}
- ws@8.21.0:
- optional: true
- y18n@4.0.3: {}
- yargs-parser@18.1.3:
- dependencies:
- camelcase: 5.3.1
- decamelize: 1.2.0
- yargs@15.4.1:
- dependencies:
- cliui: 6.0.0
- decamelize: 1.2.0
- find-up: 4.1.0
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- require-main-filename: 2.0.0
- set-blocking: 2.0.0
- string-width: 4.2.3
- which-module: 2.0.1
- y18n: 4.0.3
- yargs-parser: 18.1.3
- zod@3.22.4: {}
- zod@3.25.76:
- optional: true
- zod@4.4.3: {}
- zustand@5.0.3(@types/react@19.2.15)(react@18.3.1)(use-sync-external-store@1.2.0(react@18.3.1)):
- optionalDependencies:
- '@types/react': 19.2.15
- react: 18.3.1
- use-sync-external-store: 1.2.0(react@18.3.1)
- optional: true
|