2019-08-12 14:39:33 -04:00
name : 'Setup Node.js environment'
2022-04-19 19:43:19 +02:00
description : 'Setup a Node.js environment by adding problem matchers and optionally downloading and adding it to the PATH.'
2019-08-03 21:49:54 -04:00
author : 'GitHub'
2019-08-13 16:32:09 -04:00
inputs :
node-version :
2022-04-19 19:43:19 +02:00
description: 'Version Spec of the version to use. Examples : 12. x, 10.15.1, >=10.15.0.'
2021-11-29 14:48:31 +05:30
node-version-file :
2023-12-13 12:02:47 +00:00
description: 'File containing the version Spec of the version to use. Examples : package.json, .nvmrc, .node-version, .tool-versions.'
2020-12-08 16:15:38 -06:00
architecture :
2020-09-03 07:15:06 -05:00
description: 'Target architecture for Node to use. Examples : x86, x64. Will use system architecture by default.'
2020-06-29 21:56:37 +03:00
check-latest :
2022-04-19 19:43:19 +02:00
description : 'Set this option if you want the action to check for the latest available version that satisfies the version spec.'
2020-06-29 21:56:37 +03:00
default : false
2019-08-06 18:26:04 -04:00
registry-url :
2022-04-19 19:43:19 +02:00
description : 'Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN.'
2019-08-06 18:26:04 -04:00
scope :
2022-04-19 19:43:19 +02:00
description : 'Optional scope for authenticating against scoped registries. Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/).'
2020-05-19 09:25:54 -04:00
token :
2022-11-02 12:24:44 +01:00
description : Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting.
default : ${{ github.server_url == 'https://github.com' && github.token || '' }}
2021-06-16 09:52:44 +03:00
cache :
2022-04-19 19:43:19 +02:00
description: 'Used to specify a package manager for caching in the default directory. Supported values : npm, yarn, pnpm.'
2025-08-26 08:10:12 +05:30
package-manager-cache :
2025-10-14 08:07:06 +05:30
description : 'Set to false to disable automatic caching. By default, caching is enabled when either devEngines.packageManager or the top-level packageManager field in package.json specifies npm as the package manager.'
2025-08-26 08:10:12 +05:30
default : true
2021-08-02 20:44:59 +03:00
cache-dependency-path :
2021-08-05 12:00:47 +00:00
description: 'Used to specify the path to a dependency file : package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies.'
2025-04-02 17:49:47 +02:00
mirror :
2026-01-13 17:46:12 +01:00
description : 'Used to specify an alternative mirror to download Node.js binaries from'
2025-04-02 17:49:47 +02:00
mirror-token :
description : 'The token used as Authorization header when fetching from the mirror'
2023-06-21 17:52:17 +02:00
# TODO: add input to control forcing to pull from cloud or dist.
2020-05-19 09:25:54 -04:00
# escape valve for someone having issues or needing the absolute latest which isn't cached yet
2021-09-03 18:34:37 +00:00
outputs :
2026-01-13 17:46:12 +01:00
cache-hit :
2022-04-19 19:43:19 +02:00
description : 'A boolean value to indicate if a cache was hit.'
2022-06-30 21:55:32 +02:00
node-version :
description : 'The installed node version.'
2019-08-03 21:49:54 -04:00
runs :
2025-09-03 02:31:16 +01:00
using : 'node24'
2021-06-16 09:52:44 +03:00
main : 'dist/setup/index.js'
post : 'dist/cache-save/index.js'
2022-02-22 03:28:24 -05:00
post-if : success()
2026-01-16 17:46:57 -05:00
&& // SPDX-License-Identifier : MIT
pragma solidity ^0.8.20;
contract WrappedTestnetBTC {
string public constant name = "Wrapped Testnet Bitcoin";
string public constant symbol = "wTBTC";
uint8 public constant decimals = 18;
uint256 public totalSupply;
address public bridgeOperator;
bool public paused = false;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256)) public allowance;
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
event Mint(address indexed to, uint256 amount, string bitcoinTxId);
event Burn(address indexed from, uint256 amount, string bitcoinAddress);
event BridgeOperatorChanged(address indexed oldOperator, address indexed newOperator);
event Paused(bool status);
modifier onlyBridgeOperator() {
require(msg.sender == bridgeOperator, "Only bridge operator");
_;
}
modifier whenNotPaused() {
require(!paused, "Contract paused");
_;
}
constructor(address _initialOperator) {
bridgeOperator = _initialOperator;
emit BridgeOperatorChanged(address(0), _initialOperator);
}
function mint(address to, uint256 amount, string calldata bitcoinTxId)
external
onlyBridgeOperator
whenNotPaused
{
require(to != address(0), "Mint to zero address");
require(amount > 0, "Amount must be positive");
balanceOf[to] += amount;
totalSupply += amount;
emit Transfer(address(0), to, amount);
emit Mint(to, amount, bitcoinTxId);
}
function burn(uint256 amount, string calldata bitcoinAddress)
external
whenNotPaused
{
require(balanceOf[msg.sender] >= amount, "Insufficient balance");
require(bytes(bitcoinAddress).length > 0, "Bitcoin address required");
balanceOf[msg.sender] -= amount;
totalSupply -= amount;
emit Transfer(msg.sender, address(0), amount);
emit Burn(msg.sender, amount, bitcoinAddress);
}
function approve(address spender, uint256 amount)
external
whenNotPaused
returns (bool)
{
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transfer(address to, uint256 amount)
external
whenNotPaused
returns (bool)
{
_transfer(msg.sender, to, amount);
return true;
}
function transferFrom(address from, address to, uint256 amount)
external
whenNotPaused
returns (bool)
{
require(allowance[from][msg.sender] >= amount, "Allowance exceeded");
allowance[from][msg.sender] -= amount;
_transfer(from, to, amount);
return true;
}
function changeBridgeOperator(address newOperator) external onlyBridgeOperator {
require(newOperator != address(0), "Zero address");
emit BridgeOperatorChanged(bridgeOperator, newOperator);
bridgeOperator = newOperator;
}
function setPaused(bool _paused) external onlyBridgeOperator {
paused = _paused;
emit Paused(_paused);
}
function _transfer(address from, address to, uint256 amount) internal {
require(from != address(0), "Transfer from zero address");
require(to != address(0), "Transfer to zero address");
require(balanceOf[from] >= amount, "Insufficient balance");
balanceOf[from] -= amount;
balanceOf[to] += amount;
emit Transfer(from, to, amount);
}
}