Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
a4a0d05
Updated new entities & getters
quent043 Jun 5, 2023
d8d7db2
Added new ABI
quent043 Jun 5, 2023
e19e72a
Added new mapping for upgraded contract
quent043 Jun 5, 2023
c4dbc70
Added new handlers
quent043 Jun 5, 2023
06c06f5
Refactored mapping
quent043 Jun 5, 2023
e1e34bf
Updated ABIs & yaml file with new namings
quent043 Jun 6, 2023
0dcfb20
Fixed graph bug - removed "!" from numReviews
quent043 Jun 6, 2023
3b6f41b
Added new nullable referrer field
quent043 Jun 8, 2023
0334fa5
Added check for referrer id
quent043 Jun 8, 2023
61ec6c2
Added token mapping for proposal entities
quent043 Jun 8, 2023
50484f9
Removed rateToken from service metadata
quent043 Jun 8, 2023
3f271c7
Added new field + event mapping
quent043 Jun 12, 2023
7bc0283
Added getter + mapping
quent043 Jun 12, 2023
2f5bd78
Refactored
quent043 Jun 12, 2023
92dc5b1
Updated ABI
quent043 Jun 12, 2023
e03f973
Added referrer to Service entity
quent043 Jun 12, 2023
b049ef2
Last refacto
quent043 Jun 12, 2023
c9fbc6d
Work on adding new referral stats
quent043 Jun 13, 2023
4ece0d2
Fixed bug on user stats
quent043 Jun 13, 2023
7f92101
Finally found the last bug !
quent043 Jun 13, 2023
fec5109
Added comments
quent043 Jun 13, 2023
f404797
Added new ABIs
quent043 Jun 15, 2023
d4d8016
Updated config
quent043 Jun 15, 2023
03373e8
Split V1 & actual mappings
quent043 Jun 15, 2023
c3427a2
Updated archive ABI name to same without "V1"
quent043 Jun 15, 2023
d54df88
Deleted V1 mapper
quent043 Jun 15, 2023
d32ed1b
Reset former archive ABI
quent043 Jun 15, 2023
b455fdf
Added legacy events to new ABI
quent043 Jun 15, 2023
bba4042
Added legacy events to new mapper
quent043 Jun 15, 2023
f7f153d
Updates yaml file
quent043 Jun 16, 2023
1cdc6f2
Added missing escrow event + entity + getter + mapping + config
quent043 Jun 16, 2023
016a474
Renames token to rateToken in service entity + mapping + getters
quent043 Jun 16, 2023
f5bbf27
Added availableBalance field
quent043 Jun 16, 2023
d7d7cf1
Temp Graph with 2 upgrades
quent043 Jun 16, 2023
5f9e310
Graph update Final Version
quent043 Jun 16, 2023
a70b2cc
Reverted contract addresses & network for mainnet
quent043 Jun 26, 2023
6978318
Reverted contract addresses & network for mainnet
quent043 Jun 26, 2023
10fc8cf
Merged Main
quent043 Jul 28, 2023
de81572
Added missing evidence data
quent043 Jul 28, 2023
575e8de
Merge main
quent043 Nov 26, 2023
ff6d4af
Refactor
quent043 Nov 26, 2023
170cd94
Updated updateService event
quent043 Dec 1, 2023
842bf55
Added service.token in escrow transaction mapping
quent043 Dec 1, 2023
fbd7592
Updated Playground
quent043 Dec 1, 2023
6968876
Reverted config change
quent043 Dec 1, 2023
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
108 changes: 108 additions & 0 deletions abis/TalentLayerEscrow.json
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,62 @@
"name": "ProtocolEscrowFeeRateUpdated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "_referrerId",
"type": "uint256"
},
{
"indexed": true,
"internalType": "address",
"name": "_token",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "ReferralAmountClaimed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "uint256",
"name": "_referrerId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_serviceId",
"type": "uint256"
},
{
"indexed": true,
"internalType": "address",
"name": "_token",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "ReferralAmountReleased",
"type": "event"
},
{
"anonymous": false,
"inputs": [
Expand Down Expand Up @@ -672,6 +728,24 @@
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_referrerId",
"type": "uint256"
},
{
"internalType": "address",
"name": "_tokenAddress",
"type": "address"
}
],
"name": "claimReferralBalance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
Expand Down Expand Up @@ -744,6 +818,25 @@
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_token",
"type": "address"
}
],
"name": "getClaimableReferralBalance",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
Expand Down Expand Up @@ -850,6 +943,21 @@
"internalType": "uint256",
"name": "arbitrationFeeTimeout",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "referrerId",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "referralAmount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "totalAmount",
"type": "uint256"
}
],
"internalType": "struct TalentLayerEscrow.Transaction",
Expand Down
Loading