Collection Details
Namespace:
testrafira
Dataset:
Collection:
rafiradocs
Owner:
0x4f91a8aa143b65c235d9b6e5d78be8a6e8d73792
Transaction:
Timestamp:
Jun.06.2024 02:32:14 PM
Status:
OnChain
Collection Documents
_id | description | docs1 | external_url | image | name | View |
---|---|---|---|---|---|---|
3958d66d3e54917fed957bbbd5cb601fe6effba08248335657af765a0ecd9c396 | Glacier Network Testnet | https://glacier.io/ | https://raw.githubusercontent.com/Glacier-Labs/resource/main/nft1.jpg | rafiradocs | View | |
3958d66d3e54917fed957bbbd5cb601fe6effba08248335657af765a0ecd9c395 | Glacier Testnet | https://glacier.io/ | https://raw.githubusercontent.com/Glacier-Labs/resource/main/nft1.jpg | rafiradocs | View | |
3958d66d3e54917fed957bbbd5cb601fe6effba08248335657af765a0ecd9c393 | // SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
contract GlacierNetwork is ERC20, ERC20Burnable, ERC20Pausable, Ownable, ERC20Permit {
constructor(address initialOwner)
ERC20("Glacier Network", "GNT")
Ownable(initialOwner)
ERC20Permit("Glacier Network")
{
_mint(msg.sender, 2100000 * 10 ** decimals());
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
// The following functions are overrides required by Solidity.
function _update(address from, address to, uint256 value)
internal
override(ERC20, ERC20Pausable)
{
super._update(from, to, value);
}
}
| View | ||||
3958d66d3e54917fed957bbbd5cb601fe6effba08248335657af765a0ecd9c391 | rafira | View |