Socket
Socket
Sign inDemoInstall

@reflexer-finance/geb-contract-api

Package Overview
Dependencies
Maintainers
4
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reflexer-finance/geb-contract-api - npm Package Compare versions

Comparing version 1.1.25 to 1.1.26

82

lib/generated/NativeUnderlyingUniswapSafeSaviour.d.ts

@@ -5,2 +5,3 @@ import { BaseContractAPI } from '@reflexer-finance/geb-contract-base';

import { BytesLike } from '@ethersproject/bytes';
import { BigNumberish } from '@ethersproject/bignumber';
import { BigNumber } from '@ethersproject/bignumber';

@@ -22,4 +23,53 @@ export declare class NativeUnderlyingUniswapSafeSaviour extends BaseContractAPI {

WAD_COMPLEMENT(multicall: true): MulticallRequest<BigNumber>;
canSave(bytes: BytesLike, address: string): TransactionRequest;
addAuthorization(account: string): TransactionRequest;
allowUser(usr: string): TransactionRequest;
allowedUsers(address: string): Promise<BigNumber>;
allowedUsers(address: string, multicall: true): MulticallRequest<BigNumber>;
authorizedAccounts(address: string): Promise<BigNumber>;
authorizedAccounts(address: string, multicall: true): MulticallRequest<BigNumber>;
cRatioSetter(): Promise<string>;
cRatioSetter(multicall: true): MulticallRequest<string>;
canSave(bytes: BytesLike, safeHandler: string): TransactionRequest;
coinJoin(): Promise<string>;
coinJoin(multicall: true): MulticallRequest<string>;
collateralJoin(): Promise<string>;
collateralJoin(multicall: true): MulticallRequest<string>;
collateralToken(): Promise<string>;
collateralToken(multicall: true): MulticallRequest<string>;
deposit(safeID: BigNumberish, lpTokenAmount: BigNumberish): TransactionRequest;
disallowUser(usr: string): TransactionRequest;
getCollateralPrice(): Promise<BigNumber>;
getCollateralPrice(multicall: true): MulticallRequest<BigNumber>;
getKeeperPayoutTokens(safeHandler: string, redemptionPrice: BigNumberish, safeDebtRepaid: BigNumberish, safeCollateralAdded: BigNumberish): Promise<{
0: BigNumber;
1: BigNumber;
}>;
getKeeperPayoutTokens(safeHandler: string, redemptionPrice: BigNumberish, safeDebtRepaid: BigNumberish, safeCollateralAdded: BigNumberish, multicall: true): MulticallRequest<{
0: BigNumber;
1: BigNumber;
}>;
getKeeperPayoutValue(): TransactionRequest;
getLPUnderlying(safeHandler: string): Promise<{
0: BigNumber;
1: BigNumber;
}>;
getLPUnderlying(safeHandler: string, multicall: true): MulticallRequest<{
0: BigNumber;
1: BigNumber;
}>;
getReserves(safeID: BigNumberish, dst: string): TransactionRequest;
getSystemCoinMarketPrice(): Promise<BigNumber>;
getSystemCoinMarketPrice(multicall: true): MulticallRequest<BigNumber>;
getTargetCRatio(safeHandler: string): Promise<BigNumber>;
getTargetCRatio(safeHandler: string, multicall: true): MulticallRequest<BigNumber>;
getTokensForSaving(safeHandler: string, redemptionPrice: BigNumberish): Promise<{
0: BigNumber;
1: BigNumber;
}>;
getTokensForSaving(safeHandler: string, redemptionPrice: BigNumberish, multicall: true): MulticallRequest<{
0: BigNumber;
1: BigNumber;
}>;
isSystemCoinToken0(): Promise<boolean>;
isSystemCoinToken0(multicall: true): MulticallRequest<boolean>;
keeperPayout(): Promise<BigNumber>;

@@ -30,4 +80,12 @@ keeperPayout(multicall: true): MulticallRequest<BigNumber>;

liquidationEngine(multicall: true): MulticallRequest<string>;
liquidityManager(): Promise<string>;
liquidityManager(multicall: true): MulticallRequest<string>;
lpToken(): Promise<string>;
lpToken(multicall: true): MulticallRequest<string>;
lpTokenCover(address: string): Promise<BigNumber>;
lpTokenCover(address: string, multicall: true): MulticallRequest<BigNumber>;
minKeeperPayoutValue(): Promise<BigNumber>;
minKeeperPayoutValue(multicall: true): MulticallRequest<BigNumber>;
modifyParameters__Bytes32Address(parameter: BytesLike, data: string): TransactionRequest;
modifyParameters__Bytes32Uint256(parameter: BytesLike, val: BigNumberish): TransactionRequest;
oracleRelayer(): Promise<string>;

@@ -37,2 +95,5 @@ oracleRelayer(multicall: true): MulticallRequest<string>;

payoutToSAFESize(multicall: true): MulticallRequest<BigNumber>;
removeAuthorization(account: string): TransactionRequest;
restrictUsage(): Promise<BigNumber>;
restrictUsage(multicall: true): MulticallRequest<BigNumber>;
safeEngine(): Promise<string>;

@@ -42,8 +103,19 @@ safeEngine(multicall: true): MulticallRequest<string>;

safeManager(multicall: true): MulticallRequest<string>;
saveSAFE(address1: string, bytes: BytesLike, address2: string): TransactionRequest;
saveSAFE(keeper: string, collateralType: BytesLike, safeHandler: string): TransactionRequest;
saviourRegistry(): Promise<string>;
saviourRegistry(multicall: true): MulticallRequest<string>;
taxCollector(): Promise<string>;
taxCollector(multicall: true): MulticallRequest<string>;
tokenAmountUsedToSave(bytes: BytesLike, address: string): TransactionRequest;
systemCoin(): Promise<string>;
systemCoin(multicall: true): MulticallRequest<string>;
systemCoinOrcl(): Promise<string>;
systemCoinOrcl(multicall: true): MulticallRequest<string>;
tokenAmountUsedToSave(bytes: BytesLike, safeHandler: string): TransactionRequest;
underlyingReserves(address: string): Promise<{
systemCoins: BigNumber;
collateralCoins: BigNumber;
}>;
underlyingReserves(address: string, multicall: true): MulticallRequest<{
systemCoins: BigNumber;
collateralCoins: BigNumber;
}>;
withdraw(safeID: BigNumberish, lpTokenAmount: BigNumberish, dst: string): TransactionRequest;
}

@@ -67,8 +67,80 @@ "use strict";

};
NativeUnderlyingUniswapSafeSaviour.prototype.canSave = function (bytes, address) {
NativeUnderlyingUniswapSafeSaviour.prototype.addAuthorization = function (account) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }, { "internalType": "address", "name": "", "type": "address" }], "name": "canSave", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [bytes, address]);
var abi = { "inputs": [{ "internalType": "address", "name": "account", "type": "address" }], "name": "addAuthorization", "outputs": [], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [account]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.allowUser = function (usr) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "usr", "type": "address" }], "name": "allowUser", "outputs": [], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [usr]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.allowedUsers = function (address, multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "", "type": "address" }], "name": "allowedUsers", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [address], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.authorizedAccounts = function (address, multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "", "type": "address" }], "name": "authorizedAccounts", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [address], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.cRatioSetter = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "cRatioSetter", "outputs": [{ "internalType": "contract SaviourCRatioSetterLike", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.canSave = function (bytes, safeHandler) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }, { "internalType": "address", "name": "safeHandler", "type": "address" }], "name": "canSave", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [bytes, safeHandler]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.coinJoin = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "coinJoin", "outputs": [{ "internalType": "contract CoinJoinLike", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.collateralJoin = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "collateralJoin", "outputs": [{ "internalType": "contract CollateralJoinLike", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.collateralToken = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "collateralToken", "outputs": [{ "internalType": "contract ERC20Like", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.deposit = function (safeID, lpTokenAmount) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "uint256", "name": "safeID", "type": "uint256" }, { "internalType": "uint256", "name": "lpTokenAmount", "type": "uint256" }], "name": "deposit", "outputs": [], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [safeID, lpTokenAmount]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.disallowUser = function (usr) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "usr", "type": "address" }], "name": "disallowUser", "outputs": [], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [usr]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.getCollateralPrice = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "getCollateralPrice", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.getKeeperPayoutTokens = function (safeHandler, redemptionPrice, safeDebtRepaid, safeCollateralAdded, multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "safeHandler", "type": "address" }, { "internalType": "uint256", "name": "redemptionPrice", "type": "uint256" }, { "internalType": "uint256", "name": "safeDebtRepaid", "type": "uint256" }, { "internalType": "uint256", "name": "safeCollateralAdded", "type": "uint256" }], "name": "getKeeperPayoutTokens", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }, { "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [safeHandler, redemptionPrice, safeDebtRepaid, safeCollateralAdded], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.getKeeperPayoutValue = function () {

@@ -80,2 +152,38 @@ // prettier-ignore

};
NativeUnderlyingUniswapSafeSaviour.prototype.getLPUnderlying = function (safeHandler, multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "safeHandler", "type": "address" }], "name": "getLPUnderlying", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }, { "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [safeHandler], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.getReserves = function (safeID, dst) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "uint256", "name": "safeID", "type": "uint256" }, { "internalType": "address", "name": "dst", "type": "address" }], "name": "getReserves", "outputs": [], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [safeID, dst]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.getSystemCoinMarketPrice = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "getSystemCoinMarketPrice", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.getTargetCRatio = function (safeHandler, multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "safeHandler", "type": "address" }], "name": "getTargetCRatio", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [safeHandler], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.getTokensForSaving = function (safeHandler, redemptionPrice, multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "safeHandler", "type": "address" }, { "internalType": "uint256", "name": "redemptionPrice", "type": "uint256" }], "name": "getTokensForSaving", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }, { "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [safeHandler, redemptionPrice], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.isSystemCoinToken0 = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "isSystemCoinToken0", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.keeperPayout = function (multicall) {

@@ -99,2 +207,20 @@ // prettier-ignore

};
NativeUnderlyingUniswapSafeSaviour.prototype.liquidityManager = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "liquidityManager", "outputs": [{ "internalType": "contract UniswapLiquidityManagerLike", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.lpToken = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "lpToken", "outputs": [{ "internalType": "contract ERC20Like", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.lpTokenCover = function (address, multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "", "type": "address" }], "name": "lpTokenCover", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [address], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.minKeeperPayoutValue = function (multicall) {

@@ -106,2 +232,14 @@ // prettier-ignore

};
NativeUnderlyingUniswapSafeSaviour.prototype.modifyParameters__Bytes32Address = function (parameter, data) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "bytes32", "name": "parameter", "type": "bytes32" }, { "internalType": "address", "name": "data", "type": "address" }], "name": "modifyParameters", "outputs": [], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [parameter, data]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.modifyParameters__Bytes32Uint256 = function (parameter, val) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "bytes32", "name": "parameter", "type": "bytes32" }, { "internalType": "uint256", "name": "val", "type": "uint256" }], "name": "modifyParameters", "outputs": [], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [parameter, val]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.oracleRelayer = function (multicall) {

@@ -119,2 +257,14 @@ // prettier-ignore

};
NativeUnderlyingUniswapSafeSaviour.prototype.removeAuthorization = function (account) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "account", "type": "address" }], "name": "removeAuthorization", "outputs": [], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [account]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.restrictUsage = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "restrictUsage", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.safeEngine = function (multicall) {

@@ -132,7 +282,11 @@ // prettier-ignore

};
NativeUnderlyingUniswapSafeSaviour.prototype.saveSAFE = function (address1, bytes, address2) {
NativeUnderlyingUniswapSafeSaviour.prototype.saveSAFE = function (keeper, collateralType, safeHandler) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "", "type": "address" }, { "internalType": "bytes32", "name": "", "type": "bytes32" }, { "internalType": "address", "name": "", "type": "address" }], "name": "saveSAFE", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }, { "internalType": "uint256", "name": "", "type": "uint256" }, { "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [address1, bytes, address2]);
var abi = { "inputs": [{ "internalType": "address", "name": "keeper", "type": "address" }, { "internalType": "bytes32", "name": "collateralType", "type": "bytes32" }, { "internalType": "address", "name": "safeHandler", "type": "address" }], "name": "saveSAFE", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }, { "internalType": "uint256", "name": "", "type": "uint256" }, { "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [
keeper,
collateralType,
safeHandler,
]);
};

@@ -145,16 +299,34 @@ NativeUnderlyingUniswapSafeSaviour.prototype.saviourRegistry = function (multicall) {

};
NativeUnderlyingUniswapSafeSaviour.prototype.taxCollector = function (multicall) {
NativeUnderlyingUniswapSafeSaviour.prototype.systemCoin = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [], "name": "taxCollector", "outputs": [{ "internalType": "contract TaxCollectorLike", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" };
var abi = { "inputs": [], "name": "systemCoin", "outputs": [{ "internalType": "contract ERC20Like", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.tokenAmountUsedToSave = function (bytes, address) {
NativeUnderlyingUniswapSafeSaviour.prototype.systemCoinOrcl = function (multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }, { "internalType": "address", "name": "", "type": "address" }], "name": "tokenAmountUsedToSave", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [bytes, address]);
var abi = { "inputs": [], "name": "systemCoinOrcl", "outputs": [{ "internalType": "contract PriceFeedLike", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.tokenAmountUsedToSave = function (bytes, safeHandler) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }, { "internalType": "address", "name": "safeHandler", "type": "address" }], "name": "tokenAmountUsedToSave", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [bytes, safeHandler]);
};
NativeUnderlyingUniswapSafeSaviour.prototype.underlyingReserves = function (address, multicall) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "address", "name": "", "type": "address" }], "name": "underlyingReserves", "outputs": [{ "internalType": "uint256", "name": "systemCoins", "type": "uint256" }, { "internalType": "uint256", "name": "collateralCoins", "type": "uint256" }], "stateMutability": "view", "type": "function" };
return this.ethCallOrMulticall(abi, [address], multicall);
};
NativeUnderlyingUniswapSafeSaviour.prototype.withdraw = function (safeID, lpTokenAmount, dst) {
// prettier-ignore
// @ts-ignore
var abi = { "inputs": [{ "internalType": "uint256", "name": "safeID", "type": "uint256" }, { "internalType": "uint256", "name": "lpTokenAmount", "type": "uint256" }, { "internalType": "address", "name": "dst", "type": "address" }], "name": "withdraw", "outputs": [], "stateMutability": "nonpayable", "type": "function" };
return this.getTransactionRequest(abi, [safeID, lpTokenAmount, dst]);
};
return NativeUnderlyingUniswapSafeSaviour;
}(geb_contract_base_1.BaseContractAPI));
exports.NativeUnderlyingUniswapSafeSaviour = NativeUnderlyingUniswapSafeSaviour;

4

package.json
{
"name": "@reflexer-finance/geb-contract-api",
"version": "1.1.25",
"version": "1.1.26",
"description": "",

@@ -19,3 +19,3 @@ "main": "./lib/index.js",

},
"gitHead": "7f2909434b564004b2e8c64b86e0055f30be3d58"
"gitHead": "8f4dee386002a4ce88b6e4ecdb941429d5d77028"
}
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