Skip to content

Commit

Permalink
Merge pull request #12 from neptune-mutual-blue/refactor
Browse files Browse the repository at this point in the history
Refactor
  • Loading branch information
binpmxstn committed Mar 26, 2022
2 parents 0bcb608 + a7fa084 commit 2a10f8c
Show file tree
Hide file tree
Showing 47 changed files with 1,915 additions and 601 deletions.
12 changes: 12 additions & 0 deletions abis/ICxTokenFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@
"internalType": "uint256",
"name": "expiryDate",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "name",
"type": "string"
},
{
"indexed": false,
"internalType": "string",
"name": "symbol",
"type": "string"
}
],
"name": "CxTokenDeployed",
Expand Down
102 changes: 89 additions & 13 deletions abis/IVault.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,44 @@
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "key",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Entered",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "key",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Exited",
"type": "event"
},
{
"anonymous": false,
"inputs": [
Expand Down Expand Up @@ -93,6 +131,44 @@
"name": "InterestAccrued",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "NPMStaken",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "NPMUnstaken",
"type": "event"
},
{
"anonymous": false,
"inputs": [
Expand Down Expand Up @@ -435,19 +511,6 @@
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lqt",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
Expand Down Expand Up @@ -504,6 +567,19 @@
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "sc",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
Expand Down

0 comments on commit 2a10f8c

Please sign in to comment.