-
Notifications
You must be signed in to change notification settings - Fork 0
/
Torii.Sol
53 lines (36 loc) · 1.66 KB
/
Torii.Sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract SimpleBridge {
address public immutable owner;
mapping (address => uint256) public mapUserBalance;
event Bridge(address indexed user, address indexed to,uint256 amount);
event BridgeFrom(address indexed to, uint256 amount);
event AddBalance(address indexed user, uint256 amount);
constructor() {
owner = msg.sender;
}
// Модификатор для проверки, что функцию вызывает владелец контракта
modifier onlyOwner() {
require(msg.sender == owner, "Only owner can call this function");
_;
}
// Функция для отправки средств на указанный адрес
function bridge(address to, uint256 amount) external {
uint256 balance = mapUserBalance[msg.sender];
require(balance >= amount, "Insufficient funds");
balance -= amount;
mapUserBalance[msg.sender] = balance;
emit Bridge(msg.sender, to, amount);
}
// Функция для отправки средств на Ethereum адрес, доступная только владельцу контракта
function bridgeFrom(address to, uint256 amount) external onlyOwner {
payable(to).transfer(amount);
emit BridgeFrom(to, amount);
}
// Функция для пополнения баланса контракта
function addBalance(uint256 amount) external payable {
require(msg.value == amount, "Incorrect amount of funds");
mapUserBalance[msg.sender] += amount;
emit AddBalance(msg.sender,amount);
}
}