Sha256: ab69353e802c440362afe5b192441d76ff377ed8f5a37d3df70ab6a74de65f39
Contents?: true
Size: 852 Bytes
Versions: 10
Compression:
Stored size: 852 Bytes
Contents
module Klaytn class Base INVALID_CLIENT = 'No params provided - please provide a contract address, ABI, KAS credentials, etc'.freeze MISSING_KAS_CREDS = 'KAS credentials missing'.freeze MISSING_CONTRACT = 'Please provide a deployed smart contract address.'.freeze MISSING_ACCOUNT_WALLET = 'Please provide a KAS Account wallet to pay for transactions.'.freeze # created via KAS > Service > Wallet > Account Pool > Create Account Pool > Create Account MISSING_ACCOUNT_POOL_KRN = 'Please provide a KAS Account Pool KRN id to finish linking your KAS Wallet (ex: krn:XXXX:wallet:yyyy...).'.freeze # KAS > Service > Wallet > Account Pool > KRN MISSING_ABI = 'Please provide the contract ABI, an array-like object returned by the compiler.'.freeze FUNCTION_NOT_FOUND = 'Function with definition XXX not found.'.freeze end end
Version data entries
10 entries across 10 versions & 1 rubygems