API
Designed as Standard RPC Style Endpoint
Access URL
https://puissant-bsc.48.club
wss://puissant-bsc.48.club/ws/
(for 48er NFT holders only)
Query Gas Price Floor
POST
/
As of the original eth_gasPrice endpoint.
Query the minimum gas price request for sending transactions via puissant. If the first tx in your puissant has a GasPrice below the floor, your puissant will be rejected instantly.
It barely changes, but this is not a promise.
Headers
Name | Type | Description |
---|---|---|
Content-Type* | String |
|
Request Body
Name | Type | Description |
---|---|---|
id* | uint64 | Echo. self maintained. |
jsonrpc* | String |
|
method* | String |
|
Send Private Transactions
POST
/
Send a Raw Transaction in private mode. Subject to Query Gas Price Floor.
Transaction sent to this RPC will remain inside 48 Club and partner validators without being broadcast, thus will not be packed or only packed by this validator.
Transaction will be handled fully following validation procedure, including but not limit to signature/nonce/gas/gasPrice/balance etc.
Headers
Name | Type | Description |
---|---|---|
Content-Type* | String |
|
Request Body
Name | Type | Description |
---|---|---|
id* | uint64 | Echo. self maintained. |
jsonrpc* | String |
|
method* | String |
|
params* | []Tx | Signed transaction (eth_sendRawTransaction style, signed and RLP-encoded) |
Send Puissant
POST
/
If you would like to modify an already-sent puissant, you can send another puissant with the same sender (from addr of the first tx) and raise the gasprice for at least 10%, the previous puissant will be overwritten.
Headers
Name | Type | Description |
---|---|---|
Content-Type* | String |
|
Request Body
Name | Type | Description |
---|---|---|
id* | uint64 | Echo. self maintained. |
jsonrpc* | String |
|
method* | String |
|
params[0].txs* | []Tx | Signed transactions (eth_sendRawTransaction style, signed and RLP-encoded) |
params[0].maxTimestamp* | uint64 | puissant valid until timestamp reaches. No more than 2 minutes from now |
params[0].acceptReverting | []TxHash | The array of hash indicated which transaction(s) are allowed to revert |
query puissant api availability
GET
https://explorer.48.club/api/v1/ping
query specific puissant status
GET
https://explorer.48.club/api/v1/puissant/uuid
uuid
is what you get from result of Send Puissant
query puissant score for sender/ip
GET
https://explorer.48.club/api/v1/score
Query Parameters
Name | Type | Description |
---|---|---|
address | String | sender address. if not provided, score of current ip address will be return. |
Last updated