Skip to main content

Extending BlockEden.xyz RPC Service to Ethereum Ecosystem

· 2 min read
Jack Sim
Web3 Builder

Back to a month ago, we made a public incognito Ethereum mainnet RPC endpoint available to Metamask users (blog post), which attracted and was used by a few users. Now we decided to expand the benefit to our developer customers too!

eth

How to get started?

Step 1. Go to https://blockeden.xyz/dash/. Please sign up if you haven’t done so.

Step 2. Input your name for the API key, select ETH Mainnet, and then click + Create key.

create eth mainnet api key

Step 3. Grab your access URL by clicking it and copying it to the clipboard.

Step 4. Use the access URL in your project like the following. Remember to replace <access_key> with your own key.

To test it, using curl to connect ETH mainnet

curl --location --request POST 'https://eth-mainnet.blockeden.xyz/<access_key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc":"2.0",
"method":"eth_blockNumber",
"params":[],
"id":73
}'

Why Ethereum Network?

Ethereum network has the biggest developer ecosystem, and there are so many great innovations accumulated over years. Supporting it is going to create significant synergy with Move ecosystem. Many of our customers are not exclusive Move developers. Building a single stop for all needed services makes their life easier.

Enjoy our new service and happy holidays!

BlockEden.xyz Partners with Secure3 to Bolster Blockchain Security

· 3 min read
Dora Noda
Software Engineer

Here at BlockEden.xyz, we are always looking for ways to improve the security of digital assets on blockchain for developers and their customers. That's why we're glad to announce our official partnership with Secure3, a collaborative web3 security auditing ecosystem.

As our trusted security provider, Secure3 will team with us to protect digital assets on blockchains with MOVE smart contract language. This partnership is a strategic move for both BlockEden.xyz and Secure3. For BlockEden.xyz, it means that we can continue to provide our customers with the highest level of security possible. And for Secure3, it provides them with an opportunity to showcase their expertise in blockchain security to the move language ecosystem. We're confident that this partnership will be a win-win for everyone involved.

BlockEden.xyz Partners with Secure3

What is Secure3?

Secure3 is a collaborative web3 security auditing ecosystem that helps organizations identify and fix vulnerabilities in their smart contracts. The company was founded in 2022 by a team of world-class security researchers and developers passionate about building a more secure web3 world.

Secure3's mission is to secure web3 by empowering a transparent, collaborative, and verifiable security ecosystem. To that end, they provide:

  • Trustworthy security auditing for projects.
  • A competitive incentive model for auditors and whitehats.
  • Verifiable security track records for the community.

The new model finds more critical bugs faster than any centralized auditing firm. They also offer training and education resources so that companies can build stronger internal security teams.

Why blockchain security matters

As the use of blockchain technology grows, so too does the need for robust security solutions. That's because blockchain-based applications are often built on top of open-source smart contracts, which are notoriously difficult to secure. Hackers have taken advantage of this fact to steal millions of dollars worth of digital assets from exchanges, wallets, and other blockchain-based applications.

In order to prevent these kinds of attacks from happening in the future, it's important for companies to build robust security teams and adopt best practices for secure coding and auditing smart contracts. That's where Secure3 comes in. By partnering with Secure3, we are sending a clear message that we take the security of our digital assets seriously and are committed to protecting them against all threats.

What does BlockEden.xyz do?

BlockEden.xyz provides a set of APIs that makes it easy for developers to connect to the Aptos and Sui networks. Our platform enables developers to quickly and securely build decentralized applications (DApps). In addition, we offer tools that help developers to track their DApp usage and manage their user keys.

We believe that our platform will help to accelerate the development of the Aptos and Sui ecosystems. Our goal is to make it easy for developers to build DApps on Aptos and Sui, so that more people can use these blockchains to fulfill their decentralized needs.

Use Incognito BlockEden.xyz Ethereum RPC URL

· 2 min read
Jack Sim
Web3 Builder

Starting from Sept 23, 2023, if you use the default RPC URL (aka https://mainnet.infura.io/v3/) in Metamask, your IP address and wallet address will be collected whenever you send a transaction (source).

Some people prefer to keep their identity untracked, and are looking for an alternative RPC URL that doesn’t track user identity. Here BlockEden.xyz gets you covered! We have opened a public Ethereum Mainnet RPC endpoint – https://eth-mainnet-public.blockeden.xyz for free, and we do not trace any user identity of any transactions going through our RPC URL as well as blockchain data reading operations.

To set it up with your Metamask, go to Settings -> Networks, and click “Add a network” on the upper right corner. You can fill in the following info:

Setup BlockEden.xyz ethereum rpc url in Metamask

Then, you’re good to go, and click “Save”. When you want to send an incognito transaction, you could just select “Ethereum Mainnet (BlockEden.xyz)” network, and then send the transaction (shhh~).

What is BlockEden.xyz?

BlockEden.xyz is a suite of APIs powering DApps for Aptos and Sui blockchains of all sizes. Our software and API service enables you to easily access blockchain data so that you can build DApps quickly and efficiently. If you’re a Web3 developer or DApp owner in need of an RPC connection for Aptos and Sui, look no further than BlockEden.xyz! We are proud to be one of the first infrastructure providers offering this service for this highly anticipated new blockchain. In addition to our RPC connection, we will also offer a variety of other essential services and features for any Web3 project. Learn more about us today and see how we can help you succeed in the blockchain space!

Will We Help Ethereum Developers Too?

Whether we will offer Ethereum API support to developers is TBD, but your feedback would be important to us. Please let us know your needs!

BlockEden.xyz becomes one of the first Sui Devnet API providers

· 3 min read
Jack Sim
Web3 Builder

BlockEden.xyz is now offering an RPC connection to the Sui devnet, allowing Web3 developers and apps to easily communicate with the new Move-based blockchain.

Sui API

This service is compatible with the Sui SDK, enabling more streamlined development. Keep reading to learn more about what this means for you and your blockchain needs!

How to get started?

Step 1. Go to https://blockeden.xyz/dash/. Please sign up if you haven’t done so.

Step 2. Input your name for the API key, select Sui Devnet, and then click + Create key.

Create key for Sui API

Step 3. Grab your access URL by clicking it and copying it to the clipboard.

Step 4. Use the access URL in your project like the following. Remember to replace <access_key> with your own key.

Using CURL to connect Sui

curl -X POST https://sui-devnet.blockeden.xyz/<access_key> \
-H 'Content-Type: application/json' \
-d '{ "jsonrpc":"2.0", "method":"rpc.discover","id":1}'

Using TypeScript SDK to connect Sui

const { JsonRpcProvider } = require("@mysten/sui.js");

(async () => {
const providerUrl = "https://sui-devnet.blockeden.xyz/<access_key>"
const provider = new JsonRpcProvider(providerUrl);
const totalTxNumber = await provider.getTotalTransactionNumber();
console.log(`${providerUrl} getTotalTransactionNumber: ` + totalTxNumber);
})()

What is the Sui Blockchain?

The Sui blockchain is a next-generation, high performance blockchain designed to support a wide range of use cases with advanced features such as accounts, identifiers, and resources. It uses the Move programming language which enables developers to build custom logic into their smart contracts. The Sui team aims to make it the most developer friendly blockchain yet by providing extensive documentation, support, and tools. And they’re off to a great start – BlockEden.xyz is one of the first Web3 infrastructure providers to introduce a new commercial RPC service for this highly anticipated platform!

Builders with Sui

Sui is a blockchain with a lot of potential. There are projects like DEXs, games, launchpads, NFT projects, social networks and wallets building on it.

Why Use BlockEden.yxz?

We listen to Aptos and Sui developers every day and are fully committed to serving the best infra for them.

If you’re a Web3 developer or app owner in need of an RPC connection for the Sui devnet, look no further than BlockEden.xyz! We are proud to be one of the first infrastructure providers offering this service for this highly anticipated new blockchain. In addition to our RPC connection, we will also offer a variety of other essential services and features for any Web3 project. Learn more about us today and see how we can help you succeed in the blockchain space!

Partnership between Aptos Eden and BlockEden.xyz

· 2 min read
Dora Noda
Software Engineer

We are excited to announce a partnership between Aptos Eden and BlockEden.xyz. This partnership will allow us to provide a collaborative system for Move language learning, Aptos ecosystem integration, and web3 infrastructure.

Partnership between Aptos Eden and BlockEden.xyz

What is Aptos Eden?

Aptos Eden is an aggregated platform for Move language learning and Aptos ecosystem integration. We believe that this platform will help developers grow faster and provide them with the best possible learning experience in the Chinese community.

What is BlockEden.xyz?

BlockEden.xyz is a suite of APIs powering DApps of all sizes for blockchains. The goal is to empower the next wave of DApp developers with the infrastructure to build and scale faster.

How will this partnership help me?

This partnership between Aptos Eden and BlockEden.xyz will bridge the gaps between learning and DApp development in action. Please keep in touch with us for the incoming offerings from us. If you have any questions or concerns, please do not hesitate to contact us. Thank you for your continued support!

Introducing Aptos Global and BlockEden.xyz Partnership

· 2 min read
Dora Noda
Software Engineer

We are excited to announce our partnership with Aptos Global, the first Aptos Eco APEC Community. This partnership integrates a platform for research, Move language education, and eco-projects development into one neat little package.

Not only will this teach new skills and strengthen developer communities, but it will also push the limits of new technologies and foster a world-class ecosystem of Aptos developers and entrepreneurs. And what's more - BlockEden.xyz has been chosen as the infrastructure provider of choice for all affiliated projects!

We believe that a simpler and overall better developer experience is key to broad web3 adoption. That's why we've dedicated ourselves to providing a suite of APIs that power DApps of all sizes for Aptos and Sui blockchains. So whether you're just getting started or you're looking to scale up, BlockEden.xyz has you covered.

Aptos Global and BlockEden.xyz Partnership

What is Aptos Global?

Aptos Global is the first Aptos Eco APEC Community. An integrated platform for research, Move langugage education, and eco-projects development. Aptos Global teaches new skills, strengthens developer communities, and push the limits of new technologies, and fosters a world-class ecosystem of Aptos developers and entrepreneurs.

Twitter: https://twitter.com/AptosGlobalHQ

Why was BlockEden chosen?

BlockEden was chosen because of the quality of its infrastructure and dedication to developer experience.

  • We serve standard blockchain APIs with security, reliability, and high availability. Our nodes are running the latest version with 99.9% uptime.
  • Developers can connect their DApps to our nodes instantly, without the hassle of DevOps.
  • We are the only commercial GraphQL API provider in the Aptos ecosystem.
  • Data analysts could write SQL against our indexed data and build a visualization dashboard for free.

BlockEden.xyz is a San Francisco-based software company that helps web3 developers connect to the Aptos network instantly and securely.

We are excited to be working with Aptos Global as their infrastructure provider of choice and we believe that this partnership is just the beginning of great things to come for both sides. Stay tuned for more news and updates!

Improving dashboard with API usage monitor

· One min read
Dora Noda
Software Engineer

Many of our customers asked us to improve how we measure API consumption. So today, an API usage monitor is added to the dashboard.

BlockEden.xyz API usage monitor

The chart above shows a test customer's daily requests in the last seven days. The requests are measured in compute units. A compute unit estimates how many resources an API method consumes on BlockEden.xyz. For example, a simple REST request only consumes 1 CU, while a more complex GraphQL request consumes 5 CUs.

Please note that our daily cutoff for the API meter is UTC 00:00 am.

With this new line chart, you can

  • Get more accurate predictions of your API usage.
  • Make better decisions about how to use your APIs.
  • Spend less time worrying about your usage and more time developing your product.

BlockEden.xyz is committed to making it easy for developers to build applications on the blockchain. Our next step is to add basic data analytics for Aptos and support Sui Devnet. If you have any feedback, talk to us at https://discord.gg/GqzTYQ4YNa.

Scalp Empire Partners with BlockEden.xyz to Bring NFT Analytics to the Aptos Network

· 2 min read
Jack Sim
Web3 Builder

Great news for Aptos holders and web3 developers! Scalp Empire has partnered with BlockEden.xyz to bring NFT analytics to the Aptos network.

With this partnership, BlockEden.xyz will provide indexed data to power Scalp Empire's analytical tools. These tools are essential for making successful NFT trades. So if you're looking to get into the world of NFTs, be sure to check out Scalp Empire!

Scalp Empire Partners with BlockEden.xyz to Bring NFT Analytics to the Aptos Network

What is Scalp Empire?

Scalp Empire is a project aiming to provide our holders with most of the tools needed for making profitable NFT trades on Solana network. In addition to building analytical tools powered by BlockEden.xyz's indexed data, Scalp Empire also offers sniping bots and listing features. These tools are essential for making successful NFT trades.

What is BlockEden.xyz?

BlockEden.xyz is a suite of APIs powering DApps of all sizes for Aptos and Sui blockchains. Our software and API service enables you to easily access blockchain data so that you can build DApps quickly and efficiently.

We're excited to see what Scalp Empire builds with BlockEden.xyz's data! If you're interested in learning more about this partnership or getting started with NFTs, be sure to check out https://www.scalp-empire.com/ today.

Aptos GraphQL API now available at BlockEden.xyz

· 2 min read
Dora Noda
Software Engineer

Bock Eden is glad to add the indexer fullnode GraphQL to our Aptos API and Node Service. This solves the pain point immediately for many DApp developers with a high QPS demand in the Aptos ecosystem.

Without our out-of-box performant API, these developers have to connect to the official servers, which are shared across hobbyist developers with a very restrictive rate limit of 300 requests/hour. This limit is not for production-level products. In this case, developers are forced to run the indexer full node by themselves. And unfortunately, the official guide is confusing and does not cover the entire tech stack.

Now, with BlockEden.xyz's Aptos GraphQL API, developers are now free from worrying about the rate limit or the huge hassle of running their own GraphQL servers.

Here's how to get started...

Step 1. Go to https://blockeden.xyz/dash/. Please sign up if you haven't done so.

Step 2. Input your name for the API key, select Aptos Mainnet Indexer GraphQL, and then click + Create key.

Get Aptos GraphQL Step 1

Step 3. Click the access URL in the table to copy or click Test to get started with the Hasura GraphQL playground.

Get Aptos GraphQL Step 2

Get Aptos GraphQL Step 3

Bungie, who is working on an Aptos wallet, says "This is literally life-saving!"

BlockEden.xyz is committed to growing with the Aptos developers and providing the most tailored and scalable developer infrastructure. This GraphQL feature is exactly the result of listening to our customers. If you are an Aptos developer that needs anything from us, let us know at https://discord.gg/4Yfvs2HWey