Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
JamBrains
/
service-sdk
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
28
Code
Issues
6
Pull requests
1
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
service-sdk
/
sdk
/
jb_service.h
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
48 lines (36 loc) · 1.35 KB
master
Breadcrumbs
service-sdk
/
sdk
/
jb_service.h
Copy path
Top
File metadata and controls
Code
Blame
48 lines (36 loc) · 1.35 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#pragma once
#include "host_functions.h"
#include "jb_service_types.h"
#include "jb_log.h"
#include "host.h"
/// @brief Get the chain parameters.
jb_chain_params_t jb_chain_params();
/// @brief Get the 32-byte chain entropy.
uint64_t jb_chain_entropy_32(uint8_t* entropy_32);
/// @brief Get the gas remaining of the invocation for the current service.
uint64_t jb_service_gas_remaining();
/// @brief Get the balance of the current service.
uint64_t jb_service_balance();
void jb_service_accumulate_operands();
/// @brief Get the info of the current service.
jb_service_info_t jb_service_info();
/// @brief Get the info of the given service id.
jb_service_info_t jb_service_info_of(uint64_t service_id);
/// @brief You have to implement this for your service to be able to refine
void jb_hook_refine(jb_refine_arguments_t*);
/// @brief You have to implement this for your service to be able to be accumulated
void jb_hook_accumulate(jb_accumulate_arguments_t*);
#define JAM_REG_0 "a0"
#define JAM_REG_1 "a1"
// #define JAM_REG_2 "a2"
// #define JAM_REG_3 "a3"
// #define JAM_REG_4 "a4"
// #define JAM_REG_5 "a5"
// #define JAM_REG_6 "a6"
// #define JAM_REG_7 "a7"
// #define JAM_REG_8 "a8"
// #define JAM_REG_9 "a9"
// #define JAM_REG_10 "a10"
// #define JAM_REG_11 "a11"
// #define JAM_REG_12 "a12"
void return_to_host(const uint8_t *const ptr, const uint64_t len);
You can’t perform that action at this time.