mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-04 01:54:28 +00:00
269ce45e70
* Adding contract code for event logs subscription * Saving changes * gofmt'd files * Setting up devnet test tool for log subscription testing * Fixed lint errors
11 lines
185 B
Solidity
11 lines
185 B
Solidity
// SPDX-License-Identifier: GPL-3.0
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract Subscription {
|
|
event SubscriptionEvent();
|
|
fallback() external {
|
|
emit SubscriptionEvent();
|
|
}
|
|
}
|