programSubscribe RPC-Methode
Abonnieren Sie ein Programm, um Benachrichtigungen zu erhalten, wenn sich die Lamports oder Daten für ein Konten im Besitz des angegebenen Programms ändern
{"jsonrpc": "2.0","id": 1,"method": "programSubscribe","params": ["11111111111111111111111111111111",{"encoding": "base64","filters": [{ "dataSize": 80 }]}]}
params
stringrequired
Pubkey des program_id
, als base-58 kodierte Zeichenfolge
objectoptional
Konfigurationsobjekt mit den folgenden Feldern:
result
Response
{"jsonrpc": "2.0","result": 24040,"id": 1}
integer
Abonnement-ID (wird zum Abbestellen benötigt)
Benachrichtigungsformat
Das Benachrichtigungsformat ist ein einzelnes program account Objekt, wie es in der getProgramAccounts RPC HTTP-Methode zu sehen ist.
Base58-Kodierung:
{"jsonrpc": "2.0","method": "programNotification","params": {"result": {"context": {"slot": 5208469},"value": {"pubkey": "H4vnBqifaSACnKa7acsxstsY1iV1bvJNxsCY7enrd1hq","account": {"data": ["11116bv5nS2h3y12kD1yUKeMZvGcKLSjQgX6BeV7u1FrjeJcKfsHPXHRDEHrBesJhZyqnnq9qJeUuF7WHxiuLuL5twc38w2TXNLxnDbjmuR","base58"],"executable": false,"lamports": 33594,"owner": "11111111111111111111111111111111","rentEpoch": 636,"space": 80}}},"subscription": 24040}}
Parsed-JSON-Kodierung:
{"jsonrpc": "2.0","method": "programNotification","params": {"result": {"context": {"slot": 5208469},"value": {"pubkey": "H4vnBqifaSACnKa7acsxstsY1iV1bvJNxsCY7enrd1hq","account": {"data": {"program": "nonce","parsed": {"type": "initialized","info": {"authority": "Bbqg1M4YVVfbhEzwA9SpC9FhsaG83YMTYoR4a8oTDLX","blockhash": "LUaQTmM7WbMRiATdMMHaRGakPtCkc2GHtH57STKXs6k","feeCalculator": {"lamportsPerSignature": 5000}}}},"executable": false,"lamports": 33594,"owner": "11111111111111111111111111111111","rentEpoch": 636,"space": 80}}},"subscription": 24040}}
Is this page helpful?