Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
feat(honeyswap): Implemented Honeyswap (#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
desposto authored Jun 14, 2022
1 parent f26b3bc commit ebe3eb9
Show file tree
Hide file tree
Showing 19 changed files with 3,182 additions and 0 deletions.
193 changes: 193 additions & 0 deletions src/apps/honeyswap/contracts/abis/honeyswap-factory.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
[
{
"type": "constructor",
"stateMutability": "nonpayable",
"payable": false,
"inputs": [
{
"type": "address",
"name": "_feeToSetter",
"internalType": "address"
}
]
},
{
"type": "event",
"name": "PairCreated",
"inputs": [
{
"type": "address",
"name": "token0",
"internalType": "address",
"indexed": true
},
{
"type": "address",
"name": "token1",
"internalType": "address",
"indexed": true
},
{
"type": "address",
"name": "pair",
"internalType": "address",
"indexed": false
},
{
"type": "uint256",
"name": "",
"internalType": "uint256",
"indexed": false
}
],
"anonymous": false
},
{
"type": "function",
"stateMutability": "view",
"payable": false,
"outputs": [
{
"type": "address",
"name": "",
"internalType": "address"
}
],
"name": "allPairs",
"inputs": [
{
"type": "uint256",
"name": "",
"internalType": "uint256"
}
],
"constant": true
},
{
"type": "function",
"stateMutability": "view",
"payable": false,
"outputs": [
{
"type": "uint256",
"name": "",
"internalType": "uint256"
}
],
"name": "allPairsLength",
"inputs": [],
"constant": true
},
{
"type": "function",
"stateMutability": "nonpayable",
"payable": false,
"outputs": [
{
"type": "address",
"name": "pair",
"internalType": "address"
}
],
"name": "createPair",
"inputs": [
{
"type": "address",
"name": "tokenA",
"internalType": "address"
},
{
"type": "address",
"name": "tokenB",
"internalType": "address"
}
],
"constant": false
},
{
"type": "function",
"stateMutability": "view",
"payable": false,
"outputs": [
{
"type": "address",
"name": "",
"internalType": "address"
}
],
"name": "feeTo",
"inputs": [],
"constant": true
},
{
"type": "function",
"stateMutability": "view",
"payable": false,
"outputs": [
{
"type": "address",
"name": "",
"internalType": "address"
}
],
"name": "feeToSetter",
"inputs": [],
"constant": true
},
{
"type": "function",
"stateMutability": "view",
"payable": false,
"outputs": [
{
"type": "address",
"name": "",
"internalType": "address"
}
],
"name": "getPair",
"inputs": [
{
"type": "address",
"name": "",
"internalType": "address"
},
{
"type": "address",
"name": "",
"internalType": "address"
}
],
"constant": true
},
{
"type": "function",
"stateMutability": "nonpayable",
"payable": false,
"outputs": [],
"name": "setFeeTo",
"inputs": [
{
"type": "address",
"name": "_feeTo",
"internalType": "address"
}
],
"constant": false
},
{
"type": "function",
"stateMutability": "nonpayable",
"payable": false,
"outputs": [],
"name": "setFeeToSetter",
"inputs": [
{
"type": "address",
"name": "_feeToSetter",
"internalType": "address"
}
],
"constant": false
}
]
Loading

0 comments on commit ebe3eb9

Please sign in to comment.