Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
2b61267
Jia pool on both goerli and polygon
PlayJok3r Apr 19, 2023
59ca5e3
Merge branch 'develop' into jia_pioneer
PlayJok3r May 11, 2023
f8c9f05
Merge branch 'develop' into jia_pioneer
PlayJok3r May 11, 2023
c02bab4
Merge branch 'develop' into jia_pioneer
PlayJok3r May 16, 2023
894787d
updated hardhat config
PlayJok3r May 17, 2023
d4cc545
gitleaks to fetch all history
PlayJok3r May 18, 2023
4af5ac4
added todo comment
PlayJok3r May 18, 2023
af8d2a4
Merge remote-tracking branch 'origin/jia_pioneer' into deploy-arf-sep…
PlayJok3r May 18, 2023
10822ce
upgraded ethers version, deployed, verified, initialized arf pools on…
PlayJok3r May 19, 2023
82cd5ea
added scripts for deployments
PlayJok3r May 19, 2023
744a63c
temp save hardhat
PlayJok3r Jun 2, 2023
c08a33a
sync with sepolia branch
PlayJok3r Jun 2, 2023
ce53fa7
saving goerli arf deplotmentr
PlayJok3r Jun 6, 2023
07c4c72
added contract factory for deployment
PlayJok3r Jul 28, 2023
e59a760
Merge branch 'develop' into contract-factory
PlayJok3r Jul 28, 2023
33551b2
added initialization in the factory
PlayJok3r Jul 31, 2023
28bb714
removed ownable and using accessControl for ownership
PlayJok3r Jul 31, 2023
4bd4277
added transferOwnership for the factory
PlayJok3r Jul 31, 2023
1b56d3b
added more admin functions
PlayJok3r Aug 1, 2023
fae09b1
Merge branch 'contract-factory' of github.com:00labs/huma-contracts i…
PlayJok3r Aug 1, 2023
8da3769
added update pool status
PlayJok3r Aug 4, 2023
f676ea8
Merge branch 'celo-test' into contract-factory
PlayJok3r Aug 8, 2023
23d5085
fixed a pool status buig
PlayJok3r Aug 9, 2023
bdbcbf5
contract factory updates (#321)
PlayJok3r Aug 23, 2023
e5c867a
deployed factory on polygon
PlayJok3r Aug 28, 2023
5ed89d6
mumbai verified contracts
PlayJok3r Aug 28, 2023
f08160b
added abi files
PlayJok3r Sep 1, 2023
aeca34a
deployed the factory on mumbai
PlayJok3r Sep 6, 2023
bdcc7c5
deployed the factory on mumbai
PlayJok3r Sep 6, 2023
806d12c
added capability for HDT to update asset token
PlayJok3r Oct 3, 2023
c2115a0
Merge branch 'hdt_usdc' into contract-factory
PlayJok3r Oct 5, 2023
f4d12b1
hdt abi
PlayJok3r Oct 25, 2023
bc29ae1
deployed new factory for credit collective
PlayJok3r Jan 17, 2024
5d196e6
updated deployed contracts
PlayJok3r May 21, 2024
e34030d
added audit report
PlayJok3r May 21, 2024
fbb8433
added audit report to the right path
PlayJok3r May 21, 2024
3ca51ed
added amoy
PlayJok3r May 24, 2024
d6305b6
Merge branch 'audit-report' into contract-factory
PlayJok3r May 24, 2024
4358889
deployed on amoy
PlayJok3r May 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # todo: only fetch for the HEAD branch
- uses: actions/setup-go@v3
with:
go-version: "1.19"
Expand Down
32 changes: 32 additions & 0 deletions abi/HDT.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,25 @@
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "oldToken",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "newToken",
"type": "address"
}
],
"name": "AssetTokenChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
Expand Down Expand Up @@ -372,6 +391,19 @@
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newTokenAddress",
"type": "address"
}
],
"name": "setAssetToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
Expand Down
21 changes: 21 additions & 0 deletions abi/LibFeeManager.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[
{
"inputs": [
{
"internalType": "address",
"name": "_feeManagerAddress",
"type": "address"
}
],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
21 changes: 21 additions & 0 deletions abi/LibHDT.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[
{
"inputs": [
{
"internalType": "address",
"name": "_hdtAddress",
"type": "address"
}
],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
21 changes: 21 additions & 0 deletions abi/LibPool.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[
{
"inputs": [
{
"internalType": "address",
"name": "_poolAddress",
"type": "address"
}
],
"name": "initialized",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
]
21 changes: 21 additions & 0 deletions abi/LibPoolConfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[
{
"inputs": [
{
"internalType": "address",
"name": "_poolConfigAddress",
"type": "address"
}
],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
Loading