npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

zic-evm-sdk

v1.0.1

Published

An sdk for interacting with zebec card evm contracts

Downloads

323

Readme

EVM Zebec Card Sdk

An sdk for interacting with zebec instant card evm contract.

Installation

Install package using yarn or npm

yarn add zic-evm-sdk

npm install zic-evm-sdk

Usage

Create Service Instance

To use this sdk you should first create a ZebecCardService instance. To create an instance you need signer and chainId. Supported chains are Sepolia, Mainnet (Ethereum), BSC, Base, BscTestnet

const signer = <ethers.Signer Instance> // most wallet provider have way to create signer
const chainId = 11155111 // sepolia;
const service = new ZebecCardService(signer, chainId);

Deposit Usdc

To deposit you first need to approve the zebec card contract to make use to amount to be deposited. Then you can perform deposit action.

const amount = "10.5";
const spender = await service.zebecCard.getAddress();
const token = await service.usdcToken.getAddress();
const approval = await service.approve({
	token,
	amount,
	spender,
});

if (approval) {
	const receipt0 = await approval.wait();
	console.log("approval hash:", receipt0?.hash);
}

const response = await service.depositUsdc({ amount });
const receipt1 = await response.wait();
console.log("txhash:", receipt1?.hash);

Withdraw Usdc

Withdraw can performed by call withdraw method in service.

const response = await service.withdraw({ amount: "5.0" });
const receipt = await response.wait();
console.log("txhash:", receipt?.hash);

Fetch user balance

const userBalance = await service.getUserBalance({ userAddress: signer });
console.log("card balance:", userBalance);

Fetch SwapQuote

const authToken = process.env.ONE_INCH_AUTH_TOKEN!;
const brett = "0x532f27101965dd16442E59d40670FaF5eBB142E4"; // base
const amount = "1";

const data: SwapQuote = await service.fetchSwapQuote({
	amount,
	authToken: authToken,
	srcToken: brett,
});
console.log("data:", data);

Fetch swap data

To fetch swap data, you need to approve token to be swapped, to one inch router address because swap data is fetched from 1inch swap api which does not return swap data unless token allowance is given to 1inch router. You can fetch swap data by calling fetchSwapData method in service providing its required parameters. authToken can be obtained from 1inch portal.

const authToken = process.env.ONE_INCH_AUTH_TOKEN!;
assert(authToken && authToken !== "", "missing env var ONE_INCH_AUTH_TOKEN");
const brett = "0x532f27101965dd16442E59d40670FaF5eBB142E4";
const amount = "1";
const dstToken = await service.usdcToken.getAddress();

const approval = await service.approve({
	token: brett,
	amount,
	spender: ONE_INCH_ROUTER_V6_ADDRESS,
});

if (approval) {
	const receipt = await approval.wait();
	console.log("approval hash:", receipt?.hash);
}

const data = await service.fetchSwapData({
	amount,
	authToken: authToken,
	slippage: "0.5",
	srcToken: brett,
});
console.log("data:", data);

Swap And Deposit

Swap and deposit is supposed to be performed when user has to deposit token other than usdc. The contract takes certain amount of USDC as fee for providing swap feature. It can done by calling swapAndDeposit method in service. The same data obtained by calling fetchSwapData can passed to that method. Before depositing user's token, you are required to approve the ZebecCard contract to spend the token because, token is first transferred to ZebecCard contract being swapped to USDC.

const data = await service.fetchSwapData({...});

const approval = await service.approve({
    token: brett,
    amount,
    spender: service.zebecCard,
});

if (approval) {
    const receipt = await approval.wait();
    console.log("approval hash:", receipt?.hash);
}

const response = await service.swapAndDeposit(data);
const receipt1 = await response.wait();
console.log("txhash:", receipt1?.hash);

Buy card

Card purchase consume user's usdc deposits. To buy card you have to call buyCard method in service.

const response = await service.buyCard({
	amount: "5.0",
	cardTypeId: "103108509702",
	buyerEmail: "[email protected]",
});

const receipt = await response.wait();
console.log("txhash:", receipt1?.hash);

Generate Yield

To trasfer usdc from user's vault to yield provider, user has to call the generateYield method. After the trasaction success, user will receive equivalent aUSDC token of respective chain. This token will increase gradually as time passes and is required to withdraw yield.

const amount = "100";
const response = await service.generateYield({ amount });
const receipt1 = await response.wait();
console.log("txhash:", receipt1?.hash);

Withdraw Yield

To withdraw yield user has to first give allowance the zebec contract to spend the aUSDC token. After approval is given, the withdraw methods can called.

const spender = await service.zebecCard.getAddress();
const token = getATokenAddress(SEPOLIA_CHAIN_ID);
const amount = "100";

const approval = await service.approve({
	token,
	amount,
	spender,
});

if (approval) {
	const receipt0 = await approval.wait();
	console.log("approval hash:", receipt0?.hash);
}

const response = await service.withdrawYield({ amount });
const receipt = await response.wait();
console.log("txhash:", receipt?.hash);

Get total amount of card purchased in a day last time

const userAddress = "<address>";
const cardPurchase = await service.getCardPurhcaseOfDay({ userAddress });
console.log("card purchase:", cardPurchase);

Wrap Native Currency

const amount = "0.001";
const response = await service.wrapEth({ amount });
const receipt = await response.wait();
console.log("txHash:", receipt?.hash);

Admin functionality

To call admin functions you need to create instance of ZebecCardService with admin signer. View functions call be called regardless of any signer but write functions are authorized to call by only admin.

Get Card Config

const cardConfig: CardConfig = await service.getCardConfig();
console.log("cardConfig:", cardConfig);

Get Admin Address

const admin: string = await service.getAdmin();
console.log("admin:", admin);

Set Native Fee

const response = await service.setNativeFee({ feeInPercent: "1.5" });
const receipt = await response.wait();
console.log("txhash:", receipt?.hash);

Set NonNative Fee

const response = await service.setNonNativeFee({ feeInPercent: "2.5" });
const receipt = await response.wait();
console.log("txhash:", receipt?.hash);

Set Revenue Fee

const response = await service.setRevenueFee({ feeInPercent: "5.0" });
const receipt = await response.wait();
console.log("txhash:", receipt?.hash);

Set Revenue Vault

const vaultAddress = "<address>";
const response = await service.setRevenueVault({ vaultAddress });
const receipt = await response.wait();
console.log("txhash:", receipt?.hash);

Set Commission Vault

const vaultAddress = "<address>";
const response = await service.setCommissionVault({ vaultAddress });
const receipt = await response.wait();
console.log("txhash:", receipt?.hash);

Set Card Vault

const vaultAddress = "<address>";
const response = await service.setCardVault({ vaultAddress });
const receipt = await response.wait();
console.log("txhash:", receipt?.hash);

Fetc

Creating Token Contract Instance

The SDK export Token contract factory as well. You can create token contract object in following way.

const tokenAddress = "<token adddress>";
const signer = <ethers.Signer Instance>;
const token = Token__factory.connect(tokenAddress, signer);

You can use this object to interact with ERC20 Token contracts. For example, fetching token balance of user would be like:

const walletAddress = "<address>";
const balance = await token.balanceOf(walletAddress);

Parsing events from logs

The sdk provides ZebecCard contract factory which can be used to create ethers interface for parsing events from logs.

function parseLogs(logs: readonly Log[]) {
	const zebecCardInterface = ZebecCard__factory.createInterface();
	return logs.map((l) => zebecCardInterface.parseLog(l)).filter(Boolean) as LogDescription[];
}

You can create function that parse receipt logs to LogDescription

Parsing deposit event

const url = "<RPC URL>";
const provider = new ethers.JsonRpcProvider(url);

const hash = "0x787b49fe1d8896ab53ebe0b39828aa7f50d5c8c33521ca75bbcf071cec8306cb";
const receipt = await provider.getTransactionReceipt(hash);
assert(receipt, "Could not find receipt.");
const zebecCardEvents = parseLogs(receipt.logs);
const depositedEvent = zebecCardEvents.find((e) => e.name === "Deposited");
assert(depositedEvent, "Could not find Deposited event");

depositedEvent.args.map((arg, i) => console.log("arg %d: %o", i, arg));

Parsing withdraw event

const hash = "0x8b3dd458428323f60ce53cdfed5412d5228f020082881e2434381259b607fe75";
const receipt = await provider.getTransactionReceipt(hash);
assert(receipt, "Could not find receipt.");
const zebecCardEvents = parseLogs(receipt.logs);
const withdrawnEvent = zebecCardEvents.find((e) => e.name === "Withdrawn");
assert(withdrawnEvent, "Could not find Withdrawn event");

withdrawnEvent.args.map((arg, i) => console.log("arg %d: %o", i, arg));

Parsing card purchase event

const hash = "0xf81179e1a79293b2e7ee012a57b03a093cc33f647bdc3c20be9c63b97557c392";
const receipt = await provider.getTransactionReceipt(hash);
assert(receipt, "Could not find receipt.");
const zebecCardEvents = parseLogs(receipt.logs);
const cardPurchasedEvent = zebecCardEvents.find((e) => e.name === "CardPurchased");
assert(cardPurchasedEvent, "Could not find CardPurchased event");

cardPurchasedEvent.args.map((arg, i) => console.log("arg %d: %o", i, arg));

Parsing swap and deposit event

const hash = "";
const receipt = await provider.getTransactionReceipt(hash);
assert(receipt, "Could not find receipt.");
const zebecCardEvents = parseLogs(receipt.logs);
const swappedEvent = zebecCardEvents.find((e) => e.name === "Swapped");
assert(swappedEvent, "Could not find Swapped event");

swappedEvent.args.map((arg, i) => console.log("arg %d: %o", i, arg));