Skip to content

Oracle


Calls


feed_values

Feed the external value.

Require authorized operator.

Attributes

Name Type
values Vec<(T::OracleKey, T::OracleValue)>

Python

call = substrate.compose_call(
    'Oracle', 'feed_values', {'values': [('u32', 'u128')]}
)

Events


NewFeedData

New feed data is submitted.

Attributes

Name Type Composition
sender T::AccountId AccountId
values Vec<(T::OracleKey, T::OracleValue)> [('u32', 'u128')]

Storage functions


HasDispatched

If an oracle operator has fed a value in this block

Python

result = substrate.query(
    'Oracle', 'HasDispatched', []
)

Return value

['AccountId']

RawValues

Raw values for each oracle operators

Python

result = substrate.query(
    'Oracle', 'RawValues', ['AccountId', 'u32']
)

Return value

{'timestamp': 'u64', 'value': 'u128'}

Values

Up to date combined value from Raw Values

Python

result = substrate.query(
    'Oracle', 'Values', ['u32']
)

Return value

{'timestamp': 'u64', 'value': 'u128'}

Constants


MaxHasDispatchedSize

Maximum size of HasDispatched

Value

100

Python

constant = substrate.get_constant('Oracle', 'MaxHasDispatchedSize')

RootOperatorAccountId

The root operator account id, record all sudo feeds on this account.

Value

'p8AxskWHQBViXqKEeX2nUCLmxNrzQrDLd75fcJzDbGTTVUbBz'

Python

constant = substrate.get_constant('Oracle', 'RootOperatorAccountId')

Errors


AlreadyFeeded

Feeder has already feeded at this block


NoPermission

Sender does not have permission