as-soroban-sdk
Version:
AssemblyScript SDK for writing contracts for Soroban.
63 lines • 1.42 kB
JSON
{
"functions": [
{
"name" : "testU128Add",
"arguments": [],
"returns" : "bool"
},
{
"name" : "testU128Sub",
"arguments": [],
"returns" : "bool"
},
{
"name" : "testU128Mul",
"arguments": [],
"returns" : "bool"
},
{
"name" : "testU128Div",
"arguments": [],
"returns" : "bool"
},
{
"name" : "testU128RemEuclid",
"arguments": [],
"returns" : "bool"
},
{
"name" : "testU128Pow",
"arguments": [],
"returns" : "bool"
},
{
"name" : "testU128Shl",
"arguments": [],
"returns" : "bool"
},
{
"name" : "testU128Shr",
"arguments": [],
"returns" : "bool"
},
{
"name" : "testU128Util",
"arguments": [],
"returns" : "bool"
}
],
"meta": [
{
"key" : "name",
"value" : "u128-arithm-test"
},
{
"key" : "version",
"value" : "1.1.0"
},
{
"key" : "description",
"value" : "test u128 arithmetic operations based on u256 host functions"
}
]
}