@skip-go/widget 0.0.1-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. package/README.md +89 -0
  2. package/build/ast/_constants.d.ts +1 -0
  3. package/build/ast/_types.d.ts +14 -0
  4. package/build/ast/get-chains-paths.d.ts +6 -0
  5. package/build/ast/parse-asset-list-json.d.ts +7 -0
  6. package/build/ast/parse-chain-json.d.ts +7 -0
  7. package/build/ast/parse-chain-paths.d.ts +9 -0
  8. package/build/ast/validate-chains-paths.d.ts +6 -0
  9. package/build/ast/write-entrypoints.d.ts +7 -0
  10. package/build/chains/assets.d.ts +3 -0
  11. package/build/chains/chain-infos.d.ts +3 -0
  12. package/build/chains/chains.d.ts +3 -0
  13. package/build/chains/explorers.d.ts +3 -0
  14. package/build/chains/index.d.ts +7 -0
  15. package/build/chains/pretty.d.ts +2 -0
  16. package/build/chains/types.d.ts +6 -0
  17. package/build/constants/abis.d.ts +2 -0
  18. package/build/constants/defaults.d.ts +5 -0
  19. package/build/constants/finality.d.ts +2 -0
  20. package/build/constants/gas.d.ts +3 -0
  21. package/build/constants/ledger-warning.d.ts +2 -0
  22. package/build/constants/wagmi.d.ts +2 -0
  23. package/build/hooks/use-account.d.ts +46 -0
  24. package/build/hooks/use-assets.d.ts +4 -0
  25. package/build/hooks/use-auto-set-address.d.ts +11 -0
  26. package/build/hooks/use-balances-by-chain.d.ts +15 -0
  27. package/build/hooks/use-bridges.d.ts +7 -0
  28. package/build/hooks/use-broadcasted-txs.d.ts +24 -0
  29. package/build/hooks/use-chains.d.ts +10 -0
  30. package/build/hooks/use-finality-time-estimate.d.ts +2 -0
  31. package/build/hooks/use-make-wallets.d.ts +21 -0
  32. package/build/hooks/use-route.d.ts +19 -0
  33. package/build/hooks/use-skip-client.d.ts +11 -0
  34. package/build/hooks/use-swap-widget.d.ts +81 -0
  35. package/build/hooks/use-usd-value.d.ts +8 -0
  36. package/build/index.d.ts +3 -0
  37. package/build/index.es.js +4877 -0
  38. package/build/index.es.js.map +1 -0
  39. package/build/lib/cosmos-kit.d.ts +3 -0
  40. package/build/lib/react-query.d.ts +2 -0
  41. package/build/lib/solana-adapter.d.ts +2 -0
  42. package/build/lib/viem/chains.d.ts +66 -0
  43. package/build/lib/wagmi.d.ts +8922 -0
  44. package/build/provider/assets.d.ts +16 -0
  45. package/build/provider/index.d.ts +25 -0
  46. package/build/provider/skip-provider.d.ts +13 -0
  47. package/build/provider/wallet/cosmos.d.ts +6 -0
  48. package/build/provider/wallet/evm.d.ts +6 -0
  49. package/build/provider/wallet/solana.d.ts +6 -0
  50. package/build/scripts/codegen.d.ts +1 -0
  51. package/build/store/disclosures.d.ts +44 -0
  52. package/build/store/settings.d.ts +17 -0
  53. package/build/store/swap-widget.d.ts +14 -0
  54. package/build/store/track-wallet.d.ts +24 -0
  55. package/build/store/tx-history.d.ts +36 -0
  56. package/build/ui/AdaptiveLink.d.ts +5 -0
  57. package/build/ui/AssetInput.d.ts +20 -0
  58. package/build/ui/AssetSelect/AssetSelectContent.d.ts +11 -0
  59. package/build/ui/AssetSelect/index.d.ts +11 -0
  60. package/build/ui/AssetValue.d.ts +7 -0
  61. package/build/ui/Button/HistoryButton.d.ts +2 -0
  62. package/build/ui/Button/SettingsButton.d.ts +2 -0
  63. package/build/ui/Button/ShareButton.d.ts +3 -0
  64. package/build/ui/ChainSelect/ChainSelectContent.d.ts +8 -0
  65. package/build/ui/ChainSelect/ChainSelectTrigger.d.ts +7 -0
  66. package/build/ui/ChainSelect/index.d.ts +9 -0
  67. package/build/ui/ChainSymbol.d.ts +5 -0
  68. package/build/ui/ConnectedWalletButton.d.ts +8 -0
  69. package/build/ui/ConversionRate.d.ts +22 -0
  70. package/build/ui/Dialog/Dialog.d.ts +7 -0
  71. package/build/ui/Dialog/DialogContent.d.ts +7 -0
  72. package/build/ui/Dialog/DialogTrigger.d.ts +5 -0
  73. package/build/ui/Dialog/context.d.ts +7 -0
  74. package/build/ui/HistoryDialog/DescriptionList.d.ts +5 -0
  75. package/build/ui/HistoryDialog/HistoryClearButton.d.ts +4 -0
  76. package/build/ui/HistoryDialog/HistoryList.d.ts +14 -0
  77. package/build/ui/HistoryDialog/RenderDate.d.ts +5 -0
  78. package/build/ui/HistoryDialog/SyncState.d.ts +4 -0
  79. package/build/ui/HistoryDialog/index.d.ts +1 -0
  80. package/build/ui/Icon/ExpandArrow.d.ts +2 -0
  81. package/build/ui/Icon/HistoryIcon.d.ts +2 -0
  82. package/build/ui/Icon/SkipLogo.d.ts +2 -0
  83. package/build/ui/Icon/SpinnerIcon.d.ts +2 -0
  84. package/build/ui/JsonDialog.d.ts +1 -0
  85. package/build/ui/PreviewRoute/AlertCollapse.d.ts +13 -0
  86. package/build/ui/PreviewRoute/ChainStep.d.ts +30 -0
  87. package/build/ui/PreviewRoute/SetAddressDialog.d.ts +12 -0
  88. package/build/ui/PreviewRoute/index.d.ts +18 -0
  89. package/build/ui/PreviewRoute/make-actions.d.ts +29 -0
  90. package/build/ui/PreviewRoute/make-chain-ids-with-actions.d.ts +11 -0
  91. package/build/ui/PreviewRoute/make-step-state.d.ts +17 -0
  92. package/build/ui/PreviewRoute/types.d.ts +21 -0
  93. package/build/ui/PriceImpactWarning.d.ts +7 -0
  94. package/build/ui/SettingsDialog/GasSetting.d.ts +1 -0
  95. package/build/ui/SettingsDialog/PurgeSetting.d.ts +1 -0
  96. package/build/ui/SettingsDialog/SaveIndicator.d.ts +1 -0
  97. package/build/ui/SettingsDialog/SlippageSetting.d.ts +1 -0
  98. package/build/ui/SettingsDialog/index.d.ts +1 -0
  99. package/build/ui/SimpleTooltip.d.ts +11 -0
  100. package/build/ui/SwapDetails.d.ts +11 -0
  101. package/build/ui/TransactionDialog.d.ts +13 -0
  102. package/build/ui/UsdValue.d.ts +27 -0
  103. package/build/ui/WalletModal/WalletListItem.d.ts +8 -0
  104. package/build/ui/WalletModal/WalletModal.d.ts +10 -0
  105. package/build/ui/WalletModal/context.d.ts +13 -0
  106. package/build/ui/WalletModal/index.d.ts +3 -0
  107. package/build/ui/Widget.d.ts +1 -0
  108. package/build/ui/index.d.ts +9 -0
  109. package/build/utils/assert.d.ts +2 -0
  110. package/build/utils/chain.d.ts +9 -0
  111. package/build/utils/clients.d.ts +4 -0
  112. package/build/utils/error.d.ts +1 -0
  113. package/build/utils/explorer.d.ts +5 -0
  114. package/build/utils/intl.d.ts +4 -0
  115. package/build/utils/ledger-warning.d.ts +3 -0
  116. package/build/utils/link.d.ts +4 -0
  117. package/build/utils/number.d.ts +4 -0
  118. package/build/utils/os.d.ts +3 -0
  119. package/build/utils/random.d.ts +1 -0
  120. package/build/utils/ui.d.ts +2 -0
  121. package/build/utils/usd.d.ts +5 -0
  122. package/build/utils/wallet.d.ts +7 -0
  123. package/package.json +96 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.es.js","sources":["../../../node_modules/style-inject/dist/style-inject.es.js"],"sourcesContent":["function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,SAAS,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE;AAC/B,EAAE,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;AACjC,EAAE,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;AAC9B;AACA,EAAE,IAAI,CAAC,GAAG,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE,EAAE,OAAO,EAAE;AAC1D;AACA,EAAE,IAAI,IAAI,GAAG,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;AACvE,EAAE,IAAI,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;AAC9C,EAAE,KAAK,CAAC,IAAI,GAAG,UAAU,CAAC;AAC1B;AACA,EAAE,IAAI,QAAQ,KAAK,KAAK,EAAE;AAC1B,IAAI,IAAI,IAAI,CAAC,UAAU,EAAE;AACzB,MAAM,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;AAChD,KAAK,MAAM;AACX,MAAM,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC9B,KAAK;AACL,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC5B,GAAG;AACH;AACA,EAAE,IAAI,KAAK,CAAC,UAAU,EAAE;AACxB,IAAI,KAAK,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG,CAAC;AACnC,GAAG,MAAM;AACT,IAAI,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC;AACpD,GAAG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ import { WalletClient } from '@cosmos-kit/core';
2
+ export declare const wallets: (import("@cosmos-kit/keplr-extension").KeplrExtensionWallet | import("@cosmos-kit/cosmostation-extension").CosmostationExtensionWallet | import("@cosmos-kit/leap-extension").LeapExtensionWallet | import("@cosmos-kit/okxwallet-extension").OkxwalletExtensionWallet | import("@cosmos-kit/station-extension").StationExtensionWallet | import("@cosmos-kit/vectis-extension").VectisExtensionWallet)[];
3
+ export type MergedWalletClient = import('@cosmos-kit/cosmostation-extension/cjs/extension/client').CosmostationClient | import('@cosmos-kit/keplr-extension/cjs/extension/client').KeplrClient | import('@cosmos-kit/leap-extension/cjs/extension/client').LeapClient | import('@cosmos-kit/okxwallet-extension/cjs/extension/client').OkxwalletClient | import('@cosmos-kit/station-extension/cjs/extension/client').StationClient | import('@cosmos-kit/vectis-extension/cjs/extension/client').VectisClient | WalletClient;
@@ -0,0 +1,2 @@
1
+ import { QueryClient } from '@tanstack/react-query';
2
+ export declare const queryClient: QueryClient;
@@ -0,0 +1,2 @@
1
+ import { CoinbaseWalletAdapter, LedgerWalletAdapter, PhantomWalletAdapter, SolflareWalletAdapter, TrustWalletAdapter } from '@solana/wallet-adapter-wallets';
2
+ export declare const solanaWallets: (PhantomWalletAdapter | SolflareWalletAdapter | CoinbaseWalletAdapter | TrustWalletAdapter | LedgerWalletAdapter)[];
@@ -0,0 +1,66 @@
1
+ export declare const forma: {
2
+ blockExplorers: {
3
+ readonly default: {
4
+ readonly name: "Forma Explorer";
5
+ readonly url: "https://explorer.forma.art";
6
+ };
7
+ };
8
+ contracts: {
9
+ readonly multicall3: {
10
+ readonly address: "0xd53C6FFB123F7349A32980F87faeD8FfDc9ef079";
11
+ readonly blockCreated: 252705;
12
+ };
13
+ };
14
+ id: 984122;
15
+ name: "Forma";
16
+ nativeCurrency: {
17
+ readonly name: "TIA";
18
+ readonly symbol: "TIA";
19
+ readonly decimals: 18;
20
+ };
21
+ rpcUrls: {
22
+ readonly default: {
23
+ readonly http: readonly ["https://rpc.forma.art"];
24
+ };
25
+ };
26
+ sourceId?: number | undefined;
27
+ testnet: false;
28
+ custom?: Record<string, unknown> | undefined;
29
+ fees?: import("viem").ChainFees<undefined> | undefined;
30
+ formatters?: undefined;
31
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
32
+ };
33
+ export declare const formaTestnet: {
34
+ blockExplorers: {
35
+ readonly default: {
36
+ readonly name: "Forma Explorer";
37
+ readonly url: "https://explorer.sketchpad-1.forma.art";
38
+ };
39
+ };
40
+ contracts?: {
41
+ [x: string]: import("viem").ChainContract | {
42
+ [sourceId: number]: import("viem").ChainContract | undefined;
43
+ } | undefined;
44
+ ensRegistry?: import("viem").ChainContract | undefined;
45
+ ensUniversalResolver?: import("viem").ChainContract | undefined;
46
+ multicall3?: import("viem").ChainContract | undefined;
47
+ } | undefined;
48
+ id: 984123;
49
+ name: "Forma Testnet";
50
+ nativeCurrency: {
51
+ readonly name: "TIA";
52
+ readonly symbol: "TIA";
53
+ readonly decimals: 18;
54
+ };
55
+ rpcUrls: {
56
+ readonly default: {
57
+ readonly http: readonly ["https://rpc.sketchpad-1.forma.art"];
58
+ };
59
+ };
60
+ sourceId?: number | undefined;
61
+ testnet: true;
62
+ custom?: Record<string, unknown> | undefined;
63
+ fees?: import("viem").ChainFees<undefined> | undefined;
64
+ formatters?: undefined;
65
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
66
+ };