New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@tribalfinance/marketplace-sdk

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tribalfinance/marketplace-sdk

Tribal Marketplace SDK is a library that provides a set of tools to interact with the Tribal Marketplace Contract.

  • 1.0.3
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Tribal Marketplace SDK

Tribal Marketplace SDK is a library that provides a set of tools to interact with the Tribal Marketplace Contract.

Installation

npm install @tribalfinance/marketplace-sdk

Contracts

NameNetworkAddress
MarketplaceTribal Testnet0xbFeF5203acD11347e8e5330D7b4dD51f48bD271b

Networks

NetworkRPC URL
Tribal Testnethttps://rpc-testnet.tribal.finance

Usage

import { MarketplaceClient } from '@tribal/marketplace-sdk';
import { ethers } from 'ethers';

const marketplaceContract = '0xbFeF5203acD11347e8e5330D7b4dD51f48bD271b';

// Generating Ethers V6 Signer (if you are using wagmi please visit https://wagmi.sh/core/guides/ethers)
const provider = new ethers.JsonRpcProvider(
  'https://rpc-testnet.tribal.finance'
);
const signer = new ethers.Wallet(process.env.PRIVATE_KEY, provider);

const marketplaceClient = new MarketplaceClient(marketplaceContract, {
  signer
});

FAQs

Package last updated on 23 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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