Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@meshsdk/core

Package Overview
Dependencies
Maintainers
1
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@meshsdk/core - npm Package Compare versions

Comparing version 1.2.0-beta.4 to 1.2.1

4

dist/common/contracts/fetcher.d.ts

@@ -5,2 +5,6 @@ import type { AccountInfo, AssetMetadata, Protocol, UTxO } from '@mesh/common/types';

fetchAddressUTxOs(address: string, asset?: string): Promise<UTxO[]>;
fetchAssetAddresses(asset: string): Promise<{
address: string;
quantity: string;
}[]>;
fetchAssetMetadata(asset: string): Promise<AssetMetadata>;

@@ -7,0 +11,0 @@ fetchHandleAddress(handle: string): Promise<string>;

8

dist/providers/blockfrost.provider.d.ts

@@ -8,4 +8,8 @@ import { IFetcher, ISubmitter } from '@mesh/common/contracts';

fetchAddressUTxOs(address: string, asset?: string): Promise<UTxO[]>;
fetchAssetMetadata(_asset: string): Promise<AssetMetadata>;
fetchHandleAddress(_handle: string): Promise<string>;
fetchAssetAddresses(asset: string): Promise<{
address: string;
quantity: string;
}[]>;
fetchAssetMetadata(asset: string): Promise<AssetMetadata>;
fetchHandleAddress(handle: string): Promise<string>;
fetchProtocolParameters(epoch?: number): Promise<Protocol>;

@@ -12,0 +16,0 @@ submitTx(tx: string): Promise<string>;

@@ -8,6 +8,10 @@ import { IFetcher, ISubmitter } from '@mesh/common/contracts';

fetchAddressUTxOs(address: string, asset?: string): Promise<UTxO[]>;
fetchAssetMetadata(_asset: string): Promise<AssetMetadata>;
fetchHandleAddress(_handle: string): Promise<string>;
fetchAssetAddresses(asset: string): Promise<{
address: string;
quantity: string;
}[]>;
fetchAssetMetadata(asset: string): Promise<AssetMetadata>;
fetchHandleAddress(handle: string): Promise<string>;
fetchProtocolParameters(epoch: number): Promise<Protocol>;
submitTx(tx: string): Promise<string>;
}
import { IFetcher, ISubmitter } from '@mesh/common/contracts';
import { AccountInfo, UTxO, AssetMetadata, Protocol } from '@mesh/common/types';
import type { AccountInfo, AssetMetadata, Protocol, UTxO } from '@mesh/common/types';
export declare class TangoProvider implements IFetcher, ISubmitter {

@@ -8,6 +8,10 @@ private readonly _axiosInstance;

fetchAddressUTxOs(address: string, asset?: string): Promise<UTxO[]>;
fetchAssetMetadata(_asset: string): Promise<AssetMetadata>;
fetchHandleAddress(_handle: string): Promise<string>;
fetchAssetAddresses(asset: string): Promise<{
address: string;
quantity: string;
}[]>;
fetchAssetMetadata(asset: string): Promise<AssetMetadata>;
fetchHandleAddress(handle: string): Promise<string>;
fetchProtocolParameters(epoch: number): Promise<Protocol>;
submitTx(tx: string): Promise<string>;
}

@@ -6,3 +6,3 @@ {

"author": "MeshJS",
"version": "1.2.0-beta.4",
"version": "1.2.1",
"license": "Apache-2.0",

@@ -9,0 +9,0 @@ "type": "module",

![Mesh Logo](https://meshjs.dev/logo-mesh/mesh.png)
Mesh is an open-source library to make building dApps accessible. Whether you're a beginner developer, startup, web3 market leader, or a large enterprise, Mesh makes web3 development easy with reliable, scalable, and well-engineered APIs & developer tools.
Mesh is an open-source library designed to make building dApps accessible. Whether you're a beginner developer, startup, web3 market leader, or a large enterprise, Mesh makes web3 development easy with reliable, scalable, and well-engineered APIs & developer tools.

@@ -9,25 +9,25 @@ Explore the features on [Mesh Playground](https://meshjs.dev/).

- [Start a Web3 app on Next.js](https://meshjs.dev/guides/nextjs)
- [Minting on Node.js](https://meshjs.dev/guides/mintingonnodejs)
- [App Wallet - Wallet for building transactions in your applications](https://meshjs.dev/apis/appwallet)
- [Browser Wallet - CIP30 wallets intergration](https://meshjs.dev/apis/browserwallet)
- [Transaction - Building, minting, burning, smart contracts and more](https://meshjs.dev/apis/transaction)
- [Resolvers - Helpful functions that you need while building dApps](https://meshjs.dev/apis/resolvers)
- [Starter Templates](https://meshjs.dev/starter-templates)
- [Guides](https://meshjs.dev/guides)
- [Install Mesh into existing project](https://meshjs.dev/migration-manual-installation)
- [App Wallet (Building transactions on applications)](https://meshjs.dev/apis/appwallet)
- [Browser Wallet (CIP30 wallets intergration)](https://meshjs.dev/apis/browserwallet)
- [Transaction - Building, minting, burning, smart contracts, stake pool and more](https://meshjs.dev/apis/transaction)
- [React Components](https://meshjs.dev/react)
- [Service Providers](https://meshjs.dev/providers)
- [Resolvers](https://meshjs.dev/apis/resolvers)
## Why use Mesh
- Always up to date - Vasil ready, developed closely as the network updates so your app will always works
- Simple to use - Check out our [guides](https://meshjs.dev/guides), you will get started in less than 10 mins
- Everything you need to build Web3 apps - [React components](https://meshjs.dev/react) like wallet connection buttons, and useful React hooks - Mesh provides everything you need to build web3 apps
- Adopts best practices - implemented various CIPs and package is well build (no hacking and tweaking needed to get it to work)
- Thoroughly tested - Mesh is used by developers and learners, built by developers with solid software engineering background
- Integrates with Cardano projects - Koios, Blockfrost, ADA Handle (and more), you pick what you want to use for your app
- Well documented - We focus on documentation so you can use it, our [Playground](https://meshjs.dev/) is built so you can see how it works
- Start a new project with one of out [Starter Templates](https://meshjs.dev/starter-templates) with CLI command
- Always up to date - Vasil-ready, developed promptly as the network updates so your app always works
- Simple to use - Check out our [guides](https://meshjs.dev/guides) - you'll get started in less than 10 mins!
- Adopts best practices - implements various CIPs and package is well build (no hacking and tweaking needed to get it to work)
- Thoroughly tested - Mesh is used by both developers and learners, and is being built by developers with solid software engineering backgrounds
- Integrates with Cardano projects - Koios, Blockfrost, ADA Handle (and more), you can pick and choose freely what you want to use for your app
- Well documented - we focus on documentation so you can use it with ease, and our [Playground](https://meshjs.dev/) is built so you can see how it works
[Find out more](https://meshjs.dev/about)
## How can you contribute?
- [You can support Mesh!](https://meshjs.dev/about/support-us)
- [Support us](https://meshjs.dev/about/support-us)
- Build something - try Mesh by implementing your Web 3.0 project (recommended [starter guide](https://meshjs.dev/guides/nextjs))
- Inform others - Tell others about Mesh, and star the [Github repo](https://github.com/MeshJS/mesh) :star:
- Write ups - documentations and guides

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc