Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bridge] Alphanet support #1462

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
322b278
alphanet relaychain support
Nikita-Polyakov Jul 2, 2024
b733085
update connected evm network check
Nikita-Polyakov Jul 3, 2024
7466b62
fetch moonbase asset ids
Nikita-Polyakov Jul 3, 2024
52d25c3
fix history restoration address issue
Nikita-Polyakov Jul 4, 2024
f0cc9b5
update alphanet fees
Nikita-Polyakov Jul 4, 2024
69d1a13
add xTokens abi & refactoring abi files
Nikita-Polyakov Jul 8, 2024
7d2cfe7
transfer from moonbase (xor check)
Nikita-Polyakov Jul 8, 2024
59da30f
send GLMR from moonbase
Nikita-Polyakov Jul 9, 2024
080504a
moonbase tracking improvements
Nikita-Polyakov Jul 9, 2024
fdf0c5b
update history restoration
Nikita-Polyakov Jul 9, 2024
6b02f06
ui updates
Nikita-Polyakov Jul 10, 2024
47bb3c4
refactoring events usage in sub bridge
Nikita-Polyakov Jul 10, 2024
02dcbd6
account panel refactoring
Nikita-Polyakov Jul 10, 2024
0530ca2
Merge remote-tracking branch 'origin/develop' into feature/alphanet-s…
Nikita-Polyakov Jul 10, 2024
e905880
remove unused icon
Nikita-Polyakov Jul 10, 2024
955d954
get asset id by multilocation update
Nikita-Polyakov Jul 11, 2024
169d862
remove unused type
Nikita-Polyakov Jul 11, 2024
e606b6b
add moonbeam config
Nikita-Polyakov Jul 11, 2024
7e57aca
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Jul 16, 2024
3ed1372
add token to wallet for sub-evm
Nikita-Polyakov Jul 17, 2024
75d2cf6
Merge remote-tracking branch 'origin/develop' into feature/alphanet-s…
Nikita-Polyakov Jul 17, 2024
50afa6e
update getSupportedApps
Nikita-Polyakov Jul 17, 2024
739a832
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Jul 17, 2024
d6da6aa
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Jul 18, 2024
f387196
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Jul 19, 2024
dcce560
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Jul 23, 2024
8f9a3b7
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Jul 23, 2024
656ff43
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Jul 24, 2024
b188d6d
update asset min balance request
Nikita-Polyakov Jul 29, 2024
dd98750
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Jul 30, 2024
8391c71
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Aug 1, 2024
bdfc148
Merge branch 'develop' into feature/alphanet-support
Nikita-Polyakov Aug 1, 2024
ff664b4
fix soraApi import
Nikita-Polyakov Aug 1, 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
106 changes: 52 additions & 54 deletions src/abi/ethereum/internal/MASTER.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,52 @@
{
"abi": [
{
"constant": false,
"inputs": [
{
"internalType": "address",
"name": "tokenAddress",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "beneficiary",
"type": "address"
},
{
"internalType": "bytes32",
"name": "txHash",
"type": "bytes32"
},
{
"internalType": "uint8[]",
"name": "v",
"type": "uint8[]"
},
{
"internalType": "bytes32[]",
"name": "r",
"type": "bytes32[]"
},
{
"internalType": "bytes32[]",
"name": "s",
"type": "bytes32[]"
},
{
"internalType": "address",
"name": "from",
"type": "address"
}
],
"name": "mintTokensByPeers",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
]
}
[
{
"constant": false,
"inputs": [
{
"internalType": "address",
"name": "tokenAddress",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "beneficiary",
"type": "address"
},
{
"internalType": "bytes32",
"name": "txHash",
"type": "bytes32"
},
{
"internalType": "uint8[]",
"name": "v",
"type": "uint8[]"
},
{
"internalType": "bytes32[]",
"name": "r",
"type": "bytes32[]"
},
{
"internalType": "bytes32[]",
"name": "s",
"type": "bytes32[]"
},
{
"internalType": "address",
"name": "from",
"type": "address"
}
],
"name": "mintTokensByPeers",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
]
Loading