-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Alter outbox message table * Added MICHELSON_OUTBOX_INTERFACE * Added rate limits for Etherlink Node Datasource * Added unknown Tickets support * Added separate parisnet config
- Loading branch information
1 parent
b0cab80
commit cebf8a5
Showing
9 changed files
with
1,165 additions
and
606 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
contracts: | ||
tezos_smart_rollup: | ||
kind: tezos | ||
address: ${SMART_ROLLUP_ADDRESS} | ||
typename: rollup | ||
|
||
etherlink_rollup_kernel: | ||
kind: evm | ||
address: '0x0000000000000000000000000000000000000000' | ||
typename: kernel | ||
|
||
etherlink_rollup_kernel_native: | ||
kind: evm | ||
address: '0x0000000000000000000000000000000000000000' | ||
typename: kernel_native | ||
|
||
l2_tzbtc_token: | ||
kind: evm | ||
address: 0x87dcbf128677ba36e79d47daf4eb4e51610e0150 | ||
typename: l2_token | ||
l2_sirs_token: | ||
kind: evm | ||
address: 0xcb5d40c6b1bdf5cd51b3801351b0a68d101a561b | ||
typename: l2_token | ||
l2_usdt_token: | ||
kind: evm | ||
address: 0x8554cd57c0c3e5ab9d1782c9063279fa9bfa4680 | ||
typename: l2_token | ||
|
||
|
||
indexes: | ||
tezos_head: | ||
kind: tezos.head | ||
datasources: | ||
- tzkt | ||
callback: tezos.on_head | ||
|
||
tezos_rollup_cement: | ||
kind: tezos.operations | ||
first_level: ${L1_FIRST_LEVEL} | ||
datasources: | ||
- tzkt | ||
types: | ||
- sr_cement | ||
contracts: | ||
- tezos_smart_rollup | ||
handlers: | ||
- callback: tezos.on_cement_commitment | ||
pattern: | ||
- type: sr_cement | ||
destination: tezos_smart_rollup | ||
|
||
|
||
tezos_deposit_operations: | ||
kind: tezos.operations | ||
first_level: ${L1_FIRST_LEVEL} | ||
datasources: | ||
- tzkt | ||
types: | ||
- transaction | ||
contracts: | ||
- tezos_smart_rollup | ||
handlers: | ||
- callback: tezos.on_rollup_call | ||
pattern: | ||
- type: transaction | ||
destination: tezos_smart_rollup | ||
entrypoint: default | ||
|
||
etherlink_deposit_events: | ||
kind: evm.events | ||
first_level: ${L2_FIRST_LEVEL} | ||
datasources: | ||
- etherlink_subsquid | ||
- etherlink_node | ||
handlers: | ||
- callback: etherlink.on_deposit | ||
contract: etherlink_rollup_kernel | ||
name: Deposit | ||
|
||
etherlink_xtz_deposit_transactions: | ||
kind: evm.transactions | ||
first_level: ${L2_FIRST_LEVEL} | ||
datasources: | ||
- etherlink_subsquid | ||
- etherlink_node | ||
handlers: | ||
- callback: etherlink.on_xtz_deposit | ||
from_: etherlink_rollup_kernel | ||
|
||
|
||
etherlink_withdrawal_events: | ||
kind: evm.events | ||
first_level: ${L2_FIRST_LEVEL} | ||
datasources: | ||
- etherlink_subsquid | ||
- etherlink_node | ||
handlers: | ||
- callback: etherlink.on_withdraw | ||
contract: etherlink_rollup_kernel | ||
name: Withdrawal | ||
- callback: etherlink.on_xtz_withdraw | ||
contract: etherlink_rollup_kernel_native | ||
name: Withdrawal | ||
|
||
tezos_withdrawal_operations: | ||
kind: tezos.operations | ||
first_level: ${L1_FIRST_LEVEL} | ||
datasources: | ||
- tzkt | ||
types: | ||
- sr_execute | ||
contracts: | ||
- tezos_smart_rollup | ||
handlers: | ||
- callback: tezos.on_rollup_execute | ||
pattern: | ||
- type: sr_execute | ||
destination: tezos_smart_rollup | ||
|
||
|
||
etherlink_token_balance_update_events: | ||
kind: evm.events | ||
datasources: | ||
- etherlink_subsquid | ||
- etherlink_node | ||
handlers: | ||
- callback: etherlink.on_transfer | ||
contract: l2_tzbtc_token | ||
name: Transfer | ||
- callback: etherlink.on_transfer | ||
contract: l2_sirs_token | ||
name: Transfer | ||
- callback: etherlink.on_transfer | ||
contract: l2_usdt_token | ||
name: Transfer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.