{"id":26583025,"url":"https://github.com/digixglobal/aurum","last_synced_at":"2026-04-13T18:01:11.327Z","repository":{"id":34923160,"uuid":"38984263","full_name":"DigixGlobal/aurum","owner":"DigixGlobal","description":"Pre-processor tools for the Solidity contract programming language","archived":false,"fork":false,"pushed_at":"2015-07-13T10:28:41.000Z","size":124,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-24T09:47:45.058Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DigixGlobal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-13T01:00:53.000Z","updated_at":"2017-10-19T21:57:16.000Z","dependencies_parsed_at":"2022-08-24T06:11:04.646Z","dependency_job_id":null,"html_url":"https://github.com/DigixGlobal/aurum","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DigixGlobal/aurum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigixGlobal%2Faurum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigixGlobal%2Faurum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigixGlobal%2Faurum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigixGlobal%2Faurum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DigixGlobal","download_url":"https://codeload.github.com/DigixGlobal/aurum/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigixGlobal%2Faurum/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31764317,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-23T08:19:44.577Z","updated_at":"2026-04-13T18:01:11.284Z","avatar_url":"https://github.com/DigixGlobal.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aurum \n## Pre-processor goodness for Solidity \n\nAurum is a small tool to simplify Solidity programming. \n\n## Overview and Usage\n\nAurum adds #include and #require in Solidity code to reference inherited contracts and external contracts.\n\n\nTurn monolithic contract files like this:\n\n```\ncontract ExternalContract{function someFunction();}\n\ncontract Foobarbaz {\n  address owner;\n  uint somevalue;\n\n  function Foobarbaz() {\n    owner = msg.sender;\n    somevalue = 31337;\n  }\n}\n\n\ncontract Foobar is Foobarbaz {\n\n   function callExternal(address eca) {\n\n     ExternalContract ec = ExternalContract(eca);\n     ec.someFunction();\n   }\n}\n\ncontract Foobarfizz is Foobarbaz {\n\n}\n```\n\nInto this:\n\n**Foobar.aur**\n\n```\n#include [Foobarbaz]\n#require [ExternalContract]\n\ncontract Foobar is Foobarbaz {\n\n   function callExternal(address eca) {\n\n     ExternalContract ec = ExternalContract(eca);\n     ec.someFunction();\n   }\n}\n```\n\n**Foobarbaz.lau**\n```\ncontract Foobarbaz {\n  address owner;\n  uint somevalue;\n\n  function Foobarbaz() {\n    owner = msg.sender;\n    somevalue = 31337;\n  }\n}\n```\n\n**ExternalContract.aur**\n\n```\ncontract ExternalContract {\n  function someFunction() {\n\n  }\n}\n```\n\n## Processing\n\nRun the following to generate the Solidity output\n\n```\naurum source_dir  target_dir\n```\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigixglobal%2Faurum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdigixglobal%2Faurum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigixglobal%2Faurum/lists"}