package-lock.json 199 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046
  1. {
  2. "name": "@wormhole-foundation/tests-rollback",
  3. "version": "0.0.1",
  4. "lockfileVersion": 2,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "@wormhole-foundation/tests-rollback",
  9. "version": "0.0.1",
  10. "dependencies": {
  11. "@certusone/wormhole-sdk": "^0.1.6",
  12. "@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
  13. "axios": "^0.24.0",
  14. "ethers": "^5.5.2"
  15. }
  16. },
  17. "node_modules/@babel/code-frame": {
  18. "version": "7.16.7",
  19. "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
  20. "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
  21. "dependencies": {
  22. "@babel/highlight": "^7.16.7"
  23. },
  24. "engines": {
  25. "node": ">=6.9.0"
  26. }
  27. },
  28. "node_modules/@babel/generator": {
  29. "version": "7.16.7",
  30. "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.7.tgz",
  31. "integrity": "sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==",
  32. "dependencies": {
  33. "@babel/types": "^7.16.7",
  34. "jsesc": "^2.5.1",
  35. "source-map": "^0.5.0"
  36. },
  37. "engines": {
  38. "node": ">=6.9.0"
  39. }
  40. },
  41. "node_modules/@babel/helper-annotate-as-pure": {
  42. "version": "7.16.7",
  43. "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz",
  44. "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==",
  45. "dependencies": {
  46. "@babel/types": "^7.16.7"
  47. },
  48. "engines": {
  49. "node": ">=6.9.0"
  50. }
  51. },
  52. "node_modules/@babel/helper-environment-visitor": {
  53. "version": "7.16.7",
  54. "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz",
  55. "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==",
  56. "dependencies": {
  57. "@babel/types": "^7.16.7"
  58. },
  59. "engines": {
  60. "node": ">=6.9.0"
  61. }
  62. },
  63. "node_modules/@babel/helper-function-name": {
  64. "version": "7.16.7",
  65. "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
  66. "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
  67. "dependencies": {
  68. "@babel/helper-get-function-arity": "^7.16.7",
  69. "@babel/template": "^7.16.7",
  70. "@babel/types": "^7.16.7"
  71. },
  72. "engines": {
  73. "node": ">=6.9.0"
  74. }
  75. },
  76. "node_modules/@babel/helper-get-function-arity": {
  77. "version": "7.16.7",
  78. "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
  79. "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
  80. "dependencies": {
  81. "@babel/types": "^7.16.7"
  82. },
  83. "engines": {
  84. "node": ">=6.9.0"
  85. }
  86. },
  87. "node_modules/@babel/helper-hoist-variables": {
  88. "version": "7.16.7",
  89. "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
  90. "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
  91. "dependencies": {
  92. "@babel/types": "^7.16.7"
  93. },
  94. "engines": {
  95. "node": ">=6.9.0"
  96. }
  97. },
  98. "node_modules/@babel/helper-module-imports": {
  99. "version": "7.16.7",
  100. "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
  101. "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
  102. "dependencies": {
  103. "@babel/types": "^7.16.7"
  104. },
  105. "engines": {
  106. "node": ">=6.9.0"
  107. }
  108. },
  109. "node_modules/@babel/helper-split-export-declaration": {
  110. "version": "7.16.7",
  111. "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
  112. "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
  113. "dependencies": {
  114. "@babel/types": "^7.16.7"
  115. },
  116. "engines": {
  117. "node": ">=6.9.0"
  118. }
  119. },
  120. "node_modules/@babel/helper-validator-identifier": {
  121. "version": "7.16.7",
  122. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
  123. "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
  124. "engines": {
  125. "node": ">=6.9.0"
  126. }
  127. },
  128. "node_modules/@babel/highlight": {
  129. "version": "7.16.7",
  130. "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
  131. "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
  132. "dependencies": {
  133. "@babel/helper-validator-identifier": "^7.16.7",
  134. "chalk": "^2.0.0",
  135. "js-tokens": "^4.0.0"
  136. },
  137. "engines": {
  138. "node": ">=6.9.0"
  139. }
  140. },
  141. "node_modules/@babel/parser": {
  142. "version": "7.16.7",
  143. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.7.tgz",
  144. "integrity": "sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==",
  145. "bin": {
  146. "parser": "bin/babel-parser.js"
  147. },
  148. "engines": {
  149. "node": ">=6.0.0"
  150. }
  151. },
  152. "node_modules/@babel/runtime": {
  153. "version": "7.16.7",
  154. "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz",
  155. "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==",
  156. "dependencies": {
  157. "regenerator-runtime": "^0.13.4"
  158. },
  159. "engines": {
  160. "node": ">=6.9.0"
  161. }
  162. },
  163. "node_modules/@babel/template": {
  164. "version": "7.16.7",
  165. "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
  166. "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
  167. "dependencies": {
  168. "@babel/code-frame": "^7.16.7",
  169. "@babel/parser": "^7.16.7",
  170. "@babel/types": "^7.16.7"
  171. },
  172. "engines": {
  173. "node": ">=6.9.0"
  174. }
  175. },
  176. "node_modules/@babel/traverse": {
  177. "version": "7.16.7",
  178. "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.7.tgz",
  179. "integrity": "sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==",
  180. "dependencies": {
  181. "@babel/code-frame": "^7.16.7",
  182. "@babel/generator": "^7.16.7",
  183. "@babel/helper-environment-visitor": "^7.16.7",
  184. "@babel/helper-function-name": "^7.16.7",
  185. "@babel/helper-hoist-variables": "^7.16.7",
  186. "@babel/helper-split-export-declaration": "^7.16.7",
  187. "@babel/parser": "^7.16.7",
  188. "@babel/types": "^7.16.7",
  189. "debug": "^4.1.0",
  190. "globals": "^11.1.0"
  191. },
  192. "engines": {
  193. "node": ">=6.9.0"
  194. }
  195. },
  196. "node_modules/@babel/types": {
  197. "version": "7.16.7",
  198. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz",
  199. "integrity": "sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==",
  200. "dependencies": {
  201. "@babel/helper-validator-identifier": "^7.16.7",
  202. "to-fast-properties": "^2.0.0"
  203. },
  204. "engines": {
  205. "node": ">=6.9.0"
  206. }
  207. },
  208. "node_modules/@certusone/wormhole-sdk": {
  209. "version": "0.1.6",
  210. "resolved": "https://registry.npmjs.org/@certusone/wormhole-sdk/-/wormhole-sdk-0.1.6.tgz",
  211. "integrity": "sha512-Q7EL7E8L7vjeoKK+g4mEqeC93/VGtdzPaW2p3ZEgZJJL4SymszIu8U+/TMUtUYPPbh7T/fE//5OgKw53USjX3w==",
  212. "dependencies": {
  213. "@improbable-eng/grpc-web": "^0.14.0",
  214. "@solana/spl-token": "^0.1.8",
  215. "@solana/web3.js": "^1.24.0",
  216. "@terra-money/terra.js": "^2.0.14",
  217. "@terra-money/wallet-provider": "^2.2.0",
  218. "axios": "^0.24.0",
  219. "bech32": "^2.0.0",
  220. "js-base64": "^3.6.1",
  221. "protobufjs": "^6.11.2",
  222. "rxjs": "^7.3.0"
  223. }
  224. },
  225. "node_modules/@emotion/is-prop-valid": {
  226. "version": "0.8.8",
  227. "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
  228. "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
  229. "dependencies": {
  230. "@emotion/memoize": "0.7.4"
  231. }
  232. },
  233. "node_modules/@emotion/memoize": {
  234. "version": "0.7.4",
  235. "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
  236. "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
  237. },
  238. "node_modules/@emotion/stylis": {
  239. "version": "0.8.5",
  240. "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
  241. "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
  242. },
  243. "node_modules/@emotion/unitless": {
  244. "version": "0.7.5",
  245. "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
  246. "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
  247. },
  248. "node_modules/@ethersproject/abi": {
  249. "version": "5.5.0",
  250. "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.5.0.tgz",
  251. "integrity": "sha512-loW7I4AohP5KycATvc0MgujU6JyCHPqHdeoo9z3Nr9xEiNioxa65ccdm1+fsoJhkuhdRtfcL8cfyGamz2AxZ5w==",
  252. "funding": [
  253. {
  254. "type": "individual",
  255. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  256. },
  257. {
  258. "type": "individual",
  259. "url": "https://www.buymeacoffee.com/ricmoo"
  260. }
  261. ],
  262. "dependencies": {
  263. "@ethersproject/address": "^5.5.0",
  264. "@ethersproject/bignumber": "^5.5.0",
  265. "@ethersproject/bytes": "^5.5.0",
  266. "@ethersproject/constants": "^5.5.0",
  267. "@ethersproject/hash": "^5.5.0",
  268. "@ethersproject/keccak256": "^5.5.0",
  269. "@ethersproject/logger": "^5.5.0",
  270. "@ethersproject/properties": "^5.5.0",
  271. "@ethersproject/strings": "^5.5.0"
  272. }
  273. },
  274. "node_modules/@ethersproject/abstract-provider": {
  275. "version": "5.5.1",
  276. "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.5.1.tgz",
  277. "integrity": "sha512-m+MA/ful6eKbxpr99xUYeRvLkfnlqzrF8SZ46d/xFB1A7ZVknYc/sXJG0RcufF52Qn2jeFj1hhcoQ7IXjNKUqg==",
  278. "funding": [
  279. {
  280. "type": "individual",
  281. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  282. },
  283. {
  284. "type": "individual",
  285. "url": "https://www.buymeacoffee.com/ricmoo"
  286. }
  287. ],
  288. "dependencies": {
  289. "@ethersproject/bignumber": "^5.5.0",
  290. "@ethersproject/bytes": "^5.5.0",
  291. "@ethersproject/logger": "^5.5.0",
  292. "@ethersproject/networks": "^5.5.0",
  293. "@ethersproject/properties": "^5.5.0",
  294. "@ethersproject/transactions": "^5.5.0",
  295. "@ethersproject/web": "^5.5.0"
  296. }
  297. },
  298. "node_modules/@ethersproject/abstract-signer": {
  299. "version": "5.5.0",
  300. "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.5.0.tgz",
  301. "integrity": "sha512-lj//7r250MXVLKI7sVarXAbZXbv9P50lgmJQGr2/is82EwEb8r7HrxsmMqAjTsztMYy7ohrIhGMIml+Gx4D3mA==",
  302. "funding": [
  303. {
  304. "type": "individual",
  305. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  306. },
  307. {
  308. "type": "individual",
  309. "url": "https://www.buymeacoffee.com/ricmoo"
  310. }
  311. ],
  312. "dependencies": {
  313. "@ethersproject/abstract-provider": "^5.5.0",
  314. "@ethersproject/bignumber": "^5.5.0",
  315. "@ethersproject/bytes": "^5.5.0",
  316. "@ethersproject/logger": "^5.5.0",
  317. "@ethersproject/properties": "^5.5.0"
  318. }
  319. },
  320. "node_modules/@ethersproject/address": {
  321. "version": "5.5.0",
  322. "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.5.0.tgz",
  323. "integrity": "sha512-l4Nj0eWlTUh6ro5IbPTgbpT4wRbdH5l8CQf7icF7sb/SI3Nhd9Y9HzhonTSTi6CefI0necIw7LJqQPopPLZyWw==",
  324. "funding": [
  325. {
  326. "type": "individual",
  327. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  328. },
  329. {
  330. "type": "individual",
  331. "url": "https://www.buymeacoffee.com/ricmoo"
  332. }
  333. ],
  334. "dependencies": {
  335. "@ethersproject/bignumber": "^5.5.0",
  336. "@ethersproject/bytes": "^5.5.0",
  337. "@ethersproject/keccak256": "^5.5.0",
  338. "@ethersproject/logger": "^5.5.0",
  339. "@ethersproject/rlp": "^5.5.0"
  340. }
  341. },
  342. "node_modules/@ethersproject/base64": {
  343. "version": "5.5.0",
  344. "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.5.0.tgz",
  345. "integrity": "sha512-tdayUKhU1ljrlHzEWbStXazDpsx4eg1dBXUSI6+mHlYklOXoXF6lZvw8tnD6oVaWfnMxAgRSKROg3cVKtCcppA==",
  346. "funding": [
  347. {
  348. "type": "individual",
  349. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  350. },
  351. {
  352. "type": "individual",
  353. "url": "https://www.buymeacoffee.com/ricmoo"
  354. }
  355. ],
  356. "dependencies": {
  357. "@ethersproject/bytes": "^5.5.0"
  358. }
  359. },
  360. "node_modules/@ethersproject/basex": {
  361. "version": "5.5.0",
  362. "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.5.0.tgz",
  363. "integrity": "sha512-ZIodwhHpVJ0Y3hUCfUucmxKsWQA5TMnavp5j/UOuDdzZWzJlRmuOjcTMIGgHCYuZmHt36BfiSyQPSRskPxbfaQ==",
  364. "funding": [
  365. {
  366. "type": "individual",
  367. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  368. },
  369. {
  370. "type": "individual",
  371. "url": "https://www.buymeacoffee.com/ricmoo"
  372. }
  373. ],
  374. "dependencies": {
  375. "@ethersproject/bytes": "^5.5.0",
  376. "@ethersproject/properties": "^5.5.0"
  377. }
  378. },
  379. "node_modules/@ethersproject/bignumber": {
  380. "version": "5.5.0",
  381. "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.5.0.tgz",
  382. "integrity": "sha512-6Xytlwvy6Rn3U3gKEc1vP7nR92frHkv6wtVr95LFR3jREXiCPzdWxKQ1cx4JGQBXxcguAwjA8murlYN2TSiEbg==",
  383. "funding": [
  384. {
  385. "type": "individual",
  386. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  387. },
  388. {
  389. "type": "individual",
  390. "url": "https://www.buymeacoffee.com/ricmoo"
  391. }
  392. ],
  393. "dependencies": {
  394. "@ethersproject/bytes": "^5.5.0",
  395. "@ethersproject/logger": "^5.5.0",
  396. "bn.js": "^4.11.9"
  397. }
  398. },
  399. "node_modules/@ethersproject/bignumber/node_modules/bn.js": {
  400. "version": "4.12.0",
  401. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
  402. "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
  403. },
  404. "node_modules/@ethersproject/bytes": {
  405. "version": "5.5.0",
  406. "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.5.0.tgz",
  407. "integrity": "sha512-ABvc7BHWhZU9PNM/tANm/Qx4ostPGadAuQzWTr3doklZOhDlmcBqclrQe/ZXUIj3K8wC28oYeuRa+A37tX9kog==",
  408. "funding": [
  409. {
  410. "type": "individual",
  411. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  412. },
  413. {
  414. "type": "individual",
  415. "url": "https://www.buymeacoffee.com/ricmoo"
  416. }
  417. ],
  418. "dependencies": {
  419. "@ethersproject/logger": "^5.5.0"
  420. }
  421. },
  422. "node_modules/@ethersproject/constants": {
  423. "version": "5.5.0",
  424. "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.5.0.tgz",
  425. "integrity": "sha512-2MsRRVChkvMWR+GyMGY4N1sAX9Mt3J9KykCsgUFd/1mwS0UH1qw+Bv9k1UJb3X3YJYFco9H20pjSlOIfCG5HYQ==",
  426. "funding": [
  427. {
  428. "type": "individual",
  429. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  430. },
  431. {
  432. "type": "individual",
  433. "url": "https://www.buymeacoffee.com/ricmoo"
  434. }
  435. ],
  436. "dependencies": {
  437. "@ethersproject/bignumber": "^5.5.0"
  438. }
  439. },
  440. "node_modules/@ethersproject/contracts": {
  441. "version": "5.5.0",
  442. "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.5.0.tgz",
  443. "integrity": "sha512-2viY7NzyvJkh+Ug17v7g3/IJC8HqZBDcOjYARZLdzRxrfGlRgmYgl6xPRKVbEzy1dWKw/iv7chDcS83pg6cLxg==",
  444. "funding": [
  445. {
  446. "type": "individual",
  447. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  448. },
  449. {
  450. "type": "individual",
  451. "url": "https://www.buymeacoffee.com/ricmoo"
  452. }
  453. ],
  454. "dependencies": {
  455. "@ethersproject/abi": "^5.5.0",
  456. "@ethersproject/abstract-provider": "^5.5.0",
  457. "@ethersproject/abstract-signer": "^5.5.0",
  458. "@ethersproject/address": "^5.5.0",
  459. "@ethersproject/bignumber": "^5.5.0",
  460. "@ethersproject/bytes": "^5.5.0",
  461. "@ethersproject/constants": "^5.5.0",
  462. "@ethersproject/logger": "^5.5.0",
  463. "@ethersproject/properties": "^5.5.0",
  464. "@ethersproject/transactions": "^5.5.0"
  465. }
  466. },
  467. "node_modules/@ethersproject/hash": {
  468. "version": "5.5.0",
  469. "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.5.0.tgz",
  470. "integrity": "sha512-dnGVpK1WtBjmnp3mUT0PlU2MpapnwWI0PibldQEq1408tQBAbZpPidkWoVVuNMOl/lISO3+4hXZWCL3YV7qzfg==",
  471. "funding": [
  472. {
  473. "type": "individual",
  474. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  475. },
  476. {
  477. "type": "individual",
  478. "url": "https://www.buymeacoffee.com/ricmoo"
  479. }
  480. ],
  481. "dependencies": {
  482. "@ethersproject/abstract-signer": "^5.5.0",
  483. "@ethersproject/address": "^5.5.0",
  484. "@ethersproject/bignumber": "^5.5.0",
  485. "@ethersproject/bytes": "^5.5.0",
  486. "@ethersproject/keccak256": "^5.5.0",
  487. "@ethersproject/logger": "^5.5.0",
  488. "@ethersproject/properties": "^5.5.0",
  489. "@ethersproject/strings": "^5.5.0"
  490. }
  491. },
  492. "node_modules/@ethersproject/hdnode": {
  493. "version": "5.5.0",
  494. "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.5.0.tgz",
  495. "integrity": "sha512-mcSOo9zeUg1L0CoJH7zmxwUG5ggQHU1UrRf8jyTYy6HxdZV+r0PBoL1bxr+JHIPXRzS6u/UW4mEn43y0tmyF8Q==",
  496. "funding": [
  497. {
  498. "type": "individual",
  499. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  500. },
  501. {
  502. "type": "individual",
  503. "url": "https://www.buymeacoffee.com/ricmoo"
  504. }
  505. ],
  506. "dependencies": {
  507. "@ethersproject/abstract-signer": "^5.5.0",
  508. "@ethersproject/basex": "^5.5.0",
  509. "@ethersproject/bignumber": "^5.5.0",
  510. "@ethersproject/bytes": "^5.5.0",
  511. "@ethersproject/logger": "^5.5.0",
  512. "@ethersproject/pbkdf2": "^5.5.0",
  513. "@ethersproject/properties": "^5.5.0",
  514. "@ethersproject/sha2": "^5.5.0",
  515. "@ethersproject/signing-key": "^5.5.0",
  516. "@ethersproject/strings": "^5.5.0",
  517. "@ethersproject/transactions": "^5.5.0",
  518. "@ethersproject/wordlists": "^5.5.0"
  519. }
  520. },
  521. "node_modules/@ethersproject/json-wallets": {
  522. "version": "5.5.0",
  523. "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.5.0.tgz",
  524. "integrity": "sha512-9lA21XQnCdcS72xlBn1jfQdj2A1VUxZzOzi9UkNdnokNKke/9Ya2xA9aIK1SC3PQyBDLt4C+dfps7ULpkvKikQ==",
  525. "funding": [
  526. {
  527. "type": "individual",
  528. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  529. },
  530. {
  531. "type": "individual",
  532. "url": "https://www.buymeacoffee.com/ricmoo"
  533. }
  534. ],
  535. "dependencies": {
  536. "@ethersproject/abstract-signer": "^5.5.0",
  537. "@ethersproject/address": "^5.5.0",
  538. "@ethersproject/bytes": "^5.5.0",
  539. "@ethersproject/hdnode": "^5.5.0",
  540. "@ethersproject/keccak256": "^5.5.0",
  541. "@ethersproject/logger": "^5.5.0",
  542. "@ethersproject/pbkdf2": "^5.5.0",
  543. "@ethersproject/properties": "^5.5.0",
  544. "@ethersproject/random": "^5.5.0",
  545. "@ethersproject/strings": "^5.5.0",
  546. "@ethersproject/transactions": "^5.5.0",
  547. "aes-js": "3.0.0",
  548. "scrypt-js": "3.0.1"
  549. }
  550. },
  551. "node_modules/@ethersproject/json-wallets/node_modules/aes-js": {
  552. "version": "3.0.0",
  553. "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz",
  554. "integrity": "sha1-4h3xCtbCBTKVvLuNq0Cwnb6ofk0="
  555. },
  556. "node_modules/@ethersproject/keccak256": {
  557. "version": "5.5.0",
  558. "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.5.0.tgz",
  559. "integrity": "sha512-5VoFCTjo2rYbBe1l2f4mccaRFN/4VQEYFwwn04aJV2h7qf4ZvI2wFxUE1XOX+snbwCLRzIeikOqtAoPwMza9kg==",
  560. "funding": [
  561. {
  562. "type": "individual",
  563. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  564. },
  565. {
  566. "type": "individual",
  567. "url": "https://www.buymeacoffee.com/ricmoo"
  568. }
  569. ],
  570. "dependencies": {
  571. "@ethersproject/bytes": "^5.5.0",
  572. "js-sha3": "0.8.0"
  573. }
  574. },
  575. "node_modules/@ethersproject/logger": {
  576. "version": "5.5.0",
  577. "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.5.0.tgz",
  578. "integrity": "sha512-rIY/6WPm7T8n3qS2vuHTUBPdXHl+rGxWxW5okDfo9J4Z0+gRRZT0msvUdIJkE4/HS29GUMziwGaaKO2bWONBrg==",
  579. "funding": [
  580. {
  581. "type": "individual",
  582. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  583. },
  584. {
  585. "type": "individual",
  586. "url": "https://www.buymeacoffee.com/ricmoo"
  587. }
  588. ]
  589. },
  590. "node_modules/@ethersproject/networks": {
  591. "version": "5.5.2",
  592. "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.5.2.tgz",
  593. "integrity": "sha512-NEqPxbGBfy6O3x4ZTISb90SjEDkWYDUbEeIFhJly0F7sZjoQMnj5KYzMSkMkLKZ+1fGpx00EDpHQCy6PrDupkQ==",
  594. "funding": [
  595. {
  596. "type": "individual",
  597. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  598. },
  599. {
  600. "type": "individual",
  601. "url": "https://www.buymeacoffee.com/ricmoo"
  602. }
  603. ],
  604. "dependencies": {
  605. "@ethersproject/logger": "^5.5.0"
  606. }
  607. },
  608. "node_modules/@ethersproject/pbkdf2": {
  609. "version": "5.5.0",
  610. "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.5.0.tgz",
  611. "integrity": "sha512-SaDvQFvXPnz1QGpzr6/HToLifftSXGoXrbpZ6BvoZhmx4bNLHrxDe8MZisuecyOziP1aVEwzC2Hasj+86TgWVg==",
  612. "funding": [
  613. {
  614. "type": "individual",
  615. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  616. },
  617. {
  618. "type": "individual",
  619. "url": "https://www.buymeacoffee.com/ricmoo"
  620. }
  621. ],
  622. "dependencies": {
  623. "@ethersproject/bytes": "^5.5.0",
  624. "@ethersproject/sha2": "^5.5.0"
  625. }
  626. },
  627. "node_modules/@ethersproject/properties": {
  628. "version": "5.5.0",
  629. "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.5.0.tgz",
  630. "integrity": "sha512-l3zRQg3JkD8EL3CPjNK5g7kMx4qSwiR60/uk5IVjd3oq1MZR5qUg40CNOoEJoX5wc3DyY5bt9EbMk86C7x0DNA==",
  631. "funding": [
  632. {
  633. "type": "individual",
  634. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  635. },
  636. {
  637. "type": "individual",
  638. "url": "https://www.buymeacoffee.com/ricmoo"
  639. }
  640. ],
  641. "dependencies": {
  642. "@ethersproject/logger": "^5.5.0"
  643. }
  644. },
  645. "node_modules/@ethersproject/providers": {
  646. "version": "5.5.2",
  647. "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.5.2.tgz",
  648. "integrity": "sha512-hkbx7x/MKcRjyrO4StKXCzCpWer6s97xnm34xkfPiarhtEUVAN4TBBpamM+z66WcTt7H5B53YwbRj1n7i8pZoQ==",
  649. "funding": [
  650. {
  651. "type": "individual",
  652. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  653. },
  654. {
  655. "type": "individual",
  656. "url": "https://www.buymeacoffee.com/ricmoo"
  657. }
  658. ],
  659. "dependencies": {
  660. "@ethersproject/abstract-provider": "^5.5.0",
  661. "@ethersproject/abstract-signer": "^5.5.0",
  662. "@ethersproject/address": "^5.5.0",
  663. "@ethersproject/basex": "^5.5.0",
  664. "@ethersproject/bignumber": "^5.5.0",
  665. "@ethersproject/bytes": "^5.5.0",
  666. "@ethersproject/constants": "^5.5.0",
  667. "@ethersproject/hash": "^5.5.0",
  668. "@ethersproject/logger": "^5.5.0",
  669. "@ethersproject/networks": "^5.5.0",
  670. "@ethersproject/properties": "^5.5.0",
  671. "@ethersproject/random": "^5.5.0",
  672. "@ethersproject/rlp": "^5.5.0",
  673. "@ethersproject/sha2": "^5.5.0",
  674. "@ethersproject/strings": "^5.5.0",
  675. "@ethersproject/transactions": "^5.5.0",
  676. "@ethersproject/web": "^5.5.0",
  677. "bech32": "1.1.4",
  678. "ws": "7.4.6"
  679. }
  680. },
  681. "node_modules/@ethersproject/providers/node_modules/bech32": {
  682. "version": "1.1.4",
  683. "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz",
  684. "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ=="
  685. },
  686. "node_modules/@ethersproject/providers/node_modules/ws": {
  687. "version": "7.4.6",
  688. "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
  689. "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
  690. "engines": {
  691. "node": ">=8.3.0"
  692. },
  693. "peerDependencies": {
  694. "bufferutil": "^4.0.1",
  695. "utf-8-validate": "^5.0.2"
  696. },
  697. "peerDependenciesMeta": {
  698. "bufferutil": {
  699. "optional": true
  700. },
  701. "utf-8-validate": {
  702. "optional": true
  703. }
  704. }
  705. },
  706. "node_modules/@ethersproject/random": {
  707. "version": "5.5.1",
  708. "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.5.1.tgz",
  709. "integrity": "sha512-YaU2dQ7DuhL5Au7KbcQLHxcRHfgyNgvFV4sQOo0HrtW3Zkrc9ctWNz8wXQ4uCSfSDsqX2vcjhroxU5RQRV0nqA==",
  710. "funding": [
  711. {
  712. "type": "individual",
  713. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  714. },
  715. {
  716. "type": "individual",
  717. "url": "https://www.buymeacoffee.com/ricmoo"
  718. }
  719. ],
  720. "dependencies": {
  721. "@ethersproject/bytes": "^5.5.0",
  722. "@ethersproject/logger": "^5.5.0"
  723. }
  724. },
  725. "node_modules/@ethersproject/rlp": {
  726. "version": "5.5.0",
  727. "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.5.0.tgz",
  728. "integrity": "sha512-hLv8XaQ8PTI9g2RHoQGf/WSxBfTB/NudRacbzdxmst5VHAqd1sMibWG7SENzT5Dj3yZ3kJYx+WiRYEcQTAkcYA==",
  729. "funding": [
  730. {
  731. "type": "individual",
  732. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  733. },
  734. {
  735. "type": "individual",
  736. "url": "https://www.buymeacoffee.com/ricmoo"
  737. }
  738. ],
  739. "dependencies": {
  740. "@ethersproject/bytes": "^5.5.0",
  741. "@ethersproject/logger": "^5.5.0"
  742. }
  743. },
  744. "node_modules/@ethersproject/sha2": {
  745. "version": "5.5.0",
  746. "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.5.0.tgz",
  747. "integrity": "sha512-B5UBoglbCiHamRVPLA110J+2uqsifpZaTmid2/7W5rbtYVz6gus6/hSDieIU/6gaKIDcOj12WnOdiymEUHIAOA==",
  748. "funding": [
  749. {
  750. "type": "individual",
  751. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  752. },
  753. {
  754. "type": "individual",
  755. "url": "https://www.buymeacoffee.com/ricmoo"
  756. }
  757. ],
  758. "dependencies": {
  759. "@ethersproject/bytes": "^5.5.0",
  760. "@ethersproject/logger": "^5.5.0",
  761. "hash.js": "1.1.7"
  762. }
  763. },
  764. "node_modules/@ethersproject/signing-key": {
  765. "version": "5.5.0",
  766. "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.5.0.tgz",
  767. "integrity": "sha512-5VmseH7qjtNmDdZBswavhotYbWB0bOwKIlOTSlX14rKn5c11QmJwGt4GHeo7NrL/Ycl7uo9AHvEqs5xZgFBTng==",
  768. "funding": [
  769. {
  770. "type": "individual",
  771. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  772. },
  773. {
  774. "type": "individual",
  775. "url": "https://www.buymeacoffee.com/ricmoo"
  776. }
  777. ],
  778. "dependencies": {
  779. "@ethersproject/bytes": "^5.5.0",
  780. "@ethersproject/logger": "^5.5.0",
  781. "@ethersproject/properties": "^5.5.0",
  782. "bn.js": "^4.11.9",
  783. "elliptic": "6.5.4",
  784. "hash.js": "1.1.7"
  785. }
  786. },
  787. "node_modules/@ethersproject/signing-key/node_modules/bn.js": {
  788. "version": "4.12.0",
  789. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
  790. "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
  791. },
  792. "node_modules/@ethersproject/solidity": {
  793. "version": "5.5.0",
  794. "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.5.0.tgz",
  795. "integrity": "sha512-9NgZs9LhGMj6aCtHXhtmFQ4AN4sth5HuFXVvAQtzmm0jpSCNOTGtrHZJAeYTh7MBjRR8brylWZxBZR9zDStXbw==",
  796. "funding": [
  797. {
  798. "type": "individual",
  799. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  800. },
  801. {
  802. "type": "individual",
  803. "url": "https://www.buymeacoffee.com/ricmoo"
  804. }
  805. ],
  806. "dependencies": {
  807. "@ethersproject/bignumber": "^5.5.0",
  808. "@ethersproject/bytes": "^5.5.0",
  809. "@ethersproject/keccak256": "^5.5.0",
  810. "@ethersproject/logger": "^5.5.0",
  811. "@ethersproject/sha2": "^5.5.0",
  812. "@ethersproject/strings": "^5.5.0"
  813. }
  814. },
  815. "node_modules/@ethersproject/strings": {
  816. "version": "5.5.0",
  817. "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.5.0.tgz",
  818. "integrity": "sha512-9fy3TtF5LrX/wTrBaT8FGE6TDJyVjOvXynXJz5MT5azq+E6D92zuKNx7i29sWW2FjVOaWjAsiZ1ZWznuduTIIQ==",
  819. "funding": [
  820. {
  821. "type": "individual",
  822. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  823. },
  824. {
  825. "type": "individual",
  826. "url": "https://www.buymeacoffee.com/ricmoo"
  827. }
  828. ],
  829. "dependencies": {
  830. "@ethersproject/bytes": "^5.5.0",
  831. "@ethersproject/constants": "^5.5.0",
  832. "@ethersproject/logger": "^5.5.0"
  833. }
  834. },
  835. "node_modules/@ethersproject/transactions": {
  836. "version": "5.5.0",
  837. "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.5.0.tgz",
  838. "integrity": "sha512-9RZYSKX26KfzEd/1eqvv8pLauCKzDTub0Ko4LfIgaERvRuwyaNV78mJs7cpIgZaDl6RJui4o49lHwwCM0526zA==",
  839. "funding": [
  840. {
  841. "type": "individual",
  842. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  843. },
  844. {
  845. "type": "individual",
  846. "url": "https://www.buymeacoffee.com/ricmoo"
  847. }
  848. ],
  849. "dependencies": {
  850. "@ethersproject/address": "^5.5.0",
  851. "@ethersproject/bignumber": "^5.5.0",
  852. "@ethersproject/bytes": "^5.5.0",
  853. "@ethersproject/constants": "^5.5.0",
  854. "@ethersproject/keccak256": "^5.5.0",
  855. "@ethersproject/logger": "^5.5.0",
  856. "@ethersproject/properties": "^5.5.0",
  857. "@ethersproject/rlp": "^5.5.0",
  858. "@ethersproject/signing-key": "^5.5.0"
  859. }
  860. },
  861. "node_modules/@ethersproject/units": {
  862. "version": "5.5.0",
  863. "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.5.0.tgz",
  864. "integrity": "sha512-7+DpjiZk4v6wrikj+TCyWWa9dXLNU73tSTa7n0TSJDxkYbV3Yf1eRh9ToMLlZtuctNYu9RDNNy2USq3AdqSbag==",
  865. "funding": [
  866. {
  867. "type": "individual",
  868. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  869. },
  870. {
  871. "type": "individual",
  872. "url": "https://www.buymeacoffee.com/ricmoo"
  873. }
  874. ],
  875. "dependencies": {
  876. "@ethersproject/bignumber": "^5.5.0",
  877. "@ethersproject/constants": "^5.5.0",
  878. "@ethersproject/logger": "^5.5.0"
  879. }
  880. },
  881. "node_modules/@ethersproject/wallet": {
  882. "version": "5.5.0",
  883. "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.5.0.tgz",
  884. "integrity": "sha512-Mlu13hIctSYaZmUOo7r2PhNSd8eaMPVXe1wxrz4w4FCE4tDYBywDH+bAR1Xz2ADyXGwqYMwstzTrtUVIsKDO0Q==",
  885. "funding": [
  886. {
  887. "type": "individual",
  888. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  889. },
  890. {
  891. "type": "individual",
  892. "url": "https://www.buymeacoffee.com/ricmoo"
  893. }
  894. ],
  895. "dependencies": {
  896. "@ethersproject/abstract-provider": "^5.5.0",
  897. "@ethersproject/abstract-signer": "^5.5.0",
  898. "@ethersproject/address": "^5.5.0",
  899. "@ethersproject/bignumber": "^5.5.0",
  900. "@ethersproject/bytes": "^5.5.0",
  901. "@ethersproject/hash": "^5.5.0",
  902. "@ethersproject/hdnode": "^5.5.0",
  903. "@ethersproject/json-wallets": "^5.5.0",
  904. "@ethersproject/keccak256": "^5.5.0",
  905. "@ethersproject/logger": "^5.5.0",
  906. "@ethersproject/properties": "^5.5.0",
  907. "@ethersproject/random": "^5.5.0",
  908. "@ethersproject/signing-key": "^5.5.0",
  909. "@ethersproject/transactions": "^5.5.0",
  910. "@ethersproject/wordlists": "^5.5.0"
  911. }
  912. },
  913. "node_modules/@ethersproject/web": {
  914. "version": "5.5.1",
  915. "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.5.1.tgz",
  916. "integrity": "sha512-olvLvc1CB12sREc1ROPSHTdFCdvMh0J5GSJYiQg2D0hdD4QmJDy8QYDb1CvoqD/bF1c++aeKv2sR5uduuG9dQg==",
  917. "funding": [
  918. {
  919. "type": "individual",
  920. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  921. },
  922. {
  923. "type": "individual",
  924. "url": "https://www.buymeacoffee.com/ricmoo"
  925. }
  926. ],
  927. "dependencies": {
  928. "@ethersproject/base64": "^5.5.0",
  929. "@ethersproject/bytes": "^5.5.0",
  930. "@ethersproject/logger": "^5.5.0",
  931. "@ethersproject/properties": "^5.5.0",
  932. "@ethersproject/strings": "^5.5.0"
  933. }
  934. },
  935. "node_modules/@ethersproject/wordlists": {
  936. "version": "5.5.0",
  937. "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.5.0.tgz",
  938. "integrity": "sha512-bL0UTReWDiaQJJYOC9sh/XcRu/9i2jMrzf8VLRmPKx58ckSlOJiohODkECCO50dtLZHcGU6MLXQ4OOrgBwP77Q==",
  939. "funding": [
  940. {
  941. "type": "individual",
  942. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  943. },
  944. {
  945. "type": "individual",
  946. "url": "https://www.buymeacoffee.com/ricmoo"
  947. }
  948. ],
  949. "dependencies": {
  950. "@ethersproject/bytes": "^5.5.0",
  951. "@ethersproject/hash": "^5.5.0",
  952. "@ethersproject/logger": "^5.5.0",
  953. "@ethersproject/properties": "^5.5.0",
  954. "@ethersproject/strings": "^5.5.0"
  955. }
  956. },
  957. "node_modules/@improbable-eng/grpc-web": {
  958. "version": "0.14.1",
  959. "resolved": "https://registry.npmjs.org/@improbable-eng/grpc-web/-/grpc-web-0.14.1.tgz",
  960. "integrity": "sha512-XaIYuunepPxoiGVLLHmlnVminUGzBTnXr8Wv7khzmLWbNw4TCwJKX09GSMJlKhu/TRk6gms0ySFxewaETSBqgw==",
  961. "dependencies": {
  962. "browser-headers": "^0.4.1"
  963. },
  964. "peerDependencies": {
  965. "google-protobuf": "^3.14.0"
  966. }
  967. },
  968. "node_modules/@improbable-eng/grpc-web-node-http-transport": {
  969. "version": "0.15.0",
  970. "resolved": "https://registry.npmjs.org/@improbable-eng/grpc-web-node-http-transport/-/grpc-web-node-http-transport-0.15.0.tgz",
  971. "integrity": "sha512-HLgJfVolGGpjc9DWPhmMmXJx8YGzkek7jcCFO1YYkSOoO81MWRZentPOd/JiKiZuU08wtc4BG+WNuGzsQB5jZA==",
  972. "peerDependencies": {
  973. "@improbable-eng/grpc-web": ">=0.13.0"
  974. }
  975. },
  976. "node_modules/@protobufjs/aspromise": {
  977. "version": "1.1.2",
  978. "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
  979. "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78="
  980. },
  981. "node_modules/@protobufjs/base64": {
  982. "version": "1.1.2",
  983. "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
  984. "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="
  985. },
  986. "node_modules/@protobufjs/codegen": {
  987. "version": "2.0.4",
  988. "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
  989. "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg=="
  990. },
  991. "node_modules/@protobufjs/eventemitter": {
  992. "version": "1.1.0",
  993. "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
  994. "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A="
  995. },
  996. "node_modules/@protobufjs/fetch": {
  997. "version": "1.1.0",
  998. "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
  999. "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=",
  1000. "dependencies": {
  1001. "@protobufjs/aspromise": "^1.1.1",
  1002. "@protobufjs/inquire": "^1.1.0"
  1003. }
  1004. },
  1005. "node_modules/@protobufjs/float": {
  1006. "version": "1.0.2",
  1007. "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
  1008. "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E="
  1009. },
  1010. "node_modules/@protobufjs/inquire": {
  1011. "version": "1.1.0",
  1012. "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
  1013. "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik="
  1014. },
  1015. "node_modules/@protobufjs/path": {
  1016. "version": "1.1.2",
  1017. "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
  1018. "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0="
  1019. },
  1020. "node_modules/@protobufjs/pool": {
  1021. "version": "1.1.0",
  1022. "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
  1023. "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q="
  1024. },
  1025. "node_modules/@protobufjs/utf8": {
  1026. "version": "1.1.0",
  1027. "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
  1028. "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA="
  1029. },
  1030. "node_modules/@solana/buffer-layout": {
  1031. "version": "3.0.0",
  1032. "resolved": "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-3.0.0.tgz",
  1033. "integrity": "sha512-MVdgAKKL39tEs0l8je0hKaXLQFb7Rdfb0Xg2LjFZd8Lfdazkg6xiS98uAZrEKvaoF3i4M95ei9RydkGIDMeo3w==",
  1034. "dependencies": {
  1035. "buffer": "~6.0.3"
  1036. },
  1037. "engines": {
  1038. "node": ">=5.10"
  1039. }
  1040. },
  1041. "node_modules/@solana/spl-token": {
  1042. "version": "0.1.8",
  1043. "resolved": "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz",
  1044. "integrity": "sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ==",
  1045. "dependencies": {
  1046. "@babel/runtime": "^7.10.5",
  1047. "@solana/web3.js": "^1.21.0",
  1048. "bn.js": "^5.1.0",
  1049. "buffer": "6.0.3",
  1050. "buffer-layout": "^1.2.0",
  1051. "dotenv": "10.0.0"
  1052. },
  1053. "engines": {
  1054. "node": ">= 10"
  1055. }
  1056. },
  1057. "node_modules/@solana/web3.js": {
  1058. "version": "1.31.0",
  1059. "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.31.0.tgz",
  1060. "integrity": "sha512-7nHHx1JNFnrt15e9y8m38I/EJCbaB+bFC3KZVM1+QhybCikFxGMtGA5r7PDC3GEL1R2RZA8yKoLkDKo3vzzqnw==",
  1061. "dependencies": {
  1062. "@babel/runtime": "^7.12.5",
  1063. "@ethersproject/sha2": "^5.5.0",
  1064. "@solana/buffer-layout": "^3.0.0",
  1065. "bn.js": "^5.0.0",
  1066. "borsh": "^0.4.0",
  1067. "bs58": "^4.0.1",
  1068. "buffer": "6.0.1",
  1069. "cross-fetch": "^3.1.4",
  1070. "jayson": "^3.4.4",
  1071. "js-sha3": "^0.8.0",
  1072. "rpc-websockets": "^7.4.2",
  1073. "secp256k1": "^4.0.2",
  1074. "superstruct": "^0.14.2",
  1075. "tweetnacl": "^1.0.0"
  1076. },
  1077. "engines": {
  1078. "node": ">=12.20.0"
  1079. }
  1080. },
  1081. "node_modules/@solana/web3.js/node_modules/buffer": {
  1082. "version": "6.0.1",
  1083. "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz",
  1084. "integrity": "sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ==",
  1085. "funding": [
  1086. {
  1087. "type": "github",
  1088. "url": "https://github.com/sponsors/feross"
  1089. },
  1090. {
  1091. "type": "patreon",
  1092. "url": "https://www.patreon.com/feross"
  1093. },
  1094. {
  1095. "type": "consulting",
  1096. "url": "https://feross.org/support"
  1097. }
  1098. ],
  1099. "dependencies": {
  1100. "base64-js": "^1.3.1",
  1101. "ieee754": "^1.2.1"
  1102. }
  1103. },
  1104. "node_modules/@terra-dev/browser-check": {
  1105. "version": "2.5.3",
  1106. "resolved": "https://registry.npmjs.org/@terra-dev/browser-check/-/browser-check-2.5.3.tgz",
  1107. "integrity": "sha512-r4CrL0tTco4yg1UnHq1L2fUIsrEjkBY/pbYlA1p61teZ8OJJLz1yOkXa8OLLHpOl89oXn+ak9iZ1lN0VxSdeuA==",
  1108. "dependencies": {
  1109. "bowser": "^2.11.0",
  1110. "mobile-detect": "^1.4.5"
  1111. },
  1112. "engines": {
  1113. "node": ">=12"
  1114. }
  1115. },
  1116. "node_modules/@terra-dev/chrome-extension": {
  1117. "version": "2.5.3",
  1118. "resolved": "https://registry.npmjs.org/@terra-dev/chrome-extension/-/chrome-extension-2.5.3.tgz",
  1119. "integrity": "sha512-8tjKKvfRGAs5ve26vHdk5nWCt6GGoxswFMgF3UcdLcLHRnH3N3g7fjBa+95VTs8eTT4terpUl83+7ngwdy4A/g==",
  1120. "dependencies": {
  1121. "@terra-dev/browser-check": "^2.5.3",
  1122. "@terra-dev/wallet-types": "^2.5.3",
  1123. "fix-hmr": "^1.0.2",
  1124. "rxjs": "^7.4.0",
  1125. "styled-components": "^5.0.0"
  1126. },
  1127. "engines": {
  1128. "node": ">=12"
  1129. },
  1130. "peerDependencies": {
  1131. "@terra-money/terra.js": "^2.0.0",
  1132. "react": "^17.0.0",
  1133. "react-dom": "^17.0.0"
  1134. }
  1135. },
  1136. "node_modules/@terra-dev/readonly-wallet": {
  1137. "version": "2.5.3",
  1138. "resolved": "https://registry.npmjs.org/@terra-dev/readonly-wallet/-/readonly-wallet-2.5.3.tgz",
  1139. "integrity": "sha512-oZU4u2cO0lvpZiMdB91UHrLfBubYba5ziqP6fzxYbtFxPhRt0sF3vTcqSg7ReGXzOTqNt0fd4Mj7ZnkFJ5wUrQ==",
  1140. "dependencies": {
  1141. "@terra-dev/wallet-types": "^2.5.3"
  1142. },
  1143. "engines": {
  1144. "node": ">=12"
  1145. },
  1146. "peerDependencies": {
  1147. "@terra-money/terra.js": "^2.0.0"
  1148. }
  1149. },
  1150. "node_modules/@terra-dev/readonly-wallet-modal": {
  1151. "version": "2.5.3",
  1152. "resolved": "https://registry.npmjs.org/@terra-dev/readonly-wallet-modal/-/readonly-wallet-modal-2.5.3.tgz",
  1153. "integrity": "sha512-1+7NJ+UVLQVxO4FH6Y0cniPKGZXPtaUZy0/9qfgKoCvaGN9m6VshC0NHrDcwKpH6aqXlm1AqCu2obSSIH1qMGw==",
  1154. "dependencies": {
  1155. "@terra-dev/readonly-wallet": "^2.5.3",
  1156. "@terra-dev/wallet-types": "^2.5.3",
  1157. "styled-components": "^5.0.0"
  1158. },
  1159. "engines": {
  1160. "node": ">=12"
  1161. },
  1162. "peerDependencies": {
  1163. "@terra-money/terra.js": "^2.0.0",
  1164. "react": "^17.0.0",
  1165. "react-dom": "^17.0.0"
  1166. }
  1167. },
  1168. "node_modules/@terra-dev/use-wallet": {
  1169. "version": "2.5.3",
  1170. "resolved": "https://registry.npmjs.org/@terra-dev/use-wallet/-/use-wallet-2.5.3.tgz",
  1171. "integrity": "sha512-VTJ0ZKBoSDH6Tjv3g9RlMDg5QVI5CMxmW8Isto5t1q3tEhwmo7QcaFtd53diqIk7tq9ogS+I1Lhkh2PzLj2o5A==",
  1172. "dependencies": {
  1173. "@terra-dev/wallet-types": "^2.5.3"
  1174. },
  1175. "engines": {
  1176. "node": ">=12"
  1177. },
  1178. "peerDependencies": {
  1179. "@terra-money/terra.js": "^2.0.0",
  1180. "react": "^17.0.0"
  1181. }
  1182. },
  1183. "node_modules/@terra-dev/wallet-types": {
  1184. "version": "2.5.3",
  1185. "resolved": "https://registry.npmjs.org/@terra-dev/wallet-types/-/wallet-types-2.5.3.tgz",
  1186. "integrity": "sha512-fqOVDxQT/BLQTmTq0GjOzHS/oVtjQcuJibcgDZz26mS0YNypixG1bGbk/Z2tRQxiB2lcKxXP71oORdNipwDXLw==",
  1187. "engines": {
  1188. "node": ">=12"
  1189. },
  1190. "peerDependencies": {
  1191. "@terra-money/terra.js": "^2.0.0"
  1192. }
  1193. },
  1194. "node_modules/@terra-dev/walletconnect": {
  1195. "version": "2.5.3",
  1196. "resolved": "https://registry.npmjs.org/@terra-dev/walletconnect/-/walletconnect-2.5.3.tgz",
  1197. "integrity": "sha512-y0ZF6tbHcq/kAVevAalT74IUHubcmSqCbdzucU0LAVDEQr/z2HmW0Fk/92p8WLejUxIz8mAUNRtm/3oJW4F07Q==",
  1198. "dependencies": {
  1199. "@terra-dev/browser-check": "^2.5.3",
  1200. "@terra-dev/walletconnect-qrcode-modal": "^2.5.3",
  1201. "@walletconnect/core": "^1.6.6",
  1202. "@walletconnect/iso-crypto": "^1.6.6",
  1203. "@walletconnect/types": "^1.6.6",
  1204. "@walletconnect/utils": "^1.6.6",
  1205. "rxjs": "^7.4.0",
  1206. "ws": "^7.5.5"
  1207. },
  1208. "engines": {
  1209. "node": ">=12"
  1210. },
  1211. "peerDependencies": {
  1212. "@terra-money/terra.js": "^2.0.0"
  1213. }
  1214. },
  1215. "node_modules/@terra-dev/walletconnect-qrcode-modal": {
  1216. "version": "2.5.3",
  1217. "resolved": "https://registry.npmjs.org/@terra-dev/walletconnect-qrcode-modal/-/walletconnect-qrcode-modal-2.5.3.tgz",
  1218. "integrity": "sha512-85n4MsOa0fzRGhxDKrgjfWm4EMV0fx9+d1fnJtVu2sdbGstXOt5uCt/7iOiQ0fEmL18EhJg1BjqGcRks2u3EcA==",
  1219. "dependencies": {
  1220. "@terra-dev/browser-check": "^2.5.3",
  1221. "@walletconnect/types": "^1.6.6",
  1222. "qrcode.react": "^1.0.1",
  1223. "styled-components": "^5.0.0"
  1224. },
  1225. "engines": {
  1226. "node": ">=12"
  1227. },
  1228. "peerDependencies": {
  1229. "react": "^17.0.0",
  1230. "react-dom": "^17.0.0"
  1231. }
  1232. },
  1233. "node_modules/@terra-dev/web-connector-controller": {
  1234. "version": "0.8.1",
  1235. "resolved": "https://registry.npmjs.org/@terra-dev/web-connector-controller/-/web-connector-controller-0.8.1.tgz",
  1236. "integrity": "sha512-TIwFtta7vN2GdDUy8SbIIsfTd9XWiU+U6yjizd82yUAhlOJNAGHshG0r1j0irkA5MycYG1duAlr7foeKRu4PGA==",
  1237. "dependencies": {
  1238. "@terra-dev/web-connector-interface": "^0.8.1",
  1239. "bowser": "^2.11.0",
  1240. "rxjs": "^7.4.0"
  1241. },
  1242. "engines": {
  1243. "node": ">=12"
  1244. },
  1245. "peerDependencies": {
  1246. "@terra-money/terra.js": "^2.0.0"
  1247. }
  1248. },
  1249. "node_modules/@terra-dev/web-connector-interface": {
  1250. "version": "0.8.1",
  1251. "resolved": "https://registry.npmjs.org/@terra-dev/web-connector-interface/-/web-connector-interface-0.8.1.tgz",
  1252. "integrity": "sha512-ryA3xtTFJ7OkAF6pTlrsuqxtSUp0DxHhyxvzwRPbT3h8VqlkFStknvYjRwNRspN2LOpi4/F1TNFzcUBNHPCo2g==",
  1253. "dependencies": {
  1254. "rxjs": "^7.4.0"
  1255. },
  1256. "engines": {
  1257. "node": ">=12"
  1258. },
  1259. "peerDependencies": {
  1260. "@terra-money/terra.js": "^2.0.0"
  1261. }
  1262. },
  1263. "node_modules/@terra-money/terra.js": {
  1264. "version": "2.1.23",
  1265. "resolved": "https://registry.npmjs.org/@terra-money/terra.js/-/terra.js-2.1.23.tgz",
  1266. "integrity": "sha512-nSAR35zqjKUn1Jzqevf30s47XRlW/VXU01YgK3n9ndmX15lkdlgFvqaV7UezK0xAmCpm+7xWIrtBTMmZpVBkMQ==",
  1267. "dependencies": {
  1268. "@terra-money/terra.proto": "^0.1.7",
  1269. "axios": "^0.21.1",
  1270. "bech32": "^2.0.0",
  1271. "bip32": "^2.0.6",
  1272. "bip39": "^3.0.3",
  1273. "bufferutil": "^4.0.3",
  1274. "decimal.js": "^10.2.1",
  1275. "jscrypto": "^1.0.1",
  1276. "readable-stream": "^3.6.0",
  1277. "secp256k1": "^4.0.2",
  1278. "tmp": "^0.2.1",
  1279. "utf-8-validate": "^5.0.5",
  1280. "ws": "^7.4.2"
  1281. },
  1282. "engines": {
  1283. "node": ">=14"
  1284. }
  1285. },
  1286. "node_modules/@terra-money/terra.js/node_modules/axios": {
  1287. "version": "0.21.4",
  1288. "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
  1289. "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
  1290. "dependencies": {
  1291. "follow-redirects": "^1.14.0"
  1292. }
  1293. },
  1294. "node_modules/@terra-money/terra.proto": {
  1295. "version": "0.1.7",
  1296. "resolved": "https://registry.npmjs.org/@terra-money/terra.proto/-/terra.proto-0.1.7.tgz",
  1297. "integrity": "sha512-NXD7f6pQCulvo6+mv6MAPzhOkUzRjgYVuHZE/apih+lVnPG5hDBU0rRYnOGGofwvKT5/jQoOENnFn/gioWWnyQ==",
  1298. "dependencies": {
  1299. "google-protobuf": "^3.17.3",
  1300. "long": "^4.0.0",
  1301. "protobufjs": "~6.11.2"
  1302. }
  1303. },
  1304. "node_modules/@terra-money/wallet-provider": {
  1305. "version": "2.5.3",
  1306. "resolved": "https://registry.npmjs.org/@terra-money/wallet-provider/-/wallet-provider-2.5.3.tgz",
  1307. "integrity": "sha512-v/5Z35gCo4nZyZCu3nYDFvhwuvlyDeNSSYmN9KUc9ewoIO9K/2fi3vxcOLcvqq5PYowwwod21vgaQ9QHFV+8eA==",
  1308. "dependencies": {
  1309. "@terra-dev/browser-check": "^2.5.3",
  1310. "@terra-dev/chrome-extension": "^2.5.3",
  1311. "@terra-dev/readonly-wallet": "^2.5.3",
  1312. "@terra-dev/readonly-wallet-modal": "^2.5.3",
  1313. "@terra-dev/use-wallet": "^2.5.3",
  1314. "@terra-dev/wallet-types": "^2.5.3",
  1315. "@terra-dev/walletconnect": "^2.5.3",
  1316. "@terra-dev/web-connector-controller": "^0.8.1",
  1317. "@terra-dev/web-connector-interface": "^0.8.1",
  1318. "fast-deep-equal": "^3.1.3",
  1319. "rxjs": "^7.4.0"
  1320. },
  1321. "engines": {
  1322. "node": ">=12"
  1323. },
  1324. "peerDependencies": {
  1325. "@terra-money/terra.js": "^2.0.0",
  1326. "react": "^17.0.0"
  1327. },
  1328. "peerDependenciesMeta": {
  1329. "react-router-dom": {
  1330. "optional": true
  1331. }
  1332. }
  1333. },
  1334. "node_modules/@types/bn.js": {
  1335. "version": "4.11.6",
  1336. "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz",
  1337. "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==",
  1338. "dependencies": {
  1339. "@types/node": "*"
  1340. }
  1341. },
  1342. "node_modules/@types/connect": {
  1343. "version": "3.4.35",
  1344. "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz",
  1345. "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
  1346. "dependencies": {
  1347. "@types/node": "*"
  1348. }
  1349. },
  1350. "node_modules/@types/express-serve-static-core": {
  1351. "version": "4.17.27",
  1352. "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.27.tgz",
  1353. "integrity": "sha512-e/sVallzUTPdyOTiqi8O8pMdBBphscvI6E4JYaKlja4Lm+zh7UFSSdW5VMkRbhDtmrONqOUHOXRguPsDckzxNA==",
  1354. "dependencies": {
  1355. "@types/node": "*",
  1356. "@types/qs": "*",
  1357. "@types/range-parser": "*"
  1358. }
  1359. },
  1360. "node_modules/@types/lodash": {
  1361. "version": "4.14.178",
  1362. "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.178.tgz",
  1363. "integrity": "sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw=="
  1364. },
  1365. "node_modules/@types/long": {
  1366. "version": "4.0.1",
  1367. "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz",
  1368. "integrity": "sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w=="
  1369. },
  1370. "node_modules/@types/node": {
  1371. "version": "10.12.18",
  1372. "resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz",
  1373. "integrity": "sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="
  1374. },
  1375. "node_modules/@types/qs": {
  1376. "version": "6.9.7",
  1377. "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
  1378. "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="
  1379. },
  1380. "node_modules/@types/range-parser": {
  1381. "version": "1.2.4",
  1382. "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz",
  1383. "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="
  1384. },
  1385. "node_modules/@types/ws": {
  1386. "version": "7.4.7",
  1387. "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz",
  1388. "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==",
  1389. "dependencies": {
  1390. "@types/node": "*"
  1391. }
  1392. },
  1393. "node_modules/@walletconnect/browser-utils": {
  1394. "version": "1.7.0",
  1395. "resolved": "https://registry.npmjs.org/@walletconnect/browser-utils/-/browser-utils-1.7.0.tgz",
  1396. "integrity": "sha512-bQsbCIDTT1OB4v8VF5bzg3byp03qTst9kLmjQj68ElecIUcdS6nZvEDhZdQK/r63WMVnA2KrTb5AEN6hPRGgIw==",
  1397. "dependencies": {
  1398. "@walletconnect/safe-json": "1.0.0",
  1399. "@walletconnect/types": "^1.7.0",
  1400. "@walletconnect/window-getters": "1.0.0",
  1401. "@walletconnect/window-metadata": "1.0.0",
  1402. "detect-browser": "5.2.0"
  1403. }
  1404. },
  1405. "node_modules/@walletconnect/core": {
  1406. "version": "1.7.0",
  1407. "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-1.7.0.tgz",
  1408. "integrity": "sha512-0YX9Y/CVYctKPcSgSyp2wLrk4OgSenmyzWj6Z3C93Hb7PG+tJ+dKCeNFeEIYA03QQRxHew5uMLPbVgmdtmB/0w==",
  1409. "dependencies": {
  1410. "@walletconnect/socket-transport": "^1.7.0",
  1411. "@walletconnect/types": "^1.7.0",
  1412. "@walletconnect/utils": "^1.7.0"
  1413. }
  1414. },
  1415. "node_modules/@walletconnect/crypto": {
  1416. "version": "1.0.1",
  1417. "resolved": "https://registry.npmjs.org/@walletconnect/crypto/-/crypto-1.0.1.tgz",
  1418. "integrity": "sha512-IgUReNrycIFxkGgq8YT9HsosCkhutakWD9Q411PR0aJfxpEa/VKJeaLRtoz6DvJpztWStwhIHnAbBoOVR72a6g==",
  1419. "dependencies": {
  1420. "@walletconnect/encoding": "^1.0.0",
  1421. "@walletconnect/environment": "^1.0.0",
  1422. "@walletconnect/randombytes": "^1.0.1",
  1423. "aes-js": "^3.1.2",
  1424. "hash.js": "^1.1.7"
  1425. }
  1426. },
  1427. "node_modules/@walletconnect/encoding": {
  1428. "version": "1.0.0",
  1429. "resolved": "https://registry.npmjs.org/@walletconnect/encoding/-/encoding-1.0.0.tgz",
  1430. "integrity": "sha512-4nkJFnS0QF5JdieG/3VPD1/iEWkLSZ14EBInLZ00RWxmC6EMZrzAeHNAWIgm+xP3NK0lqz+7lEsmWGtcl5gYnQ==",
  1431. "dependencies": {
  1432. "is-typedarray": "1.0.0",
  1433. "typedarray-to-buffer": "3.1.5"
  1434. }
  1435. },
  1436. "node_modules/@walletconnect/environment": {
  1437. "version": "1.0.0",
  1438. "resolved": "https://registry.npmjs.org/@walletconnect/environment/-/environment-1.0.0.tgz",
  1439. "integrity": "sha512-4BwqyWy6KpSvkocSaV7WR3BlZfrxLbJSLkg+j7Gl6pTDE+U55lLhJvQaMuDVazXYxcjBsG09k7UlH7cGiUI5vQ=="
  1440. },
  1441. "node_modules/@walletconnect/iso-crypto": {
  1442. "version": "1.7.0",
  1443. "resolved": "https://registry.npmjs.org/@walletconnect/iso-crypto/-/iso-crypto-1.7.0.tgz",
  1444. "integrity": "sha512-ZUQ/MAM9TXtneIaRjxW/PuFF+es4I9OrCGFgVTCYAaa7p2zdy7BgHmVOnxxOpUh9VYwLXoiA/FU234NwS0ulYw==",
  1445. "dependencies": {
  1446. "@walletconnect/crypto": "^1.0.1",
  1447. "@walletconnect/types": "^1.7.0",
  1448. "@walletconnect/utils": "^1.7.0"
  1449. }
  1450. },
  1451. "node_modules/@walletconnect/jsonrpc-types": {
  1452. "version": "1.0.0",
  1453. "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.0.tgz",
  1454. "integrity": "sha512-11QXNq5H1PKZk7bP8SxgmCw3HRaDuPOVE+wObqEvmhc7OWYUZqfuaaMb+OXGRSOHL3sbC+XHfdeCxFTMXSFyng==",
  1455. "dependencies": {
  1456. "keyvaluestorage-interface": "^1.0.0"
  1457. }
  1458. },
  1459. "node_modules/@walletconnect/jsonrpc-utils": {
  1460. "version": "1.0.0",
  1461. "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.0.tgz",
  1462. "integrity": "sha512-qUHbKUK6sHeHn67qtHZoLoYk5hS6x1arTPjKDRkY93/6Fx+ZmNIpdm1owX3l6aYueyegJ7mz43FpvYHUqJ8xcw==",
  1463. "dependencies": {
  1464. "@walletconnect/environment": "^1.0.0",
  1465. "@walletconnect/jsonrpc-types": "^1.0.0"
  1466. }
  1467. },
  1468. "node_modules/@walletconnect/randombytes": {
  1469. "version": "1.0.1",
  1470. "resolved": "https://registry.npmjs.org/@walletconnect/randombytes/-/randombytes-1.0.1.tgz",
  1471. "integrity": "sha512-YJTyq69i0PtxVg7osEpKfvjTaWuAsR49QEcqGKZRKVQWMbGXBZ65fovemK/SRgtiFRv0V8PwsrlKSheqzfPNcg==",
  1472. "dependencies": {
  1473. "@walletconnect/encoding": "^1.0.0",
  1474. "@walletconnect/environment": "^1.0.0",
  1475. "randombytes": "^2.1.0"
  1476. }
  1477. },
  1478. "node_modules/@walletconnect/safe-json": {
  1479. "version": "1.0.0",
  1480. "resolved": "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.0.tgz",
  1481. "integrity": "sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg=="
  1482. },
  1483. "node_modules/@walletconnect/socket-transport": {
  1484. "version": "1.7.0",
  1485. "resolved": "https://registry.npmjs.org/@walletconnect/socket-transport/-/socket-transport-1.7.0.tgz",
  1486. "integrity": "sha512-HSWGZxdxDtf8K1Kd1eD1QuObpoNxHui+A/+inuC8i8fcifDjZu85AeJIfCKQijlmgjLR/25Ry3eJFbYpRXxUjQ==",
  1487. "dependencies": {
  1488. "@walletconnect/types": "^1.7.0",
  1489. "@walletconnect/utils": "^1.7.0",
  1490. "ws": "7.5.3"
  1491. }
  1492. },
  1493. "node_modules/@walletconnect/socket-transport/node_modules/ws": {
  1494. "version": "7.5.3",
  1495. "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.3.tgz",
  1496. "integrity": "sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==",
  1497. "engines": {
  1498. "node": ">=8.3.0"
  1499. },
  1500. "peerDependencies": {
  1501. "bufferutil": "^4.0.1",
  1502. "utf-8-validate": "^5.0.2"
  1503. },
  1504. "peerDependenciesMeta": {
  1505. "bufferutil": {
  1506. "optional": true
  1507. },
  1508. "utf-8-validate": {
  1509. "optional": true
  1510. }
  1511. }
  1512. },
  1513. "node_modules/@walletconnect/types": {
  1514. "version": "1.7.0",
  1515. "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.7.0.tgz",
  1516. "integrity": "sha512-eoqnF+U04IuMfGIBsqYhAR6SIM2kzcrZM/RCVcomT/lIcsRoBwNxR+86+3Vn12/iaGnuAKn8xDZhZ47SLFmanQ=="
  1517. },
  1518. "node_modules/@walletconnect/utils": {
  1519. "version": "1.7.0",
  1520. "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-1.7.0.tgz",
  1521. "integrity": "sha512-DnYyKNMkpPUkbu6YwHfycvzlpx7Ro/qDPIDAuaNYT4FFWFyYxfx2ZY66kU3XklQivAc8dK7TyvYPJ08LWd8w4Q==",
  1522. "dependencies": {
  1523. "@walletconnect/browser-utils": "^1.7.0",
  1524. "@walletconnect/encoding": "^1.0.0",
  1525. "@walletconnect/jsonrpc-utils": "^1.0.0",
  1526. "@walletconnect/types": "^1.7.0",
  1527. "bn.js": "4.11.8",
  1528. "js-sha3": "0.8.0",
  1529. "query-string": "6.13.5"
  1530. }
  1531. },
  1532. "node_modules/@walletconnect/utils/node_modules/bn.js": {
  1533. "version": "4.11.8",
  1534. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
  1535. "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
  1536. },
  1537. "node_modules/@walletconnect/window-getters": {
  1538. "version": "1.0.0",
  1539. "resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.0.tgz",
  1540. "integrity": "sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA=="
  1541. },
  1542. "node_modules/@walletconnect/window-metadata": {
  1543. "version": "1.0.0",
  1544. "resolved": "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.0.tgz",
  1545. "integrity": "sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==",
  1546. "dependencies": {
  1547. "@walletconnect/window-getters": "^1.0.0"
  1548. }
  1549. },
  1550. "node_modules/aes-js": {
  1551. "version": "3.1.2",
  1552. "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.1.2.tgz",
  1553. "integrity": "sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ=="
  1554. },
  1555. "node_modules/ansi-styles": {
  1556. "version": "3.2.1",
  1557. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
  1558. "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
  1559. "dependencies": {
  1560. "color-convert": "^1.9.0"
  1561. },
  1562. "engines": {
  1563. "node": ">=4"
  1564. }
  1565. },
  1566. "node_modules/axios": {
  1567. "version": "0.24.0",
  1568. "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz",
  1569. "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==",
  1570. "dependencies": {
  1571. "follow-redirects": "^1.14.4"
  1572. }
  1573. },
  1574. "node_modules/babel-plugin-styled-components": {
  1575. "version": "2.0.2",
  1576. "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.2.tgz",
  1577. "integrity": "sha512-7eG5NE8rChnNTDxa6LQfynwgHTVOYYaHJbUYSlOhk8QBXIQiMBKq4gyfHBBKPrxUcVBXVJL61ihduCpCQbuNbw==",
  1578. "dependencies": {
  1579. "@babel/helper-annotate-as-pure": "^7.16.0",
  1580. "@babel/helper-module-imports": "^7.16.0",
  1581. "babel-plugin-syntax-jsx": "^6.18.0",
  1582. "lodash": "^4.17.11"
  1583. },
  1584. "peerDependencies": {
  1585. "styled-components": ">= 2"
  1586. }
  1587. },
  1588. "node_modules/babel-plugin-syntax-jsx": {
  1589. "version": "6.18.0",
  1590. "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
  1591. "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY="
  1592. },
  1593. "node_modules/balanced-match": {
  1594. "version": "1.0.2",
  1595. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  1596. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
  1597. },
  1598. "node_modules/base-x": {
  1599. "version": "3.0.9",
  1600. "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
  1601. "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
  1602. "dependencies": {
  1603. "safe-buffer": "^5.0.1"
  1604. }
  1605. },
  1606. "node_modules/base64-js": {
  1607. "version": "1.5.1",
  1608. "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
  1609. "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
  1610. "funding": [
  1611. {
  1612. "type": "github",
  1613. "url": "https://github.com/sponsors/feross"
  1614. },
  1615. {
  1616. "type": "patreon",
  1617. "url": "https://www.patreon.com/feross"
  1618. },
  1619. {
  1620. "type": "consulting",
  1621. "url": "https://feross.org/support"
  1622. }
  1623. ]
  1624. },
  1625. "node_modules/bech32": {
  1626. "version": "2.0.0",
  1627. "resolved": "https://registry.npmjs.org/bech32/-/bech32-2.0.0.tgz",
  1628. "integrity": "sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg=="
  1629. },
  1630. "node_modules/bindings": {
  1631. "version": "1.5.0",
  1632. "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
  1633. "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
  1634. "dependencies": {
  1635. "file-uri-to-path": "1.0.0"
  1636. }
  1637. },
  1638. "node_modules/bip32": {
  1639. "version": "2.0.6",
  1640. "resolved": "https://registry.npmjs.org/bip32/-/bip32-2.0.6.tgz",
  1641. "integrity": "sha512-HpV5OMLLGTjSVblmrtYRfFFKuQB+GArM0+XP8HGWfJ5vxYBqo+DesvJwOdC2WJ3bCkZShGf0QIfoIpeomVzVdA==",
  1642. "dependencies": {
  1643. "@types/node": "10.12.18",
  1644. "bs58check": "^2.1.1",
  1645. "create-hash": "^1.2.0",
  1646. "create-hmac": "^1.1.7",
  1647. "tiny-secp256k1": "^1.1.3",
  1648. "typeforce": "^1.11.5",
  1649. "wif": "^2.0.6"
  1650. },
  1651. "engines": {
  1652. "node": ">=6.0.0"
  1653. }
  1654. },
  1655. "node_modules/bip39": {
  1656. "version": "3.0.4",
  1657. "resolved": "https://registry.npmjs.org/bip39/-/bip39-3.0.4.tgz",
  1658. "integrity": "sha512-YZKQlb752TrUWqHWj7XAwCSjYEgGAk+/Aas3V7NyjQeZYsztO8JnQUaCWhcnL4T+jL8nvB8typ2jRPzTlgugNw==",
  1659. "dependencies": {
  1660. "@types/node": "11.11.6",
  1661. "create-hash": "^1.1.0",
  1662. "pbkdf2": "^3.0.9",
  1663. "randombytes": "^2.0.1"
  1664. }
  1665. },
  1666. "node_modules/bip39/node_modules/@types/node": {
  1667. "version": "11.11.6",
  1668. "resolved": "https://registry.npmjs.org/@types/node/-/node-11.11.6.tgz",
  1669. "integrity": "sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ=="
  1670. },
  1671. "node_modules/bn.js": {
  1672. "version": "5.2.0",
  1673. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz",
  1674. "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
  1675. },
  1676. "node_modules/borsh": {
  1677. "version": "0.4.0",
  1678. "resolved": "https://registry.npmjs.org/borsh/-/borsh-0.4.0.tgz",
  1679. "integrity": "sha512-aX6qtLya3K0AkT66CmYWCCDr77qsE9arV05OmdFpmat9qu8Pg9J5tBUPDztAW5fNh/d/MyVG/OYziP52Ndzx1g==",
  1680. "dependencies": {
  1681. "@types/bn.js": "^4.11.5",
  1682. "bn.js": "^5.0.0",
  1683. "bs58": "^4.0.0",
  1684. "text-encoding-utf-8": "^1.0.2"
  1685. }
  1686. },
  1687. "node_modules/bowser": {
  1688. "version": "2.11.0",
  1689. "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz",
  1690. "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA=="
  1691. },
  1692. "node_modules/brace-expansion": {
  1693. "version": "1.1.11",
  1694. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
  1695. "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
  1696. "dependencies": {
  1697. "balanced-match": "^1.0.0",
  1698. "concat-map": "0.0.1"
  1699. }
  1700. },
  1701. "node_modules/brorand": {
  1702. "version": "1.1.0",
  1703. "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
  1704. "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
  1705. },
  1706. "node_modules/browser-headers": {
  1707. "version": "0.4.1",
  1708. "resolved": "https://registry.npmjs.org/browser-headers/-/browser-headers-0.4.1.tgz",
  1709. "integrity": "sha512-CA9hsySZVo9371qEHjHZtYxV2cFtVj5Wj/ZHi8ooEsrtm4vOnl9Y9HmyYWk9q+05d7K3rdoAE0j3MVEFVvtQtg=="
  1710. },
  1711. "node_modules/bs58": {
  1712. "version": "4.0.1",
  1713. "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
  1714. "integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=",
  1715. "dependencies": {
  1716. "base-x": "^3.0.2"
  1717. }
  1718. },
  1719. "node_modules/bs58check": {
  1720. "version": "2.1.2",
  1721. "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz",
  1722. "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==",
  1723. "dependencies": {
  1724. "bs58": "^4.0.0",
  1725. "create-hash": "^1.1.0",
  1726. "safe-buffer": "^5.1.2"
  1727. }
  1728. },
  1729. "node_modules/buffer": {
  1730. "version": "6.0.3",
  1731. "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
  1732. "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
  1733. "funding": [
  1734. {
  1735. "type": "github",
  1736. "url": "https://github.com/sponsors/feross"
  1737. },
  1738. {
  1739. "type": "patreon",
  1740. "url": "https://www.patreon.com/feross"
  1741. },
  1742. {
  1743. "type": "consulting",
  1744. "url": "https://feross.org/support"
  1745. }
  1746. ],
  1747. "dependencies": {
  1748. "base64-js": "^1.3.1",
  1749. "ieee754": "^1.2.1"
  1750. }
  1751. },
  1752. "node_modules/buffer-layout": {
  1753. "version": "1.2.2",
  1754. "resolved": "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz",
  1755. "integrity": "sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA==",
  1756. "engines": {
  1757. "node": ">=4.5"
  1758. }
  1759. },
  1760. "node_modules/bufferutil": {
  1761. "version": "4.0.6",
  1762. "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz",
  1763. "integrity": "sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw==",
  1764. "hasInstallScript": true,
  1765. "dependencies": {
  1766. "node-gyp-build": "^4.3.0"
  1767. },
  1768. "engines": {
  1769. "node": ">=6.14.2"
  1770. }
  1771. },
  1772. "node_modules/camelize": {
  1773. "version": "1.0.0",
  1774. "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz",
  1775. "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs="
  1776. },
  1777. "node_modules/chalk": {
  1778. "version": "2.4.2",
  1779. "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
  1780. "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
  1781. "dependencies": {
  1782. "ansi-styles": "^3.2.1",
  1783. "escape-string-regexp": "^1.0.5",
  1784. "supports-color": "^5.3.0"
  1785. },
  1786. "engines": {
  1787. "node": ">=4"
  1788. }
  1789. },
  1790. "node_modules/cipher-base": {
  1791. "version": "1.0.4",
  1792. "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
  1793. "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
  1794. "dependencies": {
  1795. "inherits": "^2.0.1",
  1796. "safe-buffer": "^5.0.1"
  1797. }
  1798. },
  1799. "node_modules/circular-json": {
  1800. "version": "0.5.9",
  1801. "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.9.tgz",
  1802. "integrity": "sha512-4ivwqHpIFJZBuhN3g/pEcdbnGUywkBblloGbkglyloVjjR3uT6tieI89MVOfbP2tHX5sgb01FuLgAOzebNlJNQ==",
  1803. "deprecated": "CircularJSON is in maintenance only, flatted is its successor."
  1804. },
  1805. "node_modules/color-convert": {
  1806. "version": "1.9.3",
  1807. "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
  1808. "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
  1809. "dependencies": {
  1810. "color-name": "1.1.3"
  1811. }
  1812. },
  1813. "node_modules/color-name": {
  1814. "version": "1.1.3",
  1815. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
  1816. "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
  1817. },
  1818. "node_modules/commander": {
  1819. "version": "2.20.3",
  1820. "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
  1821. "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
  1822. },
  1823. "node_modules/concat-map": {
  1824. "version": "0.0.1",
  1825. "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
  1826. "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
  1827. },
  1828. "node_modules/create-hash": {
  1829. "version": "1.2.0",
  1830. "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
  1831. "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
  1832. "dependencies": {
  1833. "cipher-base": "^1.0.1",
  1834. "inherits": "^2.0.1",
  1835. "md5.js": "^1.3.4",
  1836. "ripemd160": "^2.0.1",
  1837. "sha.js": "^2.4.0"
  1838. }
  1839. },
  1840. "node_modules/create-hmac": {
  1841. "version": "1.1.7",
  1842. "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
  1843. "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
  1844. "dependencies": {
  1845. "cipher-base": "^1.0.3",
  1846. "create-hash": "^1.1.0",
  1847. "inherits": "^2.0.1",
  1848. "ripemd160": "^2.0.0",
  1849. "safe-buffer": "^5.0.1",
  1850. "sha.js": "^2.4.8"
  1851. }
  1852. },
  1853. "node_modules/cross-fetch": {
  1854. "version": "3.1.4",
  1855. "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz",
  1856. "integrity": "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==",
  1857. "dependencies": {
  1858. "node-fetch": "2.6.1"
  1859. }
  1860. },
  1861. "node_modules/css-color-keywords": {
  1862. "version": "1.0.0",
  1863. "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz",
  1864. "integrity": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=",
  1865. "engines": {
  1866. "node": ">=4"
  1867. }
  1868. },
  1869. "node_modules/css-to-react-native": {
  1870. "version": "3.0.0",
  1871. "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz",
  1872. "integrity": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==",
  1873. "dependencies": {
  1874. "camelize": "^1.0.0",
  1875. "css-color-keywords": "^1.0.0",
  1876. "postcss-value-parser": "^4.0.2"
  1877. }
  1878. },
  1879. "node_modules/debug": {
  1880. "version": "4.3.3",
  1881. "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
  1882. "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
  1883. "dependencies": {
  1884. "ms": "2.1.2"
  1885. },
  1886. "engines": {
  1887. "node": ">=6.0"
  1888. },
  1889. "peerDependenciesMeta": {
  1890. "supports-color": {
  1891. "optional": true
  1892. }
  1893. }
  1894. },
  1895. "node_modules/decimal.js": {
  1896. "version": "10.3.1",
  1897. "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz",
  1898. "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ=="
  1899. },
  1900. "node_modules/decode-uri-component": {
  1901. "version": "0.2.0",
  1902. "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
  1903. "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
  1904. "engines": {
  1905. "node": ">=0.10"
  1906. }
  1907. },
  1908. "node_modules/delay": {
  1909. "version": "5.0.0",
  1910. "resolved": "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz",
  1911. "integrity": "sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==",
  1912. "engines": {
  1913. "node": ">=10"
  1914. },
  1915. "funding": {
  1916. "url": "https://github.com/sponsors/sindresorhus"
  1917. }
  1918. },
  1919. "node_modules/detect-browser": {
  1920. "version": "5.2.0",
  1921. "resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.2.0.tgz",
  1922. "integrity": "sha512-tr7XntDAu50BVENgQfajMLzacmSe34D+qZc4zjnniz0ZVuw/TZcLcyxHQjYpJTM36sGEkZZlYLnIM1hH7alTMA=="
  1923. },
  1924. "node_modules/dotenv": {
  1925. "version": "10.0.0",
  1926. "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz",
  1927. "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==",
  1928. "engines": {
  1929. "node": ">=10"
  1930. }
  1931. },
  1932. "node_modules/elliptic": {
  1933. "version": "6.6.1",
  1934. "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz",
  1935. "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==",
  1936. "license": "MIT",
  1937. "dependencies": {
  1938. "bn.js": "^4.11.9",
  1939. "brorand": "^1.1.0",
  1940. "hash.js": "^1.0.0",
  1941. "hmac-drbg": "^1.0.1",
  1942. "inherits": "^2.0.4",
  1943. "minimalistic-assert": "^1.0.1",
  1944. "minimalistic-crypto-utils": "^1.0.1"
  1945. }
  1946. },
  1947. "node_modules/elliptic/node_modules/bn.js": {
  1948. "version": "4.12.0",
  1949. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
  1950. "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
  1951. },
  1952. "node_modules/es6-promise": {
  1953. "version": "4.2.8",
  1954. "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
  1955. "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
  1956. },
  1957. "node_modules/es6-promisify": {
  1958. "version": "5.0.0",
  1959. "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz",
  1960. "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=",
  1961. "dependencies": {
  1962. "es6-promise": "^4.0.3"
  1963. }
  1964. },
  1965. "node_modules/escape-string-regexp": {
  1966. "version": "1.0.5",
  1967. "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
  1968. "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
  1969. "engines": {
  1970. "node": ">=0.8.0"
  1971. }
  1972. },
  1973. "node_modules/ethers": {
  1974. "version": "5.5.3",
  1975. "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.5.3.tgz",
  1976. "integrity": "sha512-fTT4WT8/hTe/BLwRUtl7I5zlpF3XC3P/Xwqxc5AIP2HGlH15qpmjs0Ou78az93b1rLITzXLFxoNX63B8ZbUd7g==",
  1977. "funding": [
  1978. {
  1979. "type": "individual",
  1980. "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
  1981. },
  1982. {
  1983. "type": "individual",
  1984. "url": "https://www.buymeacoffee.com/ricmoo"
  1985. }
  1986. ],
  1987. "dependencies": {
  1988. "@ethersproject/abi": "5.5.0",
  1989. "@ethersproject/abstract-provider": "5.5.1",
  1990. "@ethersproject/abstract-signer": "5.5.0",
  1991. "@ethersproject/address": "5.5.0",
  1992. "@ethersproject/base64": "5.5.0",
  1993. "@ethersproject/basex": "5.5.0",
  1994. "@ethersproject/bignumber": "5.5.0",
  1995. "@ethersproject/bytes": "5.5.0",
  1996. "@ethersproject/constants": "5.5.0",
  1997. "@ethersproject/contracts": "5.5.0",
  1998. "@ethersproject/hash": "5.5.0",
  1999. "@ethersproject/hdnode": "5.5.0",
  2000. "@ethersproject/json-wallets": "5.5.0",
  2001. "@ethersproject/keccak256": "5.5.0",
  2002. "@ethersproject/logger": "5.5.0",
  2003. "@ethersproject/networks": "5.5.2",
  2004. "@ethersproject/pbkdf2": "5.5.0",
  2005. "@ethersproject/properties": "5.5.0",
  2006. "@ethersproject/providers": "5.5.2",
  2007. "@ethersproject/random": "5.5.1",
  2008. "@ethersproject/rlp": "5.5.0",
  2009. "@ethersproject/sha2": "5.5.0",
  2010. "@ethersproject/signing-key": "5.5.0",
  2011. "@ethersproject/solidity": "5.5.0",
  2012. "@ethersproject/strings": "5.5.0",
  2013. "@ethersproject/transactions": "5.5.0",
  2014. "@ethersproject/units": "5.5.0",
  2015. "@ethersproject/wallet": "5.5.0",
  2016. "@ethersproject/web": "5.5.1",
  2017. "@ethersproject/wordlists": "5.5.0"
  2018. }
  2019. },
  2020. "node_modules/eventemitter3": {
  2021. "version": "4.0.7",
  2022. "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
  2023. "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
  2024. },
  2025. "node_modules/eyes": {
  2026. "version": "0.1.8",
  2027. "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz",
  2028. "integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A=",
  2029. "engines": {
  2030. "node": "> 0.1.90"
  2031. }
  2032. },
  2033. "node_modules/fast-deep-equal": {
  2034. "version": "3.1.3",
  2035. "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
  2036. "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
  2037. },
  2038. "node_modules/file-uri-to-path": {
  2039. "version": "1.0.0",
  2040. "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
  2041. "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="
  2042. },
  2043. "node_modules/fix-hmr": {
  2044. "version": "1.0.2",
  2045. "resolved": "https://registry.npmjs.org/fix-hmr/-/fix-hmr-1.0.2.tgz",
  2046. "integrity": "sha512-N0lDDYiu0yplOZt1Q+d3CSpie4mimTMUQ9ftOnT4DDWdGuNH8BFs1bpLKJKd9DXFtkiAR9Y5updgmI7kyW8AuQ==",
  2047. "dependencies": {
  2048. "react": "^17.0.2"
  2049. },
  2050. "engines": {
  2051. "node": ">=12"
  2052. }
  2053. },
  2054. "node_modules/follow-redirects": {
  2055. "version": "1.14.6",
  2056. "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.6.tgz",
  2057. "integrity": "sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A==",
  2058. "funding": [
  2059. {
  2060. "type": "individual",
  2061. "url": "https://github.com/sponsors/RubenVerborgh"
  2062. }
  2063. ],
  2064. "engines": {
  2065. "node": ">=4.0"
  2066. },
  2067. "peerDependenciesMeta": {
  2068. "debug": {
  2069. "optional": true
  2070. }
  2071. }
  2072. },
  2073. "node_modules/fs.realpath": {
  2074. "version": "1.0.0",
  2075. "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
  2076. "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
  2077. },
  2078. "node_modules/glob": {
  2079. "version": "7.2.0",
  2080. "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
  2081. "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
  2082. "dependencies": {
  2083. "fs.realpath": "^1.0.0",
  2084. "inflight": "^1.0.4",
  2085. "inherits": "2",
  2086. "minimatch": "^3.0.4",
  2087. "once": "^1.3.0",
  2088. "path-is-absolute": "^1.0.0"
  2089. },
  2090. "engines": {
  2091. "node": "*"
  2092. },
  2093. "funding": {
  2094. "url": "https://github.com/sponsors/isaacs"
  2095. }
  2096. },
  2097. "node_modules/globals": {
  2098. "version": "11.12.0",
  2099. "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
  2100. "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
  2101. "engines": {
  2102. "node": ">=4"
  2103. }
  2104. },
  2105. "node_modules/google-protobuf": {
  2106. "version": "3.19.2",
  2107. "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.19.2.tgz",
  2108. "integrity": "sha512-VVi7/U6WZ5aH11i7/z2kuGHENZXUSZ6VonAp20cnInF0mVaGk3T23eSTIgJ+OjUKEAB4+bHdszseQg29TL+wSg=="
  2109. },
  2110. "node_modules/has-flag": {
  2111. "version": "3.0.0",
  2112. "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
  2113. "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
  2114. "engines": {
  2115. "node": ">=4"
  2116. }
  2117. },
  2118. "node_modules/hash-base": {
  2119. "version": "3.1.0",
  2120. "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
  2121. "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
  2122. "dependencies": {
  2123. "inherits": "^2.0.4",
  2124. "readable-stream": "^3.6.0",
  2125. "safe-buffer": "^5.2.0"
  2126. },
  2127. "engines": {
  2128. "node": ">=4"
  2129. }
  2130. },
  2131. "node_modules/hash.js": {
  2132. "version": "1.1.7",
  2133. "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
  2134. "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
  2135. "dependencies": {
  2136. "inherits": "^2.0.3",
  2137. "minimalistic-assert": "^1.0.1"
  2138. }
  2139. },
  2140. "node_modules/hmac-drbg": {
  2141. "version": "1.0.1",
  2142. "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
  2143. "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
  2144. "dependencies": {
  2145. "hash.js": "^1.0.3",
  2146. "minimalistic-assert": "^1.0.0",
  2147. "minimalistic-crypto-utils": "^1.0.1"
  2148. }
  2149. },
  2150. "node_modules/hoist-non-react-statics": {
  2151. "version": "3.3.2",
  2152. "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
  2153. "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
  2154. "dependencies": {
  2155. "react-is": "^16.7.0"
  2156. }
  2157. },
  2158. "node_modules/hoist-non-react-statics/node_modules/react-is": {
  2159. "version": "16.13.1",
  2160. "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
  2161. "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
  2162. },
  2163. "node_modules/ieee754": {
  2164. "version": "1.2.1",
  2165. "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
  2166. "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
  2167. "funding": [
  2168. {
  2169. "type": "github",
  2170. "url": "https://github.com/sponsors/feross"
  2171. },
  2172. {
  2173. "type": "patreon",
  2174. "url": "https://www.patreon.com/feross"
  2175. },
  2176. {
  2177. "type": "consulting",
  2178. "url": "https://feross.org/support"
  2179. }
  2180. ]
  2181. },
  2182. "node_modules/inflight": {
  2183. "version": "1.0.6",
  2184. "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
  2185. "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
  2186. "dependencies": {
  2187. "once": "^1.3.0",
  2188. "wrappy": "1"
  2189. }
  2190. },
  2191. "node_modules/inherits": {
  2192. "version": "2.0.4",
  2193. "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
  2194. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
  2195. },
  2196. "node_modules/is-typedarray": {
  2197. "version": "1.0.0",
  2198. "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
  2199. "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
  2200. },
  2201. "node_modules/isomorphic-ws": {
  2202. "version": "4.0.1",
  2203. "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz",
  2204. "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==",
  2205. "peerDependencies": {
  2206. "ws": "*"
  2207. }
  2208. },
  2209. "node_modules/jayson": {
  2210. "version": "3.6.6",
  2211. "resolved": "https://registry.npmjs.org/jayson/-/jayson-3.6.6.tgz",
  2212. "integrity": "sha512-f71uvrAWTtrwoww6MKcl9phQTC+56AopLyEenWvKVAIMz+q0oVGj6tenLZ7Z6UiPBkJtKLj4kt0tACllFQruGQ==",
  2213. "dependencies": {
  2214. "@types/connect": "^3.4.33",
  2215. "@types/express-serve-static-core": "^4.17.9",
  2216. "@types/lodash": "^4.14.159",
  2217. "@types/node": "^12.12.54",
  2218. "@types/ws": "^7.4.4",
  2219. "commander": "^2.20.3",
  2220. "delay": "^5.0.0",
  2221. "es6-promisify": "^5.0.0",
  2222. "eyes": "^0.1.8",
  2223. "isomorphic-ws": "^4.0.1",
  2224. "json-stringify-safe": "^5.0.1",
  2225. "JSONStream": "^1.3.5",
  2226. "lodash": "^4.17.20",
  2227. "uuid": "^8.3.2",
  2228. "ws": "^7.4.5"
  2229. },
  2230. "bin": {
  2231. "jayson": "bin/jayson.js"
  2232. },
  2233. "engines": {
  2234. "node": ">=8"
  2235. }
  2236. },
  2237. "node_modules/jayson/node_modules/@types/node": {
  2238. "version": "12.20.41",
  2239. "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.41.tgz",
  2240. "integrity": "sha512-f6xOqucbDirG7LOzedpvzjP3UTmHttRou3Mosx3vL9wr9AIQGhcPgVnqa8ihpZYnxyM1rxeNCvTyukPKZtq10Q=="
  2241. },
  2242. "node_modules/js-base64": {
  2243. "version": "3.7.2",
  2244. "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.2.tgz",
  2245. "integrity": "sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ=="
  2246. },
  2247. "node_modules/js-sha3": {
  2248. "version": "0.8.0",
  2249. "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz",
  2250. "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q=="
  2251. },
  2252. "node_modules/js-tokens": {
  2253. "version": "4.0.0",
  2254. "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
  2255. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
  2256. },
  2257. "node_modules/jscrypto": {
  2258. "version": "1.0.2",
  2259. "resolved": "https://registry.npmjs.org/jscrypto/-/jscrypto-1.0.2.tgz",
  2260. "integrity": "sha512-r+oNJLGTv1nkNMBBq3c70xYrFDgJOYVgs2OHijz5Ht+0KJ0yObD0oYxC9mN72KLzVfXw+osspg6t27IZvuTUxw==",
  2261. "bin": {
  2262. "jscrypto": "bin/cli.js"
  2263. }
  2264. },
  2265. "node_modules/jsesc": {
  2266. "version": "2.5.2",
  2267. "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
  2268. "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
  2269. "bin": {
  2270. "jsesc": "bin/jsesc"
  2271. },
  2272. "engines": {
  2273. "node": ">=4"
  2274. }
  2275. },
  2276. "node_modules/json-stringify-safe": {
  2277. "version": "5.0.1",
  2278. "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
  2279. "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
  2280. },
  2281. "node_modules/jsonparse": {
  2282. "version": "1.3.1",
  2283. "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
  2284. "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=",
  2285. "engines": [
  2286. "node >= 0.2.0"
  2287. ]
  2288. },
  2289. "node_modules/JSONStream": {
  2290. "version": "1.3.5",
  2291. "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",
  2292. "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==",
  2293. "dependencies": {
  2294. "jsonparse": "^1.2.0",
  2295. "through": ">=2.2.7 <3"
  2296. },
  2297. "bin": {
  2298. "JSONStream": "bin.js"
  2299. },
  2300. "engines": {
  2301. "node": "*"
  2302. }
  2303. },
  2304. "node_modules/keyvaluestorage-interface": {
  2305. "version": "1.0.0",
  2306. "resolved": "https://registry.npmjs.org/keyvaluestorage-interface/-/keyvaluestorage-interface-1.0.0.tgz",
  2307. "integrity": "sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g=="
  2308. },
  2309. "node_modules/lodash": {
  2310. "version": "4.17.21",
  2311. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
  2312. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
  2313. },
  2314. "node_modules/long": {
  2315. "version": "4.0.0",
  2316. "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz",
  2317. "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA=="
  2318. },
  2319. "node_modules/loose-envify": {
  2320. "version": "1.4.0",
  2321. "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
  2322. "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
  2323. "dependencies": {
  2324. "js-tokens": "^3.0.0 || ^4.0.0"
  2325. },
  2326. "bin": {
  2327. "loose-envify": "cli.js"
  2328. }
  2329. },
  2330. "node_modules/md5.js": {
  2331. "version": "1.3.5",
  2332. "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
  2333. "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
  2334. "dependencies": {
  2335. "hash-base": "^3.0.0",
  2336. "inherits": "^2.0.1",
  2337. "safe-buffer": "^5.1.2"
  2338. }
  2339. },
  2340. "node_modules/minimalistic-assert": {
  2341. "version": "1.0.1",
  2342. "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
  2343. "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
  2344. },
  2345. "node_modules/minimalistic-crypto-utils": {
  2346. "version": "1.0.1",
  2347. "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
  2348. "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo="
  2349. },
  2350. "node_modules/minimatch": {
  2351. "version": "3.0.4",
  2352. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
  2353. "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
  2354. "dependencies": {
  2355. "brace-expansion": "^1.1.7"
  2356. },
  2357. "engines": {
  2358. "node": "*"
  2359. }
  2360. },
  2361. "node_modules/mobile-detect": {
  2362. "version": "1.4.5",
  2363. "resolved": "https://registry.npmjs.org/mobile-detect/-/mobile-detect-1.4.5.tgz",
  2364. "integrity": "sha512-yc0LhH6tItlvfLBugVUEtgawwFU2sIe+cSdmRJJCTMZ5GEJyLxNyC/NIOAOGk67Fa8GNpOttO3Xz/1bHpXFD/g=="
  2365. },
  2366. "node_modules/ms": {
  2367. "version": "2.1.2",
  2368. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
  2369. "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
  2370. },
  2371. "node_modules/nan": {
  2372. "version": "2.15.0",
  2373. "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz",
  2374. "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="
  2375. },
  2376. "node_modules/node-addon-api": {
  2377. "version": "2.0.2",
  2378. "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz",
  2379. "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA=="
  2380. },
  2381. "node_modules/node-fetch": {
  2382. "version": "2.6.1",
  2383. "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz",
  2384. "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==",
  2385. "engines": {
  2386. "node": "4.x || >=6.0.0"
  2387. }
  2388. },
  2389. "node_modules/node-gyp-build": {
  2390. "version": "4.3.0",
  2391. "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz",
  2392. "integrity": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==",
  2393. "bin": {
  2394. "node-gyp-build": "bin.js",
  2395. "node-gyp-build-optional": "optional.js",
  2396. "node-gyp-build-test": "build-test.js"
  2397. }
  2398. },
  2399. "node_modules/object-assign": {
  2400. "version": "4.1.1",
  2401. "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  2402. "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
  2403. "engines": {
  2404. "node": ">=0.10.0"
  2405. }
  2406. },
  2407. "node_modules/once": {
  2408. "version": "1.4.0",
  2409. "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
  2410. "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
  2411. "dependencies": {
  2412. "wrappy": "1"
  2413. }
  2414. },
  2415. "node_modules/path-is-absolute": {
  2416. "version": "1.0.1",
  2417. "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
  2418. "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
  2419. "engines": {
  2420. "node": ">=0.10.0"
  2421. }
  2422. },
  2423. "node_modules/pbkdf2": {
  2424. "version": "3.1.2",
  2425. "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
  2426. "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
  2427. "dependencies": {
  2428. "create-hash": "^1.1.2",
  2429. "create-hmac": "^1.1.4",
  2430. "ripemd160": "^2.0.1",
  2431. "safe-buffer": "^5.0.1",
  2432. "sha.js": "^2.4.8"
  2433. },
  2434. "engines": {
  2435. "node": ">=0.12"
  2436. }
  2437. },
  2438. "node_modules/postcss-value-parser": {
  2439. "version": "4.2.0",
  2440. "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
  2441. "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
  2442. },
  2443. "node_modules/prop-types": {
  2444. "version": "15.8.1",
  2445. "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
  2446. "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
  2447. "dependencies": {
  2448. "loose-envify": "^1.4.0",
  2449. "object-assign": "^4.1.1",
  2450. "react-is": "^16.13.1"
  2451. }
  2452. },
  2453. "node_modules/prop-types/node_modules/react-is": {
  2454. "version": "16.13.1",
  2455. "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
  2456. "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
  2457. },
  2458. "node_modules/protobufjs": {
  2459. "version": "6.11.2",
  2460. "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.2.tgz",
  2461. "integrity": "sha512-4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw==",
  2462. "hasInstallScript": true,
  2463. "dependencies": {
  2464. "@protobufjs/aspromise": "^1.1.2",
  2465. "@protobufjs/base64": "^1.1.2",
  2466. "@protobufjs/codegen": "^2.0.4",
  2467. "@protobufjs/eventemitter": "^1.1.0",
  2468. "@protobufjs/fetch": "^1.1.0",
  2469. "@protobufjs/float": "^1.0.2",
  2470. "@protobufjs/inquire": "^1.1.0",
  2471. "@protobufjs/path": "^1.1.2",
  2472. "@protobufjs/pool": "^1.1.0",
  2473. "@protobufjs/utf8": "^1.1.0",
  2474. "@types/long": "^4.0.1",
  2475. "@types/node": ">=13.7.0",
  2476. "long": "^4.0.0"
  2477. },
  2478. "bin": {
  2479. "pbjs": "bin/pbjs",
  2480. "pbts": "bin/pbts"
  2481. }
  2482. },
  2483. "node_modules/protobufjs/node_modules/@types/node": {
  2484. "version": "17.0.8",
  2485. "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.8.tgz",
  2486. "integrity": "sha512-YofkM6fGv4gDJq78g4j0mMuGMkZVxZDgtU0JRdx6FgiJDG+0fY0GKVolOV8WqVmEhLCXkQRjwDdKyPxJp/uucg=="
  2487. },
  2488. "node_modules/qr.js": {
  2489. "version": "0.0.0",
  2490. "resolved": "https://registry.npmjs.org/qr.js/-/qr.js-0.0.0.tgz",
  2491. "integrity": "sha1-ys6GOG9ZoNuAUPqQ2baw6IoeNk8="
  2492. },
  2493. "node_modules/qrcode.react": {
  2494. "version": "1.0.1",
  2495. "resolved": "https://registry.npmjs.org/qrcode.react/-/qrcode.react-1.0.1.tgz",
  2496. "integrity": "sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==",
  2497. "dependencies": {
  2498. "loose-envify": "^1.4.0",
  2499. "prop-types": "^15.6.0",
  2500. "qr.js": "0.0.0"
  2501. },
  2502. "peerDependencies": {
  2503. "react": "^15.5.3 || ^16.0.0 || ^17.0.0"
  2504. }
  2505. },
  2506. "node_modules/query-string": {
  2507. "version": "6.13.5",
  2508. "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.5.tgz",
  2509. "integrity": "sha512-svk3xg9qHR39P3JlHuD7g3nRnyay5mHbrPctEBDUxUkHRifPHXJDhBUycdCC0NBjXoDf44Gb+IsOZL1Uwn8M/Q==",
  2510. "dependencies": {
  2511. "decode-uri-component": "^0.2.0",
  2512. "split-on-first": "^1.0.0",
  2513. "strict-uri-encode": "^2.0.0"
  2514. },
  2515. "engines": {
  2516. "node": ">=6"
  2517. },
  2518. "funding": {
  2519. "url": "https://github.com/sponsors/sindresorhus"
  2520. }
  2521. },
  2522. "node_modules/randombytes": {
  2523. "version": "2.1.0",
  2524. "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
  2525. "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
  2526. "dependencies": {
  2527. "safe-buffer": "^5.1.0"
  2528. }
  2529. },
  2530. "node_modules/react": {
  2531. "version": "17.0.2",
  2532. "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
  2533. "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
  2534. "dependencies": {
  2535. "loose-envify": "^1.1.0",
  2536. "object-assign": "^4.1.1"
  2537. },
  2538. "engines": {
  2539. "node": ">=0.10.0"
  2540. }
  2541. },
  2542. "node_modules/react-dom": {
  2543. "version": "17.0.2",
  2544. "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
  2545. "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
  2546. "peer": true,
  2547. "dependencies": {
  2548. "loose-envify": "^1.1.0",
  2549. "object-assign": "^4.1.1",
  2550. "scheduler": "^0.20.2"
  2551. },
  2552. "peerDependencies": {
  2553. "react": "17.0.2"
  2554. }
  2555. },
  2556. "node_modules/react-is": {
  2557. "version": "17.0.2",
  2558. "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
  2559. "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
  2560. "peer": true
  2561. },
  2562. "node_modules/readable-stream": {
  2563. "version": "3.6.0",
  2564. "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
  2565. "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
  2566. "dependencies": {
  2567. "inherits": "^2.0.3",
  2568. "string_decoder": "^1.1.1",
  2569. "util-deprecate": "^1.0.1"
  2570. },
  2571. "engines": {
  2572. "node": ">= 6"
  2573. }
  2574. },
  2575. "node_modules/regenerator-runtime": {
  2576. "version": "0.13.9",
  2577. "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
  2578. "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
  2579. },
  2580. "node_modules/rimraf": {
  2581. "version": "3.0.2",
  2582. "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
  2583. "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
  2584. "dependencies": {
  2585. "glob": "^7.1.3"
  2586. },
  2587. "bin": {
  2588. "rimraf": "bin.js"
  2589. },
  2590. "funding": {
  2591. "url": "https://github.com/sponsors/isaacs"
  2592. }
  2593. },
  2594. "node_modules/ripemd160": {
  2595. "version": "2.0.2",
  2596. "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
  2597. "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
  2598. "dependencies": {
  2599. "hash-base": "^3.0.0",
  2600. "inherits": "^2.0.1"
  2601. }
  2602. },
  2603. "node_modules/rpc-websockets": {
  2604. "version": "7.4.16",
  2605. "resolved": "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.4.16.tgz",
  2606. "integrity": "sha512-0b7OVhutzwRIaYAtJo5tqtaQTWKfwAsKnaThOSOy+VkhVdleNUgb8eZnWSdWITRZZEigV5uPEIDr5KZe4DBrdQ==",
  2607. "dependencies": {
  2608. "@babel/runtime": "^7.11.2",
  2609. "circular-json": "^0.5.9",
  2610. "eventemitter3": "^4.0.7",
  2611. "uuid": "^8.3.0",
  2612. "ws": "^7.4.5"
  2613. },
  2614. "funding": {
  2615. "type": "paypal",
  2616. "url": "https://paypal.me/kozjak"
  2617. },
  2618. "optionalDependencies": {
  2619. "bufferutil": "^4.0.1",
  2620. "utf-8-validate": "^5.0.2"
  2621. }
  2622. },
  2623. "node_modules/rxjs": {
  2624. "version": "7.5.1",
  2625. "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.1.tgz",
  2626. "integrity": "sha512-KExVEeZWxMZnZhUZtsJcFwz8IvPvgu4G2Z2QyqjZQzUGr32KDYuSxrEYO4w3tFFNbfLozcrKUTvTPi+E9ywJkQ==",
  2627. "dependencies": {
  2628. "tslib": "^2.1.0"
  2629. }
  2630. },
  2631. "node_modules/safe-buffer": {
  2632. "version": "5.2.1",
  2633. "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
  2634. "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
  2635. "funding": [
  2636. {
  2637. "type": "github",
  2638. "url": "https://github.com/sponsors/feross"
  2639. },
  2640. {
  2641. "type": "patreon",
  2642. "url": "https://www.patreon.com/feross"
  2643. },
  2644. {
  2645. "type": "consulting",
  2646. "url": "https://feross.org/support"
  2647. }
  2648. ]
  2649. },
  2650. "node_modules/scheduler": {
  2651. "version": "0.20.2",
  2652. "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz",
  2653. "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==",
  2654. "peer": true,
  2655. "dependencies": {
  2656. "loose-envify": "^1.1.0",
  2657. "object-assign": "^4.1.1"
  2658. }
  2659. },
  2660. "node_modules/scrypt-js": {
  2661. "version": "3.0.1",
  2662. "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz",
  2663. "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA=="
  2664. },
  2665. "node_modules/secp256k1": {
  2666. "version": "4.0.3",
  2667. "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz",
  2668. "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==",
  2669. "hasInstallScript": true,
  2670. "dependencies": {
  2671. "elliptic": "^6.5.4",
  2672. "node-addon-api": "^2.0.0",
  2673. "node-gyp-build": "^4.2.0"
  2674. },
  2675. "engines": {
  2676. "node": ">=10.0.0"
  2677. }
  2678. },
  2679. "node_modules/sha.js": {
  2680. "version": "2.4.11",
  2681. "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
  2682. "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
  2683. "dependencies": {
  2684. "inherits": "^2.0.1",
  2685. "safe-buffer": "^5.0.1"
  2686. },
  2687. "bin": {
  2688. "sha.js": "bin.js"
  2689. }
  2690. },
  2691. "node_modules/shallowequal": {
  2692. "version": "1.1.0",
  2693. "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
  2694. "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ=="
  2695. },
  2696. "node_modules/source-map": {
  2697. "version": "0.5.7",
  2698. "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
  2699. "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
  2700. "engines": {
  2701. "node": ">=0.10.0"
  2702. }
  2703. },
  2704. "node_modules/split-on-first": {
  2705. "version": "1.1.0",
  2706. "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz",
  2707. "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==",
  2708. "engines": {
  2709. "node": ">=6"
  2710. }
  2711. },
  2712. "node_modules/strict-uri-encode": {
  2713. "version": "2.0.0",
  2714. "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz",
  2715. "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=",
  2716. "engines": {
  2717. "node": ">=4"
  2718. }
  2719. },
  2720. "node_modules/string_decoder": {
  2721. "version": "1.3.0",
  2722. "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
  2723. "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
  2724. "dependencies": {
  2725. "safe-buffer": "~5.2.0"
  2726. }
  2727. },
  2728. "node_modules/styled-components": {
  2729. "version": "5.3.3",
  2730. "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.3.tgz",
  2731. "integrity": "sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw==",
  2732. "dependencies": {
  2733. "@babel/helper-module-imports": "^7.0.0",
  2734. "@babel/traverse": "^7.4.5",
  2735. "@emotion/is-prop-valid": "^0.8.8",
  2736. "@emotion/stylis": "^0.8.4",
  2737. "@emotion/unitless": "^0.7.4",
  2738. "babel-plugin-styled-components": ">= 1.12.0",
  2739. "css-to-react-native": "^3.0.0",
  2740. "hoist-non-react-statics": "^3.0.0",
  2741. "shallowequal": "^1.1.0",
  2742. "supports-color": "^5.5.0"
  2743. },
  2744. "engines": {
  2745. "node": ">=10"
  2746. },
  2747. "funding": {
  2748. "type": "opencollective",
  2749. "url": "https://opencollective.com/styled-components"
  2750. },
  2751. "peerDependencies": {
  2752. "react": ">= 16.8.0",
  2753. "react-dom": ">= 16.8.0",
  2754. "react-is": ">= 16.8.0"
  2755. }
  2756. },
  2757. "node_modules/superstruct": {
  2758. "version": "0.14.2",
  2759. "resolved": "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz",
  2760. "integrity": "sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ=="
  2761. },
  2762. "node_modules/supports-color": {
  2763. "version": "5.5.0",
  2764. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
  2765. "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
  2766. "dependencies": {
  2767. "has-flag": "^3.0.0"
  2768. },
  2769. "engines": {
  2770. "node": ">=4"
  2771. }
  2772. },
  2773. "node_modules/text-encoding-utf-8": {
  2774. "version": "1.0.2",
  2775. "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz",
  2776. "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg=="
  2777. },
  2778. "node_modules/through": {
  2779. "version": "2.3.8",
  2780. "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
  2781. "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU="
  2782. },
  2783. "node_modules/tiny-secp256k1": {
  2784. "version": "1.1.6",
  2785. "resolved": "https://registry.npmjs.org/tiny-secp256k1/-/tiny-secp256k1-1.1.6.tgz",
  2786. "integrity": "sha512-FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==",
  2787. "hasInstallScript": true,
  2788. "dependencies": {
  2789. "bindings": "^1.3.0",
  2790. "bn.js": "^4.11.8",
  2791. "create-hmac": "^1.1.7",
  2792. "elliptic": "^6.4.0",
  2793. "nan": "^2.13.2"
  2794. },
  2795. "engines": {
  2796. "node": ">=6.0.0"
  2797. }
  2798. },
  2799. "node_modules/tiny-secp256k1/node_modules/bn.js": {
  2800. "version": "4.12.0",
  2801. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
  2802. "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
  2803. },
  2804. "node_modules/tmp": {
  2805. "version": "0.2.1",
  2806. "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz",
  2807. "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==",
  2808. "dependencies": {
  2809. "rimraf": "^3.0.0"
  2810. },
  2811. "engines": {
  2812. "node": ">=8.17.0"
  2813. }
  2814. },
  2815. "node_modules/to-fast-properties": {
  2816. "version": "2.0.0",
  2817. "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
  2818. "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
  2819. "engines": {
  2820. "node": ">=4"
  2821. }
  2822. },
  2823. "node_modules/tslib": {
  2824. "version": "2.3.1",
  2825. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
  2826. "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
  2827. },
  2828. "node_modules/tweetnacl": {
  2829. "version": "1.0.3",
  2830. "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz",
  2831. "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw=="
  2832. },
  2833. "node_modules/typedarray-to-buffer": {
  2834. "version": "3.1.5",
  2835. "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
  2836. "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
  2837. "dependencies": {
  2838. "is-typedarray": "^1.0.0"
  2839. }
  2840. },
  2841. "node_modules/typeforce": {
  2842. "version": "1.18.0",
  2843. "resolved": "https://registry.npmjs.org/typeforce/-/typeforce-1.18.0.tgz",
  2844. "integrity": "sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g=="
  2845. },
  2846. "node_modules/utf-8-validate": {
  2847. "version": "5.0.8",
  2848. "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.8.tgz",
  2849. "integrity": "sha512-k4dW/Qja1BYDl2qD4tOMB9PFVha/UJtxTc1cXYOe3WwA/2m0Yn4qB7wLMpJyLJ/7DR0XnTut3HsCSzDT4ZvKgA==",
  2850. "hasInstallScript": true,
  2851. "dependencies": {
  2852. "node-gyp-build": "^4.3.0"
  2853. },
  2854. "engines": {
  2855. "node": ">=6.14.2"
  2856. }
  2857. },
  2858. "node_modules/util-deprecate": {
  2859. "version": "1.0.2",
  2860. "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
  2861. "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
  2862. },
  2863. "node_modules/uuid": {
  2864. "version": "8.3.2",
  2865. "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
  2866. "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
  2867. "bin": {
  2868. "uuid": "dist/bin/uuid"
  2869. }
  2870. },
  2871. "node_modules/wif": {
  2872. "version": "2.0.6",
  2873. "resolved": "https://registry.npmjs.org/wif/-/wif-2.0.6.tgz",
  2874. "integrity": "sha1-CNP1IFbGZnkplyb63g1DKudLRwQ=",
  2875. "dependencies": {
  2876. "bs58check": "<3.0.0"
  2877. }
  2878. },
  2879. "node_modules/wrappy": {
  2880. "version": "1.0.2",
  2881. "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
  2882. "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
  2883. },
  2884. "node_modules/ws": {
  2885. "version": "7.5.6",
  2886. "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz",
  2887. "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==",
  2888. "engines": {
  2889. "node": ">=8.3.0"
  2890. },
  2891. "peerDependencies": {
  2892. "bufferutil": "^4.0.1",
  2893. "utf-8-validate": "^5.0.2"
  2894. },
  2895. "peerDependenciesMeta": {
  2896. "bufferutil": {
  2897. "optional": true
  2898. },
  2899. "utf-8-validate": {
  2900. "optional": true
  2901. }
  2902. }
  2903. }
  2904. },
  2905. "dependencies": {
  2906. "@babel/code-frame": {
  2907. "version": "7.16.7",
  2908. "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
  2909. "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
  2910. "requires": {
  2911. "@babel/highlight": "^7.16.7"
  2912. }
  2913. },
  2914. "@babel/generator": {
  2915. "version": "7.16.7",
  2916. "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.7.tgz",
  2917. "integrity": "sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==",
  2918. "requires": {
  2919. "@babel/types": "^7.16.7",
  2920. "jsesc": "^2.5.1",
  2921. "source-map": "^0.5.0"
  2922. }
  2923. },
  2924. "@babel/helper-annotate-as-pure": {
  2925. "version": "7.16.7",
  2926. "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz",
  2927. "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==",
  2928. "requires": {
  2929. "@babel/types": "^7.16.7"
  2930. }
  2931. },
  2932. "@babel/helper-environment-visitor": {
  2933. "version": "7.16.7",
  2934. "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz",
  2935. "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==",
  2936. "requires": {
  2937. "@babel/types": "^7.16.7"
  2938. }
  2939. },
  2940. "@babel/helper-function-name": {
  2941. "version": "7.16.7",
  2942. "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
  2943. "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
  2944. "requires": {
  2945. "@babel/helper-get-function-arity": "^7.16.7",
  2946. "@babel/template": "^7.16.7",
  2947. "@babel/types": "^7.16.7"
  2948. }
  2949. },
  2950. "@babel/helper-get-function-arity": {
  2951. "version": "7.16.7",
  2952. "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
  2953. "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
  2954. "requires": {
  2955. "@babel/types": "^7.16.7"
  2956. }
  2957. },
  2958. "@babel/helper-hoist-variables": {
  2959. "version": "7.16.7",
  2960. "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
  2961. "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
  2962. "requires": {
  2963. "@babel/types": "^7.16.7"
  2964. }
  2965. },
  2966. "@babel/helper-module-imports": {
  2967. "version": "7.16.7",
  2968. "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
  2969. "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
  2970. "requires": {
  2971. "@babel/types": "^7.16.7"
  2972. }
  2973. },
  2974. "@babel/helper-split-export-declaration": {
  2975. "version": "7.16.7",
  2976. "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
  2977. "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
  2978. "requires": {
  2979. "@babel/types": "^7.16.7"
  2980. }
  2981. },
  2982. "@babel/helper-validator-identifier": {
  2983. "version": "7.16.7",
  2984. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
  2985. "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
  2986. },
  2987. "@babel/highlight": {
  2988. "version": "7.16.7",
  2989. "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
  2990. "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
  2991. "requires": {
  2992. "@babel/helper-validator-identifier": "^7.16.7",
  2993. "chalk": "^2.0.0",
  2994. "js-tokens": "^4.0.0"
  2995. }
  2996. },
  2997. "@babel/parser": {
  2998. "version": "7.16.7",
  2999. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.7.tgz",
  3000. "integrity": "sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA=="
  3001. },
  3002. "@babel/runtime": {
  3003. "version": "7.16.7",
  3004. "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz",
  3005. "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==",
  3006. "requires": {
  3007. "regenerator-runtime": "^0.13.4"
  3008. }
  3009. },
  3010. "@babel/template": {
  3011. "version": "7.16.7",
  3012. "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
  3013. "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
  3014. "requires": {
  3015. "@babel/code-frame": "^7.16.7",
  3016. "@babel/parser": "^7.16.7",
  3017. "@babel/types": "^7.16.7"
  3018. }
  3019. },
  3020. "@babel/traverse": {
  3021. "version": "7.16.7",
  3022. "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.7.tgz",
  3023. "integrity": "sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==",
  3024. "requires": {
  3025. "@babel/code-frame": "^7.16.7",
  3026. "@babel/generator": "^7.16.7",
  3027. "@babel/helper-environment-visitor": "^7.16.7",
  3028. "@babel/helper-function-name": "^7.16.7",
  3029. "@babel/helper-hoist-variables": "^7.16.7",
  3030. "@babel/helper-split-export-declaration": "^7.16.7",
  3031. "@babel/parser": "^7.16.7",
  3032. "@babel/types": "^7.16.7",
  3033. "debug": "^4.1.0",
  3034. "globals": "^11.1.0"
  3035. }
  3036. },
  3037. "@babel/types": {
  3038. "version": "7.16.7",
  3039. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz",
  3040. "integrity": "sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==",
  3041. "requires": {
  3042. "@babel/helper-validator-identifier": "^7.16.7",
  3043. "to-fast-properties": "^2.0.0"
  3044. }
  3045. },
  3046. "@certusone/wormhole-sdk": {
  3047. "version": "0.1.6",
  3048. "resolved": "https://registry.npmjs.org/@certusone/wormhole-sdk/-/wormhole-sdk-0.1.6.tgz",
  3049. "integrity": "sha512-Q7EL7E8L7vjeoKK+g4mEqeC93/VGtdzPaW2p3ZEgZJJL4SymszIu8U+/TMUtUYPPbh7T/fE//5OgKw53USjX3w==",
  3050. "requires": {
  3051. "@improbable-eng/grpc-web": "^0.14.0",
  3052. "@solana/spl-token": "^0.1.8",
  3053. "@solana/web3.js": "^1.24.0",
  3054. "@terra-money/terra.js": "^2.0.14",
  3055. "@terra-money/wallet-provider": "^2.2.0",
  3056. "axios": "^0.24.0",
  3057. "bech32": "^2.0.0",
  3058. "js-base64": "^3.6.1",
  3059. "protobufjs": "^6.11.2",
  3060. "rxjs": "^7.3.0"
  3061. }
  3062. },
  3063. "@emotion/is-prop-valid": {
  3064. "version": "0.8.8",
  3065. "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
  3066. "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
  3067. "requires": {
  3068. "@emotion/memoize": "0.7.4"
  3069. }
  3070. },
  3071. "@emotion/memoize": {
  3072. "version": "0.7.4",
  3073. "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
  3074. "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
  3075. },
  3076. "@emotion/stylis": {
  3077. "version": "0.8.5",
  3078. "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
  3079. "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
  3080. },
  3081. "@emotion/unitless": {
  3082. "version": "0.7.5",
  3083. "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
  3084. "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
  3085. },
  3086. "@ethersproject/abi": {
  3087. "version": "5.5.0",
  3088. "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.5.0.tgz",
  3089. "integrity": "sha512-loW7I4AohP5KycATvc0MgujU6JyCHPqHdeoo9z3Nr9xEiNioxa65ccdm1+fsoJhkuhdRtfcL8cfyGamz2AxZ5w==",
  3090. "requires": {
  3091. "@ethersproject/address": "^5.5.0",
  3092. "@ethersproject/bignumber": "^5.5.0",
  3093. "@ethersproject/bytes": "^5.5.0",
  3094. "@ethersproject/constants": "^5.5.0",
  3095. "@ethersproject/hash": "^5.5.0",
  3096. "@ethersproject/keccak256": "^5.5.0",
  3097. "@ethersproject/logger": "^5.5.0",
  3098. "@ethersproject/properties": "^5.5.0",
  3099. "@ethersproject/strings": "^5.5.0"
  3100. }
  3101. },
  3102. "@ethersproject/abstract-provider": {
  3103. "version": "5.5.1",
  3104. "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.5.1.tgz",
  3105. "integrity": "sha512-m+MA/ful6eKbxpr99xUYeRvLkfnlqzrF8SZ46d/xFB1A7ZVknYc/sXJG0RcufF52Qn2jeFj1hhcoQ7IXjNKUqg==",
  3106. "requires": {
  3107. "@ethersproject/bignumber": "^5.5.0",
  3108. "@ethersproject/bytes": "^5.5.0",
  3109. "@ethersproject/logger": "^5.5.0",
  3110. "@ethersproject/networks": "^5.5.0",
  3111. "@ethersproject/properties": "^5.5.0",
  3112. "@ethersproject/transactions": "^5.5.0",
  3113. "@ethersproject/web": "^5.5.0"
  3114. }
  3115. },
  3116. "@ethersproject/abstract-signer": {
  3117. "version": "5.5.0",
  3118. "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.5.0.tgz",
  3119. "integrity": "sha512-lj//7r250MXVLKI7sVarXAbZXbv9P50lgmJQGr2/is82EwEb8r7HrxsmMqAjTsztMYy7ohrIhGMIml+Gx4D3mA==",
  3120. "requires": {
  3121. "@ethersproject/abstract-provider": "^5.5.0",
  3122. "@ethersproject/bignumber": "^5.5.0",
  3123. "@ethersproject/bytes": "^5.5.0",
  3124. "@ethersproject/logger": "^5.5.0",
  3125. "@ethersproject/properties": "^5.5.0"
  3126. }
  3127. },
  3128. "@ethersproject/address": {
  3129. "version": "5.5.0",
  3130. "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.5.0.tgz",
  3131. "integrity": "sha512-l4Nj0eWlTUh6ro5IbPTgbpT4wRbdH5l8CQf7icF7sb/SI3Nhd9Y9HzhonTSTi6CefI0necIw7LJqQPopPLZyWw==",
  3132. "requires": {
  3133. "@ethersproject/bignumber": "^5.5.0",
  3134. "@ethersproject/bytes": "^5.5.0",
  3135. "@ethersproject/keccak256": "^5.5.0",
  3136. "@ethersproject/logger": "^5.5.0",
  3137. "@ethersproject/rlp": "^5.5.0"
  3138. }
  3139. },
  3140. "@ethersproject/base64": {
  3141. "version": "5.5.0",
  3142. "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.5.0.tgz",
  3143. "integrity": "sha512-tdayUKhU1ljrlHzEWbStXazDpsx4eg1dBXUSI6+mHlYklOXoXF6lZvw8tnD6oVaWfnMxAgRSKROg3cVKtCcppA==",
  3144. "requires": {
  3145. "@ethersproject/bytes": "^5.5.0"
  3146. }
  3147. },
  3148. "@ethersproject/basex": {
  3149. "version": "5.5.0",
  3150. "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.5.0.tgz",
  3151. "integrity": "sha512-ZIodwhHpVJ0Y3hUCfUucmxKsWQA5TMnavp5j/UOuDdzZWzJlRmuOjcTMIGgHCYuZmHt36BfiSyQPSRskPxbfaQ==",
  3152. "requires": {
  3153. "@ethersproject/bytes": "^5.5.0",
  3154. "@ethersproject/properties": "^5.5.0"
  3155. }
  3156. },
  3157. "@ethersproject/bignumber": {
  3158. "version": "5.5.0",
  3159. "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.5.0.tgz",
  3160. "integrity": "sha512-6Xytlwvy6Rn3U3gKEc1vP7nR92frHkv6wtVr95LFR3jREXiCPzdWxKQ1cx4JGQBXxcguAwjA8murlYN2TSiEbg==",
  3161. "requires": {
  3162. "@ethersproject/bytes": "^5.5.0",
  3163. "@ethersproject/logger": "^5.5.0",
  3164. "bn.js": "^4.11.9"
  3165. },
  3166. "dependencies": {
  3167. "bn.js": {
  3168. "version": "4.12.0",
  3169. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
  3170. "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
  3171. }
  3172. }
  3173. },
  3174. "@ethersproject/bytes": {
  3175. "version": "5.5.0",
  3176. "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.5.0.tgz",
  3177. "integrity": "sha512-ABvc7BHWhZU9PNM/tANm/Qx4ostPGadAuQzWTr3doklZOhDlmcBqclrQe/ZXUIj3K8wC28oYeuRa+A37tX9kog==",
  3178. "requires": {
  3179. "@ethersproject/logger": "^5.5.0"
  3180. }
  3181. },
  3182. "@ethersproject/constants": {
  3183. "version": "5.5.0",
  3184. "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.5.0.tgz",
  3185. "integrity": "sha512-2MsRRVChkvMWR+GyMGY4N1sAX9Mt3J9KykCsgUFd/1mwS0UH1qw+Bv9k1UJb3X3YJYFco9H20pjSlOIfCG5HYQ==",
  3186. "requires": {
  3187. "@ethersproject/bignumber": "^5.5.0"
  3188. }
  3189. },
  3190. "@ethersproject/contracts": {
  3191. "version": "5.5.0",
  3192. "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.5.0.tgz",
  3193. "integrity": "sha512-2viY7NzyvJkh+Ug17v7g3/IJC8HqZBDcOjYARZLdzRxrfGlRgmYgl6xPRKVbEzy1dWKw/iv7chDcS83pg6cLxg==",
  3194. "requires": {
  3195. "@ethersproject/abi": "^5.5.0",
  3196. "@ethersproject/abstract-provider": "^5.5.0",
  3197. "@ethersproject/abstract-signer": "^5.5.0",
  3198. "@ethersproject/address": "^5.5.0",
  3199. "@ethersproject/bignumber": "^5.5.0",
  3200. "@ethersproject/bytes": "^5.5.0",
  3201. "@ethersproject/constants": "^5.5.0",
  3202. "@ethersproject/logger": "^5.5.0",
  3203. "@ethersproject/properties": "^5.5.0",
  3204. "@ethersproject/transactions": "^5.5.0"
  3205. }
  3206. },
  3207. "@ethersproject/hash": {
  3208. "version": "5.5.0",
  3209. "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.5.0.tgz",
  3210. "integrity": "sha512-dnGVpK1WtBjmnp3mUT0PlU2MpapnwWI0PibldQEq1408tQBAbZpPidkWoVVuNMOl/lISO3+4hXZWCL3YV7qzfg==",
  3211. "requires": {
  3212. "@ethersproject/abstract-signer": "^5.5.0",
  3213. "@ethersproject/address": "^5.5.0",
  3214. "@ethersproject/bignumber": "^5.5.0",
  3215. "@ethersproject/bytes": "^5.5.0",
  3216. "@ethersproject/keccak256": "^5.5.0",
  3217. "@ethersproject/logger": "^5.5.0",
  3218. "@ethersproject/properties": "^5.5.0",
  3219. "@ethersproject/strings": "^5.5.0"
  3220. }
  3221. },
  3222. "@ethersproject/hdnode": {
  3223. "version": "5.5.0",
  3224. "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.5.0.tgz",
  3225. "integrity": "sha512-mcSOo9zeUg1L0CoJH7zmxwUG5ggQHU1UrRf8jyTYy6HxdZV+r0PBoL1bxr+JHIPXRzS6u/UW4mEn43y0tmyF8Q==",
  3226. "requires": {
  3227. "@ethersproject/abstract-signer": "^5.5.0",
  3228. "@ethersproject/basex": "^5.5.0",
  3229. "@ethersproject/bignumber": "^5.5.0",
  3230. "@ethersproject/bytes": "^5.5.0",
  3231. "@ethersproject/logger": "^5.5.0",
  3232. "@ethersproject/pbkdf2": "^5.5.0",
  3233. "@ethersproject/properties": "^5.5.0",
  3234. "@ethersproject/sha2": "^5.5.0",
  3235. "@ethersproject/signing-key": "^5.5.0",
  3236. "@ethersproject/strings": "^5.5.0",
  3237. "@ethersproject/transactions": "^5.5.0",
  3238. "@ethersproject/wordlists": "^5.5.0"
  3239. }
  3240. },
  3241. "@ethersproject/json-wallets": {
  3242. "version": "5.5.0",
  3243. "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.5.0.tgz",
  3244. "integrity": "sha512-9lA21XQnCdcS72xlBn1jfQdj2A1VUxZzOzi9UkNdnokNKke/9Ya2xA9aIK1SC3PQyBDLt4C+dfps7ULpkvKikQ==",
  3245. "requires": {
  3246. "@ethersproject/abstract-signer": "^5.5.0",
  3247. "@ethersproject/address": "^5.5.0",
  3248. "@ethersproject/bytes": "^5.5.0",
  3249. "@ethersproject/hdnode": "^5.5.0",
  3250. "@ethersproject/keccak256": "^5.5.0",
  3251. "@ethersproject/logger": "^5.5.0",
  3252. "@ethersproject/pbkdf2": "^5.5.0",
  3253. "@ethersproject/properties": "^5.5.0",
  3254. "@ethersproject/random": "^5.5.0",
  3255. "@ethersproject/strings": "^5.5.0",
  3256. "@ethersproject/transactions": "^5.5.0",
  3257. "aes-js": "3.0.0",
  3258. "scrypt-js": "3.0.1"
  3259. },
  3260. "dependencies": {
  3261. "aes-js": {
  3262. "version": "3.0.0",
  3263. "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz",
  3264. "integrity": "sha1-4h3xCtbCBTKVvLuNq0Cwnb6ofk0="
  3265. }
  3266. }
  3267. },
  3268. "@ethersproject/keccak256": {
  3269. "version": "5.5.0",
  3270. "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.5.0.tgz",
  3271. "integrity": "sha512-5VoFCTjo2rYbBe1l2f4mccaRFN/4VQEYFwwn04aJV2h7qf4ZvI2wFxUE1XOX+snbwCLRzIeikOqtAoPwMza9kg==",
  3272. "requires": {
  3273. "@ethersproject/bytes": "^5.5.0",
  3274. "js-sha3": "0.8.0"
  3275. }
  3276. },
  3277. "@ethersproject/logger": {
  3278. "version": "5.5.0",
  3279. "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.5.0.tgz",
  3280. "integrity": "sha512-rIY/6WPm7T8n3qS2vuHTUBPdXHl+rGxWxW5okDfo9J4Z0+gRRZT0msvUdIJkE4/HS29GUMziwGaaKO2bWONBrg=="
  3281. },
  3282. "@ethersproject/networks": {
  3283. "version": "5.5.2",
  3284. "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.5.2.tgz",
  3285. "integrity": "sha512-NEqPxbGBfy6O3x4ZTISb90SjEDkWYDUbEeIFhJly0F7sZjoQMnj5KYzMSkMkLKZ+1fGpx00EDpHQCy6PrDupkQ==",
  3286. "requires": {
  3287. "@ethersproject/logger": "^5.5.0"
  3288. }
  3289. },
  3290. "@ethersproject/pbkdf2": {
  3291. "version": "5.5.0",
  3292. "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.5.0.tgz",
  3293. "integrity": "sha512-SaDvQFvXPnz1QGpzr6/HToLifftSXGoXrbpZ6BvoZhmx4bNLHrxDe8MZisuecyOziP1aVEwzC2Hasj+86TgWVg==",
  3294. "requires": {
  3295. "@ethersproject/bytes": "^5.5.0",
  3296. "@ethersproject/sha2": "^5.5.0"
  3297. }
  3298. },
  3299. "@ethersproject/properties": {
  3300. "version": "5.5.0",
  3301. "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.5.0.tgz",
  3302. "integrity": "sha512-l3zRQg3JkD8EL3CPjNK5g7kMx4qSwiR60/uk5IVjd3oq1MZR5qUg40CNOoEJoX5wc3DyY5bt9EbMk86C7x0DNA==",
  3303. "requires": {
  3304. "@ethersproject/logger": "^5.5.0"
  3305. }
  3306. },
  3307. "@ethersproject/providers": {
  3308. "version": "5.5.2",
  3309. "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.5.2.tgz",
  3310. "integrity": "sha512-hkbx7x/MKcRjyrO4StKXCzCpWer6s97xnm34xkfPiarhtEUVAN4TBBpamM+z66WcTt7H5B53YwbRj1n7i8pZoQ==",
  3311. "requires": {
  3312. "@ethersproject/abstract-provider": "^5.5.0",
  3313. "@ethersproject/abstract-signer": "^5.5.0",
  3314. "@ethersproject/address": "^5.5.0",
  3315. "@ethersproject/basex": "^5.5.0",
  3316. "@ethersproject/bignumber": "^5.5.0",
  3317. "@ethersproject/bytes": "^5.5.0",
  3318. "@ethersproject/constants": "^5.5.0",
  3319. "@ethersproject/hash": "^5.5.0",
  3320. "@ethersproject/logger": "^5.5.0",
  3321. "@ethersproject/networks": "^5.5.0",
  3322. "@ethersproject/properties": "^5.5.0",
  3323. "@ethersproject/random": "^5.5.0",
  3324. "@ethersproject/rlp": "^5.5.0",
  3325. "@ethersproject/sha2": "^5.5.0",
  3326. "@ethersproject/strings": "^5.5.0",
  3327. "@ethersproject/transactions": "^5.5.0",
  3328. "@ethersproject/web": "^5.5.0",
  3329. "bech32": "1.1.4",
  3330. "ws": "7.4.6"
  3331. },
  3332. "dependencies": {
  3333. "bech32": {
  3334. "version": "1.1.4",
  3335. "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz",
  3336. "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ=="
  3337. },
  3338. "ws": {
  3339. "version": "7.4.6",
  3340. "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
  3341. "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
  3342. "requires": {}
  3343. }
  3344. }
  3345. },
  3346. "@ethersproject/random": {
  3347. "version": "5.5.1",
  3348. "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.5.1.tgz",
  3349. "integrity": "sha512-YaU2dQ7DuhL5Au7KbcQLHxcRHfgyNgvFV4sQOo0HrtW3Zkrc9ctWNz8wXQ4uCSfSDsqX2vcjhroxU5RQRV0nqA==",
  3350. "requires": {
  3351. "@ethersproject/bytes": "^5.5.0",
  3352. "@ethersproject/logger": "^5.5.0"
  3353. }
  3354. },
  3355. "@ethersproject/rlp": {
  3356. "version": "5.5.0",
  3357. "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.5.0.tgz",
  3358. "integrity": "sha512-hLv8XaQ8PTI9g2RHoQGf/WSxBfTB/NudRacbzdxmst5VHAqd1sMibWG7SENzT5Dj3yZ3kJYx+WiRYEcQTAkcYA==",
  3359. "requires": {
  3360. "@ethersproject/bytes": "^5.5.0",
  3361. "@ethersproject/logger": "^5.5.0"
  3362. }
  3363. },
  3364. "@ethersproject/sha2": {
  3365. "version": "5.5.0",
  3366. "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.5.0.tgz",
  3367. "integrity": "sha512-B5UBoglbCiHamRVPLA110J+2uqsifpZaTmid2/7W5rbtYVz6gus6/hSDieIU/6gaKIDcOj12WnOdiymEUHIAOA==",
  3368. "requires": {
  3369. "@ethersproject/bytes": "^5.5.0",
  3370. "@ethersproject/logger": "^5.5.0",
  3371. "hash.js": "1.1.7"
  3372. }
  3373. },
  3374. "@ethersproject/signing-key": {
  3375. "version": "5.5.0",
  3376. "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.5.0.tgz",
  3377. "integrity": "sha512-5VmseH7qjtNmDdZBswavhotYbWB0bOwKIlOTSlX14rKn5c11QmJwGt4GHeo7NrL/Ycl7uo9AHvEqs5xZgFBTng==",
  3378. "requires": {
  3379. "@ethersproject/bytes": "^5.5.0",
  3380. "@ethersproject/logger": "^5.5.0",
  3381. "@ethersproject/properties": "^5.5.0",
  3382. "bn.js": "^4.11.9",
  3383. "elliptic": "^6.6.1",
  3384. "hash.js": "1.1.7"
  3385. },
  3386. "dependencies": {
  3387. "bn.js": {
  3388. "version": "4.12.0",
  3389. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
  3390. "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
  3391. }
  3392. }
  3393. },
  3394. "@ethersproject/solidity": {
  3395. "version": "5.5.0",
  3396. "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.5.0.tgz",
  3397. "integrity": "sha512-9NgZs9LhGMj6aCtHXhtmFQ4AN4sth5HuFXVvAQtzmm0jpSCNOTGtrHZJAeYTh7MBjRR8brylWZxBZR9zDStXbw==",
  3398. "requires": {
  3399. "@ethersproject/bignumber": "^5.5.0",
  3400. "@ethersproject/bytes": "^5.5.0",
  3401. "@ethersproject/keccak256": "^5.5.0",
  3402. "@ethersproject/logger": "^5.5.0",
  3403. "@ethersproject/sha2": "^5.5.0",
  3404. "@ethersproject/strings": "^5.5.0"
  3405. }
  3406. },
  3407. "@ethersproject/strings": {
  3408. "version": "5.5.0",
  3409. "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.5.0.tgz",
  3410. "integrity": "sha512-9fy3TtF5LrX/wTrBaT8FGE6TDJyVjOvXynXJz5MT5azq+E6D92zuKNx7i29sWW2FjVOaWjAsiZ1ZWznuduTIIQ==",
  3411. "requires": {
  3412. "@ethersproject/bytes": "^5.5.0",
  3413. "@ethersproject/constants": "^5.5.0",
  3414. "@ethersproject/logger": "^5.5.0"
  3415. }
  3416. },
  3417. "@ethersproject/transactions": {
  3418. "version": "5.5.0",
  3419. "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.5.0.tgz",
  3420. "integrity": "sha512-9RZYSKX26KfzEd/1eqvv8pLauCKzDTub0Ko4LfIgaERvRuwyaNV78mJs7cpIgZaDl6RJui4o49lHwwCM0526zA==",
  3421. "requires": {
  3422. "@ethersproject/address": "^5.5.0",
  3423. "@ethersproject/bignumber": "^5.5.0",
  3424. "@ethersproject/bytes": "^5.5.0",
  3425. "@ethersproject/constants": "^5.5.0",
  3426. "@ethersproject/keccak256": "^5.5.0",
  3427. "@ethersproject/logger": "^5.5.0",
  3428. "@ethersproject/properties": "^5.5.0",
  3429. "@ethersproject/rlp": "^5.5.0",
  3430. "@ethersproject/signing-key": "^5.5.0"
  3431. }
  3432. },
  3433. "@ethersproject/units": {
  3434. "version": "5.5.0",
  3435. "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.5.0.tgz",
  3436. "integrity": "sha512-7+DpjiZk4v6wrikj+TCyWWa9dXLNU73tSTa7n0TSJDxkYbV3Yf1eRh9ToMLlZtuctNYu9RDNNy2USq3AdqSbag==",
  3437. "requires": {
  3438. "@ethersproject/bignumber": "^5.5.0",
  3439. "@ethersproject/constants": "^5.5.0",
  3440. "@ethersproject/logger": "^5.5.0"
  3441. }
  3442. },
  3443. "@ethersproject/wallet": {
  3444. "version": "5.5.0",
  3445. "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.5.0.tgz",
  3446. "integrity": "sha512-Mlu13hIctSYaZmUOo7r2PhNSd8eaMPVXe1wxrz4w4FCE4tDYBywDH+bAR1Xz2ADyXGwqYMwstzTrtUVIsKDO0Q==",
  3447. "requires": {
  3448. "@ethersproject/abstract-provider": "^5.5.0",
  3449. "@ethersproject/abstract-signer": "^5.5.0",
  3450. "@ethersproject/address": "^5.5.0",
  3451. "@ethersproject/bignumber": "^5.5.0",
  3452. "@ethersproject/bytes": "^5.5.0",
  3453. "@ethersproject/hash": "^5.5.0",
  3454. "@ethersproject/hdnode": "^5.5.0",
  3455. "@ethersproject/json-wallets": "^5.5.0",
  3456. "@ethersproject/keccak256": "^5.5.0",
  3457. "@ethersproject/logger": "^5.5.0",
  3458. "@ethersproject/properties": "^5.5.0",
  3459. "@ethersproject/random": "^5.5.0",
  3460. "@ethersproject/signing-key": "^5.5.0",
  3461. "@ethersproject/transactions": "^5.5.0",
  3462. "@ethersproject/wordlists": "^5.5.0"
  3463. }
  3464. },
  3465. "@ethersproject/web": {
  3466. "version": "5.5.1",
  3467. "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.5.1.tgz",
  3468. "integrity": "sha512-olvLvc1CB12sREc1ROPSHTdFCdvMh0J5GSJYiQg2D0hdD4QmJDy8QYDb1CvoqD/bF1c++aeKv2sR5uduuG9dQg==",
  3469. "requires": {
  3470. "@ethersproject/base64": "^5.5.0",
  3471. "@ethersproject/bytes": "^5.5.0",
  3472. "@ethersproject/logger": "^5.5.0",
  3473. "@ethersproject/properties": "^5.5.0",
  3474. "@ethersproject/strings": "^5.5.0"
  3475. }
  3476. },
  3477. "@ethersproject/wordlists": {
  3478. "version": "5.5.0",
  3479. "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.5.0.tgz",
  3480. "integrity": "sha512-bL0UTReWDiaQJJYOC9sh/XcRu/9i2jMrzf8VLRmPKx58ckSlOJiohODkECCO50dtLZHcGU6MLXQ4OOrgBwP77Q==",
  3481. "requires": {
  3482. "@ethersproject/bytes": "^5.5.0",
  3483. "@ethersproject/hash": "^5.5.0",
  3484. "@ethersproject/logger": "^5.5.0",
  3485. "@ethersproject/properties": "^5.5.0",
  3486. "@ethersproject/strings": "^5.5.0"
  3487. }
  3488. },
  3489. "@improbable-eng/grpc-web": {
  3490. "version": "0.14.1",
  3491. "resolved": "https://registry.npmjs.org/@improbable-eng/grpc-web/-/grpc-web-0.14.1.tgz",
  3492. "integrity": "sha512-XaIYuunepPxoiGVLLHmlnVminUGzBTnXr8Wv7khzmLWbNw4TCwJKX09GSMJlKhu/TRk6gms0ySFxewaETSBqgw==",
  3493. "requires": {
  3494. "browser-headers": "^0.4.1"
  3495. }
  3496. },
  3497. "@improbable-eng/grpc-web-node-http-transport": {
  3498. "version": "0.15.0",
  3499. "resolved": "https://registry.npmjs.org/@improbable-eng/grpc-web-node-http-transport/-/grpc-web-node-http-transport-0.15.0.tgz",
  3500. "integrity": "sha512-HLgJfVolGGpjc9DWPhmMmXJx8YGzkek7jcCFO1YYkSOoO81MWRZentPOd/JiKiZuU08wtc4BG+WNuGzsQB5jZA==",
  3501. "requires": {}
  3502. },
  3503. "@protobufjs/aspromise": {
  3504. "version": "1.1.2",
  3505. "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
  3506. "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78="
  3507. },
  3508. "@protobufjs/base64": {
  3509. "version": "1.1.2",
  3510. "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
  3511. "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="
  3512. },
  3513. "@protobufjs/codegen": {
  3514. "version": "2.0.4",
  3515. "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
  3516. "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg=="
  3517. },
  3518. "@protobufjs/eventemitter": {
  3519. "version": "1.1.0",
  3520. "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
  3521. "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A="
  3522. },
  3523. "@protobufjs/fetch": {
  3524. "version": "1.1.0",
  3525. "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
  3526. "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=",
  3527. "requires": {
  3528. "@protobufjs/aspromise": "^1.1.1",
  3529. "@protobufjs/inquire": "^1.1.0"
  3530. }
  3531. },
  3532. "@protobufjs/float": {
  3533. "version": "1.0.2",
  3534. "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
  3535. "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E="
  3536. },
  3537. "@protobufjs/inquire": {
  3538. "version": "1.1.0",
  3539. "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
  3540. "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik="
  3541. },
  3542. "@protobufjs/path": {
  3543. "version": "1.1.2",
  3544. "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
  3545. "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0="
  3546. },
  3547. "@protobufjs/pool": {
  3548. "version": "1.1.0",
  3549. "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
  3550. "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q="
  3551. },
  3552. "@protobufjs/utf8": {
  3553. "version": "1.1.0",
  3554. "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
  3555. "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA="
  3556. },
  3557. "@solana/buffer-layout": {
  3558. "version": "3.0.0",
  3559. "resolved": "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-3.0.0.tgz",
  3560. "integrity": "sha512-MVdgAKKL39tEs0l8je0hKaXLQFb7Rdfb0Xg2LjFZd8Lfdazkg6xiS98uAZrEKvaoF3i4M95ei9RydkGIDMeo3w==",
  3561. "requires": {
  3562. "buffer": "~6.0.3"
  3563. }
  3564. },
  3565. "@solana/spl-token": {
  3566. "version": "0.1.8",
  3567. "resolved": "https://registry.npmjs.org/@solana/spl-token/-/spl-token-0.1.8.tgz",
  3568. "integrity": "sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ==",
  3569. "requires": {
  3570. "@babel/runtime": "^7.10.5",
  3571. "@solana/web3.js": "^1.21.0",
  3572. "bn.js": "^5.1.0",
  3573. "buffer": "6.0.3",
  3574. "buffer-layout": "^1.2.0",
  3575. "dotenv": "10.0.0"
  3576. }
  3577. },
  3578. "@solana/web3.js": {
  3579. "version": "1.31.0",
  3580. "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.31.0.tgz",
  3581. "integrity": "sha512-7nHHx1JNFnrt15e9y8m38I/EJCbaB+bFC3KZVM1+QhybCikFxGMtGA5r7PDC3GEL1R2RZA8yKoLkDKo3vzzqnw==",
  3582. "requires": {
  3583. "@babel/runtime": "^7.12.5",
  3584. "@ethersproject/sha2": "^5.5.0",
  3585. "@solana/buffer-layout": "^3.0.0",
  3586. "bn.js": "^5.0.0",
  3587. "borsh": "^0.4.0",
  3588. "bs58": "^4.0.1",
  3589. "buffer": "6.0.1",
  3590. "cross-fetch": "^3.1.4",
  3591. "jayson": "^3.4.4",
  3592. "js-sha3": "^0.8.0",
  3593. "rpc-websockets": "^7.4.2",
  3594. "secp256k1": "^4.0.2",
  3595. "superstruct": "^0.14.2",
  3596. "tweetnacl": "^1.0.0"
  3597. },
  3598. "dependencies": {
  3599. "buffer": {
  3600. "version": "6.0.1",
  3601. "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz",
  3602. "integrity": "sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ==",
  3603. "requires": {
  3604. "base64-js": "^1.3.1",
  3605. "ieee754": "^1.2.1"
  3606. }
  3607. }
  3608. }
  3609. },
  3610. "@terra-dev/browser-check": {
  3611. "version": "2.5.3",
  3612. "resolved": "https://registry.npmjs.org/@terra-dev/browser-check/-/browser-check-2.5.3.tgz",
  3613. "integrity": "sha512-r4CrL0tTco4yg1UnHq1L2fUIsrEjkBY/pbYlA1p61teZ8OJJLz1yOkXa8OLLHpOl89oXn+ak9iZ1lN0VxSdeuA==",
  3614. "requires": {
  3615. "bowser": "^2.11.0",
  3616. "mobile-detect": "^1.4.5"
  3617. }
  3618. },
  3619. "@terra-dev/chrome-extension": {
  3620. "version": "2.5.3",
  3621. "resolved": "https://registry.npmjs.org/@terra-dev/chrome-extension/-/chrome-extension-2.5.3.tgz",
  3622. "integrity": "sha512-8tjKKvfRGAs5ve26vHdk5nWCt6GGoxswFMgF3UcdLcLHRnH3N3g7fjBa+95VTs8eTT4terpUl83+7ngwdy4A/g==",
  3623. "requires": {
  3624. "@terra-dev/browser-check": "^2.5.3",
  3625. "@terra-dev/wallet-types": "^2.5.3",
  3626. "fix-hmr": "^1.0.2",
  3627. "rxjs": "^7.4.0",
  3628. "styled-components": "^5.0.0"
  3629. }
  3630. },
  3631. "@terra-dev/readonly-wallet": {
  3632. "version": "2.5.3",
  3633. "resolved": "https://registry.npmjs.org/@terra-dev/readonly-wallet/-/readonly-wallet-2.5.3.tgz",
  3634. "integrity": "sha512-oZU4u2cO0lvpZiMdB91UHrLfBubYba5ziqP6fzxYbtFxPhRt0sF3vTcqSg7ReGXzOTqNt0fd4Mj7ZnkFJ5wUrQ==",
  3635. "requires": {
  3636. "@terra-dev/wallet-types": "^2.5.3"
  3637. }
  3638. },
  3639. "@terra-dev/readonly-wallet-modal": {
  3640. "version": "2.5.3",
  3641. "resolved": "https://registry.npmjs.org/@terra-dev/readonly-wallet-modal/-/readonly-wallet-modal-2.5.3.tgz",
  3642. "integrity": "sha512-1+7NJ+UVLQVxO4FH6Y0cniPKGZXPtaUZy0/9qfgKoCvaGN9m6VshC0NHrDcwKpH6aqXlm1AqCu2obSSIH1qMGw==",
  3643. "requires": {
  3644. "@terra-dev/readonly-wallet": "^2.5.3",
  3645. "@terra-dev/wallet-types": "^2.5.3",
  3646. "styled-components": "^5.0.0"
  3647. }
  3648. },
  3649. "@terra-dev/use-wallet": {
  3650. "version": "2.5.3",
  3651. "resolved": "https://registry.npmjs.org/@terra-dev/use-wallet/-/use-wallet-2.5.3.tgz",
  3652. "integrity": "sha512-VTJ0ZKBoSDH6Tjv3g9RlMDg5QVI5CMxmW8Isto5t1q3tEhwmo7QcaFtd53diqIk7tq9ogS+I1Lhkh2PzLj2o5A==",
  3653. "requires": {
  3654. "@terra-dev/wallet-types": "^2.5.3"
  3655. }
  3656. },
  3657. "@terra-dev/wallet-types": {
  3658. "version": "2.5.3",
  3659. "resolved": "https://registry.npmjs.org/@terra-dev/wallet-types/-/wallet-types-2.5.3.tgz",
  3660. "integrity": "sha512-fqOVDxQT/BLQTmTq0GjOzHS/oVtjQcuJibcgDZz26mS0YNypixG1bGbk/Z2tRQxiB2lcKxXP71oORdNipwDXLw==",
  3661. "requires": {}
  3662. },
  3663. "@terra-dev/walletconnect": {
  3664. "version": "2.5.3",
  3665. "resolved": "https://registry.npmjs.org/@terra-dev/walletconnect/-/walletconnect-2.5.3.tgz",
  3666. "integrity": "sha512-y0ZF6tbHcq/kAVevAalT74IUHubcmSqCbdzucU0LAVDEQr/z2HmW0Fk/92p8WLejUxIz8mAUNRtm/3oJW4F07Q==",
  3667. "requires": {
  3668. "@terra-dev/browser-check": "^2.5.3",
  3669. "@terra-dev/walletconnect-qrcode-modal": "^2.5.3",
  3670. "@walletconnect/core": "^1.6.6",
  3671. "@walletconnect/iso-crypto": "^1.6.6",
  3672. "@walletconnect/types": "^1.6.6",
  3673. "@walletconnect/utils": "^1.6.6",
  3674. "rxjs": "^7.4.0",
  3675. "ws": "^7.5.5"
  3676. }
  3677. },
  3678. "@terra-dev/walletconnect-qrcode-modal": {
  3679. "version": "2.5.3",
  3680. "resolved": "https://registry.npmjs.org/@terra-dev/walletconnect-qrcode-modal/-/walletconnect-qrcode-modal-2.5.3.tgz",
  3681. "integrity": "sha512-85n4MsOa0fzRGhxDKrgjfWm4EMV0fx9+d1fnJtVu2sdbGstXOt5uCt/7iOiQ0fEmL18EhJg1BjqGcRks2u3EcA==",
  3682. "requires": {
  3683. "@terra-dev/browser-check": "^2.5.3",
  3684. "@walletconnect/types": "^1.6.6",
  3685. "qrcode.react": "^1.0.1",
  3686. "styled-components": "^5.0.0"
  3687. }
  3688. },
  3689. "@terra-dev/web-connector-controller": {
  3690. "version": "0.8.1",
  3691. "resolved": "https://registry.npmjs.org/@terra-dev/web-connector-controller/-/web-connector-controller-0.8.1.tgz",
  3692. "integrity": "sha512-TIwFtta7vN2GdDUy8SbIIsfTd9XWiU+U6yjizd82yUAhlOJNAGHshG0r1j0irkA5MycYG1duAlr7foeKRu4PGA==",
  3693. "requires": {
  3694. "@terra-dev/web-connector-interface": "^0.8.1",
  3695. "bowser": "^2.11.0",
  3696. "rxjs": "^7.4.0"
  3697. }
  3698. },
  3699. "@terra-dev/web-connector-interface": {
  3700. "version": "0.8.1",
  3701. "resolved": "https://registry.npmjs.org/@terra-dev/web-connector-interface/-/web-connector-interface-0.8.1.tgz",
  3702. "integrity": "sha512-ryA3xtTFJ7OkAF6pTlrsuqxtSUp0DxHhyxvzwRPbT3h8VqlkFStknvYjRwNRspN2LOpi4/F1TNFzcUBNHPCo2g==",
  3703. "requires": {
  3704. "rxjs": "^7.4.0"
  3705. }
  3706. },
  3707. "@terra-money/terra.js": {
  3708. "version": "2.1.23",
  3709. "resolved": "https://registry.npmjs.org/@terra-money/terra.js/-/terra.js-2.1.23.tgz",
  3710. "integrity": "sha512-nSAR35zqjKUn1Jzqevf30s47XRlW/VXU01YgK3n9ndmX15lkdlgFvqaV7UezK0xAmCpm+7xWIrtBTMmZpVBkMQ==",
  3711. "requires": {
  3712. "@terra-money/terra.proto": "^0.1.7",
  3713. "axios": "^0.21.1",
  3714. "bech32": "^2.0.0",
  3715. "bip32": "^2.0.6",
  3716. "bip39": "^3.0.3",
  3717. "bufferutil": "^4.0.3",
  3718. "decimal.js": "^10.2.1",
  3719. "jscrypto": "^1.0.1",
  3720. "readable-stream": "^3.6.0",
  3721. "secp256k1": "^4.0.2",
  3722. "tmp": "^0.2.1",
  3723. "utf-8-validate": "^5.0.5",
  3724. "ws": "^7.4.2"
  3725. },
  3726. "dependencies": {
  3727. "axios": {
  3728. "version": "0.21.4",
  3729. "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
  3730. "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
  3731. "requires": {
  3732. "follow-redirects": "^1.14.0"
  3733. }
  3734. }
  3735. }
  3736. },
  3737. "@terra-money/terra.proto": {
  3738. "version": "0.1.7",
  3739. "resolved": "https://registry.npmjs.org/@terra-money/terra.proto/-/terra.proto-0.1.7.tgz",
  3740. "integrity": "sha512-NXD7f6pQCulvo6+mv6MAPzhOkUzRjgYVuHZE/apih+lVnPG5hDBU0rRYnOGGofwvKT5/jQoOENnFn/gioWWnyQ==",
  3741. "requires": {
  3742. "google-protobuf": "^3.17.3",
  3743. "long": "^4.0.0",
  3744. "protobufjs": "~6.11.2"
  3745. }
  3746. },
  3747. "@terra-money/wallet-provider": {
  3748. "version": "2.5.3",
  3749. "resolved": "https://registry.npmjs.org/@terra-money/wallet-provider/-/wallet-provider-2.5.3.tgz",
  3750. "integrity": "sha512-v/5Z35gCo4nZyZCu3nYDFvhwuvlyDeNSSYmN9KUc9ewoIO9K/2fi3vxcOLcvqq5PYowwwod21vgaQ9QHFV+8eA==",
  3751. "requires": {
  3752. "@terra-dev/browser-check": "^2.5.3",
  3753. "@terra-dev/chrome-extension": "^2.5.3",
  3754. "@terra-dev/readonly-wallet": "^2.5.3",
  3755. "@terra-dev/readonly-wallet-modal": "^2.5.3",
  3756. "@terra-dev/use-wallet": "^2.5.3",
  3757. "@terra-dev/wallet-types": "^2.5.3",
  3758. "@terra-dev/walletconnect": "^2.5.3",
  3759. "@terra-dev/web-connector-controller": "^0.8.1",
  3760. "@terra-dev/web-connector-interface": "^0.8.1",
  3761. "fast-deep-equal": "^3.1.3",
  3762. "rxjs": "^7.4.0"
  3763. }
  3764. },
  3765. "@types/bn.js": {
  3766. "version": "4.11.6",
  3767. "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz",
  3768. "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==",
  3769. "requires": {
  3770. "@types/node": "*"
  3771. }
  3772. },
  3773. "@types/connect": {
  3774. "version": "3.4.35",
  3775. "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz",
  3776. "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
  3777. "requires": {
  3778. "@types/node": "*"
  3779. }
  3780. },
  3781. "@types/express-serve-static-core": {
  3782. "version": "4.17.27",
  3783. "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.27.tgz",
  3784. "integrity": "sha512-e/sVallzUTPdyOTiqi8O8pMdBBphscvI6E4JYaKlja4Lm+zh7UFSSdW5VMkRbhDtmrONqOUHOXRguPsDckzxNA==",
  3785. "requires": {
  3786. "@types/node": "*",
  3787. "@types/qs": "*",
  3788. "@types/range-parser": "*"
  3789. }
  3790. },
  3791. "@types/lodash": {
  3792. "version": "4.14.178",
  3793. "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.178.tgz",
  3794. "integrity": "sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw=="
  3795. },
  3796. "@types/long": {
  3797. "version": "4.0.1",
  3798. "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz",
  3799. "integrity": "sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w=="
  3800. },
  3801. "@types/node": {
  3802. "version": "10.12.18",
  3803. "resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz",
  3804. "integrity": "sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="
  3805. },
  3806. "@types/qs": {
  3807. "version": "6.9.7",
  3808. "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
  3809. "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="
  3810. },
  3811. "@types/range-parser": {
  3812. "version": "1.2.4",
  3813. "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz",
  3814. "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="
  3815. },
  3816. "@types/ws": {
  3817. "version": "7.4.7",
  3818. "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz",
  3819. "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==",
  3820. "requires": {
  3821. "@types/node": "*"
  3822. }
  3823. },
  3824. "@walletconnect/browser-utils": {
  3825. "version": "1.7.0",
  3826. "resolved": "https://registry.npmjs.org/@walletconnect/browser-utils/-/browser-utils-1.7.0.tgz",
  3827. "integrity": "sha512-bQsbCIDTT1OB4v8VF5bzg3byp03qTst9kLmjQj68ElecIUcdS6nZvEDhZdQK/r63WMVnA2KrTb5AEN6hPRGgIw==",
  3828. "requires": {
  3829. "@walletconnect/safe-json": "1.0.0",
  3830. "@walletconnect/types": "^1.7.0",
  3831. "@walletconnect/window-getters": "1.0.0",
  3832. "@walletconnect/window-metadata": "1.0.0",
  3833. "detect-browser": "5.2.0"
  3834. }
  3835. },
  3836. "@walletconnect/core": {
  3837. "version": "1.7.0",
  3838. "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-1.7.0.tgz",
  3839. "integrity": "sha512-0YX9Y/CVYctKPcSgSyp2wLrk4OgSenmyzWj6Z3C93Hb7PG+tJ+dKCeNFeEIYA03QQRxHew5uMLPbVgmdtmB/0w==",
  3840. "requires": {
  3841. "@walletconnect/socket-transport": "^1.7.0",
  3842. "@walletconnect/types": "^1.7.0",
  3843. "@walletconnect/utils": "^1.7.0"
  3844. }
  3845. },
  3846. "@walletconnect/crypto": {
  3847. "version": "1.0.1",
  3848. "resolved": "https://registry.npmjs.org/@walletconnect/crypto/-/crypto-1.0.1.tgz",
  3849. "integrity": "sha512-IgUReNrycIFxkGgq8YT9HsosCkhutakWD9Q411PR0aJfxpEa/VKJeaLRtoz6DvJpztWStwhIHnAbBoOVR72a6g==",
  3850. "requires": {
  3851. "@walletconnect/encoding": "^1.0.0",
  3852. "@walletconnect/environment": "^1.0.0",
  3853. "@walletconnect/randombytes": "^1.0.1",
  3854. "aes-js": "^3.1.2",
  3855. "hash.js": "^1.1.7"
  3856. }
  3857. },
  3858. "@walletconnect/encoding": {
  3859. "version": "1.0.0",
  3860. "resolved": "https://registry.npmjs.org/@walletconnect/encoding/-/encoding-1.0.0.tgz",
  3861. "integrity": "sha512-4nkJFnS0QF5JdieG/3VPD1/iEWkLSZ14EBInLZ00RWxmC6EMZrzAeHNAWIgm+xP3NK0lqz+7lEsmWGtcl5gYnQ==",
  3862. "requires": {
  3863. "is-typedarray": "1.0.0",
  3864. "typedarray-to-buffer": "3.1.5"
  3865. }
  3866. },
  3867. "@walletconnect/environment": {
  3868. "version": "1.0.0",
  3869. "resolved": "https://registry.npmjs.org/@walletconnect/environment/-/environment-1.0.0.tgz",
  3870. "integrity": "sha512-4BwqyWy6KpSvkocSaV7WR3BlZfrxLbJSLkg+j7Gl6pTDE+U55lLhJvQaMuDVazXYxcjBsG09k7UlH7cGiUI5vQ=="
  3871. },
  3872. "@walletconnect/iso-crypto": {
  3873. "version": "1.7.0",
  3874. "resolved": "https://registry.npmjs.org/@walletconnect/iso-crypto/-/iso-crypto-1.7.0.tgz",
  3875. "integrity": "sha512-ZUQ/MAM9TXtneIaRjxW/PuFF+es4I9OrCGFgVTCYAaa7p2zdy7BgHmVOnxxOpUh9VYwLXoiA/FU234NwS0ulYw==",
  3876. "requires": {
  3877. "@walletconnect/crypto": "^1.0.1",
  3878. "@walletconnect/types": "^1.7.0",
  3879. "@walletconnect/utils": "^1.7.0"
  3880. }
  3881. },
  3882. "@walletconnect/jsonrpc-types": {
  3883. "version": "1.0.0",
  3884. "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.0.tgz",
  3885. "integrity": "sha512-11QXNq5H1PKZk7bP8SxgmCw3HRaDuPOVE+wObqEvmhc7OWYUZqfuaaMb+OXGRSOHL3sbC+XHfdeCxFTMXSFyng==",
  3886. "requires": {
  3887. "keyvaluestorage-interface": "^1.0.0"
  3888. }
  3889. },
  3890. "@walletconnect/jsonrpc-utils": {
  3891. "version": "1.0.0",
  3892. "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.0.tgz",
  3893. "integrity": "sha512-qUHbKUK6sHeHn67qtHZoLoYk5hS6x1arTPjKDRkY93/6Fx+ZmNIpdm1owX3l6aYueyegJ7mz43FpvYHUqJ8xcw==",
  3894. "requires": {
  3895. "@walletconnect/environment": "^1.0.0",
  3896. "@walletconnect/jsonrpc-types": "^1.0.0"
  3897. }
  3898. },
  3899. "@walletconnect/randombytes": {
  3900. "version": "1.0.1",
  3901. "resolved": "https://registry.npmjs.org/@walletconnect/randombytes/-/randombytes-1.0.1.tgz",
  3902. "integrity": "sha512-YJTyq69i0PtxVg7osEpKfvjTaWuAsR49QEcqGKZRKVQWMbGXBZ65fovemK/SRgtiFRv0V8PwsrlKSheqzfPNcg==",
  3903. "requires": {
  3904. "@walletconnect/encoding": "^1.0.0",
  3905. "@walletconnect/environment": "^1.0.0",
  3906. "randombytes": "^2.1.0"
  3907. }
  3908. },
  3909. "@walletconnect/safe-json": {
  3910. "version": "1.0.0",
  3911. "resolved": "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.0.tgz",
  3912. "integrity": "sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg=="
  3913. },
  3914. "@walletconnect/socket-transport": {
  3915. "version": "1.7.0",
  3916. "resolved": "https://registry.npmjs.org/@walletconnect/socket-transport/-/socket-transport-1.7.0.tgz",
  3917. "integrity": "sha512-HSWGZxdxDtf8K1Kd1eD1QuObpoNxHui+A/+inuC8i8fcifDjZu85AeJIfCKQijlmgjLR/25Ry3eJFbYpRXxUjQ==",
  3918. "requires": {
  3919. "@walletconnect/types": "^1.7.0",
  3920. "@walletconnect/utils": "^1.7.0",
  3921. "ws": "7.5.3"
  3922. },
  3923. "dependencies": {
  3924. "ws": {
  3925. "version": "7.5.3",
  3926. "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.3.tgz",
  3927. "integrity": "sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==",
  3928. "requires": {}
  3929. }
  3930. }
  3931. },
  3932. "@walletconnect/types": {
  3933. "version": "1.7.0",
  3934. "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.7.0.tgz",
  3935. "integrity": "sha512-eoqnF+U04IuMfGIBsqYhAR6SIM2kzcrZM/RCVcomT/lIcsRoBwNxR+86+3Vn12/iaGnuAKn8xDZhZ47SLFmanQ=="
  3936. },
  3937. "@walletconnect/utils": {
  3938. "version": "1.7.0",
  3939. "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-1.7.0.tgz",
  3940. "integrity": "sha512-DnYyKNMkpPUkbu6YwHfycvzlpx7Ro/qDPIDAuaNYT4FFWFyYxfx2ZY66kU3XklQivAc8dK7TyvYPJ08LWd8w4Q==",
  3941. "requires": {
  3942. "@walletconnect/browser-utils": "^1.7.0",
  3943. "@walletconnect/encoding": "^1.0.0",
  3944. "@walletconnect/jsonrpc-utils": "^1.0.0",
  3945. "@walletconnect/types": "^1.7.0",
  3946. "bn.js": "4.11.8",
  3947. "js-sha3": "0.8.0",
  3948. "query-string": "6.13.5"
  3949. },
  3950. "dependencies": {
  3951. "bn.js": {
  3952. "version": "4.11.8",
  3953. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
  3954. "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
  3955. }
  3956. }
  3957. },
  3958. "@walletconnect/window-getters": {
  3959. "version": "1.0.0",
  3960. "resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.0.tgz",
  3961. "integrity": "sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA=="
  3962. },
  3963. "@walletconnect/window-metadata": {
  3964. "version": "1.0.0",
  3965. "resolved": "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.0.tgz",
  3966. "integrity": "sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==",
  3967. "requires": {
  3968. "@walletconnect/window-getters": "^1.0.0"
  3969. }
  3970. },
  3971. "aes-js": {
  3972. "version": "3.1.2",
  3973. "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.1.2.tgz",
  3974. "integrity": "sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ=="
  3975. },
  3976. "ansi-styles": {
  3977. "version": "3.2.1",
  3978. "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
  3979. "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
  3980. "requires": {
  3981. "color-convert": "^1.9.0"
  3982. }
  3983. },
  3984. "axios": {
  3985. "version": "0.24.0",
  3986. "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz",
  3987. "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==",
  3988. "requires": {
  3989. "follow-redirects": "^1.14.4"
  3990. }
  3991. },
  3992. "babel-plugin-styled-components": {
  3993. "version": "2.0.2",
  3994. "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.2.tgz",
  3995. "integrity": "sha512-7eG5NE8rChnNTDxa6LQfynwgHTVOYYaHJbUYSlOhk8QBXIQiMBKq4gyfHBBKPrxUcVBXVJL61ihduCpCQbuNbw==",
  3996. "requires": {
  3997. "@babel/helper-annotate-as-pure": "^7.16.0",
  3998. "@babel/helper-module-imports": "^7.16.0",
  3999. "babel-plugin-syntax-jsx": "^6.18.0",
  4000. "lodash": "^4.17.11"
  4001. }
  4002. },
  4003. "babel-plugin-syntax-jsx": {
  4004. "version": "6.18.0",
  4005. "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
  4006. "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY="
  4007. },
  4008. "balanced-match": {
  4009. "version": "1.0.2",
  4010. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  4011. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
  4012. },
  4013. "base-x": {
  4014. "version": "3.0.9",
  4015. "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
  4016. "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
  4017. "requires": {
  4018. "safe-buffer": "^5.0.1"
  4019. }
  4020. },
  4021. "base64-js": {
  4022. "version": "1.5.1",
  4023. "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
  4024. "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
  4025. },
  4026. "bech32": {
  4027. "version": "2.0.0",
  4028. "resolved": "https://registry.npmjs.org/bech32/-/bech32-2.0.0.tgz",
  4029. "integrity": "sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg=="
  4030. },
  4031. "bindings": {
  4032. "version": "1.5.0",
  4033. "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
  4034. "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
  4035. "requires": {
  4036. "file-uri-to-path": "1.0.0"
  4037. }
  4038. },
  4039. "bip32": {
  4040. "version": "2.0.6",
  4041. "resolved": "https://registry.npmjs.org/bip32/-/bip32-2.0.6.tgz",
  4042. "integrity": "sha512-HpV5OMLLGTjSVblmrtYRfFFKuQB+GArM0+XP8HGWfJ5vxYBqo+DesvJwOdC2WJ3bCkZShGf0QIfoIpeomVzVdA==",
  4043. "requires": {
  4044. "@types/node": "10.12.18",
  4045. "bs58check": "^2.1.1",
  4046. "create-hash": "^1.2.0",
  4047. "create-hmac": "^1.1.7",
  4048. "tiny-secp256k1": "^1.1.3",
  4049. "typeforce": "^1.11.5",
  4050. "wif": "^2.0.6"
  4051. }
  4052. },
  4053. "bip39": {
  4054. "version": "3.0.4",
  4055. "resolved": "https://registry.npmjs.org/bip39/-/bip39-3.0.4.tgz",
  4056. "integrity": "sha512-YZKQlb752TrUWqHWj7XAwCSjYEgGAk+/Aas3V7NyjQeZYsztO8JnQUaCWhcnL4T+jL8nvB8typ2jRPzTlgugNw==",
  4057. "requires": {
  4058. "@types/node": "11.11.6",
  4059. "create-hash": "^1.1.0",
  4060. "pbkdf2": "^3.0.9",
  4061. "randombytes": "^2.0.1"
  4062. },
  4063. "dependencies": {
  4064. "@types/node": {
  4065. "version": "11.11.6",
  4066. "resolved": "https://registry.npmjs.org/@types/node/-/node-11.11.6.tgz",
  4067. "integrity": "sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ=="
  4068. }
  4069. }
  4070. },
  4071. "bn.js": {
  4072. "version": "5.2.0",
  4073. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz",
  4074. "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
  4075. },
  4076. "borsh": {
  4077. "version": "0.4.0",
  4078. "resolved": "https://registry.npmjs.org/borsh/-/borsh-0.4.0.tgz",
  4079. "integrity": "sha512-aX6qtLya3K0AkT66CmYWCCDr77qsE9arV05OmdFpmat9qu8Pg9J5tBUPDztAW5fNh/d/MyVG/OYziP52Ndzx1g==",
  4080. "requires": {
  4081. "@types/bn.js": "^4.11.5",
  4082. "bn.js": "^5.0.0",
  4083. "bs58": "^4.0.0",
  4084. "text-encoding-utf-8": "^1.0.2"
  4085. }
  4086. },
  4087. "bowser": {
  4088. "version": "2.11.0",
  4089. "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz",
  4090. "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA=="
  4091. },
  4092. "brace-expansion": {
  4093. "version": "1.1.11",
  4094. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
  4095. "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
  4096. "requires": {
  4097. "balanced-match": "^1.0.0",
  4098. "concat-map": "0.0.1"
  4099. }
  4100. },
  4101. "brorand": {
  4102. "version": "1.1.0",
  4103. "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
  4104. "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
  4105. },
  4106. "browser-headers": {
  4107. "version": "0.4.1",
  4108. "resolved": "https://registry.npmjs.org/browser-headers/-/browser-headers-0.4.1.tgz",
  4109. "integrity": "sha512-CA9hsySZVo9371qEHjHZtYxV2cFtVj5Wj/ZHi8ooEsrtm4vOnl9Y9HmyYWk9q+05d7K3rdoAE0j3MVEFVvtQtg=="
  4110. },
  4111. "bs58": {
  4112. "version": "4.0.1",
  4113. "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
  4114. "integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=",
  4115. "requires": {
  4116. "base-x": "^3.0.2"
  4117. }
  4118. },
  4119. "bs58check": {
  4120. "version": "2.1.2",
  4121. "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz",
  4122. "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==",
  4123. "requires": {
  4124. "bs58": "^4.0.0",
  4125. "create-hash": "^1.1.0",
  4126. "safe-buffer": "^5.1.2"
  4127. }
  4128. },
  4129. "buffer": {
  4130. "version": "6.0.3",
  4131. "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
  4132. "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
  4133. "requires": {
  4134. "base64-js": "^1.3.1",
  4135. "ieee754": "^1.2.1"
  4136. }
  4137. },
  4138. "buffer-layout": {
  4139. "version": "1.2.2",
  4140. "resolved": "https://registry.npmjs.org/buffer-layout/-/buffer-layout-1.2.2.tgz",
  4141. "integrity": "sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA=="
  4142. },
  4143. "bufferutil": {
  4144. "version": "4.0.6",
  4145. "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz",
  4146. "integrity": "sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw==",
  4147. "requires": {
  4148. "node-gyp-build": "^4.3.0"
  4149. }
  4150. },
  4151. "camelize": {
  4152. "version": "1.0.0",
  4153. "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz",
  4154. "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs="
  4155. },
  4156. "chalk": {
  4157. "version": "2.4.2",
  4158. "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
  4159. "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
  4160. "requires": {
  4161. "ansi-styles": "^3.2.1",
  4162. "escape-string-regexp": "^1.0.5",
  4163. "supports-color": "^5.3.0"
  4164. }
  4165. },
  4166. "cipher-base": {
  4167. "version": "1.0.4",
  4168. "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
  4169. "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
  4170. "requires": {
  4171. "inherits": "^2.0.1",
  4172. "safe-buffer": "^5.0.1"
  4173. }
  4174. },
  4175. "circular-json": {
  4176. "version": "0.5.9",
  4177. "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.9.tgz",
  4178. "integrity": "sha512-4ivwqHpIFJZBuhN3g/pEcdbnGUywkBblloGbkglyloVjjR3uT6tieI89MVOfbP2tHX5sgb01FuLgAOzebNlJNQ=="
  4179. },
  4180. "color-convert": {
  4181. "version": "1.9.3",
  4182. "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
  4183. "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
  4184. "requires": {
  4185. "color-name": "1.1.3"
  4186. }
  4187. },
  4188. "color-name": {
  4189. "version": "1.1.3",
  4190. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
  4191. "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
  4192. },
  4193. "commander": {
  4194. "version": "2.20.3",
  4195. "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
  4196. "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
  4197. },
  4198. "concat-map": {
  4199. "version": "0.0.1",
  4200. "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
  4201. "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
  4202. },
  4203. "create-hash": {
  4204. "version": "1.2.0",
  4205. "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
  4206. "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
  4207. "requires": {
  4208. "cipher-base": "^1.0.1",
  4209. "inherits": "^2.0.1",
  4210. "md5.js": "^1.3.4",
  4211. "ripemd160": "^2.0.1",
  4212. "sha.js": "^2.4.0"
  4213. }
  4214. },
  4215. "create-hmac": {
  4216. "version": "1.1.7",
  4217. "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
  4218. "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
  4219. "requires": {
  4220. "cipher-base": "^1.0.3",
  4221. "create-hash": "^1.1.0",
  4222. "inherits": "^2.0.1",
  4223. "ripemd160": "^2.0.0",
  4224. "safe-buffer": "^5.0.1",
  4225. "sha.js": "^2.4.8"
  4226. }
  4227. },
  4228. "cross-fetch": {
  4229. "version": "3.1.4",
  4230. "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz",
  4231. "integrity": "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==",
  4232. "requires": {
  4233. "node-fetch": "2.6.1"
  4234. }
  4235. },
  4236. "css-color-keywords": {
  4237. "version": "1.0.0",
  4238. "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz",
  4239. "integrity": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU="
  4240. },
  4241. "css-to-react-native": {
  4242. "version": "3.0.0",
  4243. "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz",
  4244. "integrity": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==",
  4245. "requires": {
  4246. "camelize": "^1.0.0",
  4247. "css-color-keywords": "^1.0.0",
  4248. "postcss-value-parser": "^4.0.2"
  4249. }
  4250. },
  4251. "debug": {
  4252. "version": "4.3.3",
  4253. "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
  4254. "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
  4255. "requires": {
  4256. "ms": "2.1.2"
  4257. }
  4258. },
  4259. "decimal.js": {
  4260. "version": "10.3.1",
  4261. "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz",
  4262. "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ=="
  4263. },
  4264. "decode-uri-component": {
  4265. "version": "0.2.0",
  4266. "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
  4267. "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
  4268. },
  4269. "delay": {
  4270. "version": "5.0.0",
  4271. "resolved": "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz",
  4272. "integrity": "sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw=="
  4273. },
  4274. "detect-browser": {
  4275. "version": "5.2.0",
  4276. "resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.2.0.tgz",
  4277. "integrity": "sha512-tr7XntDAu50BVENgQfajMLzacmSe34D+qZc4zjnniz0ZVuw/TZcLcyxHQjYpJTM36sGEkZZlYLnIM1hH7alTMA=="
  4278. },
  4279. "dotenv": {
  4280. "version": "10.0.0",
  4281. "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz",
  4282. "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q=="
  4283. },
  4284. "elliptic": {
  4285. "version": "6.6.1",
  4286. "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz",
  4287. "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==",
  4288. "requires": {
  4289. "bn.js": "^4.11.9",
  4290. "brorand": "^1.1.0",
  4291. "hash.js": "^1.0.0",
  4292. "hmac-drbg": "^1.0.1",
  4293. "inherits": "^2.0.4",
  4294. "minimalistic-assert": "^1.0.1",
  4295. "minimalistic-crypto-utils": "^1.0.1"
  4296. },
  4297. "dependencies": {
  4298. "bn.js": {
  4299. "version": "4.12.0",
  4300. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
  4301. "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
  4302. }
  4303. }
  4304. },
  4305. "es6-promise": {
  4306. "version": "4.2.8",
  4307. "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
  4308. "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
  4309. },
  4310. "es6-promisify": {
  4311. "version": "5.0.0",
  4312. "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz",
  4313. "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=",
  4314. "requires": {
  4315. "es6-promise": "^4.0.3"
  4316. }
  4317. },
  4318. "escape-string-regexp": {
  4319. "version": "1.0.5",
  4320. "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
  4321. "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
  4322. },
  4323. "ethers": {
  4324. "version": "5.5.3",
  4325. "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.5.3.tgz",
  4326. "integrity": "sha512-fTT4WT8/hTe/BLwRUtl7I5zlpF3XC3P/Xwqxc5AIP2HGlH15qpmjs0Ou78az93b1rLITzXLFxoNX63B8ZbUd7g==",
  4327. "requires": {
  4328. "@ethersproject/abi": "5.5.0",
  4329. "@ethersproject/abstract-provider": "5.5.1",
  4330. "@ethersproject/abstract-signer": "5.5.0",
  4331. "@ethersproject/address": "5.5.0",
  4332. "@ethersproject/base64": "5.5.0",
  4333. "@ethersproject/basex": "5.5.0",
  4334. "@ethersproject/bignumber": "5.5.0",
  4335. "@ethersproject/bytes": "5.5.0",
  4336. "@ethersproject/constants": "5.5.0",
  4337. "@ethersproject/contracts": "5.5.0",
  4338. "@ethersproject/hash": "5.5.0",
  4339. "@ethersproject/hdnode": "5.5.0",
  4340. "@ethersproject/json-wallets": "5.5.0",
  4341. "@ethersproject/keccak256": "5.5.0",
  4342. "@ethersproject/logger": "5.5.0",
  4343. "@ethersproject/networks": "5.5.2",
  4344. "@ethersproject/pbkdf2": "5.5.0",
  4345. "@ethersproject/properties": "5.5.0",
  4346. "@ethersproject/providers": "5.5.2",
  4347. "@ethersproject/random": "5.5.1",
  4348. "@ethersproject/rlp": "5.5.0",
  4349. "@ethersproject/sha2": "5.5.0",
  4350. "@ethersproject/signing-key": "5.5.0",
  4351. "@ethersproject/solidity": "5.5.0",
  4352. "@ethersproject/strings": "5.5.0",
  4353. "@ethersproject/transactions": "5.5.0",
  4354. "@ethersproject/units": "5.5.0",
  4355. "@ethersproject/wallet": "5.5.0",
  4356. "@ethersproject/web": "5.5.1",
  4357. "@ethersproject/wordlists": "5.5.0"
  4358. }
  4359. },
  4360. "eventemitter3": {
  4361. "version": "4.0.7",
  4362. "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
  4363. "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
  4364. },
  4365. "eyes": {
  4366. "version": "0.1.8",
  4367. "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz",
  4368. "integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A="
  4369. },
  4370. "fast-deep-equal": {
  4371. "version": "3.1.3",
  4372. "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
  4373. "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
  4374. },
  4375. "file-uri-to-path": {
  4376. "version": "1.0.0",
  4377. "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
  4378. "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="
  4379. },
  4380. "fix-hmr": {
  4381. "version": "1.0.2",
  4382. "resolved": "https://registry.npmjs.org/fix-hmr/-/fix-hmr-1.0.2.tgz",
  4383. "integrity": "sha512-N0lDDYiu0yplOZt1Q+d3CSpie4mimTMUQ9ftOnT4DDWdGuNH8BFs1bpLKJKd9DXFtkiAR9Y5updgmI7kyW8AuQ==",
  4384. "requires": {
  4385. "react": "^17.0.2"
  4386. }
  4387. },
  4388. "follow-redirects": {
  4389. "version": "1.14.6",
  4390. "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.6.tgz",
  4391. "integrity": "sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A=="
  4392. },
  4393. "fs.realpath": {
  4394. "version": "1.0.0",
  4395. "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
  4396. "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
  4397. },
  4398. "glob": {
  4399. "version": "7.2.0",
  4400. "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
  4401. "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
  4402. "requires": {
  4403. "fs.realpath": "^1.0.0",
  4404. "inflight": "^1.0.4",
  4405. "inherits": "2",
  4406. "minimatch": "^3.0.4",
  4407. "once": "^1.3.0",
  4408. "path-is-absolute": "^1.0.0"
  4409. }
  4410. },
  4411. "globals": {
  4412. "version": "11.12.0",
  4413. "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
  4414. "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
  4415. },
  4416. "google-protobuf": {
  4417. "version": "3.19.2",
  4418. "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.19.2.tgz",
  4419. "integrity": "sha512-VVi7/U6WZ5aH11i7/z2kuGHENZXUSZ6VonAp20cnInF0mVaGk3T23eSTIgJ+OjUKEAB4+bHdszseQg29TL+wSg=="
  4420. },
  4421. "has-flag": {
  4422. "version": "3.0.0",
  4423. "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
  4424. "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
  4425. },
  4426. "hash-base": {
  4427. "version": "3.1.0",
  4428. "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
  4429. "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
  4430. "requires": {
  4431. "inherits": "^2.0.4",
  4432. "readable-stream": "^3.6.0",
  4433. "safe-buffer": "^5.2.0"
  4434. }
  4435. },
  4436. "hash.js": {
  4437. "version": "1.1.7",
  4438. "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
  4439. "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
  4440. "requires": {
  4441. "inherits": "^2.0.3",
  4442. "minimalistic-assert": "^1.0.1"
  4443. }
  4444. },
  4445. "hmac-drbg": {
  4446. "version": "1.0.1",
  4447. "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
  4448. "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
  4449. "requires": {
  4450. "hash.js": "^1.0.3",
  4451. "minimalistic-assert": "^1.0.0",
  4452. "minimalistic-crypto-utils": "^1.0.1"
  4453. }
  4454. },
  4455. "hoist-non-react-statics": {
  4456. "version": "3.3.2",
  4457. "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
  4458. "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
  4459. "requires": {
  4460. "react-is": "^16.7.0"
  4461. },
  4462. "dependencies": {
  4463. "react-is": {
  4464. "version": "16.13.1",
  4465. "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
  4466. "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
  4467. }
  4468. }
  4469. },
  4470. "ieee754": {
  4471. "version": "1.2.1",
  4472. "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
  4473. "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
  4474. },
  4475. "inflight": {
  4476. "version": "1.0.6",
  4477. "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
  4478. "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
  4479. "requires": {
  4480. "once": "^1.3.0",
  4481. "wrappy": "1"
  4482. }
  4483. },
  4484. "inherits": {
  4485. "version": "2.0.4",
  4486. "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
  4487. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
  4488. },
  4489. "is-typedarray": {
  4490. "version": "1.0.0",
  4491. "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
  4492. "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
  4493. },
  4494. "isomorphic-ws": {
  4495. "version": "4.0.1",
  4496. "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz",
  4497. "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==",
  4498. "requires": {}
  4499. },
  4500. "jayson": {
  4501. "version": "3.6.6",
  4502. "resolved": "https://registry.npmjs.org/jayson/-/jayson-3.6.6.tgz",
  4503. "integrity": "sha512-f71uvrAWTtrwoww6MKcl9phQTC+56AopLyEenWvKVAIMz+q0oVGj6tenLZ7Z6UiPBkJtKLj4kt0tACllFQruGQ==",
  4504. "requires": {
  4505. "@types/connect": "^3.4.33",
  4506. "@types/express-serve-static-core": "^4.17.9",
  4507. "@types/lodash": "^4.14.159",
  4508. "@types/node": "^12.12.54",
  4509. "@types/ws": "^7.4.4",
  4510. "commander": "^2.20.3",
  4511. "delay": "^5.0.0",
  4512. "es6-promisify": "^5.0.0",
  4513. "eyes": "^0.1.8",
  4514. "isomorphic-ws": "^4.0.1",
  4515. "json-stringify-safe": "^5.0.1",
  4516. "JSONStream": "^1.3.5",
  4517. "lodash": "^4.17.20",
  4518. "uuid": "^8.3.2",
  4519. "ws": "^7.4.5"
  4520. },
  4521. "dependencies": {
  4522. "@types/node": {
  4523. "version": "12.20.41",
  4524. "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.41.tgz",
  4525. "integrity": "sha512-f6xOqucbDirG7LOzedpvzjP3UTmHttRou3Mosx3vL9wr9AIQGhcPgVnqa8ihpZYnxyM1rxeNCvTyukPKZtq10Q=="
  4526. }
  4527. }
  4528. },
  4529. "js-base64": {
  4530. "version": "3.7.2",
  4531. "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.2.tgz",
  4532. "integrity": "sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ=="
  4533. },
  4534. "js-sha3": {
  4535. "version": "0.8.0",
  4536. "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz",
  4537. "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q=="
  4538. },
  4539. "js-tokens": {
  4540. "version": "4.0.0",
  4541. "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
  4542. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
  4543. },
  4544. "jscrypto": {
  4545. "version": "1.0.2",
  4546. "resolved": "https://registry.npmjs.org/jscrypto/-/jscrypto-1.0.2.tgz",
  4547. "integrity": "sha512-r+oNJLGTv1nkNMBBq3c70xYrFDgJOYVgs2OHijz5Ht+0KJ0yObD0oYxC9mN72KLzVfXw+osspg6t27IZvuTUxw=="
  4548. },
  4549. "jsesc": {
  4550. "version": "2.5.2",
  4551. "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
  4552. "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="
  4553. },
  4554. "json-stringify-safe": {
  4555. "version": "5.0.1",
  4556. "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
  4557. "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
  4558. },
  4559. "jsonparse": {
  4560. "version": "1.3.1",
  4561. "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
  4562. "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA="
  4563. },
  4564. "JSONStream": {
  4565. "version": "1.3.5",
  4566. "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",
  4567. "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==",
  4568. "requires": {
  4569. "jsonparse": "^1.2.0",
  4570. "through": ">=2.2.7 <3"
  4571. }
  4572. },
  4573. "keyvaluestorage-interface": {
  4574. "version": "1.0.0",
  4575. "resolved": "https://registry.npmjs.org/keyvaluestorage-interface/-/keyvaluestorage-interface-1.0.0.tgz",
  4576. "integrity": "sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g=="
  4577. },
  4578. "lodash": {
  4579. "version": "4.17.21",
  4580. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
  4581. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
  4582. },
  4583. "long": {
  4584. "version": "4.0.0",
  4585. "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz",
  4586. "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA=="
  4587. },
  4588. "loose-envify": {
  4589. "version": "1.4.0",
  4590. "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
  4591. "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
  4592. "requires": {
  4593. "js-tokens": "^3.0.0 || ^4.0.0"
  4594. }
  4595. },
  4596. "md5.js": {
  4597. "version": "1.3.5",
  4598. "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
  4599. "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
  4600. "requires": {
  4601. "hash-base": "^3.0.0",
  4602. "inherits": "^2.0.1",
  4603. "safe-buffer": "^5.1.2"
  4604. }
  4605. },
  4606. "minimalistic-assert": {
  4607. "version": "1.0.1",
  4608. "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
  4609. "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
  4610. },
  4611. "minimalistic-crypto-utils": {
  4612. "version": "1.0.1",
  4613. "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
  4614. "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo="
  4615. },
  4616. "minimatch": {
  4617. "version": "3.0.4",
  4618. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
  4619. "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
  4620. "requires": {
  4621. "brace-expansion": "^1.1.7"
  4622. }
  4623. },
  4624. "mobile-detect": {
  4625. "version": "1.4.5",
  4626. "resolved": "https://registry.npmjs.org/mobile-detect/-/mobile-detect-1.4.5.tgz",
  4627. "integrity": "sha512-yc0LhH6tItlvfLBugVUEtgawwFU2sIe+cSdmRJJCTMZ5GEJyLxNyC/NIOAOGk67Fa8GNpOttO3Xz/1bHpXFD/g=="
  4628. },
  4629. "ms": {
  4630. "version": "2.1.2",
  4631. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
  4632. "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
  4633. },
  4634. "nan": {
  4635. "version": "2.15.0",
  4636. "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz",
  4637. "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="
  4638. },
  4639. "node-addon-api": {
  4640. "version": "2.0.2",
  4641. "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz",
  4642. "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA=="
  4643. },
  4644. "node-fetch": {
  4645. "version": "2.6.1",
  4646. "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz",
  4647. "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="
  4648. },
  4649. "node-gyp-build": {
  4650. "version": "4.3.0",
  4651. "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz",
  4652. "integrity": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q=="
  4653. },
  4654. "object-assign": {
  4655. "version": "4.1.1",
  4656. "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  4657. "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
  4658. },
  4659. "once": {
  4660. "version": "1.4.0",
  4661. "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
  4662. "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
  4663. "requires": {
  4664. "wrappy": "1"
  4665. }
  4666. },
  4667. "path-is-absolute": {
  4668. "version": "1.0.1",
  4669. "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
  4670. "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
  4671. },
  4672. "pbkdf2": {
  4673. "version": "3.1.2",
  4674. "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
  4675. "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
  4676. "requires": {
  4677. "create-hash": "^1.1.2",
  4678. "create-hmac": "^1.1.4",
  4679. "ripemd160": "^2.0.1",
  4680. "safe-buffer": "^5.0.1",
  4681. "sha.js": "^2.4.8"
  4682. }
  4683. },
  4684. "postcss-value-parser": {
  4685. "version": "4.2.0",
  4686. "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
  4687. "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
  4688. },
  4689. "prop-types": {
  4690. "version": "15.8.1",
  4691. "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
  4692. "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
  4693. "requires": {
  4694. "loose-envify": "^1.4.0",
  4695. "object-assign": "^4.1.1",
  4696. "react-is": "^16.13.1"
  4697. },
  4698. "dependencies": {
  4699. "react-is": {
  4700. "version": "16.13.1",
  4701. "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
  4702. "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
  4703. }
  4704. }
  4705. },
  4706. "protobufjs": {
  4707. "version": "6.11.2",
  4708. "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.2.tgz",
  4709. "integrity": "sha512-4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw==",
  4710. "requires": {
  4711. "@protobufjs/aspromise": "^1.1.2",
  4712. "@protobufjs/base64": "^1.1.2",
  4713. "@protobufjs/codegen": "^2.0.4",
  4714. "@protobufjs/eventemitter": "^1.1.0",
  4715. "@protobufjs/fetch": "^1.1.0",
  4716. "@protobufjs/float": "^1.0.2",
  4717. "@protobufjs/inquire": "^1.1.0",
  4718. "@protobufjs/path": "^1.1.2",
  4719. "@protobufjs/pool": "^1.1.0",
  4720. "@protobufjs/utf8": "^1.1.0",
  4721. "@types/long": "^4.0.1",
  4722. "@types/node": ">=13.7.0",
  4723. "long": "^4.0.0"
  4724. },
  4725. "dependencies": {
  4726. "@types/node": {
  4727. "version": "17.0.8",
  4728. "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.8.tgz",
  4729. "integrity": "sha512-YofkM6fGv4gDJq78g4j0mMuGMkZVxZDgtU0JRdx6FgiJDG+0fY0GKVolOV8WqVmEhLCXkQRjwDdKyPxJp/uucg=="
  4730. }
  4731. }
  4732. },
  4733. "qr.js": {
  4734. "version": "0.0.0",
  4735. "resolved": "https://registry.npmjs.org/qr.js/-/qr.js-0.0.0.tgz",
  4736. "integrity": "sha1-ys6GOG9ZoNuAUPqQ2baw6IoeNk8="
  4737. },
  4738. "qrcode.react": {
  4739. "version": "1.0.1",
  4740. "resolved": "https://registry.npmjs.org/qrcode.react/-/qrcode.react-1.0.1.tgz",
  4741. "integrity": "sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==",
  4742. "requires": {
  4743. "loose-envify": "^1.4.0",
  4744. "prop-types": "^15.6.0",
  4745. "qr.js": "0.0.0"
  4746. }
  4747. },
  4748. "query-string": {
  4749. "version": "6.13.5",
  4750. "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.5.tgz",
  4751. "integrity": "sha512-svk3xg9qHR39P3JlHuD7g3nRnyay5mHbrPctEBDUxUkHRifPHXJDhBUycdCC0NBjXoDf44Gb+IsOZL1Uwn8M/Q==",
  4752. "requires": {
  4753. "decode-uri-component": "^0.2.0",
  4754. "split-on-first": "^1.0.0",
  4755. "strict-uri-encode": "^2.0.0"
  4756. }
  4757. },
  4758. "randombytes": {
  4759. "version": "2.1.0",
  4760. "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
  4761. "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
  4762. "requires": {
  4763. "safe-buffer": "^5.1.0"
  4764. }
  4765. },
  4766. "react": {
  4767. "version": "17.0.2",
  4768. "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
  4769. "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
  4770. "requires": {
  4771. "loose-envify": "^1.1.0",
  4772. "object-assign": "^4.1.1"
  4773. }
  4774. },
  4775. "react-dom": {
  4776. "version": "17.0.2",
  4777. "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
  4778. "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
  4779. "peer": true,
  4780. "requires": {
  4781. "loose-envify": "^1.1.0",
  4782. "object-assign": "^4.1.1",
  4783. "scheduler": "^0.20.2"
  4784. }
  4785. },
  4786. "react-is": {
  4787. "version": "17.0.2",
  4788. "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
  4789. "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
  4790. "peer": true
  4791. },
  4792. "readable-stream": {
  4793. "version": "3.6.0",
  4794. "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
  4795. "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
  4796. "requires": {
  4797. "inherits": "^2.0.3",
  4798. "string_decoder": "^1.1.1",
  4799. "util-deprecate": "^1.0.1"
  4800. }
  4801. },
  4802. "regenerator-runtime": {
  4803. "version": "0.13.9",
  4804. "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
  4805. "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
  4806. },
  4807. "rimraf": {
  4808. "version": "3.0.2",
  4809. "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
  4810. "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
  4811. "requires": {
  4812. "glob": "^7.1.3"
  4813. }
  4814. },
  4815. "ripemd160": {
  4816. "version": "2.0.2",
  4817. "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
  4818. "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
  4819. "requires": {
  4820. "hash-base": "^3.0.0",
  4821. "inherits": "^2.0.1"
  4822. }
  4823. },
  4824. "rpc-websockets": {
  4825. "version": "7.4.16",
  4826. "resolved": "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.4.16.tgz",
  4827. "integrity": "sha512-0b7OVhutzwRIaYAtJo5tqtaQTWKfwAsKnaThOSOy+VkhVdleNUgb8eZnWSdWITRZZEigV5uPEIDr5KZe4DBrdQ==",
  4828. "requires": {
  4829. "@babel/runtime": "^7.11.2",
  4830. "bufferutil": "^4.0.1",
  4831. "circular-json": "^0.5.9",
  4832. "eventemitter3": "^4.0.7",
  4833. "utf-8-validate": "^5.0.2",
  4834. "uuid": "^8.3.0",
  4835. "ws": "^7.4.5"
  4836. }
  4837. },
  4838. "rxjs": {
  4839. "version": "7.5.1",
  4840. "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.1.tgz",
  4841. "integrity": "sha512-KExVEeZWxMZnZhUZtsJcFwz8IvPvgu4G2Z2QyqjZQzUGr32KDYuSxrEYO4w3tFFNbfLozcrKUTvTPi+E9ywJkQ==",
  4842. "requires": {
  4843. "tslib": "^2.1.0"
  4844. }
  4845. },
  4846. "safe-buffer": {
  4847. "version": "5.2.1",
  4848. "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
  4849. "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
  4850. },
  4851. "scheduler": {
  4852. "version": "0.20.2",
  4853. "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz",
  4854. "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==",
  4855. "peer": true,
  4856. "requires": {
  4857. "loose-envify": "^1.1.0",
  4858. "object-assign": "^4.1.1"
  4859. }
  4860. },
  4861. "scrypt-js": {
  4862. "version": "3.0.1",
  4863. "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz",
  4864. "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA=="
  4865. },
  4866. "secp256k1": {
  4867. "version": "4.0.3",
  4868. "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz",
  4869. "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==",
  4870. "requires": {
  4871. "elliptic": "^6.6.1",
  4872. "node-addon-api": "^2.0.0",
  4873. "node-gyp-build": "^4.2.0"
  4874. }
  4875. },
  4876. "sha.js": {
  4877. "version": "2.4.11",
  4878. "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
  4879. "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
  4880. "requires": {
  4881. "inherits": "^2.0.1",
  4882. "safe-buffer": "^5.0.1"
  4883. }
  4884. },
  4885. "shallowequal": {
  4886. "version": "1.1.0",
  4887. "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
  4888. "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ=="
  4889. },
  4890. "source-map": {
  4891. "version": "0.5.7",
  4892. "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
  4893. "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
  4894. },
  4895. "split-on-first": {
  4896. "version": "1.1.0",
  4897. "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz",
  4898. "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw=="
  4899. },
  4900. "strict-uri-encode": {
  4901. "version": "2.0.0",
  4902. "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz",
  4903. "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY="
  4904. },
  4905. "string_decoder": {
  4906. "version": "1.3.0",
  4907. "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
  4908. "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
  4909. "requires": {
  4910. "safe-buffer": "~5.2.0"
  4911. }
  4912. },
  4913. "styled-components": {
  4914. "version": "5.3.3",
  4915. "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.3.tgz",
  4916. "integrity": "sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw==",
  4917. "requires": {
  4918. "@babel/helper-module-imports": "^7.0.0",
  4919. "@babel/traverse": "^7.4.5",
  4920. "@emotion/is-prop-valid": "^0.8.8",
  4921. "@emotion/stylis": "^0.8.4",
  4922. "@emotion/unitless": "^0.7.4",
  4923. "babel-plugin-styled-components": ">= 1.12.0",
  4924. "css-to-react-native": "^3.0.0",
  4925. "hoist-non-react-statics": "^3.0.0",
  4926. "shallowequal": "^1.1.0",
  4927. "supports-color": "^5.5.0"
  4928. }
  4929. },
  4930. "superstruct": {
  4931. "version": "0.14.2",
  4932. "resolved": "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz",
  4933. "integrity": "sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ=="
  4934. },
  4935. "supports-color": {
  4936. "version": "5.5.0",
  4937. "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
  4938. "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
  4939. "requires": {
  4940. "has-flag": "^3.0.0"
  4941. }
  4942. },
  4943. "text-encoding-utf-8": {
  4944. "version": "1.0.2",
  4945. "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz",
  4946. "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg=="
  4947. },
  4948. "through": {
  4949. "version": "2.3.8",
  4950. "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
  4951. "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU="
  4952. },
  4953. "tiny-secp256k1": {
  4954. "version": "1.1.6",
  4955. "resolved": "https://registry.npmjs.org/tiny-secp256k1/-/tiny-secp256k1-1.1.6.tgz",
  4956. "integrity": "sha512-FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==",
  4957. "requires": {
  4958. "bindings": "^1.3.0",
  4959. "bn.js": "^4.11.8",
  4960. "create-hmac": "^1.1.7",
  4961. "elliptic": "^6.6.1",
  4962. "nan": "^2.13.2"
  4963. },
  4964. "dependencies": {
  4965. "bn.js": {
  4966. "version": "4.12.0",
  4967. "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
  4968. "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
  4969. }
  4970. }
  4971. },
  4972. "tmp": {
  4973. "version": "0.2.1",
  4974. "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz",
  4975. "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==",
  4976. "requires": {
  4977. "rimraf": "^3.0.0"
  4978. }
  4979. },
  4980. "to-fast-properties": {
  4981. "version": "2.0.0",
  4982. "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
  4983. "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
  4984. },
  4985. "tslib": {
  4986. "version": "2.3.1",
  4987. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
  4988. "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
  4989. },
  4990. "tweetnacl": {
  4991. "version": "1.0.3",
  4992. "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz",
  4993. "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw=="
  4994. },
  4995. "typedarray-to-buffer": {
  4996. "version": "3.1.5",
  4997. "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
  4998. "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
  4999. "requires": {
  5000. "is-typedarray": "^1.0.0"
  5001. }
  5002. },
  5003. "typeforce": {
  5004. "version": "1.18.0",
  5005. "resolved": "https://registry.npmjs.org/typeforce/-/typeforce-1.18.0.tgz",
  5006. "integrity": "sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g=="
  5007. },
  5008. "utf-8-validate": {
  5009. "version": "5.0.8",
  5010. "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.8.tgz",
  5011. "integrity": "sha512-k4dW/Qja1BYDl2qD4tOMB9PFVha/UJtxTc1cXYOe3WwA/2m0Yn4qB7wLMpJyLJ/7DR0XnTut3HsCSzDT4ZvKgA==",
  5012. "requires": {
  5013. "node-gyp-build": "^4.3.0"
  5014. }
  5015. },
  5016. "util-deprecate": {
  5017. "version": "1.0.2",
  5018. "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
  5019. "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
  5020. },
  5021. "uuid": {
  5022. "version": "8.3.2",
  5023. "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
  5024. "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
  5025. },
  5026. "wif": {
  5027. "version": "2.0.6",
  5028. "resolved": "https://registry.npmjs.org/wif/-/wif-2.0.6.tgz",
  5029. "integrity": "sha1-CNP1IFbGZnkplyb63g1DKudLRwQ=",
  5030. "requires": {
  5031. "bs58check": "<3.0.0"
  5032. }
  5033. },
  5034. "wrappy": {
  5035. "version": "1.0.2",
  5036. "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
  5037. "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
  5038. },
  5039. "ws": {
  5040. "version": "7.5.6",
  5041. "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz",
  5042. "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==",
  5043. "requires": {}
  5044. }
  5045. }
  5046. }