Skip to content

Commit

Permalink
chore(release): 0.3.27
Browse files Browse the repository at this point in the history
  • Loading branch information
mguleryuz committed Mar 5, 2025
1 parent 4c56a46 commit 24f2ca1
Show file tree
Hide file tree
Showing 4 changed files with 240 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.3.27](https://github.com/inverter-network/abis/compare/v0.3.25...v0.3.27) (2025-03-05)

### [0.3.26](https://github.com/inverter-network/abis/compare/v0.3.25...v0.3.26) (2025-03-05)

### [0.3.25](https://github.com/inverter-network/abis/compare/v0.3.24...v0.3.25) (2025-03-05)
Expand Down
2 changes: 1 addition & 1 deletion deployments
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@inverter-network/abis",
"description": "INVERTER typescript ABIs",
"version": "0.3.26",
"version": "0.3.27",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down
236 changes: 236 additions & 0 deletions src/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,17 @@ export const data = [
stateMutability: 'nonpayable',
type: 'constructor',
},
{
inputs: [{ internalType: 'address', name: 'target', type: 'address' }],
name: 'AddressEmptyCode',
type: 'error',
},
{
inputs: [{ internalType: 'address', name: 'account', type: 'address' }],
name: 'AddressInsufficientBalance',
type: 'error',
},
{ inputs: [], name: 'FailedInnerCall', type: 'error' },
{
inputs: [],
name: 'PIM_WorkflowFactory__CantBeZeroAddress',
Expand All @@ -426,6 +437,57 @@ export const data = [
name: 'PIM_WorkflowFactory__OnlyInitiatorAfterGraduation',
type: 'error',
},
{
inputs: [{ internalType: 'address', name: 'token', type: 'address' }],
name: 'SafeERC20FailedOperation',
type: 'error',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'oldAdmin',
type: 'address',
description: 'The old admin address',
},
{
indexed: true,
internalType: 'address',
name: 'newAdmin',
type: 'address',
description: 'The new admin address',
},
],
name: 'AdminChanged',
type: 'event',
outputs: [],
description: 'Event emitted when admin is changed',
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: 'uint256',
name: 'oldMultiplier',
type: 'uint256',
description: 'The old collateral fee multiplier',
},
{
indexed: false,
internalType: 'uint256',
name: 'newMultiplier',
type: 'uint256',
description: 'The new collateral fee multiplier',
},
],
name: 'CollateralFeeMultiplierChanged',
type: 'event',
outputs: [],
description: 'Event emitted when collateral fee multiplier is changed',
},
{
anonymous: false,
inputs: [
Expand Down Expand Up @@ -464,6 +526,75 @@ export const data = [
description:
'Event emitted when collateral liquidity is migrated to the dex.',
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: 'uint256',
name: 'oldMultiplier',
type: 'uint256',
description: 'The old issuance fee multiplier',
},
{
indexed: false,
internalType: 'uint256',
name: 'newMultiplier',
type: 'uint256',
description: 'The new issuance fee multiplier',
},
],
name: 'IssuanceFeeMultiplierChanged',
type: 'event',
outputs: [],
description: 'Event emitted when issuance fee multiplier is changed',
},
{
anonymous: false,
inputs: [
{
indexed: false,
internalType: 'uint256',
name: 'oldDivisor',
type: 'uint256',
description: 'The old issuance liquidity divisor',
},
{
indexed: false,
internalType: 'uint256',
name: 'newDivisor',
type: 'uint256',
description: 'The new issuance liquidity divisor',
},
],
name: 'IssuanceLiquidityDivisorChanged',
type: 'event',
outputs: [],
description: 'Event emitted when issuance liquidity divisor is changed',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'oldMainFundingManager',
type: 'address',
description: 'The old main funding manager address',
},
{
indexed: true,
internalType: 'address',
name: 'newMainFundingManager',
type: 'address',
description: 'The new main funding manager address',
},
],
name: 'MainFundingManagerChanged',
type: 'event',
outputs: [],
description: 'Event emitted when main funding manager is changed',
},
{
anonymous: false,
inputs: [
Expand Down Expand Up @@ -529,6 +660,67 @@ export const data = [
outputs: [],
description: 'Event emitted when a new PIM workflow is created.',
},
{
anonymous: false,
inputs: [
{
components: [
{
internalType: 'uint256',
name: 'majorVersion',
type: 'uint256',
},
{
internalType: 'uint256',
name: 'minorVersion',
type: 'uint256',
},
{
internalType: 'uint256',
name: 'patchVersion',
type: 'uint256',
},
{ internalType: 'string', name: 'url', type: 'string' },
],
indexed: false,
internalType:
'struct IMigrating_PIM_Factory_v1.LM_PC_Staking_v1_Metadata',
name: 'oldMetadata',
type: 'tuple',
description: 'The old staking module metadata',
},
{
components: [
{
internalType: 'uint256',
name: 'majorVersion',
type: 'uint256',
},
{
internalType: 'uint256',
name: 'minorVersion',
type: 'uint256',
},
{
internalType: 'uint256',
name: 'patchVersion',
type: 'uint256',
},
{ internalType: 'string', name: 'url', type: 'string' },
],
indexed: false,
internalType:
'struct IMigrating_PIM_Factory_v1.LM_PC_Staking_v1_Metadata',
name: 'newMetadata',
type: 'tuple',
description: 'The new staking module metadata',
},
],
name: 'StakingModuleMetadataChanged',
type: 'event',
outputs: [],
description: 'Event emitted when staking module metadata is changed',
},
{
inputs: [],
name: 'admin',
Expand Down Expand Up @@ -1055,6 +1247,50 @@ export const data = [
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [
{
components: [
{
internalType: 'uint256',
name: 'majorVersion',
type: 'uint256',
},
{
internalType: 'uint256',
name: 'minorVersion',
type: 'uint256',
},
{
internalType: 'uint256',
name: 'patchVersion',
type: 'uint256',
},
{ internalType: 'string', name: 'url', type: 'string' },
],
internalType:
'struct IMigrating_PIM_Factory_v1.LM_PC_Staking_v1_Metadata',
name: '_stakingModuleMetadata',
type: 'tuple',
},
],
name: 'setStakingModuleMetadata',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [],
name: 'stakingModuleMetadata',
outputs: [
{ internalType: 'uint256', name: 'majorVersion', type: 'uint256' },
{ internalType: 'uint256', name: 'minorVersion', type: 'uint256' },
{ internalType: 'uint256', name: 'patchVersion', type: 'uint256' },
{ internalType: 'string', name: 'url', type: 'string' },
],
stateMutability: 'view',
type: 'function',
},
{
inputs: [],
name: 'trustedForwarder',
Expand Down

0 comments on commit 24f2ca1

Please sign in to comment.