0.0
The project is in a healthy, maintained state
A Ruby gem to interact with ThirdWeb Engine API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

>= 0

Runtime

 Project Readme

Thirdweb Engine Ruby SDK

This Ruby SDK provides a convenient way to interact with the Thirdweb Engine API. Engine is an open-source, backend server that reads, writes, and deploys contracts at production scale.

Documentation

For detailed API documentation, please visit: Thirdweb API Documentation

Installation

Add this line to your application's Gemfile:

gem 'thirdweb-engine'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install thirdweb-engine

Configuration

Add the following configuration to config/initializers/thirdweb.rb:

Thirdweb::Engine.configure do |config|
  config.base_url = "<your_host_base_url>" # default: "https://thirdweb-engine.apidocumentation.com"
  config.access_token = "<token>"
  config.network = "testnet"
  config.chain = "etherum"
  config.chain_id = "1"
  config.backend_wallet_address = "<backend_wallet_address>"
end

Examples

Deploying an NFT Collection

metadata = {
  name: "My NFT Collection",
  symbol: "NFT",
  description: "My awesome NFT collection",
  image: "ipfs://QmciR3WLJsf2BgzTSjbG5zCxsrEQ8PqsHK7JWGWsDSNo46/nft.png",
  external_link: "https://example.com"
}

contract = Thirdweb::Engine::Deploy.nft_collection(**metadata)
# => {
#      "result" => {
#        "queueId" => "61542a46-0e92-4d4b-a7d5-b532d5d169aa",
#        "deployedAddress" => "0x0000000000000000000000000000000000000000000001"
#      }
#    }

Minting an NFT

mint = Thirdweb::Engine::ERC721.mint(
  contract_address: "0x0000000000000000000000000000000000000000000001",
  receiver: "0x0000000000000000000000000000000000000000000002",
  name: "My NFT",
  description: "My NFT description",
  image: "ipfs://QmciR3WLJsf2BgzTSjbG5zCxsrEQ8PqsHK7JWGWsDSNo46/nft.png"
)
# => {
#      "result" => {
#        "queueId" => "1c299615-b594-4bbf-8ed0-2e57ac2e5791"
#      }
#    }

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/andresyebra/thirdweb-engine. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Thirdweb::Engine project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.