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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
// This file is part of Gear.
//
// Copyright (C) 2021-2024 Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//! gear api calls
use super::Inner;
use crate::{
metadata::{
calls::{BalancesCall, GearCall, GearVoucherCall, SudoCall, UtilityCall},
runtime_types::{
pallet_gear_voucher::internal::{PrepaidCall, VoucherId},
sp_weights::weight_v2::Weight,
},
vara_runtime::RuntimeCall,
Convert,
},
signer::utils::EventsResult,
Result, TxInBlock,
};
use gear_core::ids::*;
use sp_runtime::AccountId32;
use std::sync::Arc;
use subxt::dynamic::Value;
/// Implementation of calls to programs/other users for [`Signer`].
#[derive(Clone)]
pub struct SignerCalls(pub(crate) Arc<Inner>);
// pallet-balances
impl SignerCalls {
/// `pallet_balances::transfer_keep_alive`
pub async fn transfer_keep_alive(
&self,
dest: impl Into<AccountId32>,
value: u128,
) -> Result<TxInBlock> {
self.0
.run_tx(
BalancesCall::TransferKeepAlive,
vec![
Value::unnamed_variant("Id", [Value::from_bytes(dest.into())]),
Value::u128(value),
],
)
.await
}
/// `pallet_balances::transfer_allow_death`
pub async fn transfer_allow_death(
&self,
dest: impl Into<AccountId32>,
value: u128,
) -> Result<TxInBlock> {
self.0
.run_tx(
BalancesCall::TransferAllowDeath,
vec![
Value::unnamed_variant("Id", [Value::from_bytes(dest.into())]),
Value::u128(value),
],
)
.await
}
/// `pallet_balances::transfer_all`
pub async fn transfer_all(
&self,
dest: impl Into<AccountId32>,
keep_alive: bool,
) -> Result<TxInBlock> {
self.0
.run_tx(
BalancesCall::TransferAll,
vec![
Value::unnamed_variant("Id", [Value::from_bytes(dest.into())]),
Value::bool(keep_alive),
],
)
.await
}
}
// pallet-gear
impl SignerCalls {
/// `pallet_gear::create_program`
pub async fn create_program(
&self,
code_id: CodeId,
salt: Vec<u8>,
payload: Vec<u8>,
gas_limit: u64,
value: u128,
) -> Result<TxInBlock> {
self.0
.run_tx(
GearCall::CreateProgram,
vec![
Value::from_bytes(code_id),
Value::from_bytes(salt),
Value::from_bytes(payload),
Value::u128(gas_limit as u128),
Value::u128(value),
Value::bool(false),
],
)
.await
}
/// `pallet_gear::claim_value`
pub async fn claim_value(&self, message_id: MessageId) -> Result<TxInBlock> {
self.0
.run_tx(GearCall::ClaimValue, vec![Value::from_bytes(message_id)])
.await
}
/// `pallet_gear::send_message`
pub async fn send_message(
&self,
destination: ProgramId,
payload: Vec<u8>,
gas_limit: u64,
value: u128,
) -> Result<TxInBlock> {
self.0
.run_tx(
GearCall::SendMessage,
vec![
Value::from_bytes(destination),
Value::from_bytes(payload),
Value::u128(gas_limit as u128),
Value::u128(value),
Value::bool(false),
],
)
.await
}
/// `pallet_gear::send_reply`
pub async fn send_reply(
&self,
reply_to_id: MessageId,
payload: Vec<u8>,
gas_limit: u64,
value: u128,
) -> Result<TxInBlock> {
self.0
.run_tx(
GearCall::SendReply,
vec![
Value::from_bytes(reply_to_id),
Value::from_bytes(payload),
Value::u128(gas_limit as u128),
Value::u128(value),
Value::bool(false),
],
)
.await
}
/// `pallet_gear::upload_code`
pub async fn upload_code(&self, code: Vec<u8>) -> Result<TxInBlock> {
self.0
.run_tx(GearCall::UploadCode, vec![Value::from_bytes(code)])
.await
}
/// `pallet_gear::upload_program`
pub async fn upload_program(
&self,
code: Vec<u8>,
salt: Vec<u8>,
payload: Vec<u8>,
gas_limit: u64,
value: u128,
) -> Result<TxInBlock> {
self.0
.run_tx(
GearCall::UploadProgram,
vec![
Value::from_bytes(code),
Value::from_bytes(salt),
Value::from_bytes(payload),
Value::u128(gas_limit as u128),
Value::u128(value),
Value::bool(false),
],
)
.await
}
}
// pallet-utility
impl SignerCalls {
/// `pallet_utility::force_batch`
pub async fn force_batch(&self, calls: Vec<RuntimeCall>) -> Result<TxInBlock> {
self.0
.run_tx(
UtilityCall::ForceBatch,
vec![calls.into_iter().map(Value::from).collect::<Vec<Value>>()],
)
.await
}
}
// pallet-sudo
impl SignerCalls {
/// `pallet_sudo::sudo_unchecked_weight`
pub async fn sudo_unchecked_weight(&self, call: RuntimeCall, weight: Weight) -> EventsResult {
self.0
.sudo_run_tx(
SudoCall::SudoUncheckedWeight,
// As `call` implements conversion to `Value`.
vec![
call.into(),
Value::named_composite([
("ref_time", Value::u128(weight.ref_time as u128)),
("proof_size", Value::u128(weight.proof_size as u128)),
]),
],
)
.await
}
}
// pallet-gear-voucher
impl SignerCalls {
/// `pallet_gear_voucher::issue`
pub async fn issue_voucher(
&self,
spender: impl Into<AccountId32>,
balance: u128,
programs: Option<Vec<ProgramId>>,
code_uploading: bool,
duration: u32,
) -> Result<TxInBlock> {
let programs_value = programs
.map(|vec| {
Value::unnamed_composite(vec.into_iter().map(Value::from_bytes).collect::<Vec<_>>())
})
.convert();
self.0
.run_tx(
GearVoucherCall::Issue,
vec![
Value::from_bytes(spender.into()),
Value::u128(balance),
programs_value,
Value::bool(code_uploading),
Value::from(duration),
],
)
.await
}
/// `pallet_gear_voucher::update`
#[allow(clippy::too_many_arguments)]
pub async fn update_voucher(
&self,
spender: impl Into<AccountId32>,
voucher_id: VoucherId,
move_ownership: Option<impl Into<AccountId32>>,
balance_top_up: Option<u128>,
append_programs: Option<Option<Vec<ProgramId>>>,
code_uploading: Option<bool>,
prolong_duration: u32,
) -> Result<TxInBlock> {
let append_programs_value = append_programs
.map(|o| {
o.map(|vec| {
Value::unnamed_composite(
vec.into_iter().map(Value::from_bytes).collect::<Vec<_>>(),
)
})
.convert()
})
.convert();
self.0
.run_tx(
GearVoucherCall::Update,
vec![
Value::from_bytes(spender.into()),
Value::from_bytes(voucher_id.0),
move_ownership
.map(|v| Value::from_bytes(v.into()))
.convert(),
balance_top_up.map(Value::u128).convert(),
append_programs_value,
code_uploading.map(Value::bool).convert(),
Value::from(prolong_duration),
],
)
.await
}
/// `pallet_gear_voucher::revoke`
pub async fn revoke_voucher(
&self,
spender: impl Into<AccountId32>,
voucher_id: VoucherId,
) -> Result<TxInBlock> {
self.0
.run_tx(
GearVoucherCall::Revoke,
vec![
Value::from_bytes(spender.into()),
Value::from_bytes(voucher_id.0),
],
)
.await
}
/// `pallet_gear_voucher::decline`
pub async fn decline_voucher(&self, voucher_id: VoucherId) -> Result<TxInBlock> {
self.0
.run_tx(
GearVoucherCall::Decline,
vec![Value::from_bytes(voucher_id.0)],
)
.await
}
/// `pallet_gear_voucher::call`
pub async fn upload_code_with_voucher(
&self,
voucher_id: VoucherId,
code: Vec<u8>,
) -> Result<TxInBlock> {
let call = PrepaidCall::<u128>::UploadCode { code };
self.0
.run_tx(
GearVoucherCall::Call,
vec![Value::from_bytes(voucher_id.0), call.into()],
)
.await
}
/// `pallet_gear_voucher::call`
pub async fn send_message_with_voucher(
&self,
voucher_id: VoucherId,
destination: ProgramId,
payload: Vec<u8>,
gas_limit: u64,
value: u128,
keep_alive: bool,
) -> Result<TxInBlock> {
let call = PrepaidCall::<u128>::SendMessage {
destination: destination.into(),
payload,
gas_limit,
value,
keep_alive,
};
self.0
.run_tx(
GearVoucherCall::Call,
vec![Value::from_bytes(voucher_id.0), call.into()],
)
.await
}
/// `pallet_gear_voucher::call`
pub async fn send_reply_with_voucher(
&self,
voucher_id: VoucherId,
reply_to_id: MessageId,
payload: Vec<u8>,
gas_limit: u64,
value: u128,
keep_alive: bool,
) -> Result<TxInBlock> {
let call = PrepaidCall::<u128>::SendReply {
reply_to_id: reply_to_id.into(),
payload,
gas_limit,
value,
keep_alive,
};
self.0
.run_tx(
GearVoucherCall::Call,
vec![Value::from_bytes(voucher_id.0), call.into()],
)
.await
}
/// `pallet_gear_voucher::call`
pub async fn decline_voucher_with_voucher(&self, voucher_id: VoucherId) -> Result<TxInBlock> {
let call = PrepaidCall::<u128>::DeclineVoucher;
self.0
.run_tx(
GearVoucherCall::Call,
vec![Value::from_bytes(voucher_id.0), call.into()],
)
.await
}
}