Skip to main content
Glama

Rootstock MCP Server

by cuongpo
SimpleERC20.sol•598 B
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract SimpleERC20 is ERC20 { uint8 private _decimals; constructor( string memory name, string memory symbol, uint256 initialSupply, uint8 decimals_ ) ERC20(name, symbol) { _decimals = decimals_; _mint(msg.sender, initialSupply * 10 ** decimals_); } // Override decimals function to return custom decimals function decimals() public view virtual override returns (uint8) { return _decimals; } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cuongpo/rootstock-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server